.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/*banner*/
.ind-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ind-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 210px;
  background: url(../img/bg1.png) repeat-x;
  z-index: 2;
  display:none;
}
.ind-banner .swiper-slide {
  position: relative;
}
.ind-banner .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
}
.ind-banner .onebox {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 30%;
  z-index: 2;
}
.ind-banner .onebox .zi {
  font-size: var(--fs30);
  line-height: 0.42rem;
  color: #fff;
  margin-bottom: 5px;
}
.ind-banner .onebox .name {
  margin: 0;
  font-size: 0.42rem;
  line-height: 0.56rem;
  color: #fff;
  font-weight: bold;
  font-family: 'Mont-SB';
  width:60%;
}
.ind-banner .onebox .msg {
  font-size: var(--fs18);
  color: #fff;
  line-height: 0.36rem;
  margin: 0.35rem 0 0.4rem;
}
.ind-banner .onebox .tips {
  display: inline-block;
  background-image: linear-gradient(90deg, #e85c0d 0%, #ff802f 100%);
  background-blend-mode: normal, normal;
  color: #fff;
  height: 0.56rem;
  line-height: 0.56rem;
  font-size: var(--fs18);
  padding: 0 0.45rem;
  border-radius: 0.48rem;
  font-family: 'Mont-R';
}
.ind-banner .onebox {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 1.4s ease;
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition-delay: 1s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ind-banner .swiper-slide-active .onebox {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.ind-banner .swiper-pagination {
  width: auto;
  left: 50%;
  margin-left: -7.68rem;
  bottom: 1.4rem;
  z-index: 2;
}
.ind-banner .swiper-pagination-bullet {
  float: left;
  display: block;
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #fff;
  border: none;
  border-radius: 50%;
  margin-left: 0;
  margin-right: 10px;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  transition: All 5s linear;
  -webkit-transition: All 5s linear;
  -moz-transition: All 5s linear;
  -o-transition: All 5s linear;
}
.ind-banner .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.5);
  width: 50px;
  border-radius: 8px;
}
.ind-banner .swiper-pagination-bullet-active::after {
  width: 100%;
}
.ind-banner .botLayer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.8rem;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
}
.ind-banner .botLayer .list ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.ind-banner .botLayer .list li {
  position: relative;
  padding-left: 0.62rem;
  font-size: var(--fs22);
  color: #00ccff;
}
.ind-banner .botLayer .list li .zi {
  line-height: 0.8rem;
}
.ind-banner .botLayer .list li .ico {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.21rem;
}
.ind-banner .botLayer .list li .ico img {
  width: 0.42rem;
}
@media (max-width: 1600px) {
  .ind-banner .onebox {
    margin-left: -8rem;
  }
  .ind-banner .swiper-pagination {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .ind-banner::before {
    height: 1.5rem;
    background: url(../img/bg1.png) bottom repeat-x;
	display:none;
  }
  .ind-banner .swiper-slide .img {
    height: 7rem;
  }
  .ind-banner .swiper-slide .img img {
    height: 100%;
    object-fit: cover;
  }
  .ind-banner .onebox {
    left: 0.3rem;
    right: 0.3rem;
    margin-left: 0;
    top: 25%;
  }
  .ind-banner .onebox .zi {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .ind-banner .onebox .name {
    font-size: var(--fs16);
	width:90%;
  }
  .ind-banner .onebox .msg {
    font-size: var(--fs12);
    line-height: 0.42rem;
    margin: 0.35rem 0 0;
	display:none;
  }
  .ind-banner .onebox .tips {
    display: none;
  }
  .ind-banner .swiper-pagination {
    left: 0.3rem;
    margin-left: 0;
	bottom:2.5rem;
  }
  .ind-banner .swiper-pagination-bullet {
    margin-right: 0.2rem;
  }
  .ind-banner .swiper-pagination-bullet-active {
    width: 0.76rem;
  }
  .ind-banner .botLayer {
    height: 1.6rem;
  }
  .ind-banner .botLayer .list ul{
	display:block; 
  }
  .ind-banner .botLayer .list li {
	  float:left;
	  width:50%;
    padding-left: 0.3rem;
    font-size: var(--fs12);
  }
  .ind-banner .botLayer .list li .zi {
    line-height: 0.8rem;
  }
  .ind-banner .botLayer .list li .ico {
    margin-top: -0.12rem;
  }
  .ind-banner .botLayer .list li .ico img {
    width: 0.24rem;
  }
}
.indTxt {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.indTxt .baozhe {
  position: relative;
}
/*.indTxt .baozhe::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.52rem;
  height: 0.69rem;
  background: url(../img/nimg52Bg.png) no-repeat;
  background-size: 0.52rem;
}*/
.indTxt .title {
  position: relative;
  font-size: var(--fs38);
  color: #00aeef;
  line-height: 0.66rem;
  text-align: center;
  margin: 0;
  font-weight: bold;
}
.indTxt .title em {
  color: #333;
  padding-left:10px;
}
.indTxt .title span {
  display: block;
  position: absolute;
  left: -0.34rem;
  top: -0.26rem;
  width: 0.96rem;
  height: 1rem;
  background: url(../img/nimg96Bg.png) no-repeat;
  background-size: 0.96rem;
  display:none;
}
/*.indTxt2 .title {
  width: 3.31rem;
  background: url(../img/nimg331Bg.png) no-repeat;
  background-size: 100% 100%;
}
.indTxt3 .title {
  width: 4.51rem;
  background: url(../img/nimg451Bg.png) no-repeat;
  background-size: 100% 100%;
}*/
.indexP1 {
  padding-top: 0.92rem;
}
.indexP1 .mxfDiv {
  position: relative;
  padding: 2rem 0 0.6rem;
  min-height: 8.46rem;
  background: url(../img/indexP1.jpg) center no-repeat;
  background-size: cover;
}
.indexP1 .titleDiv {
  position: absolute;
  top: -31px;
  left: 50%;
  margin-left: -3.75rem;
  width: 7.5rem;
  height: 1.88rem;
  border-bottom-left-radius: 0.48rem;
  border-bottom-right-radius: 0.48rem;
  background-image: linear-gradient(180deg, #ff802f 0%, #f65700 100%);
  background-blend-mode: normal, normal;
}
.indexP1 .titleDiv em {
  display: block;
  position: absolute;
  top: 0;
  width: 28px;
  height: 31px;
}
.indexP1 .titleDiv em:first-child {
  left: -28px;
  background: url(../img/nimg28Bg.png) no-repeat;
}
.indexP1 .titleDiv em:last-child {
  right: -28px;
  background: url(../img/nimg28Bg2.png) no-repeat;
}
.indexP1 .titleDiv .title {
  text-align: center;
  color: #fff;
  font-size: var(--fs60);
  line-height: 1.88rem;
  font-weight: bold;
  margin: 0;
  font-family: 'Mont-SB';
}
.indexP1 .content {
  width: 11.8rem;
  margin: 0 auto 0.45rem;
  color: #fff;
  text-align: center;
  font-size: var(--fs18);
  line-height: 0.36rem;
}
.indexP1 .baozhe {
  padding: 0 0.5rem;
}
.indexP1 .pjDiv {
  height: 3rem;
  border: #00baff solid 1px;
  border-radius: 0.48rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.indexP1 .hala {
  height: 3rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.indexP1 .hala .name {
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #fff;
  font-weight: bold;
  margin-right: 0.4rem;
  font-family: 'Mont-SB';
}
.indexP1 .hala .daba {
  width: 1.22rem;
  padding-top: 0.32rem;
  background: url(../img/nimg121Bg.png) left top no-repeat;
  background-size: 1.21rem;
  font-size: var(--fs24);
  line-height: 0.24rem;
  color: #00ffff;
  font-weight: bold;
  margin-right: 0.4rem;
}
.indexP1 .hala .daba2 {
  width: 1.8rem;
  background: url(../img/nimg179Bg.png) left top no-repeat;
  background-size: 1.79rem;
}
.indexP1 .hala .escs {
  margin-right: 0.6rem;
}
.indexP1 .hala .escs .limg img {
  width: 0.85rem;
}
.indexP1 .hala .escs .zi {
  margin-top: 0.12rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs24);
  line-height: 0.24rem;
  font-family: 'Mont-R';
}
.indexP1 .hala .mouse {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.indexP1 .hala .mouse .limg {
  margin-right: 0.25rem;
}
.indexP1 .hala .mouse .limg img {
  width: 2.27rem;
}
.indexP1 .hala .mouse .zi {
  font-size: var(--fs24);
  line-height: 0.3rem;
  color: #fff;
  font-weight: bold;
  font-family: 'Mont-R';
  text-align: center;
}
.indexP1 .hala .mouse .zi sup {
  font-size: 14px;
}
.indexP1 .btnDiv {
  width: 1.76rem;
  margin: 0.38rem auto 0;
}
.indexP1 .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0.56rem;
  background: #fd6f00;
  border-radius: 0.48rem;
  color: #fff;
  font-size: var(--fs16);
}
.indexP1 .btnDiv a em {
  display: block;
  margin-left: 10px;
  width: 16px;
  height: 12px;
  background: url(../img/ico1.png) no-repeat;
}
.indexP1 .tips {
  margin-top: 0.5rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs14);
}
.indexP2 {
  padding: 1.15rem 0 0.2rem;
  background: #f2f6fb;
}
/*.indexP2 .indTxt .title{
	width:5.6rem;
}*/
.indexP2 .msg {
  text-align: center;
  color: #333;
  font-size: var(--fs18);
  line-height: 0.36rem;
  padding: 0.56rem 0 0.5rem;
}
.indexP2 .list ul {
  margin-right: -0.48rem;
}
.indexP2 .list ul li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.6rem;
}
.indexP2 .list ul li .box {
  position: relative;
  margin-right: 0.48rem;
  background: #fff;
  background: url(../img/nimg481Bg.png) center no-repeat;
  background-size: contain;
  border-radius: 0.2rem;
  height: 5rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP2 .list ul li .box a {
  display: block;
  padding: 0.5rem 0.1rem 0;
  width: 100%;
  height: 100%;
}
.indexP2 .list ul li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2.68rem;
  height: 2.2rem;
  overflow: hidden;
  margin: 0 auto;
}
.indexP2 .list ul li .imgDiv img {
  max-width: 2.68rem;
  max-height: 2.2rem;
}
.indexP2 .list ul li .name {
  margin-top: 0.36rem;
  font-size: var(--fs30);
  height: 0.42rem;
  line-height: 0.42rem;
  overflow: hidden;
  text-align: center;
  color: #00aeef;
  font-weight: bold;
}
.indexP2 .list ul li .wen {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.9rem;
  overflow: hidden;
  text-align: center;
  color: #333;
}
.indexP2 .list ul li .ico {
  position: absolute;
  bottom: -0.28rem;
  left: 50%;
  margin-left: -0.28rem;
  z-index: 1;
  width: 0.56rem;
  height: 0.56rem;
  border: #e0e0e0 solid 1px;
  border-radius: 50%;
  background: #fff url(../img/nimg22_3.png) center no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
/*.indexP2 .list ul li .box:hover {
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.2);
}*/
.indexP2 .list ul li .box:hover .ico {
  border: #fd6f00 solid 1px;
  background: #fd6f00 url(../img/nimg22_3on.png) center no-repeat;
}
.indexP3 {
  padding: 1.2rem 0 1.7rem;
}
.indexP3 .tab {
  text-align: center;
  padding: 0.6rem 0 0.5rem;
}
.indexP3 .tab ul {
  font-size: 0;
}
.indexP3 .tab li {
  display: inline-block;
  margin: 0 0.22rem;
  position: relative;
  height: 0.26rem;
  font-size: var(--fs18);
  line-height: 0.18rem;
  color: #333;
}
.indexP3 .tab li:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #00aeef;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .tab .liNow {
  color: #00aeef;
}
.indexP3 .tab .liNow:after {
  left: 0;
  width: 100%;
}
.indexP3 .tabContent {
  animation: am_top 0.5s ease-in-out 0.1s backwards;
  -webkit-animation: am_top 0.5s ease-in-out 0.1s backwards;
}
.indexP3 .leftDiv {
  width: 9.2rem;
}
.indexP3 .leftDiv ul {
  margin-right: -0.2rem;
}
.indexP3 .leftDiv li {
  width: 50%;
  float: left;
}
.indexP3 .leftDiv li .box {
  margin-right: 0.2rem;
}
.indexP3 .leftDiv li .imgDiv {
  height: 2.8rem;
  overflow: hidden;
}
.indexP3 .leftDiv li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.indexP3 .leftDiv li .botDiv {
  height: 2.6rem;
  padding: 0.24rem 0.4rem 0;
  background: #f4f4f4;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .leftDiv li .name {
  font-size: var(--fs22);
  line-height: 0.36rem;
  color: #333;
  height: 0.72rem;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .leftDiv li .time {
  font-family: "Poppins-L";
  font-size: var(--fs16);
  line-height: 0.16rem;
  color: #999;
  margin-top: 0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .leftDiv li .ico {
  margin-top: 0.45rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #fd6f00 url(../img/ico1.png) center no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .leftDiv li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indexP3 .leftDiv li .box:hover .botDiv {
  background: #fd6f00;
}
.indexP3 .leftDiv li .box:hover .name,
.indexP3 .leftDiv li .box:hover .time {
  color: #fff;
}
.indexP3 .leftDiv li .box:hover .ico {
  background: #fff url(../img/ico1on.png) center no-repeat;
}
.indexP3 .rightDiv {
  width: 5.96rem;
}
.indexP3 .rightDiv .list li {
  margin-bottom: 0.28rem;
}
.indexP3 .rightDiv .list li:last-child {
  margin-bottom: 0;
}
.indexP3 .rightDiv .list li a {
  display: block;
  position: relative;
  padding: 0.35rem 2.36rem 0 0.4rem;
  height: 1.68rem;
  background: #f6f6f6;
}
.indexP3 .rightDiv .list li a:hover {
  background: #fff;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.2);
}
.indexP3 .rightDiv .list li .imgDiv {
  position: absolute;
  right: 0.27rem;
  top: 50%;
  margin-top: -0.55rem;
  width: 1.8rem;
  height: 1.1rem;
}
.indexP3 .rightDiv .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP3 .rightDiv .list li .name {
  font-size: var(--fs18);
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
  color: #333;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .rightDiv .list li .time {
  margin-top: 0.15rem;
  font-family: "Poppins-L";
  font-size: var(--fs16);
  line-height: 0.16rem;
  color: #999;
  width: 1.35rem;
  background: url(../img/ico1on.png) right center no-repeat;
  background-size: 0.15rem;
}
.indexP3 .rightDiv .list li a:hover .name {
  color: #fd6f00;
}
.indexP3 .rightDiv .moreBtn {
  width: 1.76rem;
  margin: 0.7rem 0 0 0.4rem;
}
.indexP3 .rightDiv .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0.56rem;
  background: #fd6f00;
  border-radius: 0.48rem;
  color: #fff;
  font-size: var(--fs16);
}
.indexP3 .rightDiv .moreBtn a em {
  display: block;
  margin-left: 16px;
  width: 16px;
  height: 12px;
  background: url(../img/ico1.png) no-repeat;
}
.indexP4 {
  padding-top: 0.8rem;
  height: 8.86rem;
  overflow: hidden;
  background: url(../img/indexP4-2.jpg) center no-repeat;
  background-size: cover;
}
.indexP4 .rightDiv {
  width: 10.0rem;
  margin-right: -0.5rem;
}
.indexP4 .pjDiv {
  padding: 0.35rem 0.5rem 0.4rem 0.95rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.2rem;
}
.indexP4 .title {
  margin: 0 0 0.25rem;
  color: #fff;
  font-size: var(--fs36);
  line-height: 0.36rem;
  font-weight: bold;
}
.indexP4 .form ul {
  margin-right: -0.25rem;
}
.indexP4 .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.2rem;
}
.indexP4 .form li:last-child {
  width: 100%;
}
.indexP4 .form li .box {
  margin-right: 0.25rem;
  position: relative;
  padding-left: 1.0rem;
}
.indexP4 .form li .zi {
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--fs16);
  color: #fff;
}
.indexP4 .form li .zi img {
  display: block;
  width: 0.26rem;
  margin-bottom: 0.08rem;
}
.indexP4 .form li .input1 {
  font-family: 'Poppins-R';
  width: 100%;
  height: 0.56rem;
  line-height: 0.56rem;
  background: #fff;
  border-radius: 10px;
  padding-left: 10px;
  font-size: var(--fs14);
  color: #999;
}
.indexP4 .form li .input1::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
}
.indexP4 .form li .input1:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
}
.indexP4 .form li .input1::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
}
.indexP4 .form li .input1:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
}
.indexP4 .form li textarea {
  font-family: 'Poppins-R';
  border-radius: 10px;
  width: 100%;
  height: 0.95rem;
  background: #fff;
  font-size: var(--fs14);
  color: #999;
  padding: 10px 0 0 10px;
  line-height: 0.24rem;
}
.indexP4 .form li textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
}
.indexP4 .form li textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
}
.indexP4 .form li textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
}
.indexP4 .form li textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
}
.indexP4 .form li .select{
	width: 100%; 
	position: relative;
}
.indexP4 .form li .select .caption { 
	position: relative; 
	cursor: pointer; 
	height: 0.56rem;
	line-height: 0.56rem;
	padding-left: 10px; 
	font-size: var(--fs14); 
	color: #999; 
	background: #fff; 
	border-radius: 10px;
}
.indexP4 .form li .select .caption:after{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -4px;
	width: 35px;
	height: 7px;
	background: url(../img/selectIco.png) left no-repeat;
}
.indexP4 .form li .select .xlist{
	width: 100%; 
	position: absolute; 
	left: 0; 
	top: 100%; 
	z-index: 12; 
	background: #fff; 
	display: none;
}
.indexP4 .form li .select .xlist a{
	display: block; 
	font-size: var(--fs14); 
	background: #fff; 
	color: #999; 
	height: 0.4rem; 
	line-height: 0.4rem; 
	border-bottom: #f6f6f6 solid 1px;
	padding: 0 10px;
}
.indexP4 .form li .select .xlist a:hover{
	color:#fd6f00;
}

.indexP4 .btnDiv {
  padding-left: 1rem;
}
.indexP4 .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 2rem;
  height: 0.6rem;
  background: #fd6f00;
  border-radius: 10px;
  color: #fff;
  font-size: var(--fs18);
}
.indexP4 .btnDiv a em {
  display: block;
  margin-left: 25px;
  width: 24px;
  height: 15px;
  background: url(../img/ico2.png) no-repeat;
}
.indexP4 .msg {
  color: #fff;
  font-size: var(--fs16);
  line-height: 0.32rem;
  padding: 0.3rem 0 0 1rem;
  font-family: 'Mont-R';
}
@media (max-width: 1600px) {
  .indexP3 .leftDiv {
    width: 9.45rem;
  }
  .indexP3 .rightDiv {
    width: 6.26rem;
  }
}
@media (max-width: 1004px) {
  .indTxt .title {
    font-size: var(--fs16);
    line-height: 0.8rem;
  }
  /*.indTxt2 .title {
    width: 3.31rem;
  }
  .indTxt3 .title {
    width: 4.51rem;
  }*/
  .indexP1 {
    padding-top: 0.8rem;
  }
  .indexP1 .mxfDiv {
    padding: 1.6rem 0 0.8rem;
    min-height: 1rem;
  }
  .indexP1 .titleDiv {
    top: -0.33rem;
    margin-left: -2.75rem;
    width: 5.5rem;
    height: 1.48rem;
    border-bottom-left-radius: 0.48rem;
    border-bottom-right-radius: 0.48rem;
  }
  .indexP1 .titleDiv em {
    width: 0.33rem;
    height: 0.36rem;
  }
  .indexP1 .titleDiv em:first-child {
    left: -0.33rem;
    background-size: 0.33rem;
  }
  .indexP1 .titleDiv em:last-child {
    right: -0.33rem;
    background-size: 0.33rem;
  }
  .indexP1 .titleDiv .title {
    font-size: var(--fs22);
    line-height: 1.48rem;
  }
  .indexP1 .content {
    width: auto;
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .indexP1 .baozhe {
    padding: 0;
  }
  .indexP1 .pjDiv {
    height: 2.6rem;
  }
  .indexP1 .longDiv {
    overflow: auto;
  }
  .indexP1 .hala {
    width: 14rem;
    height: 2.6rem;
  }
  .indexP1 .hala .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
    margin-right: 0.3rem;
  }
  .indexP1 .hala .daba {
    font-size: var(--fs14);
    line-height: 0.32rem;
    margin-right: 0.3rem;
  }
  .indexP1 .hala .escs {
    margin-right: 0.5rem;
  }
  .indexP1 .hala .escs .limg img {
    width: 1.15rem;
  }
  .indexP1 .hala .escs .zi {
    font-size: var(--fs14);
    line-height: 0.32rem;
  }
  .indexP1 .hala .mouse .zi {
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .indexP1 .hala .mouse .zi sup {
    font-size: 10px;
  }
  .indexP1 .btnDiv {
    width: 2.46rem;
    margin: 0.5rem auto 0;
  }
  .indexP1 .btnDiv a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .indexP1 .btnDiv a em {
    margin-left: 0.2rem;
    width: 12px;
    height: 8px;
    background-size: 12px;
  }
  .indexP2 {
    padding: 1rem 0 0.4rem;
  }
  .indexP2 .msg {
    font-size: var(--fs13);
    line-height: 0.48rem;
    padding: 0.45rem 0 0.5rem;
  }
  .indexP2 .list ul {
    margin-right: -0.2rem;
  }
  .indexP2 .list ul li {
    width: 50%;
    margin-bottom: 0.3rem;
  }
  .indexP2 .list ul li .box {
    margin-right: 0.2rem;
    border-radius: 0.24rem;
    height: 4rem;
    background: #fff;
    border: #fd6f00 solid 1px;
  }
  .indexP2 .list ul li .box a {
    padding: 0.3rem 0.2rem 0;
  }
  .indexP2 .list ul li .imgDiv {
    width: 2.2rem;
    height: 1.8rem;
  }
  .indexP2 .list ul li .imgDiv img {
    max-width: 2.2rem;
    max-height: 1.8rem;
  }
  .indexP2 .list ul li .name {
    margin-top: 0.2rem;
    font-size: var(--fs14);
  }
  .indexP2 .list ul li .wen {
    font-size: var(--fs13);
    line-height: 0.42rem;
    height: 0.84rem;
  }
  .indexP2 .list ul li .ico {
    display: none;
  }
  .indexP3 {
    padding: 0.9rem 0 1rem;
  }
  .indexP3 .tab {
    text-align: center;
    padding: 0.6rem 0 0.5rem;
  }
  .indexP3 .tab ul {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
  }
  .indexP3 .tab li {
    display: block;
    margin: 0 0.3rem;
    height: 0.42rem;
    font-size: var(--fs14);
    line-height: 0.26rem;
  }
  .indexP3 .leftDiv {
    width: auto;
    float: none;
  }
  .indexP3 .leftDiv li .imgDiv {
    height: 2rem;
  }
  .indexP3 .leftDiv li .botDiv {
    height: 2.6rem;
    padding: 0.24rem 0.2rem 0;
  }
  .indexP3 .leftDiv li .name {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP3 .leftDiv li .time {
    font-size: var(--fs12);
    line-height: 0.24rem;
    margin-top: 0.1rem;
  }
  .indexP3 .leftDiv li .ico {
    margin-top: 0.2rem;
    width: 0.64rem;
    height: 0.64rem;
    background-size: 10px;
  }
  .indexP3 .leftDiv li .box:hover .ico {
    background-size: 10px;
  }
  .indexP3 .rightDiv {
    width: auto;
    float: none;
    margin-top: 0.3rem;
  }
  .indexP3 .rightDiv .list li {
    margin-bottom: 0.3rem;
  }
  .indexP3 .rightDiv .list li a {
    padding: 0.25rem 2.6rem 0 0.3rem;
    height: 1.8rem;
  }
  .indexP3 .rightDiv .list li .imgDiv {
    right: 0.2rem;
    margin-top: -0.7rem;
    width: 2rem;
    height: 1.4rem;
  }
  .indexP3 .rightDiv .list li .name {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP3 .rightDiv .list li .time {
    margin-top: 0.1rem;
    font-size: var(--fs12);
    line-height: 0.24rem;
    width: 1.8rem;
    background-size: 10px;
  }
  .indexP3 .rightDiv .moreBtn {
    width: 2.46rem;
    margin: 0.7rem 0 0 0.4rem;
  }
  .indexP3 .rightDiv .moreBtn a {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .indexP3 .rightDiv .moreBtn a em {
    margin-left: 0.2rem;
    width: 12px;
    height: 8px;
    background-size: 12px;
  }
  .indexP4 {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    height: auto;
  }
  .indexP4 .rightDiv {
    float: none;
    width: auto;
    margin-right: 0;
  }
  .indexP4 .pjDiv {
    padding: 0.5rem 0.3rem 0.4rem 0.3rem;
    border-radius: 0.24rem;
  }
  .indexP4 .title {
    margin: 0 0 0.4rem;
    font-size: var(--fs20);
    line-height: 0.48rem;
  }
  .indexP4 .form ul {
    margin-right: 0;
  }
  .indexP4 .form li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .indexP4 .form li .box {
    margin-right: 0;
    padding-left: 0;
  }
  .indexP4 .form li .zi {
    font-size: var(--fs13);
	position:relative;
	height:0.62rem;
	padding-left:0.56rem;
  }
  .indexP4 .form li .zi img {
    width: 0.4rem;
	position:absolute;
	left:0;
	top:0;
  }
  .indexP4 .form li .input1 {
    height: 0.9rem;
    line-height: 0.9rem;
    border-radius: 0.2rem;
    padding-left: 0.2rem;
    font-size: var(--fs13);
  }
  .indexP4 .form li textarea {
    border-radius: 0.2rem;
    height: 1.95rem;
    font-size: var(--fs13);
    padding: 0.2rem 0 0 0.2rem;
    line-height: 0.48rem;
  }
  .indexP4 .form li .select .caption { 
		height: 0.9rem;
		line-height: 0.9rem;
		padding-left: 0.2rem; 
		font-size: var(--fs13); 
		border-radius: 0.2rem;
	}
  .indexP4 .form li .select .caption:after{
   	width: 28px;
   }
   .indexP4 .form li .select .xlist a{
		font-size: var(--fs13); 
		height: 0.8rem; 
		line-height: 0.8rem; 
		padding: 0 0.2rem;
	}
  .indexP4 .btnDiv {
    padding-left: 0;
  }
  .indexP4 .btnDiv a {
    width: 2.46rem;
    height: 0.86rem;
    background: #fd6f00;
    border-radius: 0.24rem;
    font-size: var(--fs16);
  }
  .indexP4 .btnDiv a em {
    margin-left: 0.2rem;
    width: 18px;
    height: 12px;
    background-size: 18px;
  }
  .indexP4 .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0.45rem 0 0 0;
  }
}
.turbomiceP1 {
  padding: 1.75rem 0 1.4rem;
}
.turbomiceP1 .titleDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.turbomiceP1 .titleDiv .baozhe {
  position: relative;
  padding-right: 0.48rem;
}
.turbomiceP1 .titleDiv .baozhe::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.52rem;
  height: 0.69rem;
  background: url(../img/nimg52Bg.png) no-repeat;
  background-size: 0.52rem;
}
.turbomiceP1 .titleDiv .title {
  position: relative;
  font-size: var(--fs36);
  color: #00aeef;
  width: 4.81rem;
  height: 0.67rem;
  line-height: 0.66rem;
  padding-left: 0.8rem;
  text-align: left;
  background: url(../img/nimg481Bg2.png) no-repeat;
  background-size: 100% 100%;
  margin: 0;
  font-weight: bold;
}
.turbomiceP1 .titleDiv .title em {
  color: #333;
}
.turbomiceP1 .titleDiv .title span {
  display: block;
  position: absolute;
  left: -0.34rem;
  top: -0.26rem;
  width: 0.96rem;
  height: 1rem;
  background: url(../img/nimg96Bg.png) no-repeat;
  background-size: 0.96rem;
}
.turbomiceP1 .zi {
  padding-top: 1.1rem;
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #333;
  text-align: center;
  font-weight: bold;
}
.turbomiceP1 .content {
  font-size: var(--fs18);
  line-height: 0.3rem;
  text-align: center;
  width: 9.6rem;
  margin: 0.5rem auto 0;
}
.turbomiceP1 .content2 {
  width: 11.12rem;
  margin: 0.4rem auto 0;
}
.turbomiceP2 {
  background: url(../img/turbomiceP2.png) center no-repeat;
  background-size: cover;
  padding: 0.85rem 0 1.5rem;
}
.turbomiceP2 .wal {
  width: 13rem;
  margin: 0 auto;
}
.turbomiceP2 .title {
  margin: 0 0 0.4rem;
  text-align: center;
  color: #fd6f00;
  font-size: var(--fs60);
  line-height: 0.6rem;
  font-weight: bold;
  font-family: 'Mont-SB';
}
.turbomiceP2 .wen {
  text-align: center;
  color: #000;
  font-size: var(--fs36);
  padding-bottom: 0.7rem;
}
.turbomiceP2 .content {
  text-align: center;
  color: #333;
  font-size: var(--fs16);
  line-height: 0.3rem;
  font-family: 'Mont-R';
}
.turbomiceP2 .content p{
  padding-bottom:0.6rem;
}
.turbomiceP2 .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0.7rem 0 0.75rem;
  padding: 0.2rem 0;
  background: #fff;
  border-radius: 0.3rem;
  overflow: hidden;
}
.turbomiceP2 .imgDiv img {
  max-width: 11.8rem;
}
.turbomiceP3 {
  padding: 1.5rem 0;
}
.turbomiceP3 .wal {
  width: 14.2rem;
  margin: 0 auto;
}
.turbomiceP3 .mxfDiv {
  border: #e9e9e9 solid 1px;
  border-bottom: none;
}
.turbomiceP3 .mxfDiv .line1 {
  height: 0.75rem;
  padding: 0 0.3rem;
  border-bottom: #e9e9e9 solid 1px;
}
.turbomiceP3 .mxfDiv .line1 ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.turbomiceP3 .mxfDiv .line1 li {
  font-size: var(--fs18);
  line-height: 0.75rem;
  font-family: 'Poppins-L';
}
.turbomiceP3 .mxfDiv .line2 {
  border-bottom: #e9e9e9 solid 1px;
  height: 1.75rem;
  padding: 0.3rem 0.3rem 0;
  overflow: hidden;
}
.turbomiceP3 .mxfDiv .line2 .pjDiv {
  position: relative;
  display: inline-block;
  padding-right: 1.9rem;
  height: 1.45rem;
}
.turbomiceP3 .mxfDiv .line2 .msg {
  text-align: center;
  font-size: var(--fs16);
  height: 0.45rem;
}
.turbomiceP3 .mxfDiv .line2 .list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  float: left;
  margin-right: 0.1rem;
  padding: 0 0.4rem;
  min-width: 1.4rem;
  height: 0.7rem;
  background: #ff8c33;
  border-radius: 0.48rem;
  color: #fff;
  font-size: var(--fs16);
  line-height: 0.2rem;
  text-align: center;
}
.turbomiceP3 .mxfDiv .line2 .rightImg {
  position: absolute;
  right: 0;
  bottom: 0;
}
.turbomiceP3 .mxfDiv .line2 .rightImg img {
  width: 1.72rem;
}
.turbomiceP3 .mxfDiv .line3 {
  border-bottom: #e9e9e9 solid 1px;
  height: 1.62rem;
  overflow: hidden;
}
.turbomiceP3 .mxfDiv .line3 .leftDiv {
  position: relative;
  padding: 0.3rem 0.3rem 0;
  width: 56%;
  height: 1.62rem;
}
.turbomiceP3 .mxfDiv .line3 .leftDiv::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e9e9e9;
}
.turbomiceP3 .mxfDiv .line3 .leftDiv .msg {
  text-align: center;
  font-size: var(--fs16);
  height: 0.36rem;
}
.turbomiceP3 .mxfDiv .line3 .leftDiv .list ul {
  margin-right: -0.1rem;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.turbomiceP3 .mxfDiv .line3 .leftDiv .list li {
  width: 20%;
}
.turbomiceP3 .mxfDiv .line3 .leftDiv .list li .lbox {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-right: 0.1rem;
  height: 0.7rem;
  background: #ff8c33;
  border-radius: 0.48rem;
  color: #fff;
  font-size: var(--fs16);
  line-height: 0.2rem;
  text-align: center;
}
.turbomiceP3 .mxfDiv .line3 .rightDiv {
  position: relative;
  padding: 0.3rem 0.3rem 0;
  width: 44%;
  height: 1.62rem;
}
.turbomiceP3 .mxfDiv .line3 .rightDiv .msg {
  text-align: center;
  font-size: var(--fs16);
  height: 0.36rem;
}
.turbomiceP3 .mxfDiv .line3 .rightDiv .list ul {
  margin-right: -0.1rem;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.turbomiceP3 .mxfDiv .line3 .rightDiv .list li .lbox {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  min-width: 1.6rem;
  padding: 0 0.1rem;
  margin-right: 0.1rem;
  height: 0.7rem;
  background: #ff8c33;
  border-radius: 0.48rem;
  color: #fff;
  font-size: var(--fs16);
  line-height: 0.2rem;
  text-align: center;
}
.turbomiceP4 {
  overflow: hidden;
  padding: 1.2rem 0 1.4rem;
  background: #fd6f00;
}
.turbomiceP4 .title {
  text-align: center;
  color: #fff;
  font-size: var(--fs36);
  line-height: 0.36rem;
  margin: 0;
  font-weight: bold;
}
.turbomiceP4 .list {
  margin-top: 0.9rem;
  overflow: hidden;
}
.turbomiceP4 .list li .box {
  height: 4.8rem;
  background: #fff;
  border-radius: 0.24rem;
  padding: 0.56rem 0.36rem 0;
  text-align: center;
  overflow: hidden;
}
.turbomiceP4 .list li .name {
  color: #ff6600;
  font-size: var(--fs30);
  line-height: 0.36rem;
  font-weight: bold;
}
.turbomiceP4 .list li .msg {
  font-size: var(--fs16);
  line-height: 0.3rem;
  margin-top: 0.4rem;
}
.turbomiceP4 .swiper-pagination {
  position: relative;
  left: 0;
  bottom: 0;
  padding-top: 0.6rem;
}
.turbomiceP4 .swiper-pagination .swiper-pagination-bullet-active {
  background: #00a1ed;
}
.turbomiceP5 {
  overflow: hidden;
  height: 10.36rem;
  padding-top: 0.9rem;
  background: url(../img/turbomiceP5.jpg) center no-repeat;
  background-size: cover;
}
.turbomiceP5 .title {
  text-align: center;
  color: #fff;
  font-size: var(--fs36);
  line-height: 0.36rem;
  margin: 0 0 0.8rem;
  font-weight: bold;
  font-family: 'Mont-SB';
}
.turbomiceP5 .list ul {
  margin-right: -0.25rem;
}
.turbomiceP5 .list li {
  float: left;
  width: 25%;
  margin-bottom: 0.25rem;
}
.turbomiceP5 .list li .box {
  cursor: pointer;
  margin-right: 0.25rem;
  height: 3.6rem;
  background: #fff;
  border-radius: 0.24rem;
  padding: 0.3rem 0.2rem 0 0.35rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.turbomiceP5 .list li .name {
  color: #333;
  font-size: var(--fs22);
  line-height: 0.3rem;
  font-weight: bold;
  font-family: 'Mont-SB';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.turbomiceP5 .list li .msg {
  font-size: var(--fs14);
  line-height: 0.2rem;
  margin-top: 0.2rem;
  font-family: "Poppins-R";
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.turbomiceP5 .list li .box:hover {
  background: #fd6f00;
}
.turbomiceP5 .list li .box:hover .name,
.turbomiceP5 .list li .box:hover .msg {
  color: #fff;
}
.turbomiceP5 .list2 {
  padding: 0 1.95rem;
}
.turbomiceP5 .list2 li {
  width: 33.33%;
}
.turbomiceP6 {
  padding: 1.3rem 0 1.5rem;
}
.turbomiceP6 .title {
  text-align: center;
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #333;
  margin: 0 0 0.5rem;
  font-weight: bold;
  letter-spacing: 4px;
}
.turbomiceP6 .tableDiv table {
  border-top: #e7e7e7 solid 1px;
  border-left: #e7e7e7 solid 1px;
}
.turbomiceP6 .tableDiv table td {
  border-bottom: #e7e7e7 solid 1px;
  border-right: #e7e7e7 solid 1px;
  height: 0.98rem;
  color: #333;
  padding: 0 0.5rem;
  font-size: var(--fs16);
  line-height: 0.2rem;
  font-family: 'Mont-R';
}
.turbomiceP6 .tableDiv table td:nth-child(1) {
  width: 68%;
  padding: 0 2.4rem 0 0.5rem;
}
.turbomiceP6 .tableDiv table td:nth-child(2) {
  width: 19%;
  padding: 0 0.4rem;
}
.turbomiceP6 .tableDiv table td:nth-child(3) {
  width: 13%;
}
.turbomiceP6 .tableDiv table tr:nth-child(even) td {
  background: #fafafa;
}
@media (max-width: 1600px) {
  .turbomiceP3 {
    padding: 1.2rem 0;
  }
  .turbomiceP3 .mxfDiv .line1 li {
    font-size: var(--fs16);
  }
  .turbomiceP3 .mxfDiv .line2 .list li {
    font-size: var(--fs14);
  }
  .turbomiceP3 .mxfDiv .line3 .leftDiv .list li {
    width: 20%;
  }
  .turbomiceP3 .mxfDiv .line3 .leftDiv .list li .lbox {
    font-size: var(--fs14);
  }
  .turbomiceP3 .mxfDiv .line3 .rightDiv .list li .lbox {
    font-size: var(--fs14);
  }
}
@media (max-width: 1004px) {
  .turbomiceP1 {
    padding: 1rem 0 0.9rem;
  }
  .turbomiceP1 .titleDiv .baozhe {
    padding-right: 0.64rem;
  }
  .turbomiceP1 .titleDiv .baozhe::after {
    width: 0.62rem;
    height: 0.82rem;
    background-size: 0.62rem;
  }
  .turbomiceP1 .titleDiv .title {
    font-size: var(--fs18);
    width: 4.81rem;
    height: 0.8rem;
    line-height: 0.8rem;
  }
  .turbomiceP1 .titleDiv .title span {
    top: -0.18rem;
  }
  .turbomiceP1 .zi {
    padding-top: 0.75rem;
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .turbomiceP1 .content {
    font-size: var(--fs13);
    line-height: 0.48rem;
    width: auto;
    margin: 0.6rem auto 0;
  }
  .turbomiceP1 .content2 {
    width: auto;
  }
  .turbomiceP2 {
    padding: 0.9rem 0.3rem 1.1rem;
  }
  .turbomiceP2 .wal {
    width: 100%;
  }
  .turbomiceP2 .title {
    margin: 0 0 0.4rem;
    font-size: var(--fs26);
    line-height: 0.76rem;
  }
  .turbomiceP2 .wen {
    font-size: var(--fs18);
    padding-bottom: 0.6rem;
  }
  .turbomiceP2 .content {
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .turbomiceP2 .content img{
	  width:100%;
  }
  .turbomiceP2 .imgDiv {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    margin: 0.6rem 0 0.65rem;
    padding: 0.2rem 0.3rem;
  }
  .turbomiceP2 .imgDiv img {
    max-width: 100%;
  }
  .turbomiceP3 {
    padding: 1rem 0.3rem;
  }
  .turbomiceP3 .wal {
    width: 100%;
  }
  .turbomiceP3 .tips {
    margin-top: 0.5rem;
    text-align: center;
    color: #333;
    font-size: var(--fs14);
  }
  .turbomiceP3 .longDiv {
    overflow: auto;
  }
  .turbomiceP3 .mxfDiv {
    width: 20rem;
  }
  .turbomiceP3 .mxfDiv .line1 {
    height: 1rem;
  }
  .turbomiceP3 .mxfDiv .line1 li {
    font-size: var(--fs14);
    line-height: 1rem;
  }
  .turbomiceP3 .mxfDiv .line2 {
    height: 2.3rem;
    padding: 0.4rem 0.3rem 0;
  }
  .turbomiceP3 .mxfDiv .line2 .pjDiv {
    padding-right: 2.2rem;
    height: 1.9rem;
  }
  .turbomiceP3 .mxfDiv .line2 .msg {
    font-size: var(--fs14);
    height: 0.6rem;
  }
  .turbomiceP3 .mxfDiv .line2 .list li {
    padding: 0 0.3rem;
    min-width: 1.6rem;
    height: 0.9rem;
    font-size: var(--fs12);
    line-height: 0.3rem;
  }
  .turbomiceP3 .mxfDiv .line2 .rightImg img {
    width: 2rem;
  }
  .turbomiceP3 .mxfDiv .line3 {
    height: 2.3rem;
  }
  .turbomiceP3 .mxfDiv .line3 .leftDiv {
    padding: 0.4rem 0.3rem 0;
    height: 2.3rem;
  }
  .turbomiceP3 .mxfDiv .line3 .leftDiv .msg {
    font-size: var(--fs14);
    height: 0.6rem;
  }
  .turbomiceP3 .mxfDiv .line3 .leftDiv .list li .lbox {
    height: 0.9rem;
    font-size: var(--fs12);
    line-height: 0.3rem;
  }
  .turbomiceP3 .mxfDiv .line3 .rightDiv {
    padding: 0.4rem 0.3rem 0;
    height: 2.3rem;
  }
  .turbomiceP3 .mxfDiv .line3 .rightDiv .msg {
    font-size: var(--fs14);
    height: 0.6rem;
  }
  .turbomiceP3 .mxfDiv .line3 .rightDiv .list li .lbox {
    min-width: 2.4rem;
    height: 0.9rem;
    font-size: var(--fs12);
    line-height: 0.3rem;
  }
  .turbomiceP4 {
    padding: 1rem 0 1.1rem;
  }
  .turbomiceP4 .title {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .turbomiceP4 .list {
    margin-top: 0.65rem;
  }
  .turbomiceP4 .list li .box {
    border-radius: 0.32rem;
    padding: 0.5rem 0.3rem 0;
  }
  .turbomiceP4 .list li .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .turbomiceP4 .list li .msg {
    font-size: var(--fs13);
    line-height: 0.48rem;
    margin-top: 0.3rem;
  }
  .turbomiceP5 {
    height: auto;
    padding: 0.9rem 0;
  }
  .turbomiceP5 .title {
    font-size: var(--fs20);
    line-height: 0.56rem;
    margin: 0 0 0.65rem;
  }
  .turbomiceP5 .list ul {
    margin-right: 0;
  }
  .turbomiceP5 .list li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .turbomiceP5 .list li .box {
    margin-right: 0;
    height: auto;
    min-height: 3.6rem;
    border-radius: 0.32rem;
    padding: 0.6rem 0.2rem 0.4rem 0.35rem;
  }
  .turbomiceP5 .list li .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .turbomiceP5 .list li .msg {
    font-size: var(--fs13);
    line-height: 0.48rem;
    margin-top: 0.25rem;
  }
  .turbomiceP5 .list2 {
    padding: 0;
  }
  .turbomiceP5 .list2 li {
    width: auto;
  }
  .turbomiceP6 {
    padding: 1rem 0 1.1rem;
  }
  .turbomiceP6 .tips {
    margin-top: 0.5rem;
    text-align: center;
    color: #333;
    font-size: var(--fs14);
  }
  .turbomiceP6 .title {
    font-size: var(--fs20);
    line-height: 0.56rem;
    margin: 0 0 0.55rem;
    letter-spacing: 2px;
  }
  .turbomiceP6 .longDiv {
    overflow: auto;
  }
  .turbomiceP6 .tableDiv {
    width: 16rem;
  }
  .turbomiceP6 .tableDiv table td {
    height: 1.68rem;
    padding: 0 0.3rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .turbomiceP6 .tableDiv table td:nth-child(1) {
    padding: 0 0.6rem 0 0.3rem;
  }
  .turbomiceP6 .tableDiv table td:nth-child(2) {
    padding: 0 0.2rem;
  }
}
.newsP1 {
  background: #f6f7f8;
  padding: 1.75rem 0 1.5rem;
}
.newsP1 .indTxt {
  margin-bottom: 1.1rem;
}
.newsPic {
  position: relative;
  overflow: hidden;
}
.newsPic .imgList {
  overflow: hidden;
}
.newsPic .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.newsPic .mxfDiv {
  position: relative;
  padding: 0 0.65rem 0 8.1rem;
  height: 4.68rem;
  background: #fff;
  overflow: hidden;
}
.newsPic .imgDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 7.5rem;
  height: 4.68rem;
  overflow: hidden;
}
.newsPic .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.newsPic .time {
  padding: 0.42rem 0 0.1rem;
  font-size: var(--fs18);
  line-height: 0.18rem;
  color: #999;
  font-family: 'Poppins-L';
}
.newsPic .time em {
  display: block;
  color: #fd6f00;
  font-size: var(--fs48);
  line-height: 0.48rem;
  font-family: 'Din-B';
}
.newsPic .name {
  font-size: var(--fs30);
  color: #333;
  line-height: 0.48rem;
  height: 0.96rem;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsPic .content {
  margin-top: 0.16rem;
  font-size: var(--fs16);
  color: #666;
  line-height: 0.3rem;
  height: 0.9rem;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.newsPic .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.4rem;
  width: 1.6rem;
  height: 0.56rem;
  color: #fff;
  font-size: var(--fs16);
  border-radius: 0.48rem;
  background: #fd6f00;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsPic .more em {
  margin-left: 0.15rem;
  width: 16px;
  height: 12px;
  background: url(../img/ico1.png) no-repeat;
}
.newsPic .swiper-pagination {
  bottom: 0.75rem !important;
  left: auto!important;
  right: 0.65rem;
  margin-left: 0;
  text-align: left;
  width: auto!important;
}
.newsPic .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin-left: 0.2rem !important;
  background: #e1e1e1;
  opacity: 1;
}
.newsPic .swiper-pagination .swiper-pagination-bullet-active {
  background: #fd6f00;
}
.newsPic .swiper-slide:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.newsPic .swiper-slide:hover .name {
  color: #fd6f00;
}
.newsPic .swiper-slide:hover .more {
  background: #00aeef;
}
.newsP2 {
  border-top: #e8e8e8 solid 1px;
  padding-bottom: 1.45rem;
}
.newsP2 .pageNum,
.newsP2 .pageMore {
  margin-top: 1rem;
}
.newsP2 .list {
  position: relative;
}
.newsP2 .list:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e8e8e8;
}
.newsP2 .list li {
  float: left;
  width: 33.33%;
}
.newsP2 .list li .box {
  border-right: #e8e8e8 solid 1px;
  height: 6rem;
  position: relative;
}
.newsP2 .list li .box:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e8e8e8;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsP2 .list li a {
  display: block;
  width: 100%;
  height: 100%;
}
.newsP2 .list li .mxfDiv {
  padding: 0.7rem 0.6rem 0;
}
.newsP2 .list li .time {
  font-size: var(--fs18);
  line-height: 0.18rem;
  color: #999;
  font-family: 'Poppins-L';
}
.newsP2 .list li .name {
  margin-top: 0.2rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  height: 0.72rem;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #333;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsP2 .list li .content {
  margin-top: 0.18rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.9rem;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #666;
}
.newsP2 .list li .imgDiv {
  margin-top: 0.32rem;
  height: 2.43rem;
  overflow: hidden;
}
.newsP2 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.newsP2 .list li:hover .box:after {
  height: 2px;
  background: #fd6f00;
}
.newsP2 .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.newsP2 .list li:hover .name {
  color: #fd6f00;
}
@media (max-width: 1004px) {
  .newsP1 {
    padding: 0.95rem 0 1.1rem;
  }
  .newsP1 .indTxt {
    margin-bottom: 0.75rem;
  }
  .newsPic .mxfDiv {
    padding: 0 0 1.2rem 0;
    height: auto;
  }
  .newsPic .imgDiv {
    position: relative;
    width: auto;
    height: auto;
  }
  .newsPic .imgDiv img {
    height: auto;
  }
  .newsPic .time {
    padding: 0.5rem 0.4rem 0.3rem;
    font-size: var(--fs14);
    line-height: 0.28rem;
  }
  .newsPic .time em {
    font-size: var(--fs28);
    line-height: 0.6rem;
  }
  .newsPic .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
    height: 0.96rem;
    padding: 0 0.4rem;
  }
  .newsPic .content {
    display: none;
  }
  .newsPic .more {
    margin: 0.6rem 0.4rem 0;
    width: 2.2rem;
    height: 0.86rem;
    font-size: var(--fs13);
  }
  .newsPic .more em {
    width: 10px;
    height: 8px;
    background-size: 10px;
  }
  .newsPic .swiper-pagination {
    bottom: 0.5rem !important;
    left: auto!important;
    right: 0.4rem;
  }
  .newsP2 {
    padding-bottom: 1.1rem;
  }
  .newsP2 .pageNum,
  .newsP2 .pageMore {
    margin-top: 1rem;
  }
  .newsP2 .list:before {
    display: none;
  }
  .newsP2 .list li {
    float: none;
    width: 100%;
  }
  .newsP2 .list li .box {
    border-right: none;
    height: 4rem;
  }
  .newsP2 .list li .mxfDiv {
    padding: 0.5rem 0 0;
  }
  .newsP2 .list li .time {
    font-size: var(--fs14);
    line-height: 0.28rem;
  }
  .newsP2 .list li .name {
    margin-top: 0.3rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .newsP2 .list li .content {
    font-size: var(--fs13);
    line-height: 0.48rem;
    height: 1.44rem;
  }
  .newsP2 .list li .imgDiv {
    display: none;
  }
}
.newsTop {
  padding: 0.85rem 0 0.6rem;
  border-bottom: #fd6f00 solid 1px;
}
.newsTop .name {
  width: 10.8rem;
  margin: 0 auto;
  text-align: center;
  color: #333;
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.6rem;
  padding-bottom: 0.4rem;
}
.newsTop .time {
  text-align: center;
  color: #333;
  font-size: var(--fs18);
  font-family: 'Poppins-L';
}
.newsTop .time img {
  margin-right: 15px;
  position: relative;
  top: -3px;
}
.newsBot {
  background: #f8f8f8;
  padding-bottom: 1.8rem;
}
.newsBot .leftDiv {
  width: 11.96rem;
}
.newsBot .conDiv {
  background: #fff;
  padding: 0.8rem 1.36rem 0.56rem;
}
.newsBot .content {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.32rem;
  text-align: justify;
}
.newsBot .imgDiv {
  text-align: center;
}
.newsBot .imgDiv img {
  max-width: 100%;
}
.newsBot .backBtn {
  margin: 1rem auto 0;
  width: 1.8rem;
}
.newsBot .backBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 0.56rem;
  border: #d2d2d2 solid 1px;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #333;
}
.newsBot .backBtn em {
  margin-left: 0.15rem;
  width: 15px;
  height: 13px;
  background: url(../img/ico1on.png) no-repeat;
}
.newsBot .backBtn a:hover {
  border: #fd6f00 solid 1px;
  background: #fd6f00;
  color: #fff;
}
.newsBot .backBtn a:hover em {
  background: url(../img/ico1.png) no-repeat;
}
.pageDown {
  margin-top: 0.95rem;
}
.pageDown ul {
  margin-right: -0.56rem;
}
.pageDown li {
  float: left;
  width: 50%;
  font-size: var(--fs16);
}
.pageDown li .box {
  margin-right: 0.56rem;
  height: 0.8rem;
  background: #fff;
  position: relative;
  padding-left: 1.2rem;
  padding-right: 0.85rem;
}
.pageDown li .box:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #fd6f00;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.pageDown li em {
  position: absolute;
  left: 0.25rem;
  top: 50%;
  margin-top: -0.15rem;
  line-height: 0.3rem;
  color: #333;
}
.pageDown li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 0.8rem;
  line-height: 0.24rem;
  overflow: hidden;
  color: #333;
}
.pageDown li .box:hover {
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
}
.pageDown li .box:hover:after {
  width: 100%;
}
.pageDown li .box:hover a {
  color: #fd6f00;
}
.sideNews {
  width: 3.4rem;
  padding: 0.45rem 0.5rem 0;
}
.sideNews .title {
  font-size: var(--fs18);
  line-height: 0.18rem;
  font-weight: bold;
  margin: 0 0 0.16rem;
  color: #fd6f00;
}
.sideNews .list li {
  padding-bottom: 0.45rem;
}
.sideNews .list li .imgDiv img {
  width: 100%;
}
.sideNews .list li .name {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.3rem;
  margin-top: 0.12rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.sideNews .list li:hover .name {
  color: #fd6f00;
}
.sideNews .moreBtn {
  margin-top: 0.18rem;
}
.sideNews .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 1.68rem;
  height: 0.5rem;
  background: #fd6f00;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #fff;
}
.sideNews .moreBtn em {
  margin-left: 0.2rem;
  width: 16px;
  height: 12px;
  background: url(../img/ico1.png) no-repeat;
}
@media (max-width: 1600px) {
  .newsBot .leftDiv {
    width: 12.28rem;
  }
  .sideNews {
    width: 3.72rem;
  }
}
@media (max-width: 1004px) {
  .newsTop .name {
    width: auto;
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .newsTop .time {
    font-size: var(--fs13);
  }
  .newsTop .time img {
    margin-right: 0.2rem;
    width: 0.3rem;
    top: -1px;
  }
  .newsBot {
    padding-bottom: 1rem;
  }
  .newsBot .leftDiv {
    width: auto;
    float: none;
  }
  .newsBot .conDiv {
    padding: 0.75rem 0.3rem 0.8rem;
  }
  .newsBot .content {
    font-size: var(--fs13);
    line-height: 0.52rem;
  }
  .newsBot .backBtn {
    margin: 0.7rem auto 0;
    width: 2.4rem;
  }
  .newsBot .backBtn a {
    height: 0.86rem;
    font-size: var(--fs13);
  }
  .newsBot .backBtn em {
    margin-left: 0.15rem;
    width: 10px;
    height: 9px;
    background-size: 10px;
  }
  .newsBot .backBtn a:hover em {
    background-size: 10px;
  }
  .pageDown {
    margin-top: 0.65rem;
  }
  .pageDown ul {
    margin-right: 0;
  }
  .pageDown li {
    float: none;
    width: auto;
    font-size: var(--fs13);
    margin-bottom: 0.25rem;
  }
  .pageDown li .box {
    margin-right: 0;
    height: 1.4rem;
    padding-left: 1.35rem;
    padding-right: 0.35rem;
  }
  .pageDown li em {
    margin-top: -0.2rem;
    line-height: 0.4rem;
  }
  .pageDown li a {
    height: 1.4rem;
    line-height: 0.42rem;
  }
  .sideNews {
    display: none;
  }
}
.job {
  padding: 1.75rem 0 1.6rem;
  background: url(../img/jobBg.jpg) center top no-repeat;
  background-size: 100%;
}
.job .list {
  padding: 1.05rem 0 0.8rem;
}
.job .list li {
  margin-bottom: 0.2rem;
  cursor: pointer;
}
.job .list li .topDiv {
  padding: 0.4rem 0.5rem;
  background: #fff;
  position: relative;
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
}
.job .list li .topDiv:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: #fd6f00;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.job .list li .line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25px;
  background: #fff;
  display: none;
  z-index: 1;
}
.job .list li .name {
  padding-left: 0.45rem;
  position: relative;
}
.job .list li .name:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 29px;
  background: url(../img/nimg24_1.png) center no-repeat;
}
.job .list li .name em {
  display: block;
  position: relative;
  height: 0.5rem;
  font-size: var(--fs22);
  line-height: 0.22rem;
  color: #2a2a2a;
}
.job .list li .name em:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 3px;
  background: #2a2a2a;
}
.job .list li .msgList {
  padding-bottom: 0.35rem;
  overflow: hidden;
}
.job .list li .msgList dd {
  float: left;
  padding-right: 0.55rem;
  line-height: 0.3rem;
  font-size: var(--fs16);
  color: #666;
}
.job .list li .hideBox {
  display: none;
  background: #fff;
  padding: 0.1rem 0.95rem 1.1rem;
  position: relative;
  color: #666;
  box-shadow: 0px 0px 0.3rem 0px rgba(0, 0, 0, 0.1);
}
.job .list li .ico {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.3rem;
  border-radius: 50%;
  background: #fd6f00;
  border: transparent solid 3px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.job .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -1px;
  width: 12px;
  height: 2px;
  background: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.job .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -6px;
  width: 2px;
  height: 12px;
  background: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.job .list li .txt {
  font-size: var(--fs16);
  line-height: 0.32rem;
}
.job .list li .msg {
  font-size: var(--fs16);
  line-height: 0.32rem;
  padding-bottom: 0.4rem;
}
.job .list li .beforeDiv {
  font-size: var(--fs16);
  line-height: 0.32rem;
  padding: 0.25rem 0 0 0.45rem;
}
.job .list li .btnGroup a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2rem;
  height: 0.6rem;
  border-radius: 0.12rem;
  background: #fd6f00;
  text-align: center;
  color: #fff;
  font-size: var(--fs18);
}
.job .list li .btnGroup a em {
  margin-left: 0.2rem;
  width: 24px;
  height: 15px;
  background: url(../img/ico2.png) no-repeat;
}
.job .list li .btnGroup a:hover {
  background: #00a1ed;
}
.job .list li .liNow:before {
  width: 100%;
}
.job .list li .liNow .line {
  display: block;
}
.job .list li .liNow .beforeDiv {
  display: none;
}
.job .list li .liNow .ico {
  background: #fff;
  border: #fd6f00 solid 3px;
}
.job .list li .liNow .ico:before {
  background: #fd6f00;
}
.job .list li .liNow .ico:after {
  background: #fd6f00;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
@media (max-width: 1004px) {
  .job {
    padding: 1rem 0 1.4rem;
  }
  .job .list {
    padding: 0.7rem 0 0.6rem;
  }
  .job .list li .topDiv {
    padding: 0.5rem 0.36rem;
  }
  .job .list li .line {
    height: 15px;
  }
  .job .list li .name {
    padding-left: 0.54rem;
    padding-right: 0.7rem;
  }
  .job .list li .name:before {
    width: 0.36rem;
    height: 0.44rem;
    background-size: 0.36rem;
  }
  .job .list li .name em {
    height: auto;
    padding-bottom: 0.25rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .job .list li .name em:after {
    width: 0.3rem;
    height: 2px;
  }
  .job .list li .msgList {
    padding-bottom: 0.3rem;
  }
  .job .list li .msgList dd {
    padding-right: 0.5rem;
    line-height: 0.46rem;
    font-size: var(--fs13);
  }
  .job .list li .hideBox {
    padding: 0.1rem 0.4rem 0.9rem;
  }
  .job .list li .ico {
    right: 0.4rem;
    width: 0.7rem;
    height: 0.7rem;
    margin-top: -0.35rem;
  }
  .job .list li .txt {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .job .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .job .list li .beforeDiv {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0.25rem 0.8rem 0 0.54rem;
  }
  .job .list li .btnGroup a {
    width: 2.4rem;
    height: 0.8rem;
    border-radius: 0.2rem;
    font-size: var(--fs14);
  }
  .job .list li .btnGroup a em {
    width: 18px;
    height: 11px;
    background-size: 18px;
  }
  .job .list li .liNow .ico {
    border: #fd6f00 solid 2px;
  }
}
.question {
  padding: 1.05rem 0 1.6rem;
}
.question .list {
  padding: 1.1rem 0 0.8rem;
}
.question .list li {
  position: relative;
  padding-bottom: 10px;
}
.question .list li .msgDiv {
  padding: 0 0.5rem 0 0.3rem;
  height: 0.8rem;
  position: relative;
  background: #f6f7f9;
  cursor: pointer;
}
.question .list li .ico {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  width: 35px;
  height: 35px;
  margin-top: -17px;
  border-radius: 50%;
  box-sizing: border-box;
  background: #fff;
  border: #eee solid 1px;
}
.question .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -1px;
  width: 12px;
  height: 2px;
  background: #fd6f00;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.question .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -6px;
  width: 2px;
  height: 12px;
  background: #fd6f00;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.question .list li .name {
  position: relative;
  color: #333;
  height: 0.8rem;
  line-height: 0.8rem;
  padding-left: 0.5rem;
  padding-right: 1rem;
  overflow: hidden;
  font-size: var(--fs18);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.question .list li .wen {
  position: absolute;
  color: #fff;
  font-size: var(--fs16);
  display: block;
  text-transform: uppercase;
  left: 0;
  top: 50%;
  margin-top: -12px;
  width: 26px;
  height: 26px;
  line-height: 25px;
  text-align: center;
  background: #666;
  border-radius: 50%;
  font-family: 'Mont-R';
}
.question .list li .box {
  display: none;
}
.question .list li .msgDiv.aNow .name {
  color: #fd6f00;
}
.question .list li .msgDiv.aNow .ico {
  background: #fd6f00;
  border: #fd6f00 solid 1px;
}
.question .list li .msgDiv.aNow .ico:before {
  background: #fff;
}
.question .list li .msgDiv.aNow .ico:after {
  background: #fff;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.question .list li .mxfDiv {
  position: relative;
  padding: 0.3rem 2.2rem 0.65rem 0.8rem;
}
.question .list li .zi {
  position: absolute;
  background: #fd6f00;
  text-transform: uppercase;
  left: 0.3rem;
  top: 0.38rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: var(--fs16);
  color: #fff;
  font-family: 'Mont-R';
}
.question .list li .content {
  color: #333;
  line-height: 0.36rem;
  font-size: var(--fs18);
  text-align: justify;
}
.question .list2 {
  padding: 0;
}
@media (max-width: 1004px) {
  .question {
    padding: 1rem 0;
  }
  .question .list {
    padding: 0.75rem 0 0.6rem;
  }
  .question .list li {
    padding-bottom: 0.25rem;
  }
  .question .list li .msgDiv {
    padding: 0.25rem 0.5rem 0.25rem 0.3rem;
    height: auto;
  }
  .question .list li .ico {
    right: 0.4rem;
    width: 0.7rem;
    height: 0.7rem;
    margin-top: -0.35rem;
  }
  .question .list li .ico:before {
    margin-left: -5px;
    width: 10px;
    height: 1px;
  }
  .question .list li .ico:after {
    margin-top: -5px;
    width: 1px;
    height: 10px;
  }
  .question .list li .name {
    height: auto;
    line-height: 0.6rem;
    padding-left: 0.8rem;
    padding-right: 1rem;
    font-size: var(--fs14);
  }
  .question .list li .wen {
    margin-top: -0.3rem;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs13);
  }
  .question .list li .mxfDiv {
    padding: 0.5rem 0.3rem 0.5rem 1.1rem;
  }
  .question .list li .zi {
    left: 0.3rem;
    top: 0.45rem;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs13);
  }
  .question .list li .content {
    line-height: 0.48rem;
    font-size: var(--fs13);
  }
  .question .list2 {
    padding: 0;
  }
}
.report {
  padding: 1.5rem 0 1.36rem;
  background: url(../img/reportBg.jpg) center no-repeat;
  background-size: cover;
}
.report .list ul {
  margin-right: -1rem;
}
.report .list li {
  float: left;
  width: 33.33%;
}
.report .list li .box {
  margin-right: 1rem;
}
.report .list li .imgDiv {
  overflow: hidden;
}
.report .list li .imgDiv img {
  width: 100%;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.report .list li .name {
  margin-top: 0.15rem;
  height: 0.48rem;
  line-height: 0.48rem;
  overflow: hidden;
  text-align: center;
  color: #fff;
  font-size: var(--fs24);
}
.report .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
@media (max-width: 1004px) {
  .report {
    padding: 1rem 0 0.8rem;
  }
  .report .list ul {
    margin-right: 0;
  }
  .report .list li {
    float: none;
    width: auto;
    margin-bottom: 0.4rem;
  }
  .report .list li .box {
    margin-right: 0;
  }
  .report .list li .name {
    margin-top: 0.25rem;
    font-size: var(--fs14);
  }
}
.document {
  padding: 1.75rem 0;
}
.document .list {
  padding: 0.4rem 0 1rem;
}
.document .list li a {
  display: block;
  height: 4.4rem;
  position: relative;
  padding: 0.85rem 0 0 5.4rem;
}
.document .list li a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ebebeb;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.document .list li .imgDiv {
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 4.72rem;
  height: 3rem;
  overflow: hidden;
}
.document .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.document .list li .time {
  font-size: var(--fs18);
  line-height: 0.32rem;
  color: #999;
  font-family: 'Poppins-L';
}
.document .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.25rem;
  height: 0.4rem;
  line-height: 0.4rem;
  color: #333;
  font-size: var(--fs26);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.document .list li .content {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.document .list li .ico {
  margin-top: 0.5rem;
  width: 0.54rem;
  height: 0.54rem;
  background: #fd6f00 url(../img/ico4.png) center no-repeat;
  border-radius: 50%;
}
.document .list li a:hover:after {
  height: 2px;
  background: #fd6f00;
}
.document .list li a:hover .name {
  color: #fd6f00;
}
@media (max-width: 1004px) {
  .document {
    padding: 1rem 0;
  }
  .document .list {
    padding: 0.4rem 0 0.8rem;
  }
  .document .list li a {
    height: 2rem;
    padding: 0.2rem 0 0 2.4rem;
  }
  .document .list li .imgDiv {
    top: 0.35rem;
    width: 2.12rem;
    height: 1.35rem;
  }
  .document .list li .time {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .document .list li .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 0.1rem;
    white-space: normal;
    height: 0.96rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .document .list li .content {
    display: none;
  }
  .document .list li .ico {
    display: none;
  }
}
.serviceP1 {
  padding: 1.75rem 0 1.4rem;
}
.serviceP1 .name {
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #333;
  margin: 0.8rem 0 0.4rem;
  text-align: center;
  font-weight: bold;
}
.serviceP1 .content {
  font-size: var(--fs18);
  line-height: 0.3rem;
  text-align: center;
}
.serviceP1 .content2 {
  text-align: left;
}
.serviceP2 {
  padding-top: 1.2rem;
  height: 5.8rem;
  background: url(../img/serviceP2.jpg) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.serviceP2 .title {
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #fff;
  margin: 0 0 0.5rem;
  text-align: center;
  font-weight: bold;
}
.serviceP2 .list {
  overflow: hidden;
}
.serviceP2 .list li .box {
  height: 2.5rem;
  cursor: pointer;
  background: #fff;
  border-radius: 0.24rem;
  padding: 0.65rem 0.2rem 0;
  text-align: center;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.serviceP2 .list li .num {
  color: #ff6600;
  font-size: var(--fs48);
  line-height: 0.48rem;
  font-family: 'Din-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.serviceP2 .list li .msg {
  font-size: var(--fs22);
  line-height: 0.3rem;
  color: #333;
  margin-top: 0.1rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.serviceP2 .list li .box:hover {
  background: #fd6f00;
}
.serviceP2 .list li .box:hover .num,
.serviceP2 .list li .box:hover .msg {
  color: #fff;
}
.serviceP2 .swiper-pagination {
  position: relative;
  left: 0;
  bottom: 0;
  padding-top: 0.45rem;
}
.serviceP2 .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.serviceP2 .swiper-pagination .swiper-pagination-bullet-active {
  background: #00a1ed;
}
.serviceP3 {
  padding: 1.5rem 0;
}
.serviceP3 .list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-bottom: 1.5rem;
  background: #f8f9fa;
}
.serviceP3 .list li:last-child {
  margin-bottom: 0;
}
.serviceP3 .list li .imgDiv {
  width: 50%;
  overflow: hidden;
}
.serviceP3 .list li .imgDiv img {
  width: 100%;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.serviceP3 .list li .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  width: 50%;
  padding: 0 1.15rem 0 0.95rem;
}
.serviceP3 .list li .name {
  margin: 0 0 0.3rem;
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #333;
  font-weight: bold;
}
.serviceP3 .list li .msg {
  font-size: var(--fs18);
  line-height: 0.3rem;
  text-align: justify;
}
.serviceP3 .list li:nth-child(odd) .imgDiv {
  order: 1;
}
.serviceP3 .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
@media (max-width: 1004px) {
  .serviceP1 {
    padding: 1rem 0 1.1rem;
  }
  .serviceP1 .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
    margin: 0.65rem 0 0.4rem;
  }
  .serviceP1 .content {
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .serviceP2 {
    padding: 1rem 0;
    height: auto;
  }
  .serviceP2 .title {
    font-size: var(--fs18);
    line-height: 0.48rem;
    margin: 0 0 0.65rem;
  }
  .serviceP2 .list li .box {
    height: 3rem;
    border-radius: 0.3rem;
    padding: 0.6rem 0.2rem 0;
  }
  .serviceP2 .list li .num {
    font-size: var(--fs40);
    line-height: 0.56rem;
  }
  .serviceP2 .list li .msg {
    font-size: var(--fs13);
    line-height: 0.52rem;
    margin-top: 0.3rem;
  }
  .serviceP3 {
    padding: 1rem 0;
  }
  .serviceP3 .list li {
    display: block;
    margin-bottom: 0.65rem;
  }
  .serviceP3 .list li .imgDiv {
    width: 100%;
  }
  .serviceP3 .list li .conDiv {
    display: block;
    width: auto;
    padding: 0.65rem 0.3rem;
  }
  .serviceP3 .list li .name {
    margin-bottom: 0.2rem;
    font-size: var(--fs18);
  }
  .serviceP3 .list li .msg {
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
}
.humanP1 {
  padding: 1.75rem 0 0.9rem;
}
.humanP1 .indTxt {
  margin-bottom: 1.1rem;
}
.humanP1 .leftDiv {
  width: 6.5rem;
}
.humanP1 .leftDiv .name {
  margin: 0 0 0.4rem;
  color: #333;
  font-size: var(--fs24);
  line-height: 0.24rem;
  font-weight: bold;
}
.humanP1 .leftDiv .content {
  font-size: var(--fs18);
  line-height: 0.3rem;
  text-align: justify;
}
.humanP1 .rightImg {
  width: 8.1rem;
  padding-top: 0.2rem;
}
.humanP1 .rightImg img {
  width: 100%;
}
.humanP2 {
  padding-top: 1.2rem;
  height: 7.55rem;
  background: url(../img/humanP2.jpg) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.humanP2 .title {
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #fff;
  margin: 0 0 0.7rem;
  text-align: center;
  font-weight: bold;
}
.humanP2 .list {
  overflow: hidden;
}
.humanP2 .list li .box {
  cursor: pointer;
  height: 3.5rem;
  background: #fff;
  border-radius: 0.24rem;
  padding: 0.5rem 0.3rem 0;
  text-align: center;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.humanP2 .list li .num {
  color: #ff6600;
  font-size: var(--fs48);
  line-height: 0.48rem;
  font-family: 'Din-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.humanP2 .list li .msg {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
  margin-top: 0.2rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.humanP2 .list li .box:hover {
  background: #fd6f00;
}
.humanP2 .list li .box:hover .num,
.humanP2 .list li .box:hover .msg {
  color: #fff;
}
.humanP2 .swiper-pagination {
  position: relative;
  left: 0;
  bottom: 0;
  padding-top: 0.45rem;
}
.humanP2 .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.humanP2 .swiper-pagination .swiper-pagination-bullet-active {
  background: #fd6f00;
}
.humanP3 {
  padding: 1.05rem 0 0.3rem;
}
.humanP3 .wal {
  width: 13.4rem;
  margin: 0 auto;
}
.humanP3 .list ul {
  margin-right: -2.5rem;
}
.humanP3 .list li {
  float: left;
  width: 50%;
  margin-bottom: 1.1rem;
}
.humanP3 .list li .imgDiv {
  margin-right: 2.5rem;
}
.humanP3 .list li .imgDiv img {
  width: 100%;
}
.humanP4 {
  padding-top: 1.5rem;
  height: 9rem;
  background: url(../img/humanP4.jpg) center no-repeat;
  background-size: cover;
}
.humanP4 .wal {
  width: 13.2rem;
  margin: 0 auto;
}
.humanP4 .title {
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #fff;
  margin: 0 0 0.85rem;
  text-align: center;
  font-weight: bold;
}
.humanP4 .toptop {
  position: relative;
  padding-left: 2.78rem;
}
.humanP4 .toptop .leftDiv {
  position: absolute;
  left: 0;
  top: 0;
}
.humanP4 .toptop .leftDiv .msg {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.8rem;
  line-height: 0.28rem;
  font-size: var(--fs22);
  color: #fff;
}
.humanP4 .toptop .leftDiv .wen {
  height: 0.5rem;
  line-height: 0.5rem;
  font-size: var(--fs22);
  color: #fff;
}
.humanP4 .toptop .rightDiv ul {
  margin-right: -10px;
}
.humanP4 .toptop .rightDiv li {
  float: left;
  width: 20%;
}
.humanP4 .toptop .rightDiv li .lbox {
  margin-right: 10px;
  height: 1.3rem;
  border-radius: 0.48rem;
  background: #fff;
  overflow: hidden;
}
.humanP4 .toptop .rightDiv li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
  height: 0.8rem;
  font-weight: bold;
  padding: 0 0.2rem;
  font-size: var(--fs22);
  color: #fd6f00;
}
.humanP4 .toptop .rightDiv li .zi {
  height: 0.5rem;
  text-align: center;
  line-height: 0.5rem;
  background: #fd6f00;
  font-size: var(--fs20);
  color: #fff;
}
.humanP4 .botbot {
  margin-top: 0.55rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.humanP4 .botbot .leftCon {
  width: 5.5rem;
  color: #fff;
  font-size: var(--fs22);
}
.humanP4 .botbot .rightImg {
  padding-right: 2.3rem;
}
.humanP4 .botbot .rightImg img {
  width: 3.95rem;
}
.humanP5 {
  padding: 1.5rem 0;
}
.humanP5 .title {
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #fff;
  margin: 0 0 0.85rem;
  text-align: center;
  font-weight: bold;
}
.humanP5 .list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-bottom: 0.8rem;
  background: #fd6f00;
  border: #fd6f00 solid 1px;
}
.humanP5 .list li:last-child {
  margin-bottom: 0;
}
.humanP5 .list li .imgDiv {
  width: 50%;
  overflow: hidden;
}
.humanP5 .list li .imgDiv img {
  width: 100%;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.humanP5 .list li .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  width: 50%;
  padding: 0 0.85rem 0 0.8rem;
}
.humanP5 .list li .msg {
  font-size: var(--fs18);
  color: #fff;
  line-height: 0.3rem;
  text-align: justify;
}
.humanP5 .list li:nth-child(even) .imgDiv {
  order: 1;
}
.humanP5 .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.humanP6 {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 6rem;
  background: url(../img/humanP6.jpg) center no-repeat;
  background-size: cover;
}
.humanP6 .title {
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #fff;
  margin: 0 0 0.45rem;
  font-weight: bold;
}
.humanP6 .content {
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #fff;
  width: 8rem;
}
@media (max-width: 1600px) {
  .humanP1 .leftDiv {
    width: 6.84rem;
  }
}
@media (max-width: 1004px) {
  .humanP1 {
    padding: 1rem 0 0.9rem;
  }
  .humanP1 .indTxt {
    margin-bottom: 0.75rem;
  }
  .humanP1 .leftDiv {
    width: auto;
    float: none;
  }
  .humanP1 .leftDiv .name {
    margin: 0 0 0.3rem;
    font-size: var(--fs16);
    line-height: 0.42rem;
  }
  .humanP1 .leftDiv .content {
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .humanP1 .rightImg {
    width: auto;
    float: none;
    padding-top: 0.8rem;
  }
  .humanP2 {
    padding: 1rem 0;
    height: auto;
  }
  .humanP2 .title {
    font-size: var(--fs18);
    line-height: 0.48rem;
    margin: 0 0 0.65rem;
  }
  .humanP2 .list li .box {
    height: 4.2rem;
    border-radius: 0.3rem;
    padding: 0.75rem 0.3rem 0;
  }
  .humanP2 .list li .num {
    font-size: var(--fs40);
    line-height: 0.56rem;
  }
  .humanP2 .list li .msg {
    font-size: var(--fs13);
    line-height: 0.52rem;
    margin-top: 0.3rem;
  }
  .humanP3 {
    padding: 0.9rem 0.3rem 0.3rem;
  }
  .humanP3 .wal {
    width: 100%;
  }
  .humanP3 .list ul {
    margin-right: 0;
  }
  .humanP3 .list li {
    float: none;
    width: auto;
    margin-bottom: 0.65rem;
  }
  .humanP3 .list li .imgDiv {
    margin-right: 0;
  }
  .humanP4 {
    padding: 1rem 0.3rem;
    height: auto;
  }
  .humanP4 .wal {
    width: 100%;
  }
  .humanP4 .title {
    font-size: var(--fs18);
    line-height: 0.48rem;
    margin: 0 0 0.65rem;
  }
  .humanP4 .longDiv {
    overflow: auto;
    padding-bottom: 0.1rem;
  }
  .humanP4 .toptop {
    padding-left: 3.28rem;
    width: 14rem;
  }
  .humanP4 .toptop:before {
    top: 1rem;
  }
  .humanP4 .toptop .leftDiv .msg {
    height: 1rem;
    line-height: 0.36rem;
    font-size: var(--fs15);
  }
  .humanP4 .toptop .leftDiv .wen {
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs13);
  }
  .humanP4 .toptop .rightDiv ul {
    margin-right: -0.2rem;
  }
  .humanP4 .toptop .rightDiv li .lbox {
    margin-right: 0.2rem;
    height: 1.6rem;
  }
  .humanP4 .toptop .rightDiv li .name {
    height: 1rem;
    padding: 0 0.2rem;
    font-size: var(--fs14);
  }
  .humanP4 .toptop .rightDiv li .zi {
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs13);
  }
  .humanP4 .botbot {
    margin-top: 0.75rem;
    display: block;
  }
  .humanP4 .botbot .leftCon {
    width: auto;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .humanP4 .botbot .rightImg {
    text-align: center;
    margin-top: 0.7rem;
    padding-right: 0;
  }
  .humanP4 .tips {
    margin-top: 0.5rem;
    text-align: center;
    color: #fff;
    font-size: var(--fs14);
  }
  .humanP5 {
    padding: 1rem 0;
  }
  .humanP5 .title {
    font-size: var(--fs18);
    line-height: 0.48rem;
    margin: 0 0 0.7rem;
  }
  .humanP5 .list li {
    display: block;
    margin-bottom: 0.6rem;
  }
  .humanP5 .list li .imgDiv {
    width: auto;
  }
  .humanP5 .list li .conDiv {
    display: block;
    width: auto;
    padding: 0.6rem 0.4rem;
  }
  .humanP5 .list li .msg {
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .humanP6 {
    height: 10rem;
  }
  .humanP6 .title {
    font-size: var(--fs20);
    line-height: 0.48rem;
    margin: 0 0 0.65rem;
  }
  .humanP6 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    width: 100%;
  }
}
.cellP2 {
  padding-top: 1.5rem;
  height: 8.87rem;
  background: url(../img/cellP2.jpg) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.cellP2 .title {
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #fff;
  margin: 0 0 0.5rem;
  text-align: center;
  font-weight: bold;
}
.cellP2 .list {
  overflow: hidden;
}
.cellP2 .list li .box {
  height: 5rem;
  cursor: pointer;
  background: #fff;
  border-radius: 0.24rem;
  padding: 0.55rem 0.4rem 0;
  text-align: center;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.cellP2 .list li .num {
  color: #ff6600;
  font-size: var(--fs48);
  line-height: 0.48rem;
  font-family: 'Din-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.cellP2 .list li .name {
  font-size: var(--fs22);
  line-height: 0.3rem;
  color: #333;
  font-weight: bold;
  margin-top: 0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.cellP2 .list li .msg {
  font-size: var(--fs17);
  line-height: 0.3rem;
  color: #666;
  margin-top: 0.2rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.cellP2 .list li .box:hover {
  background: #fd6f00;
}
.cellP2 .list li .box:hover .num,
.cellP2 .list li .box:hover .name,
.cellP2 .list li .box:hover .msg {
  color: #fff;
}
.cellP2 .swiper-pagination {
  position: relative;
  left: 0;
  bottom: 0;
  padding-top: 0.45rem;
}
.cellP2 .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.cellP2 .swiper-pagination .swiper-pagination-bullet-active {
  background: #00a1ed;
}
.cellP3 {
  padding: 1.5rem 0;
}
.cellP3 .title {
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #333;
  margin: 0 0 0.4rem;
  text-align: center;
  font-weight: bold;
}
.cellP3 .content {
  width: 10rem;
  margin: 0 auto;
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.cellP3 .imgDiv {
  text-align: center;
  padding-top: 0.4rem;
}
.cellP3 .imgDiv img {
  max-width: 14rem;
}
.cellP4 {
  padding-top: 1.5rem;
  height: 9.5rem;
  background: url(../img/cellP4.jpg) center no-repeat;
  background-size: cover;
}
.cellP4 .title {
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #fff;
  margin: 0 0 0.5rem;
  text-align: center;
  font-weight: bold;
}
.cellP4 .tableDiv table {
  border-top: #e7e7e7 solid 1px;
  border-left: #e7e7e7 solid 1px;
}
.cellP4 .tableDiv table th {
  border-bottom: #e7e7e7 solid 1px;
  border-right: #d66b0e solid 1px;
  background: #ee7710;
  color: #fff;
  font-size: var(--fs16);
  font-family: 'Mont-R';
  font-weight: 400;
  height: 0.78rem;
}
.cellP4 .tableDiv table td {
  border-bottom: #e7e7e7 solid 1px;
  border-right: #e7e7e7 solid 1px;
  background: #fff;
  height: 0.8rem;
  color: #333;
  text-align: center;
  padding: 0 0.2rem;
  font-size: var(--fs16);
  line-height: 0.2rem;
  font-family: 'Mont-R';
}
.cellP4 .tableDiv table td:nth-child(1) {
  width: 0.98rem;
}
.cellP4 .tableDiv table td:nth-child(2) {
  width: 1.54rem;
}
.cellP4 .tableDiv table td:nth-child(3) {
  width: 1.54rem;
}
.cellP4 .tableDiv table td:nth-child(4) {
  width: 3.2rem;
}
.cellP4 .tableDiv table td:nth-child(5) {
  width: 1.54rem;
}
.cellP4 .tableDiv table td:nth-child(6) {
  width: 1.54rem;
}
.cellP4 .tableDiv table td:nth-child(7) {
  width: 1.54rem;
}
.cellP4 .tableDiv table tr:nth-child(odd) td {
  background: #fafafa;
}
.cellP5 {
  padding: 1.5rem 0 1.4rem;
}
.cellP5 .title {
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #333;
  margin: 0 0 0.6rem;
  text-align: center;
  font-weight: bold;
}
.cellP5 .imgList ul {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cellP5 .imgList li {
  margin: 0 0.45rem;
}
@media (max-width: 1004px) {
  .cellP2 {
    padding: 1rem 0;
    height: auto;
  }
  .cellP2 .title {
    font-size: var(--fs20);
    line-height: 0.48rem;
    margin: 0 0 0.65rem;
  }
  .cellP2 .list li .box {
    height: 6.4rem;
    border-radius: 0.3rem;
    padding: 0.6rem 0.3rem 0;
  }
  .cellP2 .list li .num {
    font-size: var(--fs40);
    line-height: 0.56rem;
  }
  .cellP2 .list li .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
    margin-top: 0.25rem;
  }
  .cellP2 .list li .msg {
    font-size: var(--fs13);
    line-height: 0.52rem;
  }
  .cellP3 {
    padding: 1rem 0;
  }
  .cellP3 .title {
    font-size: var(--fs20);
    line-height: 0.48rem;
    margin: 0 0 0.6rem;
  }
  .cellP3 .content {
    width: auto;
    text-align: left;
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .cellP3 .imgDiv {
    padding-top: 0.6rem;
  }
  .cellP3 .imgDiv img {
    width: 100%;
  }
  .cellP4 {
    padding: 1rem 0;
    height: auto;
  }
  .cellP4 .title {
    font-size: var(--fs20);
    line-height: 0.48rem;
    margin: 0 0 0.65rem;
  }
  .cellP4 .longDiv {
    overflow: auto;
  }
  .cellP4 .tableDiv {
    width: 20rem;
  }
  .cellP4 .tableDiv table th {
    font-size: var(--fs14);
    height: 0.98rem;
  }
  .cellP4 .tableDiv table td {
    height: 1rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .cellP4 .tableDiv table td:nth-child(1) {
    width: 1.58rem;
  }
  .cellP4 .tableDiv table td:nth-child(2) {
    width: 2.04rem;
  }
  .cellP4 .tableDiv table td:nth-child(3) {
    width: 2.04rem;
  }
  .cellP4 .tableDiv table td:nth-child(4) {
    width: 4.2rem;
  }
  .cellP4 .tableDiv table td:nth-child(5) {
    width: 2.04rem;
  }
  .cellP4 .tableDiv table td:nth-child(6) {
    width: 2.54rem;
  }
  .cellP4 .tableDiv table td:nth-child(7) {
    width: 2.04rem;
  }
  .cellP4 .tips {
    margin-top: 0.5rem;
    text-align: center;
    color: #fff;
    font-size: var(--fs14);
  }
  .cellP5 {
    padding: 1rem 0;
  }
  .cellP5 .title {
    font-size: var(--fs20);
    line-height: 0.48rem;
    margin: 0 0 0.65rem;
  }
  .cellP5 .imgList ul {
    display: block;
  }
  .cellP5 .imgList li {
    margin: 0 0 0.3rem;
  }
  .cellP5 .imgList li .imgDiv img {
    width: 100%;
  }
}
.aboutP1 {
  padding: 1.2rem 0 0.9rem;
}
.aboutP1 .name {
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #333;
  text-align: center;
  font-weight: bold;
  margin: 1rem 0 0.5rem;
}
.aboutP1 .content {
  width: 12rem;
  margin: 0 auto;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: center;
}
.aboutImg {
  height: 4.7rem;
  background: center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.aboutP2 {
  padding: 1.55rem 0;
}
.aboutP2 .pjDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 1.5rem;
}
.aboutP2 .pjDiv .leftImg {
  width: 7rem;
}
.aboutP2 .pjDiv .leftImg img {
  width: 100%;
}
.aboutP2 .pjDiv .rightCon {
  width: 7.3rem;
}
.aboutP2 .pjDiv .rightCon .name {
  font-size: var(--fs60);
  line-height: 0.6rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.aboutP2 .pjDiv .rightCon .zi {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #333;
}
.aboutP2 .pjDiv .rightCon .content {
  margin-top: 1rem;
  font-size: var(--fs16);
  line-height: 0.36rem;
}
.aboutP3 {
  padding-top: 1.2rem;
  height: 8.46rem;
  background: url(../img/aboutP3.jpg) center no-repeat;
  background-size: cover;
}
.aboutP3 .secondTab {
  padding-top: 0.75rem;
  text-align: center;
}
.aboutP3 .secondTab li {
  display: inline-block;
  margin: 0 0.5rem;
  cursor: pointer;
}
.aboutP3 .secondTab li .ico {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 auto;
  border-radius: 50%;
  border: #e5e5e5 solid 1px;
  background: #fff;
}
.aboutP3 .secondTab li .ico img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.3rem;
  margin-left: -0.15rem;
  margin-top: -0.15rem;
}
.aboutP3 .secondTab li .ico .img1 {
  opacity: 0;
}
.aboutP3 .secondTab li .name {
  margin-top: 0.15rem;
  font-size: var(--fs20);
  line-height: 0.2rem;
  color: #999;
}
.aboutP3 .secondTab .on .ico {
  border: #fd6f00 solid 1px;
  background: #fd6f00;
}
.aboutP3 .secondTab .on .ico img {
  opacity: 0;
}
.aboutP3 .secondTab .on .ico .img1 {
  opacity: 1;
}
.aboutP3 .secondTab .on .name {
  color: #333;
}
.honorPic {
  display: none;
  margin-top: 0.1rem;
  position: relative;
}
.honorPic .imgList {
  overflow: hidden;
}
.honorPic .box {
  cursor: pointer;
  position: relative;
  text-align: center;
}
.honorPic .mxfDiv {
  min-width: 2.9rem;
  height: 3.35rem;
  position: relative;
}
.honorPic .imgDiv {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.honorPic .imgDiv img {
  max-width: 2.9rem;
  max-height: 3.35rem;
}
.honorPic .name {
  width: 2.9rem;
  margin-top: 0.4rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  height: 0.48rem;
  overflow: hidden;
  text-align: center;
  color: #333;
}
.honorPic .arrowDiv .se {
  display: block;
  width: 0.54rem;
  height: 0.54rem;
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  top: 50%;
  margin-top: -0.27rem;
  border: #0162eb solid 2px;
}
.honorPic .arrowDiv .prev {
  left: 50%;
  margin-left: -8.68rem;
}
.honorPic .arrowDiv .prev:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 14px;
  margin-left: -4px;
  margin-top: -7px;
  background: url(../img/nimg8_left.png) no-repeat;
}
.honorPic .arrowDiv .next {
  right: 50%;
  margin-right: -8.68rem;
}
.honorPic .arrowDiv .next:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 14px;
  margin-left: -4px;
  margin-top: -7px;
  background: url(../img/nimg8_right.png) no-repeat;
}
.honorPic .arrowDiv .se:hover {
  border: none;
  background-image: linear-gradient(90deg, #3b7de3 0%, #26c0f2 100%);
  background-blend-mode: normal, normal;
}
.honorPic .arrowDiv .prev:hover:after {
  background: url(../img/nimg8_lefton.png) no-repeat;
}
.honorPic .arrowDiv .next:hover:after {
  background: url(../img/nimg8_righton.png) no-repeat;
}
@media (max-width: 1600px) {
  .aboutP2 .pjDiv .rightCon {
    width: 7.6rem;
  }
}
@media (max-width: 1004px) {
  .aboutP1 {
    padding: 1rem 0 0.9rem;
  }
  .aboutP1 .name {
    font-size: var(--fs20);
    line-height: 0.48rem;
    margin: 0.7rem 0 0.5rem;
  }
  .aboutP1 .content {
    width: auto;
    font-size: var(--fs13);
    line-height: 0.48rem;
    text-align: left;
  }
  .aboutImg {
    height: 2.4rem;
  }
  .aboutP2 {
    padding: 1rem 0;
  }
  .aboutP2 .pjDiv {
    display: block;
    margin-top: 0.8rem;
  }
  .aboutP2 .pjDiv .leftImg {
    width: 75%;
    margin: 0 auto;
  }
  .aboutP2 .pjDiv .rightCon {
    margin-top: 0.75rem;
    width: auto;
  }
  .aboutP2 .pjDiv .rightCon .name {
    font-size: var(--fs24);
  }
  .aboutP2 .pjDiv .rightCon .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .aboutP2 .pjDiv .rightCon .content {
    margin-top: 0.6rem;
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .aboutP3 {
    padding: 1rem 0;
    height: auto;
    background: #f5f6f9;
  }
  .aboutP3 .secondTab li {
    margin: 0 0.3rem;
  }
  .aboutP3 .secondTab li .ico {
    width: 0.86rem;
    height: 0.86rem;
  }
  .aboutP3 .secondTab li .ico img {
    width: 0.48rem;
    margin-left: -0.24rem;
    margin-top: -0.24rem;
  }
  .aboutP3 .secondTab li .name {
    margin-top: 0.25rem;
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .honorPic {
    margin-top: 0.3rem;
  }
  .honorPic .imgList {
    padding-bottom: 1.2rem;
  }
  .honorPic .name {
    width: auto;
    margin-top: 0.3rem;
    font-size: var(--fs13);
    line-height: 0.48rem;
    height: 1.44rem;
  }
  .honorPic .arrowDiv {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
  }
  .honorPic .arrowDiv .se {
    display: inline-block;
    width: 0.9rem;
    height: 0.9rem;
    position: relative;
    top: auto;
    margin-top: 0;
  }
  .honorPic .arrowDiv .prev {
    left: 0;
    margin: 0 5px;
  }
  .honorPic .arrowDiv .next {
    right: 0;
    margin: 0 5px;
  }
}
.proBanner {
  position: relative;
  padding-top: 1.85rem;
  height: 4.7rem;
  background: url(../img/nimg1920_7.jpg) center no-repeat;
  background-size: cover;
}
.proBanner .mxfDiv {
  width: 12.4rem;
  padding: 0.1rem 1.2rem 0;
  min-height: 1rem;
  position: relative;
  margin: 0 auto;
}
.proBanner .mxfDiv:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.09rem;
  height: 1rem;
  background: url(../img/nimg109Bg.png) no-repeat;
  background-size: 1.09rem;
}
.proBanner .mxfDiv:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.98rem;
  height: 1rem;
  background: url(../img/nimg98Bg.png) no-repeat;
  background-size: 0.98rem;
}
.proBanner .form {
  width: 100%;
  height: 0.8rem;
  border-radius: 0.48rem;
  position: relative;
  background: #fff;
  overflow: hidden;
}
.proBanner .form .input1 {
  width: 100%;
  height: 0.8rem;
  line-height: 0.8rem;
  padding-left: 0.5rem;
  color: #999;
  font-size: var(--fs16);
}
.proBanner .form .input1::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
}
.proBanner .form .input1:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
}
.proBanner .form .input1::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
}
.proBanner .form .input1:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
}
.proBanner .form .btn1 {
  position: absolute;
  right: 0.1rem;
  top: 0.1rem;
  width: 0.8rem;
  height: 0.6rem;
  background: #fd6f00 url(../img/nimg20_1.png) center no-repeat;
  border-radius: 0.48rem;
  z-index: 1;
  cursor: pointer;
}
.proBanner .keyword {
  position: absolute;
  left: 0;
  bottom: 0.56rem;
  z-index: 1;
  width: 100%;
  text-align: center;
  font-size: 0;
}
.proBanner .keyword em {
  padding-right: 0.15rem;
  font-size: var(--fs18);
  line-height: 0.5rem;
  color: #333;
}
.proBanner .keyword a {
  display: inline-block;
  min-width: 1.5rem;
  padding: 0 0.2rem;
  height: 0.5rem;
  line-height: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.48rem;
  font-size: var(--fs18);
  color: #fff;
  margin-right: 0.1rem;
}
.proBanner .keyword a:hover {
  background: #fd6f00;
}
.proBanner .pjDiv {
  margin-top: 0.3rem;
  height: 5rem;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding-left: 3rem;
}
.proBanner .leftDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 5rem;
  background: #fff;
  z-index: 2;
}
.proBanner .leftDiv li {
  font-size: var(--fs22);
}
.proBanner .leftDiv li a {
  display: block;
  height: 1rem;
  padding-left: 0.65rem;
  line-height: 1rem;
  color: #333;
}
.proBanner .leftDiv li a:hover {
  background: #fd6f00;
  color: #fff;
}
.proBanner .leftDiv li .aNow {
  background: #fd6f00;
  color: #fff;
}
.proBanner .halaDiv {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  left: 2.8rem;
  padding: 0.3rem;
  width: 2rem;
  height: 100%;
  top: 0;
  bottom: 0;
  background: #fff;
  z-index: 3;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proBanner .halaDiv:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #eee;
}
.proBanner .halaDiv li {
  margin-bottom: 0.15rem;
}
.proBanner .halaDiv li a {
  display: block;
  line-height: 0.32rem;
  background-size: var(--fs18);
  color: #333;
}
.proBanner .halaDiv li a:hover {
  color: #fd6f00;
}
.proBanner .halaDiv.on {
  opacity: 1;
  visibility: visible;
  left: 3rem;
}
.proBanner .rightDiv {
  height: 5rem;
  position: relative;
}
.proBanner .rightDiv .imgDiv {
  height: 5rem;
}
.proBanner .rightDiv .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proBanner .rightDiv .wen {
  position: absolute;
  left: 0.6rem;
  top: 0.6rem;
  font-size: var(--fs50);
  line-height: 0.7rem;
  color: #fff;
}
.proBanner2 {
  padding-top: 1.75rem;
  height: 9.4rem;
}
.proBanner2 .keyword {
  position: relative;
  margin-top: 0.2rem;
  bottom: 0;
}
.lunbo .swiper-container {
  overflow: hidden;
}
.lunbo .swiper-pagination .swiper-pagination-bullet-active {
  background: #fd6f00;
}
.productP1 {
  padding-top: 0.75rem;
  height: 7.9rem;
  background: url(../img/productP1.jpg) center no-repeat;
  background-size: cover;
}
.productP1 .toptop {
  height: 1.2rem;
  overflow: hidden;
}
.productP1 .name {
  font-size: var(--fs50);
  line-height: 0.5rem;
  color: #333;
  margin: 0 0 0.1rem;
  font-weight: bold;
}
.productP1 .zi {
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #999;
}
.productP1 .leftDiv {
  width: 48.6%;
  padding: 0.5rem 0.5rem 0;
  height: 5rem;
  background: rgba(247, 253, 255, 0.9);
  border-radius: 6px;
}
.productP1 .msgList {
  padding-bottom: 0.15rem;
}
.productP1 .msgList li {
  line-height: 0.3rem;
  margin-bottom: 0.15rem;
}
.productP1 .msgList li:last-child {
  margin-bottom: 0;
}
.productP1 .msgList li .wen {
  font-size: var(--fs16);
}
.productP1 .msgList li .num {
  font-size: var(--fs18);
  color: #333;
  font-family: 'Mont-R';
}
.productP1 .msgList li .num sup {
  font-size: 10px;
  transform: scale(0.7);
}
.productP1 .btnDiv a {
  display: block;
  width: 1.2rem;
  height: 0.4rem;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  line-height: 0.4rem;
  background: #fd6f00;
  color: #fff;
  font-size: var(--fs18);
}
.productP1 .tips {
  margin: 0.15rem 0 0.3rem;
  width: 5.5rem;
  font-size: var(--fs14);
  line-height: 0.24rem;
}
.productP1 .more a {
  color: #00a1ed;
  font-size: var(--fs16);
  text-decoration: underline;
}
.productP1 .rightDiv {
  width: 48.6%;
  padding: 0.45rem 0.7rem 0;
  height: 5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
}
.productP1 .form li {
  margin-bottom: 0.2rem;
  padding-left: 0.9rem;
  position: relative;
}
.productP1 .form li em {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.9rem;
  line-height: 0.5rem;
  font-size: var(--fs16);
}
.productP1 .select {
  width: 100%;
  height: 0.5rem;
  position: relative;
}
.productP1 .select .caption {
  cursor: pointer;
  border: #ffddc2 solid 1px;
  border-radius: 6px;
  height: 0.5rem;
  background: #fff5ed url(../img/selectIco.png) right center no-repeat;
  text-align: center;
  line-height: 0.5rem;
  font-size: var(--fs16);
  color: #333;
}
.productP1 .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #fff5ed;
  max-height: 2.5rem;
  overflow-y: auto;
  display: none;
  border: 1px solid #ffddc2;
}
.productP1 .select .xlist a {
  display: block;
  font-size: var(--fs16);
  color: #333;
  height: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
  padding: 0 0.2rem;
  border-bottom: 1px solid #ffddc2;
}
.productP1 .select .xlist a:hover {
  color: #fd6f00;
}
.productP1 .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.productP1 .select .xlist::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}
.productP1 .select .xlist::-webkit-scrollbar-thumb {
  background-color: #fd6f00;
}
.productP1 .numInput {
  padding: 0 0.55rem;
  height: 0.5rem;
  overflow: hidden;
  position: relative;
}
.productP1 .numInput span {
  display: block;
  position: absolute;
  cursor: pointer;
  top: 0;
  width: 0.5rem;
  height: 0.5rem;
  border: #ffddc2 solid 1px;
  background: #fff5ed;
  border-radius: 6px;
  z-index: 1;
}
.productP1 .numInput .jianBtn {
  left: 0;
}
.productP1 .numInput .jianBtn:after {
  content: '';
  width: 12px;
  height: 1px;
  background: #fd6f00;
  position: absolute;
  left: 50%;
  margin-left: -6px;
  top: 50%;
}
.productP1 .numInput .jiaBtn {
  right: 0;
}
.productP1 .numInput .jiaBtn:after {
  content: '';
  width: 12px;
  height: 1px;
  background: #fd6f00;
  position: absolute;
  left: 50%;
  margin-left: -6px;
  top: 50%;
}
.productP1 .numInput .jiaBtn:before {
  content: '';
  width: 1px;
  height: 12px;
  background: #fd6f00;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -6px;
}
.productP1 .numInput .kuang {
  border: #ffddc2 solid 1px;
  border-radius: 6px;
  position: relative;
  height: 0.5rem;
}
.productP1 .numInput .kuang input {
  width: 100%;
  background: #fff5ed;
  height: 0.48rem;
  line-height: 0.48rem;
  font-size: var(--16);
  color: #333;
  text-align: center;
  font-family: 'Poppins-L';
}
.productP1 .numInput .kuang i {
  position: absolute;
  right: 0.2rem;
  top: 0;
  color: #666;
  font-size: var(--fs16);
  line-height: 0.48rem;
  font-style: normal;
}
.productP1 .btnDiv2 a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 2rem;
  height: 0.6rem;
  border-radius: 6px;
  background: #fd6f00;
  font-size: var(--fs18);
  color: #fff;
}
.productP1 .btnDiv2 a em {
  display: block;
  width: 24px;
  height: 15px;
  margin-left: 8px;
  background: url(../img/ico2.png) no-repeat;
}
.productTab {
  height: 0.8rem;
  background-image: linear-gradient(90deg, #015eea 0%, #00c0fa 100%);
  background-blend-mode: normal, normal;
  overflow: hidden;
}
.productTab li {
  float: left;
  width: 33.33%;
  position: relative;
  height: 0.8rem;
  line-height: 0.8rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs24);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productTab li:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
.productTab li:last-child:after {
  display: none;
}
.productTab .liNow {
  background: #fd6f00;
}
.productP2 .tabContent {
  animation: am_top 0.5s ease-in-out 0.1s backwards;
  -webkit-animation: am_top 0.5s ease-in-out 0.1s backwards;
}
.productP2 .box1 {
  background: #fafafa;
  padding: 0.8rem 0 1.5rem;
}
.productP2 .box1 .title {
  font-size: var(--fs24);
  line-height: 0.24rem;
  color: #00a1ed;
  margin-bottom: 0.3rem;
  font-weight: bold;
}
.productP2 .box1 .content {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
  text-align: justify;
  padding-bottom: 0.8rem;
}
.productP2 .box1 .tableDiv table {
  border-top: #e7e7e7 solid 1px;
  border-left: #e7e7e7 solid 1px;
}
.productP2 .box1 .tableDiv table td {
  border-bottom: #e7e7e7 solid 1px;
  border-right: #e7e7e7 solid 1px;
  background: #fff;
  height: 0.98rem;
  color: #333;
  padding: 0 0.5rem;
  font-size: var(--fs16);
  line-height: 0.2rem;
  font-family: 'Mont-R';
}
.productP2 .box1 .tableDiv table td:nth-child(1) {
  width: 68%;
  padding: 0 2.4rem 0 0.5rem;
}
.productP2 .box1 .tableDiv table td:nth-child(2) {
  width: 19%;
  padding: 0 0.4rem;
}
.productP2 .box1 .tableDiv table td:nth-child(3) {
  width: 13%;
}
.productP2 .box1 .tips {
  margin-top: 0.5rem;
  text-align: center;
  color: #333;
  font-size: var(--fs14);
}
.productP2 .box2 .lie li {
  padding: 0.75rem 0;
  background: #fafafa;
}
.productP2 .box2 .lie li .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.productP2 .box2 .lie li .imgDiv {
  position: relative;
  width: 50%;
  border: #ccc solid 1px;
}
.productP2 .box2 .lie li .imgDiv img {
  width: 100%;
}
.productP2 .box2 .lie li .imgDiv em {
  position: absolute;
  left: 0.3rem;
  top: 0.3rem;
  z-index: 1;
  font-size: var(--fs18);
  color: #666;
}
.productP2 .box2 .lie li .conDiv {
  width: 5.86rem;
}
.productP2 .box2 .lie li .title {
  font-size: var(--fs24);
  line-height: 0.24rem;
  color: #00a1ed;
  margin-bottom: 0.3rem;
  font-weight: bold;
}
.productP2 .box2 .lie li .name {
  color: #333;
  font-size: var(--fs24);
  line-height: 0.36rem;
  margin-bottom: 0.2rem;
  font-weight: bold;
}
.productP2 .box2 .lie li .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #4e5460;
}
.productP2 .box2 .lie li:nth-child(2) {
  background: url(../img/productBg.jpg) center no-repeat;
  background-size: cover;
}
.productP2 .box2 .lie li:nth-child(2) .content {
  color: #fff;
}
.productP2 .box2 .lie li:nth-child(3) {
  background: #fff;
}
@media (max-width: 1004px) {
  .proBanner {
    padding: 1.8rem 0.3rem 0.8rem;
    height: auto;
  }
  .proBanner .mxfDiv {
    width: 100%;
    padding: 0;
    min-height: 1rem;
  }
  .proBanner .mxfDiv:before {
    display: none;
  }
  .proBanner .mxfDiv:after {
    display: none;
  }
  .proBanner .form {
    height: 1rem;
  }
  .proBanner .form .input1 {
    height: 1rem;
    line-height: 1rem;
    padding-left: 0.35rem;
    font-size: var(--fs13);
  }
  .proBanner .form .btn1 {
    width: 1rem;
    height: 0.8rem;
    background-size: 0.36rem;
  }
  .proBanner .keyword {
    position: relative;
    margin-top: 0.4rem;
    text-align: left;
    bottom: 0;
  }
  .proBanner .keyword em {
    font-size: var(--fs13);
    line-height: 0.72rem;
  }
  .proBanner .keyword a {
    height: 0.72rem;
    line-height: 0.72rem;
    font-size: var(--fs13);
    margin-bottom: 0.2rem;
  }
  .proBanner .pjDiv {
    height: auto;
    border-radius: 0.2rem;
    padding-left: 0;
  }
  .proBanner .leftDiv {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .proBanner .leftDiv li {
    float: left;
    width: 50%;
    font-size: var(--fs14);
  }
  .proBanner .leftDiv li a {
    height: 0.9rem;
    padding-left: 0;
    line-height: 0.9rem;
    text-align: center;
  }
  .proBanner .halaDiv {
    display: none;
  }
  .proBanner .rightDiv {
    height: auto;
  }
  .proBanner .rightDiv .imgDiv {
    height: auto;
  }
  .proBanner .rightDiv .imgDiv img {
    height: auto;
  }
  .proBanner .rightDiv .wen {
    left: 0.2rem;
    top: 0.2rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .productP1 {
    padding: 0.9rem 0;
    height: auto;
  }
  .productP1 .toptop {
    height: auto;
    padding-bottom: 0.4rem;
  }
  .productP1 .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .productP1 .zi {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .productP1 .leftDiv {
    width: auto;
    float: none;
    padding: 0.65rem 0.35rem;
    height: auto;
    border-radius: 0.12rem;
  }
  .productP1 .msgList {
    padding-bottom: 0.25rem;
  }
  .productP1 .msgList li {
    line-height: 0.48rem;
    margin-bottom: 0.25rem;
  }
  .productP1 .msgList li .wen {
    font-size: var(--fs13);
  }
  .productP1 .msgList li .num {
    font-size: var(--fs14);
  }
  .productP1 .msgList li .num sup {
    font-size: 8px;
    transform: scale(0.4);
  }
  .productP1 .btnDiv a {
    width: 1.8rem;
    height: 0.86rem;
    border-radius: 0.1rem;
    line-height: 0.86rem;
    font-size: var(--fs13);
  }
  .productP1 .tips {
    margin: 0.25rem 0 0.3rem;
    width: auto;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .productP1 .more a {
    font-size: var(--fs14);
  }
  .productP1 .rightDiv {
    margin-top: 0.35rem;
    float: none;
    width: auto;
    padding: 0.6rem 0.35rem;
    height: auto;
    border-radius: 0.12rem;
  }
  .productP1 .form li {
    margin-bottom: 0.2rem;
    padding-left: 0;
  }
  .productP1 .form li em {
    display: block;
    position: relative;
    width: auto;
    line-height: 0.48rem;
    margin-bottom: 0.15rem;
    font-size: var(--fs14);
  }
  .productP1 .select {
    height: 0.9rem;
  }
  .productP1 .select .caption {
    height: 0.9rem;
    background: #fff5ed url(../img/selectIco2.png) right center no-repeat;
    line-height: 0.9rem;
    font-size: var(--fs13);
  }
  .productP1 .select .xlist {
    max-height: 4.5rem;
  }
  .productP1 .select .xlist a {
    font-size: var(--fs13);
    height: 0.9rem;
    line-height: 0.9rem;
  }
  .productP1 .numInput {
    padding: 0 1rem;
    height: 0.9rem;
  }
  .productP1 .numInput span {
    width: 0.9rem;
    height: 0.9rem;
  }
  .productP1 .numInput .kuang {
    height: 0.9rem;
  }
  .productP1 .numInput .kuang input {
    height: 0.86rem;
    line-height: 0.86rem;
    font-size: var(--13);
  }
  .productP1 .numInput .kuang i {
    right: 0.3rem;
    font-size: var(--fs13);
    line-height: 0.88rem;
  }
  .productP1 .btnDiv2 {
    padding-top: 0.2rem;
    float: none;
  }
  .productP1 .btnDiv2 a {
    width: 2.8rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .productP1 .btnDiv2 a em {
    width: 16px;
    height: 10px;
    margin-left: 0.15rem;
    background-size: 16px;
  }
  .productTab {
    height: 1rem;
  }
  .productTab li {
    height: 1rem;
    line-height: 1rem;
    font-size: var(--fs14);
  }
  .productP2 .box1 {
    padding: 0.8rem 0 1.2rem;
  }
  .productP2 .box1 .title {
    font-size: var(--fs18);
    line-height: 0.36rem;
    margin-bottom: 0.4rem;
  }
  .productP2 .box1 .content {
    font-size: var(--fs13);
    line-height: 0.48rem;
    padding-bottom: 0.6rem;
  }
  .productP2 .box1 .longDiv {
    overflow: auto;
  }
  .productP2 .box1 .tableDiv {
    width: 16rem;
  }
  .productP2 .box1 .tableDiv table td {
    height: 1.68rem;
    padding: 0 0.3rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .productP2 .box1 .tableDiv table td:nth-child(1) {
    padding: 0 0.6rem 0 0.3rem;
  }
  .productP2 .box1 .tableDiv table td:nth-child(2) {
    padding: 0 0.2rem;
  }
  .productP2 .box2 .lie li .mxfDiv {
    display: block;
  }
  .productP2 .box2 .lie li .imgDiv {
    width: 100%;
  }
  .productP2 .box2 .lie li .imgDiv em {
    font-size: var(--fs14);
  }
  .productP2 .box2 .lie li .conDiv {
    width: auto;
    padding-bottom: 0.5rem;
  }
  .productP2 .box2 .lie li .title {
    font-size: var(--fs18);
    line-height: 0.36rem;
    margin-bottom: 0.4rem;
  }
  .productP2 .box2 .lie li .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .productP2 .box2 .lie li .content {
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
}
.product {
  padding: 1.05rem 0 1.5rem;
}
/*.product .indTxt .title {
  font-size: var(--fs32);
}*/
.product .content {
  font-size: var(--fs18);
  line-height: 0.3rem;
  text-align: center;
  margin: 0.5rem 0 1rem;
}
.product .list li {
  float: left;
  width: 50%;
}
.product .list li a {
  display: block;
  height: 6.5rem;
  padding: 0.6rem 1rem 0;
  background: #f8f9fa;
}
.product .list li .zi {
  font-size: var(--fs26);
  line-height: 0.26rem;
  color: #0099ff;
  margin-bottom: 0.3rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs30);
  height: 0.48rem;
  line-height: 0.48rem;
  margin-bottom: 0.35rem;
  color: #333;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li .wen {
  font-size: var(--fs24);
  line-height: 0.24rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs18);
  line-height: 0.3rem;
  height: 0.6rem;
  color: #4e5460;
  margin-bottom: 0.4rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li .msg2 {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 0.9rem;
}
.product .list li .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.76rem;
  height: 0.58rem;
  border-radius: 0.48rem;
  color: #fd6f00;
  border: #fd6f00 solid 1px;
  font-size: var(--fs16);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li .more em {
  display: block;
  margin-left: 0.15rem;
  width: 15px;
  height: 13px;
  background: url(../img/ico1on.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li:nth-child(4n+1) a {
  background: #f8f9fa;
}
.product .list li:nth-child(4n+2) a {
  background: #f2f4f5;
}
.product .list li:nth-child(4n+3) a {
  background: #f2f4f5;
}
.product .list li:nth-child(4n+4) a {
  background: #f8f9fa;
}
.product .list li a:hover {
  background-image: linear-gradient(90deg, #015eea 0%, #00c0fa 100%);
  background-blend-mode: normal, normal;
}
.product .list li a:hover .zi,
.product .list li a:hover .wen,
.product .list li a:hover .msg {
  color: #fff;
}
.product .list li a:hover .name {
  color: #fd6f00;
}
.product .list li a:hover .more {
  background: #fd6f00;
  color: #fff;
}
.product .list li a:hover .more em {
  background: url(../img/ico1.png) no-repeat;
}
.proModel {
  padding-top: 1.3rem;
  height: 8.2rem;
  background: url(../img/productP2.jpg) center no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.proModel .title {
  font-size: var(--fs36);
  line-height: 0.36rem;
  color: #fff;
  margin: 0 0 0.7rem;
  text-align: center;
  font-weight: bold;
}
.proModel .list {
  overflow: hidden;
}
.proModel .list li .box {
  height: 4.3rem;
  cursor: pointer;
  background: #fff;
  border-radius: 0.24rem;
  padding: 0.4rem 0.3rem 0;
  text-align: center;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proModel .list li .ico {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0 auto;
  position: relative;
}
.proModel .list li .ico img {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.4rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proModel .list li .ico .img1 {
  opacity: 0;
}
.proModel .list li .name {
  font-size: var(--fs30);
  line-height: 0.36rem;
  height: 0.72rem;
  overflow: hidden;
  color: #333;
  font-weight: bold;
  margin-top: 0.3rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proModel .list li .msg {
  font-size: var(--fs14);
  line-height: 0.24rem;
  color: #666;
  margin-top: 0.2rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proModel .list li .box:hover {
  background: #fd6f00;
}
.proModel .list li .box:hover .ico img {
  opacity: 0;
}
.proModel .list li .box:hover .ico .img1 {
  opacity: 1;
}
.proModel .list li .box:hover .num,
.proModel .list li .box:hover .name,
.proModel .list li .box:hover .msg {
  color: #fff;
}
.proModel .swiper-pagination {
  position: relative;
  left: 0;
  bottom: 0;
  padding-top: 0.45rem;
}
.proModel .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.proModel .swiper-pagination .swiper-pagination-bullet-active {
  background: #fd6f00;
}
@media (max-width: 1004px) {
  .product {
    padding: 1.2rem 0 1.1rem;
  }
  .product .indTxt .title {
    font-size: var(--fs16);
  }
  .product .content {
    font-size: var(--fs13);
    line-height: 0.48rem;
    margin: 0.5rem 0 0.8rem;
  }
  .product .list li {
    float: none;
    width: auto;
    margin-bottom: 0.2rem;
  }
  .product .list li a {
    height: 7.2rem;
    padding: 0.6rem 0.6rem 0;
  }
  .product .list li .zi {
    font-size: var(--fs14);
    line-height: 0.36rem;
    margin-bottom: 0.2rem;
  }
  .product .list li .name {
    font-size: var(--fs18);
    height: 0.48rem;
    line-height: 0.48rem;
    margin-bottom: 0.2rem;
  }
  .product .list li .wen {
    font-size: var(--fs16);
    line-height: 0.36rem;
  }
  .product .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
    color: #4e5460;
    margin-bottom: 0.3rem;
  }
  .product .list li .msg2 {
    height: 1.44rem;
  }
  .product .list li .more {
    width: 2.16rem;
    height: 0.8rem;
    font-size: var(--fs13);
  }
  .product .list li:nth-child(odd) a {
    background: #f8f9fa;
  }
  .product .list li:nth-child(even) a {
    background: #f2f4f5;
  }
  .product .list li:nth-child(even) a {
    background: #f2f4f5;
  }
  .product .list li:nth-child(odd) a {
    background: #f8f9fa;
  }
  .product .list li a:hover {
    background-image: linear-gradient(90deg, #015eea 0%, #00c0fa 100%);
    background-blend-mode: normal, normal;
  }
  .proModel {
    padding: 1rem 0;
    height: auto;
  }
  .proModel .title {
    font-size: var(--fs18);
    line-height: 0.48rem;
    margin: 0 0 0.65rem;
  }
  .proModel .list li .box {
    height: 5.2rem;
    padding: 0.5rem 0.3rem 0;
  }
  .proModel .list li .ico {
    width: 0.64rem;
    height: 0.64rem;
  }
  .proModel .list li .ico img {
    width: 0.64rem;
  }
  .proModel .list li .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
    height: 0.96rem;
    margin-top: 0.2rem;
  }
  .proModel .list li .msg {
    font-size: var(--fs13);
    line-height: 0.48rem;
    margin-top: 0.2rem;
  }
}
.contact {
  padding: 1.2rem 0;
  background: #f4f5f5;
}
.contact .list li {
  float: left;
  width: 20%;
  cursor: pointer;
}
.contact .list li .ico {
  position: relative;
  width: 1.46rem;
  height: 1.46rem;
  margin: 0 auto;
  background: #fff;
  border: #eee solid 1px;
  border-radius: 50%;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.contact .list li .ico img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.28rem;
  margin-top: -0.28rem;
  width: 0.56rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.contact .list li .ico .img1 {
  opacity: 0;
}
.contact .list li .ewm {
  width: 1.46rem;
  height: 1.46rem;
  margin: 0 auto;
  border: #eee solid 1px;
}
.contact .list li .ewm img {
  width: 1.44rem;
}
.contact .list li .txt {
  text-align: center;
  font-size: var(--fs18);
  color: #333;
  margin-top: 0.3rem;
  height: 0.4rem;
  font-family: 'Mont-SB';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.contact .list li .num {
  font-size: var(--fs22);
  color: #222;
  text-align: center;
  line-height: 0.28rem;
  font-family: 'Mont-R';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.contact .list li .wen {
  width: 2.8rem;
  margin: 0 auto;
  font-size: var(--fs18);
  color: #222;
  text-align: center;
  line-height: 0.28rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.contact .list li:hover .ico {
  border: #fd6f00 solid 1px;
  background: #fd6f00;
}
.contact .list li:hover .ico img {
  opacity: 0;
}
.contact .list li:hover .ico .img1 {
  opacity: 1;
}
.contact .list li:hover .txt,
.contact .list li:hover .wen,
.contact .list li:hover .num {
  color: #fd6f00;
}
@media (max-width: 1004px) {
  .contact {
    padding: 1rem 0 0.6rem;
  }
  .contact .list li {
    width: 50%;
    margin-bottom: 0.4rem;
  }
  .contact .list li .ico img {
    margin-left: -0.3rem;
    margin-top: -0.3rem;
    width: 0.6rem;
  }
  .contact .list li .ewm {
    width: 1.86rem;
    height: 1.86rem;
  }
  .contact .list li .ewm img {
    width: 1.8rem;
  }
  .contact .list li .txt {
    font-size: var(--fs14);
    height: 0.5rem;
  }
  .contact .list li .num {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .contact .list li .wen {
    width: auto;
    font-size: var(--fs13);
    line-height: 0.48rem;
    height: 0.96rem;
  }
}
.headD {
  height: 0.92rem;
}
.loginBox {
  padding: 1.1rem 0;
  background: url(../img/loginBg.jpg) center no-repeat;
  background-size: cover;
}
.loginDiv {
  margin: 0 auto;
  width: 12rem;
  height: 6.48rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.12rem;
  overflow: hidden;
}
.loginDiv .leftImg {
  width: 4.8rem;
  height: 6.48rem;
}
.loginDiv .leftImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loginDiv .rightDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  width: 7.2rem;
  height: 6.48rem;
  padding: 0 1.2rem 0 1rem;
}
.loginDiv .title {
  font-size: var(--fs48);
  line-height: 0.48rem;
  color: #000;
  font-weight: bold;
  margin: 0;
  padding-bottom: 0.4rem;
}
.loginDiv .form li {
  margin-bottom: 0.3rem;
}
.loginDiv .form li .txt {
  display: block;
  height: 0.28rem;
  font-size: var(--fs16);
  line-height: var(--lh20);
  color: #000;
}
.loginDiv .form li .txt em {
  color: #e90505;
}
.loginDiv .form li .input1 {
  padding-left: 0.15rem;
  width: 100%;
  font-size: var(--fs14);
  height: 0.48rem;
  line-height: 0.46rem;
  color: #999;
  border-radius: 8px;
  border: #dcdcdc solid 1px;
}
.loginDiv .form li .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.loginDiv .form li .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.loginDiv .form li .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.loginDiv .form li .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.loginDiv .forgot {
  height: 0.75rem;
}
.loginDiv .forgot a {
  display: block;
  text-align: right;
  color: #083556;
  font-size: var(--fs16);
  line-height: var(--lh20);
}
.loginDiv .forgot a:hover {
  color: #fd6f00;
}
.loginDiv .btnDiv a {
  display: block;
  font-size: var(--fs16);
  width: 100%;
  height: 0.48rem;
  line-height: 0.48rem;
  text-align: center;
  color: #fff;
  background: #fd6f00;
  border-radius: 0.48rem;
}
.loginDiv .btnDiv a:hover {
  background: #00aeef;
}
.loginDiv .tips {
  margin-top: 0.2rem;
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.16rem;
}
.loginDiv .tips a {
  color: #fd6f00;
  text-decoration: underline;
}
.loginDiv .tips a:hover {
  color: #00a1ed;
}
@media (max-width: 1004px) {
  .headD {
    height: 1.2rem;
  }
  .loginBox {
    padding: 1rem 0;
  }
  .loginDiv {
    width: 94%;
    height: auto;
    border-radius: 0.2rem;
  }
  .loginDiv .leftImg {
    display: none;
  }
  .loginDiv .rightDiv {
    display: block;
    float: none;
    width: auto;
    height: auto;
    padding: 0.8rem 0.4rem;
  }
  .loginDiv .title {
    font-size: var(--fs24);
    line-height: 0.36rem;
    padding-bottom: 0.6rem;
  }
  .loginDiv .form li .txt {
    height: 0.5rem;
    font-size: var(--fs14);
  }
  .loginDiv .form li .input1 {
    padding-left: 0.2rem;
    font-size: var(--fs13);
    height: 0.9rem;
    line-height: 0.88rem;
  }
  .loginDiv .forgot a {
    font-size: var(--fs14);
  }
  .loginDiv .btnDiv a {
    font-size: var(--fs14);
    height: 0.96rem;
    line-height: 0.96rem;
  }
  .loginDiv .tips {
    margin-top: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
}
.regBox {
  padding: 0.5rem 0 0.55rem;
  background: url(../img/regBg.jpg) center no-repeat;
  background-size: cover;
}
.regBox2 {
  padding: 1.1rem 0;
  background: url(../img/loginBg.jpg) center no-repeat;
}
.regDiv {
  margin: 0 auto;
  width: 12rem;
  padding: 0.5rem 2.92rem 0.75rem;
  background: #fff;
  border-radius: 0.12rem;
  overflow: hidden;
}
.regDiv .title {
  font-size: var(--fs48);
  line-height: var(--lh48);
  color: #000;
  text-align: center;
  font-weight: bold;
  margin: 0;
  padding-bottom: 0.45rem;
}
.regDiv .form li {
  position: relative;
  margin-bottom: 0.2rem;
}
.regDiv .form li .zi {
  font-size: var(--fs16);
  line-height: var(--lh48);
  color: #000;
}
.regDiv .form li .zi em {
  color: #e90505;
}
.regDiv .form li .input1 {
  padding-left: 0.15rem;
  width: 100%;
  font-size: var(--fs14);
  height: 0.48rem;
  line-height: 0.46rem;
  color: #999;
  border-radius: 8px;
  background: #fff;
  border: #dcdcdc solid 1px;
}
.regDiv .form li .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.regDiv .form li .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.regDiv .form li .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.regDiv .form li .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.regDiv .form li .yzm {
	display: flex; display: -webkit-flex; align-items: center; -webkit-align-items: center; justify-content: center; -webkit-justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: center;
  width: 1.4rem;
  height: 0.48rem;
  border-radius: 4px;
  background: #e3f3f9;
  color: #00a1e1;
  font-size: var(--fs14);
}
.regDiv .form li .yzm:hover {
  background: #00a1e1;
  color: #fff;
}
.regDiv .form .li01 {
  padding-right: 1.5rem;
}
.regDiv .btnDiv {
  padding: 0.2rem 0 0 1.2rem;
}
.regDiv .btnDiv a {
  display: block;
  font-size: var(--fs16);
  width: 100%;
  height: 0.48rem;
  line-height: 0.48rem;
  text-align: center;
  color: #fff;
  background: #fd6f00;
  border-radius: 0.48rem;
}
.regDiv .btnDiv a:hover {
  background: #00aeef;
}
.regDiv .tips {
  padding: 0.3rem 0 0 1.1rem;
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.16rem;
}
.regDiv .tips a {
  color: #fd6f00;
  text-decoration: underline;
}
.regDiv .tips a:hover {
  color: #00a1ed;
}
.regDiv2 {
  padding: 0.8rem 2.92rem 0.6rem;
  background: rgba(255, 255, 255, 0.9);
}
.regDiv2 .title {
  padding-bottom: 0.7rem;
}
@media (max-width: 1004px) {
  .regBox {
    padding: 1rem 0;
  }
  .regDiv {
    width: 94%;
    padding: 0.8rem 0.4rem;
    height: auto;
    border-radius: 0.2rem;
  }
  .regDiv .title {
    font-size: var(--fs24);
    line-height: 0.36rem;
    padding-bottom: 0.6rem;
  }
  .regDiv .form li {
    padding-left: 0;
  }
  .regDiv .form li .zi {
    position: relative;
    text-align: left;
    height: 0.5rem;
    font-size: var(--fs14);
    line-height: var(--lh36);
  }
  .regDiv .form li .input1 {
    padding-left: 0.2rem;
    font-size: var(--fs13);
    height: 0.9rem;
    line-height: 0.88rem;
  }
  .regDiv .form li .yzm {
    width: 2.2rem;
    height: 0.9rem;
    font-size: var(--fs12);
  }
  .regDiv .form .li01 {
    padding-right: 2.4rem;
  }
  .regDiv .btnDiv {
    padding: 0.35rem 0 0 0;
  }
  .regDiv .btnDiv a {
    font-size: var(--fs14);
    height: 0.96rem;
    line-height: 0.96rem;
  }
  .regDiv .tips {
    padding: 0.4rem 0 0 0;
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .regDiv2 {
    padding: 0.8rem 0.4rem;
    background: rgba(255, 255, 255, 0.9);
  }
  .regDiv2 .title {
    padding-bottom: 0.6rem;
  }
}
.memberDiv {
  padding: 0.7rem 0 1rem;
  overflow: hidden;
  background: url(../img/memberBg.jpg) center top no-repeat;
  background-size: 100%;
}
.memberDiv .wal {
  width: 14.4rem;
  margin: 0 auto;
}
.memberDiv .leftDiv {
  position: relative;
  padding-top: 0.25rem;
  width: 2.75rem;
  border-radius: 0.16rem;
  background: #fff;
  min-height: 7.5rem;
}
.memberDiv .toptop {
  padding: 0 0.3rem 0.25rem;
}
.memberDiv .toptop .headIco {
  width: 0.8rem;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}
.memberDiv .toptop .headIco img {
  width: 0.8rem;
}
.memberDiv .toptop .name {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: var(--lh24);
  text-align: center;
}
.memberDiv .memberNav {
  padding: 0 0.1rem;
}
.memberDiv .halaDiv {
  height: 0.7rem;
  border-radius: 0.12rem;
  line-height: 0.7rem;
  position: relative;
  font-size: var(--fs17);
  background: #f2f6fc;
  padding-left: 0.65rem;
  color: #000;
}
.memberDiv .halaDiv .ico {
  position: absolute;
  left: 0.1rem;
  top: 50%;
  margin-top: -0.22rem;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 0.12rem;
  background: #fff;
}
.memberDiv .halaDiv .ico img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
}
.memberDiv .halaDiv .ico .img1 {
  opacity: 0;
}
.memberDiv .halaDiv.on {
  background-image: linear-gradient(90deg, #015eea 0%, #00c0fa 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.memberDiv .halaDiv.on .ico {
  border: rgba(255, 255, 255, 0.1) solid 1px;
  background: none;
}
.memberDiv .halaDiv.on .ico img {
  opacity: 0;
}
.memberDiv .halaDiv.on .ico .img1 {
  opacity: 1;
}
.memberDiv .list {
  padding: 0.3rem 0;
}
.memberDiv .list li {
  font-size: var(--fs15);
  text-align: center;
}
.memberDiv .list li a {
  position: relative;
  display: block;
  height: 0.48rem;
  line-height: 0.48rem;
  overflow: hidden;
  color: #333;
}

.memberDiv .list li a:hover {
  color: #fd6f00;
}
.memberDiv .list li a.on {
  color: #fd6f00;
}
.memberDiv .exit {
  position: absolute;
  left: 0.1rem;
  right: 0.1rem;
  bottom: 0.15rem;
  z-index: 1;
}
.memberDiv .exit a {
  position: relative;
  display: block;
  width: 100%;
  height: 0.7rem;
  border-radius: 0.16rem;
  line-height: 0.7rem;
  padding-left: 0.82rem;
  font-size: var(--fs16);
  color: #333;
  background-image: linear-gradient(90deg, #f2f6fb 0%, #fff 100%);
  background-blend-mode: normal, normal;
}
.memberDiv .exit a::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  top: 50%;
  margin-top: -0.22rem;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 0.12rem;
  border: transparent solid 1px;
  background: #fff url(../img/nimg21_1.png) center no-repeat;
}
.memberDiv .exit a:hover {
  background-image: linear-gradient(90deg, #015eea 0%, #00c0fa 100%);
  color: #fff;
}
.memberDiv .exit a:hover::before {
  border: rgba(255, 255, 255, 0.1) solid 1px;
  background: url(../img/nimg21_1on.png) center no-repeat;
}
.memberDiv .rightDiv {
  position: relative;
  width: 11.45rem;
  border-radius: 0.16rem;
  background: #fff;
  min-height: 7.5rem;
}
.memberDiv .rightDiv2 {
  width: 12.4rem;
}
@media (max-width: 1004px) {
  .memberDiv {
    padding: 0.9rem 0.3rem;
    background-size: cover;
  }
  .memberDiv .wal {
    width: 100%;
  }
  .memberDiv .wrap {
    padding: 0;
  }
  .memberDiv .leftDiv {
    float: none;
    width: auto;
    padding-top: 0.5rem;
    border-radius: 0.2rem;
    min-height: 2.5rem;
  }
  .memberDiv .toptop {
    padding: 0 0.3rem 0.5rem;
  }
  .memberDiv .toptop .headIco {
    width: 1.6rem;
  }
  .memberDiv .toptop .headIco img {
    width: 1.6rem;
  }
  .memberDiv .toptop .name {
    font-size: var(--fs14);
    line-height: var(--lh36);
  }
  .memberDiv .memberNav {
    padding: 0 0.2rem;
  }
  .memberDiv .halaDiv {
    height: 1rem;
    border-radius: 0.2rem;
    line-height: 1rem;
    font-size: var(--fs18);
    background: #f2f6fc;
    padding-left: 20%;
  }
  .memberDiv .halaDiv .ico {
    left: 0.15rem;
    margin-top: -0.4rem;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0.16rem;
  }
  .memberDiv .halaDiv .ico img {
    width: 0.28rem;
    margin-left: -0.14rem;
    margin-top: -0.14rem;
  }
  .memberDiv .list li {
    font-size: var(--fs14);
  }
  .memberDiv .list li a {
    height: 0.8rem;
    line-height: 0.8rem;
  }
  .memberDiv .list li a::before {
    margin-left: -1rem;
  }
  .memberDiv .exit {
    position: relative;
    padding: 0.5rem 0.2rem 0.3rem;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .memberDiv .exit a {
    height: 1rem;
    border-radius: 0.2rem;
    line-height: 1rem;
    padding-left: 40%;
  }
  .memberDiv .exit a::before {
    left: 0.15rem;
    margin-top: -0.4rem;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0.16rem;
  }
  .memberDiv .rightDiv {
    margin-top: 0.5rem;
    float: none;
    width: auto;
    border-radius: 0.2rem;
    min-height: 3.5rem;
  }
}
.password {
  padding: 0.5rem 0.4rem 0 0.4rem;
}
.password .title {
  font-size: var(--fs24);
  line-height: var(--lh24);
  color: #000;
  margin: 0 0 0.5rem;
  font-weight: bold;
}
.password .form {
  width: 5.85rem;
}
.password .form li {
  position: relative;
  margin-bottom: 0.2rem;
}
.password .form li .zi {
  font-size: var(--fs16);
  line-height: var(--lh48);
  color: #000;
}
.password .form li .zi em {
  color: #e90505;
}
.password .form li .input1 {
  padding-left: 0.15rem;
  width: 100%;
  font-size: var(--fs14);
  height: 0.48rem;
  line-height: 0.46rem;
  color: #999;
  border-radius: 8px;
  background: #fff;
  border: #dcdcdc solid 1px;
}
.password .form li .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.password .form li .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.password .form li .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.password .form li .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.password .form li .yzm {
  display: flex; display: -webkit-flex; align-items: center; -webkit-align-items: center; justify-content: center; -webkit-justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: center;
  width: 1.4rem;
  height: 0.48rem;
  border-radius: 4px;
  background: #e3f3f9;
  color: #00a1e1;
  font-size: var(--fs14);
}
.password .form li .yzm:hover {
  background: #00a1e1;
  color: #fff;
}
.password .form .li01 {
  padding-right: 2.3rem;
}
.password .btnDiv {
  padding-top: 0.2rem;
  width: 5.85rem;
}
.password .btnDiv a {
  display: block;
  font-size: var(--fs16);
  width: 100%;
  height: 0.48rem;
  line-height: 0.48rem;
  text-align: center;
  color: #fff;
  background: #fd6f00;
  border-radius: 0.48rem;
}
.password .btnDiv a:hover {
  background: #00aeef;
}
@media (max-width: 1004px) {
  .password {
    padding: 0.8rem 0.3rem;
  }
  .password .title {
    font-size: var(--fs20);
    line-height: var(--lh30);
  }
  .password .form {
    width: auto;
  }
  .password .form li {
    padding-left: 0;
  }
  .password .form li .zi {
    position: relative;
    text-align: left;
    height: 0.5rem;
    font-size: var(--fs14);
    line-height: var(--lh36);
  }
  .password .form li .input1 {
    padding-left: 0.2rem;
    font-size: var(--fs13);
    height: 0.9rem;
    line-height: 0.88rem;
  }
  .password .form li .yzm {
		width: 2.2rem;
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs12);
	}
  .password .btnDiv {
    padding: 0.35rem 0 0 0;
    width: auto;
  }
  .password .btnDiv a {
    font-size: var(--fs14);
    height: 0.96rem;
    line-height: 0.96rem;
  }
}
.memberInfo {
  padding: 0.5rem 0.4rem 0.6rem 0.4rem;
}
.memberInfo .title {
  font-size: var(--fs24);
  line-height: var(--lh24);
  color: #000;
  margin: 0 0 0.2rem;
  font-weight: bold;
}
.memberInfo .title2 {
  margin: 0 0 0.3rem;
}
.memberInfo .toptop {
  padding-bottom: 0.5rem;
}
.memberInfo .headIco {
  width: 0.8rem;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}
.memberInfo .headIco img {
  width: 0.8rem;
}
.memberInfo .name {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: var(--lh24);
  text-align: center;
}
.memberInfo .form {
  width: 9.65rem;
}
.memberInfo .form ul {
  margin-right: -1rem;
}
.memberInfo .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.1rem;
}
.memberInfo .form li .box {
  margin-right: 1rem;
  position: relative;
}
.memberInfo .form li .zi {
  font-size: var(--fs16);
  line-height: var(--lh48);
  color: #000;
}
.memberInfo .form li .input1 {
  padding-left: 0.15rem;
  width: 100%;
  font-size: var(--fs14);
  height: 0.48rem;
  line-height: 0.46rem;
  color: #999;
  border-radius: 8px;
  background: #fff;
  border: #dcdcdc solid 1px;
}
.memberInfo .form li .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.memberInfo .form li .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.memberInfo .form li .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.memberInfo .form li .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.memberInfo .form li .readonly {
  background: #f5f5f5;
  color: #333;
}
.memberInfo .form li .readonly::-webkit-input-placeholder {
  color: #333;
  opacity: 1;
}
.memberInfo .form li .readonly:-moz-placeholder {
  color: #333;
  opacity: 1;
}
.memberInfo .form li .readonly::-moz-placeholder {
  color: #333;
  opacity: 1;
}
.memberInfo .form li .readonly:-ms-input-placeholder {
  color: #333;
  opacity: 1;
}
.memberInfo .form li .choose {
  overflow: hidden;
}
.memberInfo .form li .choose dd {
  float: left;
  cursor: pointer;
  margin-right: 0.3rem;
  position: relative;
  padding-left: 24px;
  line-height: 0.48rem;
  color: #999;
  font-size: var(--fs14);
}
.memberInfo .form li .choose dd em {
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  border: #ddd solid 1px;
  border-radius: 50%;
  margin-top: -8px;
}
.memberInfo .form li .choose dd em::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  margin-left: -4px;
  margin-top: -4px;
}
.memberInfo .form li .choose dd.on em {
  border: #fd6f00 solid 1px;
}
.memberInfo .form li .choose dd.on em::after {
  background: #fd6f00;
}
.memberInfo .form .li01 {
  width: 100%;
}
.memberInfo .btnDiv {
  padding-top: 0.2rem;
}
.memberInfo .btnDiv a {
  display: block;
  font-size: var(--fs16);
  width: 1.3rem;
  height: 0.48rem;
  line-height: 0.48rem;
  text-align: center;
  color: #fff;
  background: #fd6f00;
  border-radius: 0.48rem;
}
.memberInfo .btnDiv a:hover {
  background: #00aeef;
}
@media (max-width: 1004px) {
  .memberInfo {
    padding: 0.8rem 0.3rem;
  }
  .memberInfo .title {
    font-size: var(--fs20);
    line-height: var(--lh30);
  }
  .memberInfo .title2 {
    margin: 0 0 0.3rem;
  }
  .memberInfo .form {
    width: auto;
  }
  .memberInfo .form li {
    float: none;
    width: 100%;
  }
  .memberInfo .form li .box {
    padding-left: 0;
  }
  .memberInfo .form li .zi {
    position: relative;
    text-align: left;
    height: 0.5rem;
    font-size: var(--fs14);
    line-height: var(--lh36);
  }
  .memberInfo .form li .input1 {
    padding-left: 0.2rem;
    font-size: var(--fs13);
    height: 0.9rem;
    line-height: 0.88rem;
  }
  .memberInfo .btnDiv {
    padding: 0.35rem 0 0 0;
  }
  .memberInfo .btnDiv a {
    width: 2.2rem;
    font-size: var(--fs14);
    height: 0.96rem;
    line-height: 0.96rem;
  }
}
.project {
  padding: 0.5rem 0.9rem 0.9rem 0.9rem;
}
.project .title {
  font-size: var(--fs24);
  line-height: var(--lh24);
  color: #000;
  margin: 0 0 0.5rem;
  font-weight: bold;
}
.project .list_T {
  border: #c5d7e4 solid 1px;
  background: #fcfdfe;
  height: 0.6rem;
  overflow: hidden;
  font-size: var(--fs14);
}
.project .list_T li {
  float: left;
  line-height: 0.58rem;
  padding-left: 0.2rem;
  background: url(../img/line2.png) right center no-repeat;
}
.project .list_T li:nth-child(1) {
  width: 2.6rem;
}
.project .list_T li:nth-child(2) {
  width: 2.6rem;
}
.project .list_T li:nth-child(3) {
  width: 1.7rem;
}
.project .list_T li:nth-child(4) {
  width: 3.2rem;
  background: none;
}
.project .list_B {
  padding: 0.1rem 0 0.7rem;
}
.project .list_B li {
  border: #cee5f2 solid 1px;
  margin-bottom: 0.1rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.project .list_B li .toptop {
  height: 0.42rem;
  border-bottom: #cee5f2 solid 1px;
  padding: 0 0.4rem 0 0.2rem;
  overflow: hidden;
}
.project .list_B li .num {
  float: left;
  color: #999;
  font-size: var(--fs14);
  line-height: 0.42rem;
}
.project .list_B li .time {
  float: right;
  color: #999;
  font-size: var(--fs14);
  line-height: 0.42rem;
}
.project .list_B li .botbot {
  min-height: 1.45rem;
  overflow: hidden;
}
.project .list_B li .botbot dd {
  float: left;
  padding-left: 0.2rem;
  padding-top: 0.22rem;
}
.project .list_B li .botbot dd:nth-child(1) {
  width: 2.6rem;
}
.project .list_B li .botbot dd:nth-child(2) {
  width: 2.6rem;
}
.project .list_B li .botbot dd:nth-child(3) {
  width: 1.7rem;
}
.project .list_B li .botbot dd:nth-child(4) {
  width: 3.35rem;
}
.project .list_B li .botbot dd em {
  display: none;
  font-size: var(--fs14);
  line-height: 0.52rem;
  color: #666;
  font-weight: 400;
}
.project .list_B li .botbot dd .name {
  padding-right: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.project .list_B li .botbot dd .demand {
  font-size: var(--fs14);
  line-height: 0.24rem;
  color: #333;
}
.project .list_B li .botbot dd .state {
  color: #fd6f00;
  font-size: var(--fs14);
  padding-top: 0.2rem;
  line-height: 0.32rem;
}
.project .list_B li .botbot dd .msg {
  text-align: right;
  font-size: var(--fs14);
  line-height: 0.2rem;
}
.project .list_B li:hover {
  border: #fd6f00 solid 1px;
  background: #f6f6f6;
}
.project .list_B li:hover .botbot dd .name {
  color: #fd6f00;
}
@media (max-width: 1004px) {
  .project {
    padding: 0.8rem 0.3rem;
  }
  .project .title {
    font-size: var(--fs20);
    line-height: var(--lh30);
  }
  .project .list_B {
    padding: 0 0 0.5rem;
  }
  .project .list_B li {
    margin-bottom: 0.2rem;
  }
  .project .list_B li .toptop {
    height: auto;
    padding: 0.1rem 0.3rem;
  }
  .project .list_B li .num {
    float: none;
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .project .list_B li .time {
    float: none;
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .project .list_B li .botbot {
    min-height: 1.45rem;
    overflow: hidden;
  }
  .project .list_B li .botbot dd {
    float: none;
    padding: 0.3rem;
    border-bottom: #cee5f2 solid 1px;
  }
  .project .list_B li .botbot dd:nth-child(1) {
    width: auto;
  }
  .project .list_B li .botbot dd:nth-child(2) {
    width: auto;
  }
  .project .list_B li .botbot dd:nth-child(3) {
    width: auto;
  }
  .project .list_B li .botbot dd:nth-child(4) {
    width: auto;
    border-bottom: none;
  }
  .project .list_B li .botbot dd em {
    display: block;
  }
  .project .list_B li .botbot dd .name {
    padding-right: 0;
    line-height: 0.48rem;
  }
  .project .list_B li .botbot dd .demand {
    line-height: 0.48rem;
  }
  .project .list_B li .botbot dd .state {
    padding-top: 0;
    line-height: 0.48rem;
  }
  .project .list_B li .botbot dd .msg {
    text-align: left;
    line-height: 0.48rem;
  }
}
