@charset "utf-8";

.header{
    height:88px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    justify-content: space-between;
    z-index: 999;
    transition:all .5s;
}
.header_wrap{
    height: 88px;
}
.header.header_on{
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,.12);
}
.header .logo{
    flex:1;
}
.header .logo img{
    max-height:60px;
}

.header .logo .img2{
    display: none;
}
.nav .nav_li{
    margin:0 22px;
    position: relative;
}
.nav .nav_li .nav1 a{
    color:#fff;
    display: block;
    line-height:88px;
    position: relative;
    text-transform: capitalize;
    transition:all 0s;
    font-size:18px;
    transition:all .5s;
}

.nav .nav_li .nav2{
    list-style-type: none;
    position: absolute;
    top:99px;
    line-height: 40px;
    width: 300px;
    background: #fff;
    display: none;
    border-radius:5px;
    padding:20px 30px 40px;
    color:#3a3a3a;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    z-index: 10;
}
.nav .nav_li .nav2 h4{
    font-size:18px;
    border-bottom: 1px solid #c8c8c8;
    padding:10px 0;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.nav .nav_li .nav2 a{
    display: flex;
    align-items: center;
    padding-top: 15px;
    font-size:14px;
}
.nav .nav_li .nav2 a span{
    flex:1;
    line-height: 1;
}
.nav .nav_li .nav2 a i{
    font-size:12px;
}


.nav_info .lang{
    font-family: Arial;
    color:#fff;
    font-size: 18px;
    margin-left: 30px;
}
.nav_info .lang span{
    padding: 0 8px;
}
.nav_info .lang a:hover{
    text-decoration: underline;
    color:var(--theme-color);
}
.header.header_on .logo .img1{
    display: none;
}
.header.header_on .logo .img2{
    display: block;
}
.header_on .nav .nav_li .nav1 a{
    color:#333;
}
.header_on .nav .nav_li.cur .nav1 a,.nav .nav_li .nav2 a:hover,.nav .nav_li .nav1 a:hover,.nav .nav_li.cur .nav1 a{
    color:var(--theme-color);
}
.header_on .nav_info .lang{
    color:#333;
}


.banner{
    position: relative;
    overflow: hidden;
}
.banner .item_img img{
    width: 100%;
}
.banner .item .item_con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-bottom:5vh;
}
.banner .item .item_con .w1300{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner .item .item_con .info{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}
.banner .item .item_con h4{
    font-size:60px;
    font-weight: bold;
    line-height:1.1;
    color:#fff;
    text-align: center;
    text-transform: capitalize;
}
.banner .item .item_con .btn{
    width: 65px;
    height: 65px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left:50%;
    bottom: 50px;
    transform: translateX(-50%);
    animation: downico 2s ease-out infinite;
}

@keyframes downico{
	0%{bottom: 120px;}
	50%{bottom:150px;}
	100%{bottom:120px;}
}
.banner .item .item_con .btn i{
    font-size: 22px;
    color:#fff;
}
.banner .item .item_con .btn:hover{
    background: var(--theme-color);
    border-color: var(--theme-color);
}
.banner .item .item_con .btn:hover i{
    
}
.banner .swiper-pagination{
    text-align: center;
    bottom:40px;
    left:0;
    width:100%;
}
.banner .swiper-pagination .swiper-pagination-bullet{
    width:9px;
    height: 9px;
    background: #fff;
    margin:0 5px;
    opacity: 1;
    position: relative;
}
.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{

    background: var(--theme-color);
}

.banner .swiper-slide-active .item .item_img{
    animation: mysacle 5s ease both;
}
@keyframes mysacle {
    0% {
        transform: scale(1.1);
    }
}
/* tit_box1 */

.tit_box1{
    
}
.tit_box1 .tit{
    flex:1;
}

.tit_box1 .tit p{
    font-family: 'PromptSemiBold';
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color:#222;
}
.tit_box1 .tit h4{
    font-size:48px;
    font-weight: bold;
    line-height: 1.2;
    color:#222;
    margin-top: 10px;
}
.tit_box1 .tit h4 span{
    font-family:auto;
}
.tit_box1 .desc{
    max-width: 50%;
    color:#666;
}
.tit_box1 .btn{
    margin-left: 70px;
}

.tit_box2{
    text-align: center;
}
.tit_box2 .tit{
    
}
.tit_box2 .tit h4{
    font-size:40px;
    color:#1d2129;
    font-weight: bold;
}
.tit_box2 .tit h4:after{
    width: 80px;
    height: 4px;
    background: var(--theme-color);
    display: block;
    content:'';
    margin:16px auto ;
}
.tit_box2 .tit p{
    color:#4b5563;
    font-size: 18px;
}
.tit_box2_fff .tit h4{
    color:#fff;
}
.tit_box2-center{
    text-align: center;
}

.bg1{
    background:#f2f3f5;
}
.bg2{
    background:var(--theme-color);
}


.pub_btn1{
    width: 230px;
    height: 58px;
    background:linear-gradient(to right,rgba(38,150,82,.8),rgba(131,181,68,.8));
    display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
    font-weight: bold;
    border-radius: 100px;
    transition:all .5s;
}
.pub_btn1 i{
    font-size: 14px;
    font-weight: normal;
    margin-left: 10px;
}
.pub_btn1:hover{
    width: 210px;
}

/* about */

.pt50{
    padding-top: 50px;
}
.pt80{
    padding-top: 80px;
}
.pt100{
    padding-top: 100px;
}
.pt120{
    padding-top: 120px;
}
.pb50{
    padding-bottom: 50px;
}
.pb80{
    padding-bottom: 80px;
}
.pb100{
    padding-bottom: 100px;
}
.pb120{
    padding-bottom: 120px;
}

.about_img{
    width: 51.53%;
    position: relative;
}
.about_img .mark{
    position: absolute;
    left:-70px;
    top:30px;
    width: 140px;
    height: 140px;
    animation: rotate 8s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.about_con{
    flex:1;
    min-width: 0;
    padding-left: 11%;
}
.about_con .company{
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0 20px;
}
.about_con .desc{
    color:#666;
}

.about_con .btn_contact .contact{
    margin-left: 24px;
}
.about_con .btn_contact .contact .ico{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #ebf3f5;
    justify-content: center;
}
.about_con .btn_contact .contact .ico i{
    font-size: 24px;
}
.about_con .btn_contact .contact span{
    font-family: 'PromptSemiBold';
    font-size: 18px;
    margin-left: 6px;
}




/**/
#ingredientology-code-graphic{
    background-color: #eff7f2;
}
#mjly-particles{
    opacity:.3;
}
#icg-app {
  position: relative;
  height: 600px;
}

#icg-app>div {
  position: absolute;
  left: 0;
  width: 100%;
  height: 600px;
}

#icg-revolving-pieces {
  top: 0;
}

#icg-center-piece {
  top: -16px;
  display: table;
  width: 100%;
}

#icg-center-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: transparent;
  display: block;
  margin: 0 auto;
}

.display-table {
  display: table;
}

.display-table-cell,
.icg-title {
  display: table-cell;
  vertical-align: middle;
}

.icg-atom,
.icg-atom-bg {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  color: #ffffff;
  position: absolute;
  background: transparent;
  padding: 0.5rem;
  text-align: center;
  display: table;
}

.icg-atom {
  background: transparent;
  z-index: 1;
}

.atomic-wrapper {
  width: 600px;
  height: 600px;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
}

.icg-title {
  font-size: 18px;
  line-height: 1.3;
}

.icg-piece {
  width: 125px;
  height: 125px;
  display: block;
  position: absolute;
  background: #0b1a23;
  border-radius: 50%;
}

.icg-piece:nth-child(1) {
  top: 8px;
  left: 240px;
}

.icg-piece:nth-child(2) {
  top: 54px;
  left: 390px;
}

.icg-piece:nth-child(3) {
  top: 190px;
  left: 472px;
}

.icg-piece:nth-child(4) {
  top: 346px;
  left: 452px;
}

.icg-piece:nth-child(5) {
  top: 456px;
  left: 332px;
}

.icg-piece:nth-child(6) {
  top: 464px;
  left: 164px;
}

.icg-piece:nth-child(7) {
  top: 356px;
  left: 30px;
}

.icg-piece:nth-child(8) {
  top: 204px;
  left: 4px;
}

.icg-piece:nth-child(9) {
  top: 60px;
  left: 80px;
}


@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes level_rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg)
  }
}

.atomic-wrapper {
  animation: rotating 27s linear infinite;
}

.icg-atom {
  animation: level_rotation 27s linear infinite;
}

/* End Outer Revolving Atom */

/* Slow Rotation */
@keyframes slowrotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes slowrotationreverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

/* NNB ATOM */
@keyframes atom {
  from {
    transform: none;
  }

  to {
    transform: translateY(-10px);
  }
}

@keyframes atomflash {
  0% {
    background: var(--nnb-firefly);
  }

  3.70% {
    background: var(--nnb-red);
  }

  7.40% {
    background: var(--nnb-firefly);
  }
}

@keyframes electron-circle1 {
  from {
    transform: rotateY(70deg) rotateZ(20deg);
  }

  to {
    transform: rotateY(70deg) rotateZ(380deg);
  }
}

@keyframes electron1 {
  from {
    transform: rotateZ(-20deg) rotateY(-70deg);
  }

  to {
    transform: rotateZ(-380deg) rotateY(-70deg);
  }
}

@keyframes electron-circle2 {
  from {
    transform: rotateY(60deg) rotateX(60deg) rotateZ(-30deg);
  }

  to {
    transform: rotateY(60deg) rotateX(60deg) rotateZ(330deg);
  }
}

@keyframes electron2 {
  from {
    transform: rotateZ(30deg) rotateX(-60deg) rotateY(-60deg);
  }

  to {
    transform: rotateZ(-330deg) rotateX(-60deg) rotateY(-60deg);
  }
}

@keyframes electron-circle3 {
  from {
    transform: rotateY(-60deg) rotateX(60deg) rotateZ(100deg);
  }

  to {
    transform: rotateY(-60deg) rotateX(60deg) rotateZ(460deg);
  }
}

@keyframes electron3 {
  from {
    transform: rotateZ(-100deg) rotateX(-60deg) rotateY(60deg);
  }

  to {
    transform: rotateZ(-460deg) rotateX(-60deg) rotateY(60deg);
  }
}
#mjly-atom {
    border-radius: 50%;
    border: 1px dashed  #999;
    margin: 60px auto;
    width: 280px;
    height: 280px;
    position: relative;
    transform-style: preserve-3d;
    animation: slowrotation 21s linear infinite;
}

#mjly-atom:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: slowrotationreverse 21s linear infinite;
  margin: auto;
  width: 150px;
  height: 150px;
  background: url("../images/logo.png");
  content: '';
  color: #fff;
  font-weight: 900;
  text-align: center;
  line-height: 3.3;
}
#mjly-atom .point{
    position: absolute;
    width:7px;
    height:7px;
    background: #1d2939;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: .6;
}
#mjly-atom .point1{
    transform: translate(-50%, -50%) rotate(0deg) translate(140px) rotate(0deg);
}
#mjly-atom .point2{
    transform: translate(-50%, -50%) rotate(40deg) translate(140px) rotate(-40deg);
}
#mjly-atom .point3{
    transform: translate(-50%, -50%) rotate(80deg) translate(140px) rotate(-80deg);
}
#mjly-atom .point4{
    transform: translate(-50%, -50%) rotate(120deg) translate(140px) rotate(-120deg);
}
#mjly-atom .point5{
    transform: translate(-50%, -50%) rotate(160deg) translate(140px) rotate(-160deg);
}
#mjly-atom .point6{
    transform: translate(-50%, -50%) rotate(200deg) translate(140px) rotate(-200deg);
}
#mjly-atom .point7{
    transform: translate(-50%, -50%) rotate(240deg) translate(140px) rotate(-240deg);
}
#mjly-atom .point8{
    transform: translate(-50%, -50%) rotate(280deg) translate(140px) rotate(-280deg);
}
#mjly-atom .point9{
    transform: translate(-50%, -50%) rotate(320deg) translate(140px) rotate(-320deg);
}

.icg-piece .icg-atom-bg {
  animation: atomflash 27s linear infinite;
}

.icg-piece[data-atom="1"] .icg-atom-bg {
  animation-delay: 3s
}

.icg-piece[data-atom="2"] .icg-atom-bg {
  animation-delay: 6s
}

.icg-piece[data-atom="3"] .icg-atom-bg {
  animation-delay: 9s
}

.icg-piece[data-atom="4"] .icg-atom-bg {
  animation-delay: 12s
}

.icg-piece[data-atom="5"] .icg-atom-bg {
  animation-delay: 15s
}

.icg-piece[data-atom="6"] .icg-atom-bg {
  animation-delay: 18s
}

.icg-piece[data-atom="7"] .icg-atom-bg {
  animation-delay: 21s
}

.icg-piece[data-atom="8"] .icg-atom-bg {
  animation-delay: 24s;
}

.icg-piece[data-atom="9"] .icg-atom-bg {
  animation-delay: 27s;
}


/* product */

.product_img{
    width: 49%;
    position: relative;
    z-index: 1;
}
.product_img .j_img{
    width: 86%;
    margin-left: 14%;
    position: relative;
}
.product_img .j_img .bg{
    position: absolute;
}
.product_img .j_img img{
    width: 100%;
}
.product_img .j_img .bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: slowrotation 21s linear infinite;
    z-index: -1;
}
.product_img .j_img .bg img{
    filter: invert(96%) sepia(2%) saturate(2215%) hue-rotate(106deg) brightness(105%) contrast(92%);
}
.product_img .j_list{
    position: absolute;
    left:0;
    top: 0;
}
.product_img .j_list .item{
    position: absolute;
    width: 175px;
    top: 55px;
    left: 62px;
    transition:all .5s;
}
.product_img .j_list .item2{
    left: -25px;
    top: 206px;
}
.product_img .j_list .item3{
    top: 357px;
}
.product_img .j_list .item .item_bg{
    width: 175px;
}
.product_img .j_list .item1 .item_bg img{
    filter: invert(58%) sepia(60%) saturate(309%) hue-rotate(87deg) brightness(91%) contrast(91%);
}
.product_img .j_list .item2 .item_bg img{
    filter: invert(84%) sepia(4%) saturate(4418%) hue-rotate(44deg) brightness(93%) contrast(72%);
}
.product_img .j_list .item3 .item_bg img{
    filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(303deg) brightness(103%) contrast(101%) drop-shadow(0px 0 18px rgba(0,0,0,.08));
}
.product_img .j_list .item .item_con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
    padding: 25px;
    transition:all .5s;
}
.product_img .j_list .item .item_con h4{
    font-size: 18px;
    text-align: center;
    line-height: 1.3;
    margin-top: 8px;
    color:#fff;
}
.product_img .j_list .item.item3 .item_con h4{
    color:#666;
}

.product_img .j_list .item.item1:hover{
    top: 30px;
    left: 40px;
}
.product_img .j_list .item.item2:hover{
    left: -50px;
}
.product_img .j_list .item.item3:hover{
    left: 40px;
    top: 380px;
}

.product_con{
    flex:1;
    min-width: 0;
    padding-left: 7%;
}
.product_con .j_tit h4{
    font-weight: bold;
    color:var(--theme-color);
    line-height: 1.3;
}
.product_con .j_tit h4 span{
    line-height: 1.3;
    padding-right: 20px;
}
.product_con .j_desc{
    color:#666;
    margin: 20px 0 30px;
}
.product_con .j_desc p{
    line-height: 1.7;
}
.product_con .j_con .img{
    border: 1px solid #bbb;
    padding:5px 10px;
    border-radius: 6px;
    background: #fff;
}
.product_con .j_con .list{
    padding-left: 35px;
    flex:1;
    min-width: 0;
}
.product_con .j_con .list .item{
    font-weight: bold;
    display: flex;
    align-items: center;
}
.product_con .j_con .list .item i{
    font-weight: normal;
    font-size: 20px;
    color:var(--theme-color);
    margin-right: 10px;
}
.product_con .j_tip{
    border-top: 1px solid #f0f1f4;
    padding-top:25px;
    margin-top: 25px;
    margin-bottom: 10px;
}
.product_con .j_tip .ico{
    margin-right: 20px;
}
.product_con .j_tip .con{
    color:#666;
    font-weight: bold;
}
.product_con .j_img img{
    width: 70%;
}
.product_con .j_img{
    justify-content: center;
}

/* brand_wrap */

.brand_wrap{
    background: url("../images/bg1.jpg") no-repeat center fixed;
}
.brand_list{
    margin: -8px;
}
.brand_list .item{
    width: 16.666%;
    padding: 8px;
}
.brand_list .item .img{
    background: #fff;
    border-radius: 6px;
    height:90px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:15px;
}
.brand_list .item .img img{
    display: block;
    border-radius: 6px;
}

.get_free_wrap{
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover
}
.get_free{
    min-height: 650px;
    flex-direction: column;
    justify-content: center;
    color:#fff;
}
.get_free .desc{
    font-size: 22px;
}
.get_free .tit{
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0 70px;
    line-height: 1.2;
    text-align: center;
}

/* footer */

.footer{
    background:#0b1a23;
    background-size: cover;
    color:#fff;
}
.footer_hd{
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer_hd .f_logo{
    flex:1;
}
.footer_hd .info a{
    width: 160px;
    height: 45px;
    font-size: 14px;
}
.footer_hd .info span{
    font-size: 18px;
    margin-right: 20px;
}
.footer_hd .info a i{
    transition:all .5s;
}
.footer_hd .info a:hover i{
    transform: rotate(45deg);
}

.footer_md{
    align-items: flex-start;
}
.footer_md .msg{
    width: 47.5%;
}
.footer_md .msg .input_box{
    margin: -10px;
}
.footer_md .msg .input{
    flex:1;
    padding: 10px;
}
.footer_md .msg input,.footer_md .msg textarea{
    height: 58px;
    background: none;
    outline: none;
    width: 100%;
    border: 1px solid rgba(255,255,255,.1);
    padding: 12px 20px;
    line-height: 34px;
    font-size: 16px;
    border-radius: 6px;
    color:#fff;
}
.footer_md .msg input::placeholder,.footer_md .msg textarea::placeholder{
    color:rgba(255,255,255,.2);
}
.footer_md .msg textarea{
    height: 90px;
    margin-top: 20px;
}
.footer_md .msg .button button{
    width: 160px;
    height: 45px;
    border-radius: 100px;
    background: rgba(255,255,255,.1);
    outline: none;
    border: none;
    margin-top: 12px;
    color:rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: 'PingFang SC';
    transition:all .5s;
    cursor: pointer;
}
.footer_md .msg .button button i{
    font-size: 20px;
    margin-right: 8px;
}
.footer_md .msg .button button:hover{
    background: var(--theme-color);
}
.footer_md .contact{
    padding-left: 14%;
    flex:1;
    min-width: 0;
    justify-content: space-between;
}
.footer_md .contact .info{
    flex:1;
    min-width: 0;
}
.footer_md .contact .info .info_item{
    color:rgba(255,255,255,.7);
    padding:0 0 3px;
}
.footer_md .contact .info .info_item i{
    font-size: 20px;
    margin-right: 10px;
}
.footer_md .contact .code{
    width: 120px;
    margin-left: 6%;
}
.footer_md .contact .code .img{
    width: 100%;
    height: 120px;
    background: #fff;
    border-radius: 6px;
    padding: 2px;
}
.footer_md .contact .code span{
    display: block;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}


.footer_copyright{
    font-size:14px;
    padding:30px 0;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 35px;
    color:rgba(255,255,255,.3);
}


/* page_banner */

.page_banner{
    position: relative;
}
.page_banner:before{
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, .3);
    position: absolute;
    left: 0;
    top: 0;
}
.page_banner:after{
    content: '';
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent);
    position: absolute;
    left: 0;
    top: 0;
}
.page_banner .img img{
    width: 100%;
}
.page_banner_con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:#fff;
}
.page_banner_con .tit{
    font-size:48px;
    line-height: 1.2;
    text-align: center;
}

.page_banner_con .subtit{
    font-size:18px;
    margin-top: 10px;
}
.page_banner_con .subtit br{
    display: none;
}
.page_banner_con .ico{
    position: absolute;
    left: 50%;
    bottom:20%;
    transform: rotate(90deg);
    margin-left: -12px;
    animation: downico_inner 2s ease-out infinite;
}
@keyframes downico_inner{
	0%{bottom: 20%;}
	50%{bottom:25%;}
	100%{bottom:20%;}
}
.page_banner_con .ico i{
    font-size: 24px;
}

.page_banner_pos{
    position: absolute;
    bottom: 30px;
    color:#fff;
}
.page_banner_pos .pos i{
    font-size:18px;
    margin-right: 6px;
}
.page_banner_pos .pos a{
    padding:0 5px;
}
.page_banner_pos .pos a:hover{
    text-decoration: underline;
}

/* page_product */


.page_product{
    padding:80px 0 0;
}

.page_product_list{
    flex:1;
    min-width: 0;
    padding-left: 70px;
    padding-bottom: 70px;
}
.page_product_list_tit{
    background: #fff;
    padding: 30px 35px;
    margin-bottom: 40px;
}
.page_product_list_tit .tit{
    font-size:20px;
    font-weight: bold;
    position: relative;
    padding-left: 15px;
    line-height: 1;
}
.page_product_list_tit .tit:before{
    width: 4px;
    height: 20px;
    background: var(--theme-color);
    content:'';
    display: block;
    position: absolute;
    left: 0;
    top: 1px;
}
.page_product_list_tit .desc{
    color:#666;
    margin-top: 10px;
}

.page_product_list .list{
    margin:-17px;
}
.page_product_list .list .item{
    width: 33.333%;
    padding:17px;
}
.page_product_list .list .item a{
    display: block;
    background: #fff;
    padding:20px 30px;
    border:1px solid #fff;
}
.page_product_list .list .item .item_img{
    padding-bottom: 30px;
}
.page_product_list .list .item .item_con{
    border-top: 1px solid #d7d7d7;
    padding-top: 15px;
}
.page_product_list .list .item .item_con .info{
    flex:1;
}
.page_product_list .list .item .item_con .info h4{
    font-size:20px;
}
.page_product_list .list .item .item_con .info p{
    color:#666;
}
.page_product_list .list .item .item_con .ico i{
    font-size:24px;
}
.page_product_list .list .item a:hover{
    border-color: var(--theme-color);
}
.page_product_list .list .item a:hover .item_con .info h4{
    color:var(--theme-color);
}


.page_product_list.page_product_recommend{
    padding-left: 0;
}

/* page_about1 */

/* page_about */


.page_about1 {
    align-items: flex-start;
}
.page_about_tit{
    width: 30%;
    font-size: 32px;
    padding-right: 5%;
    line-height: 1.1;
    position: sticky;
    top: 140px;
}
.page_about_tit:after{
    content:'';
    display:block;
    height: 3px;
    width:50px;
    background: var(--theme-color);
    margin-top:20px;
}
.page_about1_con{
    flex:1;
}
.page_about1_con .content p{
    margin-bottom: 20px;
}
.page_about1_con .content h3{
    font-weight: bold;
    font-size: 22px;
    padding: 0 0 10px 20px;
    position: relative;
}
.page_about1_con .content h3:before{
    content:'';
    width:7px;
    height:7px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    top: 15px;
    border-radius: 50%;
}
.page_about1_con .j_choose{
    margin:-6px;
}
.page_about1_con .j_choose .item_w{
    padding:6px;
    flex:1;
}
.page_about1_con .j_choose .item_w:nth-child(1) .item{
    background-image: url("../images/about01.jpg");
}
.page_about1_con .j_choose .item_w:nth-child(2) .item{
    background-image: url("../images/about02.jpg");
}
.page_about1_con .j_choose .item_w:nth-child(3) .item{ 
    background-image: url("../images/about03.jpg");
    
}
.page_about1_con .j_choose .item{
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.page_about1_con .j_choose .item .item_bg{
    background: linear-gradient(to right,rgba(0,0,0,.9),transparent);
    position: absolute;
    width: 100%;
    height:100%;
    left: 0;
    top: 0;
    z-index: 1;
}
.page_about1_con .j_choose .item .item_con{
    position: relative;
    z-index: 2;
    padding: 30px;
}
.page_about1_con .j_choose .item .item_con .img img{
    filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(23deg) brightness(103%) contrast(101%);
}
.page_about1_con .j_choose .item .item_con .tit{
    color:#fff;
    margin-top: 10px;
}



.page_service1_con{
    flex:1;
    min-width: 0;
}
.page_service1_con .content h3{
    font-weight: bold;
    font-size: 22px;
    padding:0 0 0 20px;
    position: relative;
    line-height: 1.4;
}
.page_service1_con .content h3:before{
    content: '';
    width: 7px;
    height: 7px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    top: 12px;
    border-radius: 50%;
}
.page_service1_con .content p{
    margin-bottom: 20px;
}
.page_service1_con .content ul{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}
.page_service1_con .content ul li{
    box-shadow:0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    flex-grow: 1;
    flex-basis: 30%;
    padding:30px;
    border-radius: 8px;
}
.page_service1_con .content ul li h4{
    font-weight: bold;
    font-size:20px;
    margin-bottom: 6px;
}
.page_service1_con .content ul li p{
    margin-bottom: 0;
    color:#666;
}
.page_service1_con .content ul.list-1 li p{
    color:#666;
}

.page_service1_con .content ul.list-2 li{
    padding: 0;
    overflow: hidden;
}
.page_service1_con .content ul.list-2 li .con{
    padding: 25px 30px;
}
.page_service1_con .content ul.list-2 li .con h6{
    margin-bottom: 12px;
}
.page_service1_con .content ul.list-2 li .con p{
    color:#999;
    font-size: 14px;
}
.page_service1_con .content ul.list-3 li .ico{
    width: 60px;
    height:60px;
    border-radius: 50%;
    margin-bottom: 20px;
    background:var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:18px;
    font-weight: bold;
}
.page_service1_con .content ul.list-3 .li2 .ico{
    background: var(--subtheme-color);
}
.page_service1_con .content ul.list-3 .li3 .ico{
    background: #f0a93f;
}
.page_service1_con .content ul.list-3 .li4 .ico{
    background:#e67930;
}
.page_service1_con .content ul.list-3 .li5 .ico{
    background:#94517b;
}
.page_service1_con .content ul.list-3 .li6 .ico{
    background: #0093dd;
}
.page_service1_con .content ul.list-3 li .ico img{
    width: 34px;
    height: 34px;
}
.page_service1_con .list_img .list_a{
    flex:1;
    min-width: 0;
}
.page_service1_con .list_img .list_a .item{
    padding-right:100px;
}
.page_service1_con .list_img .list_a .item .item_ico{
    background: rgba(206,40,32,.06);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page_service1_con .list_img .list_a .item .item_ico i{
    font-size: 26px;
}
.page_service1_con .list_img .img{
    width: 30%;
    border-radius: 10px;
    overflow: hidden;
}
.page_service1_con .list_img .list_a .item .item_con{
    margin-top:10px;
}
.page_service1_con .list_img .list_a .item .item_con h4{
    font-size: 20px;
    font-weight: bold;
    color:var(--theme-color);
}
.page_service1_con .list_img .list_a .item .item_con p{
    color:#666;
}

.page_service1_con .list_wz .item{
    display: flex;
    padding-top: 40px;
    position: relative;
}
.page_service1_con .list_wz .item:after{
    content:'';
    width: 2px;
    height:calc(100% - 10px);
    background: rgba(81,171,117,.2);
    position: absolute;
    left: 20px;
    top: 40px;
    display: block;
}
.page_service1_con .list_wz .item:last-child:after{
    display: none;
}
.page_service1_con .list_wz .item .item_ico{
    width: 40px;
    height:40px;
    background: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.page_service1_con .list_wz .item .item_ico img{
    width: 26px;
    height: 26px;
}
.page_service1_con .list_wz .item .item_con{
    margin-left: 25px;
    flex:1;
    min-width: 0;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    padding:0 22px 25px;
    border-radius: 8px;
}
.page_service1_con .list_wz .item .item_con h4{
    font-size: 18px;
    font-weight: bold;
}
.page_service1_con .list_wz .item .item_con h4 span{
    color:var(--theme-color);
}
.page_service1_con .list_wz .item .item_con h5{
    color:#666;
    margin-top:6px;
}
.page_service1_con .list_wz .item .item_con ul li{
    max-width: 330px;
    background: rgb(248,249,250);
}
.page_service1_con .list_wz .item .item_con ul li h6{
    font-weight: bold;
}
.page_service1_con .list_wz .item .item_con ul li p{
    font-size: 14px;
    color:#999;
}

/* page_product_panel2 */

.page_product_panel2{
    
}
.page_product_panel2_list{
    margin: -9px;
}
.page_product_panel2_list .item_w{
    width: 50%;
    padding: 9px;
}
.page_product_panel2_list .item{
    box-shadow: 0px 0px 49px rgba(0,0,0,0.06);
    background: #fff;
    padding: 50px 60px;
    height: 100%;
    border-radius: 8px;
}
.page_product_panel2_list .item .item_tit{
    border-bottom: rgba(0,0,0,0.1) solid 1px;
    padding-bottom:15px;
}
.page_product_panel2_list .item .item_tit .tit{
    font-size: 30px;
    font-weight: bold;
    position: relative;
}
.page_product_panel2_list .item .item_tit .tit:after{
    content:'';
    height: 2px;
    background: var(--theme-color);
    display: block;
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 100%;
}
.page_product_panel2_list .item .item_tit .ico{
    flex:1;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}
.page_product_panel2_list .item .item_tit .ico img{
    width: 45px;
    height: 45px;
    opacity: .3;
}
.page_product_panel2_list .item .item_con{
    padding-top: 30px;
    color:#666;
}
.page_product_panel2_list .item .item_con p{
    margin-bottom: 20px;
}


/* page_join_us */

.page_join_us .item{
    margin-bottom: 40px;
}
.page_join_us .item .item_tit{
    background: #f7f7f7;
    height: 70px;
    padding: 0 30px;
    border-radius: 8px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    position: relative;
}
.page_join_us .item .item_tit:after{
    content:'';
    width: 0;
    transition:all .5s;
    background: var(--theme-color);
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    bottom:-1px;
}
.page_join_us .item .item_tit:hover:after{
    width: 100%;
}
.page_join_us .item .item_tit .tit{
    font-weight: bold;
    font-size: 20px;
    flex:1;
    transition:all .5s;
}
.page_join_us .item .item_tit .desc span{
    padding: 0 20px;
}
.page_join_us .item .item_tit .more{
    width: 130px;
    height: 40px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 4%;
}
.page_join_us .item .item_tit .more i{
    transition:all .5s;
    line-height: 1;
}
.page_join_us .item .item_tit.cur .tit{
    color:var(--theme-color);
}
.page_join_us .item .item_tit.cur .more i{
    transform: rotate(180deg);
}
.page_join_us .item .item_con{
    display: none;
    padding: 40px 20px 20px;
}
.page_join_us .item .item_con ul{
    display: flex;
    gap: 40px;
}
.page_join_us .item .item_con ul li{
    flex:1;
    box-shadow: 0 4px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    padding:25px;
    border-radius: 8px;
    color:#666;
}
.page_join_us .item .item_con ul li h4{
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    color:#333;
}
.page_join_us .item .item_con .tip{
    padding: 40px 0 20px;
    border-bottom: 1px solid #ddd;
}
.page_join_us .item .item_con .tip h6 a{
    color:var(--theme-color);
    text-decoration: underline;
}
.page_join_us .item .item_con .tip h6 span{
    margin-right: 30px;
}
/* page_case_list */

.page_case_list{
    padding: 100px 0;
}
.page_case_list .list{
    margin:-17px;
}
.page_case_list .item{
    padding:17px;
    width: 33.3333%;
}
.page_case_list .item_img img{
    width: 100%;
}
.page_case_list .item_con{
    padding: 35px;
    background: #fff;
    position: relative;
}
.page_case_list .item_con:after{
    content:'';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width:0;
    background: var(--theme-color);
    transition:all .4s;
}
.page_case_list .item_con .tit{
    font-size:22px;
    font-weight: bold;
    line-height: 1;
}
.page_case_list .item_con .desc{
    margin:15px 0 30px;
}
.page_case_list .item_con .more i{
    margin-left: 8px;
    line-height: 1;
}
.page_case_list a:hover .item_con:after{
    width: 100%;
}
.page_case_list a:hover .item_con .more{
    color:var(--theme-color);
}

/* page_download_center */

.page_download_center{
    padding:30px 0 50px;
}
.page_download_center .list_item {
    margin-bottom: 30px;
}
.page_download_center .list_item .menu{
    display: flex;
    color:#333;
    font-size:24px;
    padding:30px 40px;
    background: #fff;
    cursor: pointer;
    transition:all .3s;
    justify-content: space-between;
    font-family: 'MontserratSemiBold';
    align-items: center;
}
.page_download_center .list_item .menu i{
    font-size:20px;
    color:#333;
    transition:all .3s;
}
.page_download_center .list_item .menu:hover,.page_download_center .list_item .menu.cur{
    color:var(--theme-color);   
}

.page_download_tit .tit p{
    max-width: 70%;
    margin:auto;
}
.page_download_tit .tit p a{
    color:var(--theme-color);
}
.page_download_tit .tit p a:hover{
    text-decoration: underline;
}



.page_download_center .list_item .list{
    display: none;
    padding:0 40px;
    background: #fff;
}
.page_download_center .list_item:first-child .list{
    display: block;
}

.page_download_center .list_item .list .item{
    display: flex;
    height: 90px;
    display: flex;
    align-items: center;
    border-top: 1px solid #ebebeb;
}

.page_download_center .list_item .list .item .pdf{
    width: 50px;
    height: 25px;
    border:1px solid #a9a9a9;
    font-family: 'MontserratLight';
    font-size:12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.page_download_center .list_item .list .item h4{
    font-size:16px;
    color:#2d2d2d;
    margin-left:25px;
    flex:1;
}
.page_download_center .list_item .list .item .btn{
    border:1px solid #c3c3c3;
    padding:5px 20px;
    transition:all .3s;
    border-radius: 5px;
}
.page_download_center .list_item .list .item .btn i{
    margin-left: 8px;
    font-size:16px;
}
.page_download_center .list_item .list .item:hover h4{
    color:var(--theme-color);
}
.page_download_center .list_item .list .item:hover .btn{
   background: var(--theme-color);
   border-color:var(--theme-color);
   color:#fff;
}


.page_download_center_more{
    text-align: center ;
    padding-bottom: 80px;
}
.page_download_center_more a{
    padding-bottom: 5px;
    display: inline-block;
}
.page_download_center_more a:after{
    width: 100%;
    height: 1px;
    background: #666;
    content:'';
    display: block;
}
.page_download_center_more a:hover{
    color:var(--theme-color);
}
.page_download_center_more a:hover:after{
    background: var(--theme-color);
}


/* page_product_video */


.page_product_video{
    padding:50px 0 80px;
}
.page_product_video .list{
    margin:0 -17px;
}
.page_product_video .list .item{
    width: 33.33%;
    padding:0 17px;
}
.page_product_video .list .item iframe{
    height: 385px;
}




/* page_case_detail */


.page_case_detail{
    padding:60px 0 80px;
    text-align: center;
}
.page_case_detail h1{
    font-size:40px;
    font-weight: bold;
}
.page_case_detail h1:after{
    content:'';
    width: 88px;
    height: 3px;
    background: var(--theme-color);
    display: block;
    margin:20px auto 0;
}
.page_case_detail .desc{
    margin:30px 0 50px;
}
.page_case_detail .desc p{
    line-height: 1.8;
}
.page_case_detail .list{
    justify-content: center;
}
.page_case_detail .list .item{
    padding:0 100px;
}
.page_case_detail .list .item h4{
    margin-top: 10px;
}
.page_case_detail .more_style5{
    margin:60px auto 0;
}

.page_case_detail_recommend_wrap{
    background: #ebebeb;
}

.page_case_list.page_case_list_recommend{
    padding-top: 0;
}


/* product_detail */

.pd_detail{
    padding:80px 0 100px;
}
.pd_detail_hd .pics{
    width:46.25%;
}
.pd_detail_hd .pics .mySwiper2{
    width: 100%;
    height:550px;
    margin:0;
    overflow: hidden;
}

.pd_detail_hd .pics .mySwiper2 .img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #fff;
}
.pd_detail_hd .pics .mySwiper2 .img img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.pd_detail_hd .pics .mySwiper2 .swiper-pagination .swiper-pagination-bullet{
    width: 40px;
    height: 3px;
    border-radius: 0;
}
.pd_detail_hd .pics .mySwiper2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--theme-color);
}
.pd_detail_hd .pics .mySwiper{
    margin-top:25px;
}
.pd_detail_hd .pics .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
}
.pd_detail_hd .pics .mySwiper .swiper-slide .img{
    background: #fff;
    padding:5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border:1px solid #fff;
}
.pd_detail_hd .pics .mySwiper .swiper-slide.swiper-slide-thumb-active .img{
    border:1px solid var(--theme-color);
}
.pd_detail_hd .pics .mySwiper .swiper-slide .img img{
    height:120px;
    object-fit: contain;
}



.pd_detail_hd .infos{
    flex: 1;
    padding:10px 0 0 5%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.pd_detail_hd .infos .name{
    color:#888;
    font-family: 'MontserratLight';
}
.pd_detail_hd .infos h1{
    font-size:38px;
    color:#333;
    line-height: 1.3;
    font-family: 'MontserratExtraBold';
    border-bottom: 1px solid #cbcbcb;
    padding-bottom: 30px;
    position: relative;
}
.pd_detail_hd .infos h1:after{
    content:'';
    display: block;
    width: 20%;
    height:3px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    bottom:-1px;
}
.pd_detail_hd .infos .desc{
    font-size:18px;
    color:#666;
    margin:35px 0 80px;
    line-height: 1.8;
}
.pd_detail_hd .infos .list{
    margin:0 -50px;
}
.pd_detail_hd .infos .list .item{
    display: flex;
    padding:0 50px;
    border-right:1px solid #ccc;
}
.pd_detail_hd .infos .list .item:last-child{
    border-right:none;
}
.pd_detail_hd .infos .list .item h4{
    font-size:18px;
    color:#333;
    font-family: 'MontserratSemiBold';
    margin-left: 20px;
    line-height: 1.3;
}

.pd_detail_hd .infos .btns .btn{
    display: flex;
    align-items: center;
    height:58px;
    width: 220px;
    background: var(--theme-color);
    border:1px solid var(--theme-color);
    color:#fff;
    justify-content: center;
    text-transform: uppercase;
    margin-right: 20px;
    font-family: 'MontserratLight';
    border-radius: 100px;
}
.pd_detail_hd .infos .btns .btn i{
    color:#fff;
    font-size:20px;
    margin-left: 8px;
    transition:all .3s;
}
.pd_detail_hd .infos .btns .btn2{
    color:#333;
    border:1px solid #666;
    background: transparent;
    color:#333;
}
.pd_detail_hd .infos .btns .btn2 i{
    color:#333;
}
.pd_detail_hd .infos .btns .btn:hover{
    border-color:var(--theme-color);
    background: var(--theme-color);
    opacity: .8;
}
.pd_detail_hd .infos .btns .btn2:hover{
    color:#fff;
}
.pd_detail_hd .infos .btns .btn2:hover i{
    color:#fff;
}


.pd_detail_hd .infos .follow_list{
    margin-top: 50px;
    align-items: center;
}
.pd_detail_hd .infos .follow_list .tit{
    color:#333;
    font-family: 'jnm';
    text-transform: uppercase;
    margin-right: 30px;
}

.pd_detail_bd{
    display: flex;
    padding:50px;
    margin:60px 0;
    border-radius: 20px;
    border:1px solid #e9e9e9;
}
.pd_detail_bd .con{
    width: 55%;
}
.pd_detail_bd .con h4 br{
    display: none;
}
.pd_detail_bd .con h4{
    font-size:26px;
    color:#333;
    font-family: 'MontserratBold';
}
.pd_detail_bd .con p{
    color:#333;
    margin-top: 10px;
    line-height: 1.8;
}
.pd_detail_bd .imgs{
    flex:1;
    min-width: 0;
    padding-left: 3%;
    margin-left: 3%;
    border-left: 1px solid #e9e9e9;
}
.pd_detail_bd .imgs h4{
    font-size:18px;
    color:#333;
    margin-bottom: 20px;
}
.pd_detail_bd .imgs .img{
    justify-content: space-between;
}


.pd_detail_info{
    margin-bottom: 90px;
}

.pd_detail_info .pddi_hd{
    padding-top: 80px;
}
.pd_detail_info .pddi_hd .hd{
    display: flex;
    height: 60px;
    font-size:30px;
    font-family: 'MontserratSemiBold';
    align-items: center;
    border-bottom: 1px solid #e9e9e9;
}
.pd_detail_info .pddi_hd .hd .item{
    margin-right:150px;
    color:#333;
    position: relative;
    cursor: pointer;
    transition:all .3s;
}
.pd_detail_info .pddi_hd .hd .item i{
    font-size:30px;
    margin-left: 15px;
}
.pd_detail_info .pddi_hd .hd .item:after{
    content:'';
    width:50%;
    height: 3px;
    background: var(--theme-color);
    display: block;
    position: absolute;
    left: 0;
    bottom:-7px;
    transition:all .3s;
}

.pd_detail_info .pddi_hd .hd .item:hover{
    color:var(--theme-color);
}


.pd_detail_info .pddi_bd{
    width: 435px;
}
.pd_detail_info .pddi_bd .tit{
    font-size:24px;
    color:#333;
    font-family: 'MontserratBold';
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 10px;
    position: relative;
}
.pd_detail_info .pddi_bd .tit:after{
    content:'';
    display: block;
    width: 20%;
    height: 3px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    bottom:-1px;
}
.pd_detail_info .pddi_bd .menu{
    margin:20px -7px;
}
.pd_detail_info .pddi_bd .menu a{
    width: 50%;
    padding:7px;
}
.pd_detail_info .pddi_bd .menu .img{
    border-radius:15px;
}
.pd_detail_info .pddi_bd .menu .img img{
    width: 100%;
    height: 140px;
}
.pd_detail_info .pddi_bd .menu h4{
    text-align: center;
    line-height:40px;
    color:#333;
}
.pd_detail_info .pddi_bd .menu a:hover h4{
    color:var(--theme-color);
}
.pd_detail_info .pddi_bd .tel_box{
    border:1px solid #e4e4e4;
    border-radius: 20px;
    padding:30px;
}
.pd_detail_info .pddi_bd .tel_box .tel{
    padding-top: 20px;
    align-items: center;
}
.pd_detail_info .pddi_bd .tel_box .tel .con{
    padding-left: 15px;
    color:#333;
}
.pd_detail_info .pddi_bd .tel_box .tel .con p{
    font-size:26px;
    font-family: 'MontserratBold';
}

.pd_detail_info .pddi_hd .bd{
    padding:30px 0 0;
    color:#333;
    border-bottom: 1px solid #ddd;
}
.pd_detail_info .pddi_hd .bd .tit{
    height: 50px;
    background: #f5f5f5;
    border-radius: 10px;
    padding:0 30px;
    line-height: 50px;
    font-size:18px;
    font-family: 'MontserratSemiBold';
}
.pd_detail_info .pddi_hd .bd .con{
    display: flex;
    flex-wrap: wrap;
    padding:20px 30px 10px;
}
.pd_detail_info .pddi_hd .bd .con>p{
    width: 25%;
    padding:15px 30px;
}
.pd_detail_info .pddi_hd .bd .c{
    padding:20px 30px;
}

.pd_detail_info .pddi_hd .bd .bd_item:first-child{
    display: block;
    font-size:18px;
}
.pd_detail_info .pddi_hd .bd .bd_item:first-child p{
    font-size:18px!important;
}
.pd_detail_info .pddi_hd .bd .bd_item table{
    width: 100%;
}
.pd_detail_info .pddi_hd .bd .bd_item tr{
    height: 45px!important;
}
.pd_detail_info .pddi_hd .bd .bd_item tr td{
    border:none!important;
}
.pd_detail_info .pddi_hd .bd .bd_item tr:nth-child(2n-1){
    background: #f1f1f1;
}
.pd_detail_info .pddi_hd .bd .bd_item tr:first-child{
    background: var(--theme-color);
    height: 50px!important;
    color:#fff;
}
.pd_detail_info .pddi_hd .bd .list{
    display: flex;
    flex-wrap: wrap;
    margin:0 -20px;
}
.pd_detail_info .pddi_hd .bd .list .img{
    width: 33.333%;
    padding:20px;
}
.pd_detail_info .pddi_hd .bd .list .img img{
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.pd_detail_info .pddi_hd .tags{
    border-top: 2px solid #ddd;
    margin:30px 0 0;
    padding: 30px 0 50px;
}

.pd_detail_info .pddi_hd .tags span{
    margin-right: 10px;
}
.pd_detail_info .pddi_hd .tags span i{
    color:#999;
    margin-right: 6px;
}
.pd_detail_info .pddi_hd .tags a{
    background:#f3f4f8;
    height: 28px;
    line-height: 28px;
    padding:0 20px;
    display: inline-block;
    margin-right:10px;
    border-radius: 3px;
    font-size:13px;
    font-family: 'MontserratLight';
}
.pd_detail_info .pddi_hd .tags a:hover{
    background: var(--theme-color);
    color:#fff;
}


.page_product_contact_wrap{
    padding:80px 0 0;
}
.page_product_contact{
    background: #fff;
    padding: 0 70px 70px;
}

.page_product_contact_flex .l_tel{
    width: 50%;
    padding:30px 6% 0 0;
}
.page_product_contact_flex .l_tel .list .item{
    display: flex;
    width: 33.333%;
}
.page_product_contact_flex .l_tel .list .item .ico{
    width: 42px;
    height: 42px;
    border:1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.page_product_contact_flex .l_tel .list .item .ico i{
    font-size:18px;
    color:#666;
}
.page_product_contact_flex .l_tel .list .item .con{
    flex:1;
    min-width: 0;
    padding-left:10px;
}

.page_product_contact_flex .list .item:last-child{
    width: 100%;
    margin-top:20px;
}
.page_product_contact_flex .l_tel .map{
    margin-top: 30px;
}
.page_product_contact_flex .l_tel .map img{
    width: 100%;
}

/* page_quality */

.pq1_info{
    
}
.pq1_info .desc{
    width: 60%;
    margin:auto;
    text-align: center;
    position: relative;
}
.pq1_info .desc:before,.pq1_info .desc:after{
    content:'';
    width: 38px;
    height: 31px;
    display: block;
    position: absolute;
}
.pq1_info .desc:before{
    background: url("../images/quality_ico1.png") no-repeat center;
    left: -50px;
    top:-6px;
}
.pq1_info .desc:after{
    background: url("../images/quality_ico2.png") no-repeat center;
    right:-50px;
    bottom: -20px;
}
.pq1_info .list{
    justify-content: center;
    margin:60px 0;
}
.pq1_info .list .item{
    margin:0 40px;
}

.pq2_info{
    background: #f8f8f8;
    border-radius:20px;
    overflow: hidden;
}
.pq2_info .pq2_info_con{
    flex:1;
    min-width: 0;
    padding:40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pq2_info .pq2_info_con .tit{
    color:#161616;
    font-size:40px;
    font-family: 'jnb';
}
.pq2_info .pq2_info_con .desc{
    color:#666;
    margin-top: 10px;
}
.pq2_info .pq2_info_img{
    width: 50%;
}


/* pq3_info */

.pq3_info{
    overflow: hidden;
    width: 1800px;
    margin:auto;
    position: relative;
    padding:0 0 80px;
}
.pq3_info_con{
    position: relative;
    width: 1600px;
    margin:auto;
    padding:20px 0 60px;
}
.pq3_info_con .item .img{
    background: #f8f8f8;
    padding:25px 36px;
    height: 390px;
}
.pq3_info_con .item .img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.pq3_info_con .item .tit{
    color:#3a3a3a;
    padding:10px 10px 0;
    font-size:16px;
    text-align: center;
}

.pq3_info_con .swiper-button-next,.pq3_info_con .swiper-button-prev{
    width: 70px;
    height: 70px;
    border:1px solid #c8c8c8;
    border-radius: 50%;
    z-index: 40;
    opacity: 1;
    color:#717171;
    top: 40%;
}
.pq3_info_con .swiper-button-next:after,.pq3_info_con .swiper-button-prev:after{
    font-size:30px;
}
.pq3_info_con .swiper-button-next:hover,.pq3_info_con .swiper-button-prev:hover{
    background: var(--theme-color);
    color:#fff;
    border-color: var(--theme-color);
}
.pq3_info_con .swiper-button-prev{
    left: -100px;
}
.pq3_info_con .swiper-button-next{
    right: -100px;
}
.pq3_info:before,.pq3_info:after{
    content:'';
    display: block;
    width: 100px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    z-index: 30;
}
.pq3_info:before{
    left: 0;
}
.pq3_info:after{
    right: 0;
}
.pq3_info_con .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
}
.pq3_info_con .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--theme-color);
}


/* page_menu_public */

.page_menu_public {
    position: relative;
}

.page_menu_public .list{
   
}
.page_menu_public .item{
    margin:0 20px 0 0;
}
.page_menu_public .item a{
    height: 54px;
    padding: 0 40px;
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition:all .5s;
    font-size: 18px;
}

.page_menu_public .item a:hover{
    background: var(--theme-color);
    color:#fff;
}
.page_menu_public .item.all a,.page_menu_public .item.cur a{
    background:linear-gradient(to right,rgba(38,150,82,.8),rgba(131,181,68,.8));
    color:#fff;
}

.page_news_list .list{
    margin:-10px;
}
.page_news_list .item{
    width:33.333%;
    display: block;
    padding:10px;
}
.page_news_list .item a{
    border-radius: 8px;
    display: block;
    transition:all .5s;
}
.page_news_list .item .item_img{
    border-radius:8px;
    overflow: hidden;
    position: relative;
}
.page_news_list .item .item_img img{
    width: 100%;
}
.page_news_list .item .item_img .time{
    height: 28px;
    background: var(--theme-color);
    color:#fff;
    padding: 0 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
}
.page_news_list .item .item_con{
    padding: 20px 25px 25px;
    background: #fff;
    border-radius: 0 0 10px 10px;
}
.page_news_list .item .item_con .time{
    font-size: 14px;
    color: #999;
}
.page_news_list .item .item_con .tit{
    font-size:18px;
    font-weight: bold;
    transition: all .4s;
    line-height: 1.4;
    margin-top: 5px;
    height: 50px;
}

.page_news_list .item .item_con .btn{
    color:#333;
    width:40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #666;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:all .5s;
}
.page_news_list .item .item_con .btn i{
    display: block;
    transition:all .5s;
    font-size: 12px;
}
.page_news_list .item a:hover{
    border-color: var(--theme-color);
}

.page_news_list .item a:hover .item_con .tit{
    color:var(--theme-color);
}
.page_news_list .item a:hover .item_con .btn{
    background: var(--theme-color);
    color:#fff;
    border-color: var(--theme-color);
}
.page_news_list .item a:hover .item_con .btn i{
    transform: rotate(-45deg);
}


.page_nobanner_pos{
    border-bottom: 1px solid #cbcbcb;
    padding: 20px 0;
    margin-top: 88px;
}
.page_nobanner_pos .pos i{
    margin-right: 6px;
    color:var(--theme-color);
}
.page_nobanner_pos .pos a{
    padding: 0 3px;
}

.page_nobanner_pos .pos a:hover{
    color:var(--theme-color);
    text-decoration: underline;
}

.page_news_detail_wrap{
    align-items: flex-start;
}
.page_news_detail{
    flex:1;
    min-width: 0;
}
.page_news_detail>h1{
    font-size:36px;
    line-height: 1.3;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.page_news_detail .info{
    margin-top: 26px;
    font-size: 14px;
    justify-content: space-between;
}

.page_news_detail .info .item span{
    color:var(--theme-color);
}
.page_news_detail .info .item i{
    font-size: 16px;
    margin-right: 8px;
    color:var(--theme-color);
}

.page_news_detail .desc{
    min-height: 20vh;
    padding: 40px 0 20px;
}
.page_news_detail .desc h2{
    font-size: 24px;
    position: relative;
    padding-left: 18px;
    line-height: 1.3;
    margin:50px 0 20px;
    color:var(--theme-color);
}
.page_news_detail .desc h2:before{
    content:'';
    width: 5px;
    height: 22px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    top:9px;
    display: block;
}
.page_news_detail .desc h4{
    font-size: 20px;
    font-weight: bold;
    padding-left: 18px;
    position: relative;
    line-height: 1.2;
    margin:30px 0 20px;
}
.page_news_detail .desc h4:before{
    content:'';
    width:6px;
    height:6px;
    border:2px solid var(--theme-color);
    left: 0;
    top: 7px;
    position: absolute;
    display: block;
    transform: rotate(45deg);
}

.page_news_detail .desc h5{
    color:#666;
    margin: 30px 0 20px;
    background: #f5f5f5;
    padding:20px 30px;
    border-radius: 10px;
}
.page_news_detail .desc h5:first-child{
    margin-top: 0;
}
.page_news_detail .desc img{
    display: block;
    margin: auto;
}

.page_news_detail .desc p{
    padding: 0 18px;
}
.page_news_detail .desc a{
    font-weight: bold;
    color:var(--theme-color);
    text-decoration: underline;
}
.page_news_detail .desc a:hover{
    color:blue;
}

.page_news_detail .mark{
    border-bottom: 2px dashed #ccc;
    padding-bottom: 30px;
}
.page_news_detail .mark b{
    color:blue;
    font-size: 18px;
    display: inline-block;
}

.page_news_detail .tag{
    padding-top: 20px;
}
.page_news_detail .tag .j_tit{
    color:#999;
    font-size: 14px;
}
.page_news_detail .tag .j_tit i{
    margin-right: 5px;
}
.page_news_detail .tag .ul{
    flex-wrap: wrap;
    flex:1;
    min-width: 0;
}
.page_news_detail .tag .li{
    margin:5px;
}
.page_news_detail .tag .li a{
    background: rgba(0,165,81,.06);
    font-size: 14px;
    padding:3px 10px;
    border-radius: 3px;
    color: var(--theme-color);
    display:block;
}
.page_news_detail .tag .li a:hover{
    background: var(--theme-color);
    color:#fff;
}

.page_recommended_news{
    width: 35%;
    padding-left: 6%;
    position: sticky;
    top: 140px;
}
.page_recommended_news .j_tit{
    font-size: 20px;
    font-weight: bold;
}
.page_recommended_news .list{
    padding-top: 8px;
}
.page_recommended_news .list .item{
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(78, 89, 105, .2);
}
.page_recommended_news .list .item:last-child{
    border-bottom: none;
}
.page_recommended_news .list .item .item_img{
    width: 42%;
    border-radius: 8px;
    overflow: hidden;
}
.page_recommended_news .list .item .item_con{
    flex:1;
    min-width: 0;
    padding-left: 16px;
}
.page_recommended_news .list .item .item_con .time{
    font-size: 14px;
    color:#999;
}
.page_recommended_news .list .item .item_con .tit{
    font-weight: bold;
    transition:all .4s;
}
.page_recommended_news .list .item:hover .item_con .tit{
    color:var(--theme-color);
}

.go_back{
   
}
.go_back a{
    display: block;
    font-size:14px;
    height: 44px;
    background: #f5f5f5;
    line-height: 44px;
    text-align: center;
}
.go_back a:hover{
    background: var(--theme-color);
    color:#fff;
}


/* page_contact */

.page_contact_tit{
    text-align: center;
}
.page_contact_tit h4{
    color:#1d2129;
    font-size: 40px;
    font-weight: bold;
}
.page_contact_tit h4:after{
    content:'';
    width: 80px;
    height: 4px;
    background: var(--theme-color);
    display: block;
    margin: 10px auto 20px;
}
.page_contact_tit p{
    color:#4b5563;
    font-size: 20px;
}
.page_contact_con{
    gap: 50px;
}
.page_contact_con .j_bg{
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    background: #f2f3f5;
    border-radius: 8px;
    padding: 30px;
}
.page_contact_con .j_message,.page_contact_con .j_contact{
    flex:1;
}
.page_contact_con .j_message .input_box{
    display: flex;
    margin:-5px -10px;
}
.page_contact_con .j_message .input_box .input{
    flex:1;
    padding:10px;
}
.page_contact_con .j_message .input_box .input input,.page_contact_con .j_message .input_box .input textarea{
    width: 100%;
    height: 50px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #fff;
    outline: none;
    padding:10px 20px;
    line-height: 30px;
    transition:all .5s;
    font-size: 16px;
}
.page_contact_con .j_message .input_box .input input::placeholder,.page_contact_con .j_message .input_box .input textarea::placeholder{
    color:#999;
    font-size: 14px;
    font-family: "PingFang SC","Source Han Sans CN","Hiragino Sans GB","Heiti SC","Microsoft Yahei",Helvetica,Arial,sans-serif;
}
.page_contact_con .j_message .input_box .input input:focus,.page_contact_con .j_message .input_box .input textarea:focus{
    border-color: rgba(81,171,117,.5);
}
.page_contact_con .j_message .input_box .input textarea{
    height: 150px;
}
.page_contact_con .j_message .button button{
    width: 200px;
    height: 50px;
    background:var(--theme-color);
    color:#fff;
    border: none;
    outline: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition:all .5s;
}

.page_contact_con .j_message .button button:hover{
    background: var(--subtheme-color);
}
.page_contact_con .j_message .txt{
    margin-top: 40px;
    color:#4b5563;
    font-size: 15px;
}
.page_contact_con .j_message .txt p{
    margin-bottom: 12px;
}

.page_contact_con .j_contact{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.page_contact_con .j_tit{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.page_contact_con .j_contact .j_list .item{
    display: flex;
    margin-bottom:30px;
}
.page_contact_con .j_contact .j_list .item:last-child{
    margin-bottom: 0;
}
.page_contact_con .j_contact .j_list .item .ico{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(81,171,117,.1);
    display: flex;
    justify-content: center;
    align-items: center;
}
.page_contact_con .j_contact .j_list .item .ico i{
    font-size: 20px;
    color:var(--theme-color);
}
.page_contact_con .j_contact .j_list .item .con{
    padding-left: 15px;
}
.page_contact_con .j_contact .j_list .item .con h4{
    font-weight: bold;
}
.page_contact_con .j_contact .j_list .item .con p{
    color:#4b5563;
}
.page_contact_con .j_contact .j_list .item .con p a:hover{
    color:var(--theme-color);
    text-decoration: underline;
}
.page_contact_con .j_contact .k_list .item{
    width: 110px;
    margin-right: 20px;
    border: 6px solid #fff;
    border-radius: 6px;
}
.page_contact_con .j_contact .k_list .item h4{
    height: 20px;
    background: #fff;
    font-size: 12px;
    text-align: center;
    color:#666;
}

/* page_jsjs_panel1_list */

.page_jsjs_panel1_list{
    margin: -10px;
}
.page_jsjs_panel1_list .item_w{
    width: 25%;
    padding: 10px;
}
.page_jsjs_panel1_list .item{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.page_jsjs_panel1_list .item .img{
    height: 300px;
}
.page_jsjs_panel1_list .item .img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.page_jsjs_panel1_list .item .con{
    position: absolute;
    left:0;
    bottom: 0;
    width: 100%;
    
    background: var(--theme-color);
}
.page_jsjs_panel1_list .item .con h4{
    font-weight: bold;
    text-align: center;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
}

.page_jsjs_panel2_list .item_w{
    width: 25%;
    padding: 10px;
}
.page_jsjs_panel2_list .item{
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    height: 100%;
}
.page_jsjs_panel2_list .item .ico{
    width: 45px;
    margin: auto;
}
.page_jsjs_panel2_list .item .ico img{
    filter: invert(56%) sepia(64%) saturate(334%) hue-rotate(91deg) brightness(94%) contrast(83%);
}
.page_jsjs_panel2_list .item .con{
    margin-top: 20px;
}
.page_jsjs_panel2_list .item .con h4{
    text-align: center;
    line-height: 1.4;
}


/* return */

.return_page{
    position: relative;
    margin-top: 30px;
    padding-right: 40px;
}
.return_page a{
    padding: 32px;
    width: 100%;
    border-radius:16px;
    background: #F5F5F5;
    display: block;
}
.return_page a span{
    color:rgba(51, 51, 51, 0.60);
    font-size: 14px;
}
.return_page a h4{
    line-height: 1.6;
    font-weight: bold;
    margin-top: 16px;
    transition:all .4s;
    text-align: left;
    font-size: 18px;
}
.return_page a p{
    font-size: 14px;
    color:#999;
    line-height: 1.8;
    margin-top: 8px;
}
.return_page a:hover h4{
    color:var(--theme-color);
}
.return_page a.prev{
    margin-bottom: 24px;
}
.return_page a.next{
    text-align: right;
}

.ind_pad{
    padding:80px 0 90px;
}
.info_ly{background: #fff;padding-left: 4%;padding-right: 4%;display: flow-root;}
.info_ly h2{text-align: center;margin-bottom: 20px;}
.info_ly .inp{width: 49.3%;height: 52px;line-height: 52px;background: #f6f6f6;display: block;float: left;margin-bottom: 16px;text-indent: 22px;}
.info_ly .inp:nth-child(2n){float: right;}
.info_ly .inp2{width: 100%;}
.info_ly textarea{height: 150px;background: #f6f6f6;text-indent: 22px;padding-top: 16px;width: 100%;display: block;}
.info_ly .sub{height: 52px;line-height: 52px;background:var(--theme-color);width: 100%;text-align: center;color: #fff;display: block;margin-top: 16px;text-transform: uppercase;border:none;cursor:pointer;}





