﻿/* 
    Less compilation
    > npm install -g less
    > lessc style.less style.css
*/

.resetStyle {
    font-family: "微软雅黑";
    color: #333;
}

.resetStyle a {
    text-decoration: none;
    color: #333;
}

.resetStyle ul,
.resetStyle li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.resetStyle p {
    margin: 0;
}

.ie-warning {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #000;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    padding: 50px 0;
}

.ie-warning h1 {
    margin: 0 0 30px;
}

.ie-warning p {
    font-size: 16px;
}

.ie-warning .ie-container {
    min-width: 1024px;
    width: 100%;
    height: 200px;
    background: #fff;
    margin: 60px 0;
}

.ie-warning .ie-download {
    list-style: none;
    padding: 30px 0;
    margin: 0 auto;
    width: 720px;
}

.ie-warning .ie-download>li>a {
    display: block;
    color: #000;
    width: 140px;
    font-size: 15px;
    padding: 15px 0;
    margin: 0 auto;
}

.ie-warning .ie-download>li>a>div {
    margin-top: 10px;
}

.ie-warning .ie-download>li>a:hover {
    background-color: #eee;
}

@media (min-width: 1250px) {
    .container {
        width: 1200px;
        padding: 0;
    }
}

#backtop {
    position: fixed;
    right: 49px;
    bottom: 20px;
    z-index: 100;
    opacity: 0;
    transition: 0.3s;
}

@media (min-width: 768px) {
    #backtop {
        display: none;
    }
}

#backtop ul li {
    width: 54px;
    height: 54px;
    float: left;
    position: relative;
    line-height: 54px;
    text-align: center;
    margin-bottom: 3px;
    list-style: none;
}

#backtop ul li .inner {
    position: absolute;
    right: 70px;
    top: 0;
    background: #fff;
    border: 1px solid #ddd;
    line-height: normal;
    padding: 15px;
    transform: scale(0);
    transform-origin: top right;
    transition: 0.3s;
}

#backtop ul li .inner p {
    font-size: 12px;
}

#backtop ul li:hover .inner {
    transform: scale(1);
}

#backtop ul li .sidebox {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    transition: all 0.3s;
    background: #fff;
    border: 1px solid #ddd;
    color: #fff;
    font: 14px/54px "微软雅黑";
    overflow: hidden;
    background-position: center;
    background-size: inherit;
    background-repeat: no-repeat;
}

#backtop.on {
    opacity: 1;
}

#backtop ul li .sidetop {
    width: 100%;
    height: 100%;
    line-height: 54px;
    display: inline-block;
    opacity: 0.6;
    filter: alpha(opacity=80);
    transition: all 0.3s;
    border: 1px solid #eef4f7;
    background: #eee url(../images/side_icon.png) center / cover no-repeat;
}

@media (min-width: 768px) {
    #backtop ul li .sidetop:hover {
        opacity: 1;
        filter: alpha(opacity=100);
        background: #1ec2b3 url(../images/side_icon-w.png) center / cover no-repeat;
    }
}

@media (min-width: 768px) {
    #backtop {
        display: none;
    }
}

@media (max-width: 767px) {
    #backtop {
        right: 10px;
        bottom: 140px;
    }
    #backtop ul li {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}


/* PC端侧边栏 */

.side_callem {
    position: fixed;
    width: 70px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: none;
    transition: 0.5s;
}

@media (max-width: 767px) {
    .side_callem {
        display: none !important;
    }
}

.side_callem ul li {
    text-align: center;
    position: relative;
    margin-top: -2px;
}

.side_callem ul li>a {
    display: block;
    width: 70px;
    height: 78px;
    background: #fff;
    position: relative;
    border: 1px solid #e0e0e0;
    margin-top: -1px;
    z-index: 99;
    -webkit-transition: all 0.4s;
    -moz-transit-webkit-transition: all 0.4s;
    -ms-transit-webkit-transition: all 0.4s;
    -o-transit-webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.side_callem ul li a img {
    display: block;
    width: 24px;
    line-height: 24px;
    padding: 13px 0 5px;
    color: #333;
    margin: 0 auto;
}

.side_callem ul li a span {
    color: #666;
    font-size: 12px;
}

.side_callem ul li a .ricon2 {
    display: none;
}

.side_callem ul li .show_con {
    background: #fff;
    border: solid 1px #ddd;
    padding: 25px;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.4s;
    -moz-transit-webkit-transition: all 0.4s;
    -ms-transit-webkit-transition: all 0.4s;
    -o-transit-webkit-transition: all 0.4s;
    transition: all 0.4s;
    transform: translateX(100%);
    opacity: 0;
    white-space: nowrap;
}

.side_callem ul li .show_con strong a {
    color: #1ec2b3;
    font-size: 20px;
}

.side_callem ul li:hover>a {
    background: #1ec2b3;
}

.side_callem ul li:hover .ricon1 {
    display: none;
}

.side_callem ul li:hover .ricon2 {
    display: block;
}

.side_callem ul li:hover span {
    color: #fff;
}

.side_callem ul li:hover .show_con {
    transform: translateX(-100%);
    opacity: 1;
}

.side_callem.active {
    display: block;
}


/* 移动端底部导航栏 */

.home-bottom-operate-fixed {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 50px;
    display: none;
}

@media (max-width: 767px) {
    .home-bottom-operate-fixed {
        display: block;
    }
}

.home-bottom-operate-fixed .home-bottom-operate {
    position: fixed;
    width: 100%;
    height: 50px;
    left: 0;
    bottom: 0;
    z-index: 2;
    background: #fff;
    display: flex;
    align-items: center;
}

.home-bottom-operate-fixed .home-bottom-operate .outflex {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.home-bottom-operate-fixed .home-bottom-operate .outflex .bphone {
    flex: 1;
    background: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
}

.home-bottom-operate-fixed .home-bottom-operate .outflex .bphone img {
    width: 20px;
    margin: 0 8px 0 0;
}

.home-bottom-operate-fixed .home-bottom-operate .outflex .boffer {
    flex: 1;
    background: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    background: #1ec2b3;
}

.home-bottom-operate-fixed .home-bottom-operate .outflex .boffer img {
    width: 20px;
    margin: 0 8px 0 0;
}

.home-bottom-operate-fixed .home-bottom-operate .outflex .innerflex {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.home-bottom-operate-fixed .home-bottom-operate .outflex .innerflex a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    border: 1px solid #ddd;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}

.home-bottom-operate-fixed .home-bottom-operate .outflex .innerflex a img {
    height: 18px;
    margin: 0 0 6px;
}

.home-bottom-operate-fixed .home-bottom-operate .outflex .innerflex a p {
    margin: 3px 0 0;
    line-height: 1;
    font-size: 13px;
}

.home-bottom-operate-fixed .home-bottom-operate .outflex .innerflex a:first-child(1) {
    border-right: 1px solid #ddd;
}


/* 新pc导航栏 */


/* .pc_nav{
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  background: #ddd;
  z-index: 99999;
  display: none;
  padding: 1% 0;
}
.pc_nav .list{
  display: flex;
  flex-wrap: wrap;
}
.pc_nav .list >li{
  flex: 0 0 10%;
  max-width: 10%;
  text-align: center;
}
.pc_nav .list >li a{
  display: block;
  padding: 10px 0;
  font-size: 18px;
  color: #333;
}


.pc_nav .list > li .subnav_list {
  display: none;
}
.pc_nav .list > li .subnav_list li a{
  font-size: 14px;
}

.pc_nav .list li.active > a{
  color: #1ec2b3;
}
.pc_nav .list li:hover > a{
  color: #1ec2b3;
}

@media (max-width: 991px) {
  .pc_nav .list{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding-top: 3%;
  }
  .pc_nav .list >li{
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 1200px) { 
  .pc_nav .list >li .subnav_list {
    display: none !important;
  }
} */


/* 首页导航栏 */

.index-header {
    width: 100%;
    height: 100px;
    position: relative;
    z-index: 999;
}

@media (max-width: 760px) {
    .index-header {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .index-header .container {
        width: 100%;
        padding: 0;
    }
}

.index-header .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 760px) {
    .index-header .header {
        flex-direction: row-reverse;
    }
}

@media (max-width: 767px) {
    .index-header .header {
        padding: 0 15px;
    }
}

.index-header .header .nav_pc {
    align-items: center;
    display: flex;
    cursor: pointer;
}

.index-header .header .nav_pc img {
    max-width: 25px;
}

.index-header .header .nav_pc span {
    margin-left: 10px;
    font-size: 18px;
    color: #999;
}

@media (max-width: 575px) {
    .index-header .header .nav_pc span {
        display: none;
    }
}

.index-header .navbar {
    height: 100px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
    border-radius: 0;
    position: fixed;
    box-shadow: 0 0 5px #aaa;
    z-index: 99999;
}

@media (max-width: 760px) {
    .index-header .navbar {
        display: block;
        height: 60px;
    }
    .index-header .navbar .navbar-header {
        height: 60px;
    }
}

.index-header .nav_box {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    overflow: hidden;
    z-index: 99999;
}

@media (min-width: 1200px) {
    .index-header .nav_box {
        background-color: rgba(0, 0, 0, 0.95);
        width: 30%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .index-header .nav_box {
        background-color: rgba(0, 0, 0, 0.95);
        width: 40%;
    }
}

@media (min-width: 761px) and (max-width: 991px) {
    .index-header .nav_box {
        background-color: rgba(0, 0, 0, 0.95);
        width: 51%;
    }
}

@media (max-width: 760px) {
    .index-header .nav_box {
        background-color: #fff;
        width: 100%;
    }
}

.index-header .nav_box .wapNav {
    width: 100%;
    height: 100%;
    position: relative;
}

.index-header .nav_box .wapNav .wap-logo {
    width: 46%;
    height: 100%;
    background: url(../images/index/tup2.jpg ) no-repeat center;
    background-position: 100% 46%;
}

@media (max-width: 767px) {
    .index-header .nav_box .wapNav .wap-logo {
        display: none;
    }
}

.index-header .nav_box .wapNav .menu-main {
    height: 100%;
    -webkit-transition: transform 0.5s;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}

@media (min-width: 768px) {
    .index-header .nav_box .wapNav .menu-main {
        position: absolute;
        width: 100%;
        top: 0;
        right: 0;
    }
}

.index-header .nav_box .wapNav .menu-main .menu {
    position: absolute;
    z-index: 9999;
    border-radius: 50%;
    top: 27px;
    right: 27px;
    -webkit-transition: transform 0.5s;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    cursor: pointer;
}

.index-header .nav_box .wapNav .menu-main .menu b img {
    margin-bottom: 5px;
    max-width: 20px;
}

@media (max-width: 760px) {
    .index-header .nav_box .wapNav .menu-main .menu b .p_close {
        display: none;
    }
}

.index-header .nav_box .wapNav .menu-main .menu b .m_close {
    display: none;
}

@media (max-width: 760px) {
    .index-header .nav_box .wapNav .menu-main .menu b .m_close {
        display: block;
    }
}

.index-header .nav_box .wapNav .menu-main .menu div {
    margin-left: 10px;
    font-size: 18px;
}

@media (min-width: 761px) {
    .index-header .nav_box .wapNav .menu-main .menu div {
        color: #fff;
        display: inline-block;
    }
}

@media (max-width: 760px) {
    .index-header .nav_box .wapNav .menu-main .menu div {
        display: none;
    }
}

.index-header .nav_box .wapNav .menu-main .first-level {
    width: 57%;
    left: 43%;
}

@media (min-width: 761px) {
    .index-header .nav_box .wapNav .menu-main .first-level {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media (max-width: 760px) {
    .index-header .nav_box .wapNav .menu-main .first-level {
        position: absolute;
        top: 50px;
        left: 0px;
        width: 100%;
    }
}

.index-header .nav_box .wapNav .menu-main .first-level .first-level-item {
    position: relative;
    z-index: 0;
    cursor: pointer;
}

@media (min-width: 760px) {
    .index-header .nav_box .wapNav .menu-main .first-level .first-level-item.active a {
        color: #1ec2b3;
    }
    .index-header .nav_box .wapNav .menu-main .first-level .first-level-item .second-level li.active a {
        color: #1ec2b3;
    }
}

@media (max-width: 760px) {
    .index-header .nav_box .wapNav .menu-main .first-level .first-level-item.active a {
        color: #1ec2b3;
    }
    .index-header .nav_box .wapNav .menu-main .first-level .first-level-item .second-level li.active a {
        color: #1ec2b3;
    }
}

@media (min-width: 1200px) {
    .index-header .nav_box .wapNav .menu-main .first-level .first-level-item {
        height: 34px;
        line-height: 34px;
        margin: 28px 0;
    }
}

@media (min-width: 761px) and (max-width: 1199px) {
    .index-header .nav_box .wapNav .menu-main .first-level .first-level-item {
        height: 25px;
        line-height: 25px;
        margin: 25px 0;
    }
}

@media (max-width: 760px) {
    .index-header .nav_box .wapNav .menu-main .first-level .first-level-item {
        line-height: 50px;
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }
}

.index-header .nav_box .wapNav .menu-main .first-level .first-level-item>a {
    font-size: 16px;
    line-height: 32px;
    color: #666;
}

.index-header .nav_box .wapNav .menu-main .first-level .first-level-item .second-level {
    overflow: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 99999;
}

@media (min-width: 1400px) {
    .index-header .nav_box .wapNav .menu-main .first-level .first-level-item .second-level {
        opacity: 0;
        position: absolute;
        top: -5px;
        left: 120px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .index-header .nav_box .wapNav .menu-main .first-level .first-level-item .second-level {
        opacity: 0;
        position: absolute;
        top: -5px;
        left: 105px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .index-header .nav_box .wapNav .menu-main .first-level .first-level-item .second-level {
        opacity: 0;
        position: absolute;
        top: -5px;
        left: 120px;
    }
}

@media (min-width: 761px) and (max-width: 991px) {
    .index-header .nav_box .wapNav .menu-main .first-level .first-level-item .second-level {
        opacity: 0;
        position: absolute;
        top: -5px;
        left: 105px;
    }
}

@media (max-width: 761px) {
    .index-header .nav_box .wapNav .menu-main .first-level .first-level-item .second-level {
        max-height: 0;
    }
}

.index-header .nav_box .wapNav .menu-main .first-level .first-level-item .second-level li {
    position: relative;
}

.index-header .nav_box .wapNav .menu-main .first-level .first-level-item .second-level li a {
    width: 200px;
    font-size: 14px;
    height: 45px;
    line-height: 45px;
    color: #585858;
    display: block;
}

@media (max-width: 760px) {
    .index-header .nav_box .wapNav .menu-main .first-level .first-level-item .second-level li a {
        margin: 0 auto;
    }
}

.index-header .nav_box .wapNav .menu-main .first-level .first-level-item .second-level li::before {
    content: "";
    width: 10px;
    height: 1px;
    position: absolute;
    background-color: #ddd;
    top: 14px;
    left: -18px;
}

.index-header .nav_box .wapNav .menu-main .first-level .first-level-item:hover {
    z-index: 100;
}

.index-header .nav_box .wapNav .menu-main .first-level .first-level-item:hover .second-level {
    opacity: 1;
}

@media (min-width: 760px) {
    .index-header .nav_box .wapNav .menu-main .first-level .first-level-item:hover>a {
        color: #1ec2b3;
    }
    .index-header .nav_box .wapNav .menu-main .first-level .first-level-item .second-level a:hover {
        color: #1ec2b3;
    }
}

.index-header .search_box {
    position: relative;
}

.index-header .search_box>a {
    padding: 0 35px 30px;
}

.index-header .search_box>a img {
    max-width: 18px;
}

@media (min-width: 761px) {
    .index-header .search_box .header-top-sreach-box {
        position: absolute;
        right: 0px;
        top: 45px;
        z-index: 999;
        display: none;
    }
    .index-header .search_box .header-top-sreach-box .header-top-form {
        border: 1px solid #d9d9d9;
        display: block;
        float: right;
        position: relative;
        width: 400px;
        background-color: #fff;
    }
    .index-header .search_box .header-top-sreach-box .header-top-form-input {
        padding-right: 0;
        font-size: 16px;
        outline: none !important;
        display: block;
        width: 328px !important;
        height: 50px !important;
        border: 0 !important;
        float: left !important;
        padding-left: 20px !important;
        background-color: transparent !important;
    }
    .index-header .search_box .header-top-sreach-box .header-top-form-sbm {
        outline: none;
        width: 20%;
        font-size: 0;
        position: absolute;
        top: 0;
        left: 81%;
        float: left;
        height: 50px;
        display: block;
        border: 0;
        background: url(../images/index/search.png) center center no-repeat;
        background-size: 18px;
    }
    /* .index-header .search_box:hover .header-top-sreach-box {
    display: block;
  } */
}

@media (max-width: 760px) {
    .index-header .search_box {
        display: none;
    }
}

.index-header .navbar-default {
    border: none;
}

.index-header .navbar-brand {
    padding: 0;
    height: auto;
    margin: 0;
}

.index-header .navbar-brand img {
    width: 100%;
    max-width: 109px;
}

@media (max-width: 767px) {
    .index-header .navbar-brand {
        width: 70px;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        text-align: center;
    }
    .index-header .navbar-brand a {
        display: flex;
        align-items: center;
        height: 100%;
    }
    .index-header .navbar-brand img {
        width: 100%;
        max-width: 109px;
    }
}

@media (max-width: 767px) and (max-width: 760px) {
    .index-header .navbar-brand {
        left: inherit;
        width: 68px;
        right: inherit;
        margin-left: 5px;
    }
}

.index-header .nav.navbar-nav {
    margin: 34px -15px 0 0;
}

@media (max-width: 767px) {
    .index-header .nav.navbar-nav {
        padding: 15px 0;
        margin: 0;
    }
}

.index-header .nav.navbar-nav>li {
    margin: 0;
    position: relative;
    font-size: 16px;
    color: #333;
}

@media (max-width: 991px) {
    .index-header .nav.navbar-nav>li {
        font-size: 14px;
    }
}

.index-header .nav.navbar-nav>li>a {
    padding: 0 26px 30px;
}

@media (max-width: 1199px) {
    .index-header .nav.navbar-nav>li>a {
        padding: 0 15px 30px;
    }
}

@media (max-width: 991px) {
    .index-header .nav.navbar-nav>li>a {
        padding: 0 12px 30px;
    }
}

@media (max-width: 767px) {
    .index-header .nav.navbar-nav>li>a {
        color: #fff;
        padding: 5px 15px;
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .index-header .nav.navbar-nav li.hasdrop {
        display: none;
    }
}

.index-header .nav.navbar-nav>li.active>a,
.index-header .nav.navbar-nav>li:hover:not(.nohover)>a {
    color: #1ec2b3;
    background-color: transparent;
}

@media (min-width: 1350px) {
    .index-content .index-section1 .container {
        width: 1320px;
    }
}


/* banner视频在手机端隐藏 */

@media (max-width: 767px) {
    .index-content .index-section1 .banner .banner_1 {
        display: none;
    }
}

.index-content .index-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-content .index-section1 {
    width: 100%;
}

@media all and (max-width: 400px) {
    .index-content .index-section1 .banner .banner_2 img {
        object-position: -240px;
    }
    .index-content .index-section1 .banner .banner_3 img {
        object-position: -165px;
    }
}

@media (min-width: 401px) and (max-width: 499px) {
    .index-content .index-section1 .banner .banner_2 img {
        object-position: -220px;
    }
    .index-content .index-section1 .banner .banner_3 img {
        object-position: -150px;
    }
}

@media (min-width: 501px) and (max-width: 575px) {
    .index-content .index-section1 .banner .banner_2 img {
        object-position: -200px;
    }
    .index-content .index-section1 .banner .banner_3 img {
        object-position: -150px;
    }
}


/* .index-content .index-section1 .banner {
  height: 830px;
  width: 100%;
} */

@media (min-width: 576px) and (max-width: 767px) {
    .index-content .index-section1 .banner {
        height: 450px;
    }
}

@media all and (max-width: 575px) {
    .index-content .index-section1 .banner {
        height: 350px;
    }
}

.index-content .index-section1 .banner .swiper-slide {
    overflow: hidden;
}


/* banner文字 */

.index-content .index-section1 .banner .banner_text {
    position: absolute;
    left: 0;
    top: 33%;
    z-index: 999;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    /* padding: 0 15px; */
}

.index-content .index-section1 .banner .hover_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

.index-content .index-section1 .banner #banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 320px) and (max-width: 1680px) {
    .index-content .index-section1 .banner .banner_text {
        display: flex;
        align-items: center;
        top: 0;
    }
}

@media all and (max-width: 767px) {
    .index-content .index-section1 .banner .banner_text .container {
        flex: 0 0 100%;
    }
    .banner-next,
    .banner-prev {
        display: none;
    }
}

.index-content .index-section1 .banner .banner_text .container h1 {
    font-family: "Didot LT Std";
    font-size: 60px;
    line-height: 44px;
    color: #fff;
    opacity: 0.5;
    margin: 0 0 37px;
    font-style: italic;
}

.index-content .index-section1 .banner .banner_text .container h2 {
    font-family: "Didot LT Std";
    font-size: 60px;
    line-height: 44px;
    color: #fff;
    opacity: 0.5;
    margin: 0 0 37px;
}

.index-content .index-section1 .banner .banner_text .container h3 {
    width: 20px;
    height: 2px;
    display: block;
    background: #68655f;
}

.index-content .index-section1 .banner .banner_text .container h4 {
    display: block;
    margin-top: 30px;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    opacity: 0.5;
    letter-spacing: 8px;
    font-family: "黑体";
    margin-bottom: 80px;
}

.index-content .index-section1 .banner .banner_text .container h5 {
    display: block;
    margin-top: 0;
    font-size: 24px;
    line-height: 24px;
    color: #fff;
    opacity: 0.5;
    letter-spacing: 8px;
    font-family: "黑体";
    margin-bottom: 40px;
}

.index-content .index-section1 .banner .banner_text .container h6 {
    display: block;
    margin-top: 0;
    font-size: 60px;
    line-height: 70px;
    color: #fff;
    letter-spacing: 8px;
    font-family: "黑体";
    margin-bottom: 75px;
}

.index-content .index-section1 .banner .banner_text .container h6 span {
    display: block;
    margin-top: 0;
    font-size: 60px;
    line-height: 70px;
    color: #1ec2b3;
    opacity: 1;
    letter-spacing: 8px;
    font-family: "黑体";
    margin-bottom: 75px;
}


/* @media (min-width: 768px) and (max-width: 991px) {
  .index-content .index-section1 .banner .banner_text .container h1 {
    font-size: 30px;
    line-height: 22px;
    margin: 0 0 18px;
  }
  .index-content .index-section1 .banner .banner_text .container h2 {
    font-size: 30px;
    line-height: 22px;
    margin: 0 0 18px;
  }
} */

@media all and (max-width: 767px) {
    .index-content .index-section1 .banner .banner_text .container h1 {
        font-size: 30px;
        line-height: 22px;
        margin: 0 0 18px;
    }
    .index-content .index-section1 .banner .banner_text .container h2 {
        font-size: 30px;
        line-height: 22px;
        margin: 0 0 18px;
    }
    .index-content .index-section1 .banner .banner_text .container h5 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 30px;
    }
    .index-content .index-section1 .banner .banner_text .container h6 {
        font-size: 28px;
        line-height: 40px;
        margin: 0 0 18px;
    }
    .index-content .index-section1 .banner .banner_text .container h6 span {
        font-size: 28px;
        line-height: 40px;
        margin: 0 0 18px;
    }
}

.index-content .index-section1 .banner .banner_text .container p {
    font-size: 60px;
    line-height: 60px;
    color: #fff;
    font-family: "黑体";
    margin-bottom: 60px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section1 .banner .banner_text .container p {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 30px;
    }
}

@media all and (max-width: 767px) {
    .index-content .index-section1 .banner .banner_text .container p {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 30px;
    }
}

.index-content .index-section1 .banner .banner_text .container p i {
    font-size: 48px;
    line-height: 48px;
    color: #1ec2b3;
    font-family: "黑体";
    font-style: normal;
    padding-left: 8px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section1 .banner .banner_text .container p i {
        font-size: 24px;
        line-height: 24px;
    }
}

@media all and (max-width: 767px) {
    .index-content .index-section1 .banner .banner_text .container p i {
        font-size: 24px;
        line-height: 24px;
    }
}

.index-content .index-section1 .banner .banner_text .container span {
    display: block;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    opacity: 0.5;
    letter-spacing: 8px;
    font-family: "黑体";
    margin-bottom: 80px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section1 .banner .banner_text .container span {
        margin-bottom: 40px;
    }
    .index-content .index-section1 .banner .banner_text .container h4 {
        margin-bottom: 40px;
    }
    .index-content .index-section1 .banner .banner_text .container h6 {
        margin-bottom: 40px;
    }
    .index-content .index-section1 .banner .banner_text .container h6 span {
        margin-bottom: 40px;
    }
}

@media all and (max-width: 767px) {
    .index-content .index-section1 .banner .banner_text .container span {
        font-size: 14px;
        line-height: 14px;
        margin-bottom: 40px;
    }
    .index-content .index-section1 .banner .banner_text .container h4 {
        font-size: 14px;
        line-height: 14px;
        margin-bottom: 40px;
    }
}

.index-content .index-section1 .banner .banner_text .container button {
    width: 170px;
    height: 50px;
    display: block;
    outline: none;
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 48px;
    font-size: 16px;
    font-family: "微软雅黑";
    background: #1ec2b3;
    margin-left: 1px;
}

.index-content .index-section1 .banner .banner_text .container button a {
    color: #fff;
    display: block;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section1 .banner .banner_text .container button {
        width: 125px;
        height: 40px;
        line-height: 38px;
        font-size: 14px;
    }
}

@media all and (max-width: 767px) {
    .index-content .index-section1 .banner .banner_text .container button {
        width: 125px;
        height: 40px;
        line-height: 38px;
        font-size: 14px;
    }
}

.index-content .index-section1 .banner .banner-next {
    width: 26px;
    height: 33px;
    outline: none;
    right: 15px;
}

.index-content .index-section1 .banner .banner-prev {
    width: 26px;
    height: 33px;
    outline: none;
    left: 15px;
}

.index-content .index-section1 .swiper-pagination {
    bottom: 20px;
}

.index-content .index-section1 .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cccccc;
    margin: 0 5px;
    opacity: 1;
    outline: none;
}

@media (max-width: 767px) {
    .index-content .index-section1 .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

.index-content .index-section1 .swiper-pagination .swiper-pagination-bullet-active {
    background: #1ec2b3;
}

.index-content .index-section2 {
    padding: 100px 0;
    background: #f5f5f5;
    overflow: hidden;
}

@media (max-width: 767px) {
    .index-content .index-section2 {
        padding: 50px 0;
    }
}

@media (min-width: 1350px) {
    .index-content .index-section2 .container {
        width: 1320px;
    }
}

.index-content .index-section2 .section2_top {
    overflow: hidden;
}

.index-content .index-section2 .section2_top a {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .index-content .index-section2 .section2_top a {
        flex-direction: column-reverse;
        margin-bottom: 30px;
    }
}

.index-content .index-section2 .section2_top a .top_left {
    flex: 0 0 30.3%;
    background: #fff;
    padding: 100px 0 0 60px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .index-content .index-section2 .section2_top a .top_left {
        padding: 25px 0 0 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section2 .section2_top a .top_left {
        padding: 20px 0 0 25px;
        flex: 0 0 35.3%;
    }
}

@media (max-width: 767px) {
    .index-content .index-section2 .section2_top a .top_left {
        flex: 0 0 100%;
        padding: 30px 0 30px 30px;
    }
}

.index-content .index-section2 .section2_top a .top_left strong {
    font-size: 30px;
    color: #333;
    font-family: "Didot LT Std";
    display: block;
    line-height: 30px;
    margin-bottom: 11px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .index-content .index-section2 .section2_top a .top_left strong {
        font-size: 26px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section2 .section2_top a .top_left strong {
        font-size: 24px;
        margin-bottom: 5px;
    }
}

@media all and (max-width: 575px) {
    .index-content .index-section2 .section2_top a .top_left strong {
        font-size: 26px;
        margin-bottom: 10px;
    }
}

.index-content .index-section2 .section2_top a .top_left strong:nth-child(2) {
    margin-bottom: 60px;
    position: relative;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section2 .section2_top a .top_left strong:nth-child(2) {
        margin-bottom: 30px;
    }
}

@media all and (max-width: 575px) {
    .index-content .index-section2 .section2_top a .top_left strong:nth-child(2) {
        margin-bottom: 30px;
    }
}

.index-content .index-section2 .section2_top a .top_left strong:nth-child(2)::before {
    content: "";
    width: 420px;
    height: 1px;
    background: #999999;
    display: block;
    position: absolute;
    left: 0;
    bottom: -30px;
    z-index: 1;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .index-content .index-section2 .section2_top a .top_left strong:nth-child(2)::before {
        width: 370px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section2 .section2_top a .top_left strong:nth-child(2)::before {
        bottom: -15px;
        width: 310px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .index-content .index-section2 .section2_top a .top_left strong:nth-child(2)::before {
        left: 0;
    }
}

@media all and (max-width: 575px) {
    .index-content .index-section2 .section2_top a .top_left strong:nth-child(2)::before {
        width: 200px;
        left: 0;
        bottom: -15px;
    }
}

.index-content .index-section2 .section2_top a .top_left p {
    font-size: 24px;
    font-family: "黑体";
    color: #333;
    line-height: 24px;
    margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section2 .section2_top a .top_left p {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

@media all and (max-width: 575px) {
    .index-content .index-section2 .section2_top a .top_left p {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

.index-content .index-section2 .section2_top a .top_left span {
    font-size: 14px;
    line-height: 21px;
    font-family: "微软雅黑";
    color: #666;
    display: block;
    width: 75%;
    margin-bottom: 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .index-content .index-section2 .section2_top a .top_left span {
        margin-bottom: 25px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section2 .section2_top a .top_left span {
        font-size: 12px;
        line-height: 18px;
        width: 80%;
        margin-bottom: 15px;
    }
}

@media all and (max-width: 575px) {
    .index-content .index-section2 .section2_top a .top_left span {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 25px;
        width: 90%;
    }
}

.index-content .index-section2 .section2_top a .top_left button {
    width: 170px;
    height: 50px;
    display: block;
    outline: none;
    cursor: pointer;
    text-align: center;
    line-height: 48px;
    font-size: 16px;
    font-family: "微软雅黑";
    margin-left: 1px;
    background: #fff;
    color: #222;
    border: 1px solid #222;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section2 .section2_top a .top_left button {
        width: 125px;
        height: 40px;
        line-height: 38px;
        font-size: 14px;
    }
}

@media all and (max-width: 575px) {
    .index-content .index-section2 .section2_top a .top_left button {
        width: 125px;
        height: 40px;
        line-height: 38px;
        font-size: 14px;
    }
}

.index-content .index-section2 .section2_top a .top_right {
    position: relative;
    overflow: hidden;
}

.index-content .index-section2 .section2_top a .top_right img {
    width: 100%;
    transition: .3s;
}

.index-content .index-section2 .section2_top a .top_right .hover_bg {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 1s;
}

.index-content .index-section2 .section2_top a:hover button {
    background: #1ec2b3;
    border: 1px solid #1ec2b3;
    color: #fff;
    transition: 0.2s;
}

.index-content .index-section2 .section2_top a:hover img {
    transform: scale(1.1);
}

.index-content .index-section2 .section2_top a:hover .hover_bg {
    opacity: 1;
}

.index-content .index-section2 .section2_bottom {
    overflow: hidden;
}

.index-content .index-section2 .section2_bottom a {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .index-content .index-section2 .section2_bottom a {
        flex-direction: column;
    }
}

.index-content .index-section2 .section2_bottom a .bottom_right {
    flex: 0 0 30.3%;
    background: #fff;
    padding: 100px 0 0 60px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .index-content .index-section2 .section2_bottom a .bottom_right {
        padding: 25px 0 0 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section2 .section2_bottom a .bottom_right {
        flex: 0 0 35.3%;
        padding: 20px 0 0 25px;
    }
}

@media (max-width: 767px) {
    .index-content .index-section2 .section2_bottom a .bottom_right {
        flex: 0 0 100%;
        padding: 30px 0 30px 30px;
    }
}

.index-content .index-section2 .section2_bottom a .bottom_right strong {
    font-size: 30px;
    color: #333;
    font-family: "Didot LT Std";
    display: block;
    line-height: 30px;
    margin-bottom: 11px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .index-content .index-section2 .section2_bottom a .bottom_right strong {
        font-size: 26px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section2 .section2_bottom a .bottom_right strong {
        font-size: 24px;
        margin-bottom: 5px;
    }
}

@media all and (max-width: 575px) {
    .index-content .index-section2 .section2_bottom a .bottom_right strong {
        font-size: 26px;
        margin-bottom: 10px;
    }
}

.index-content .index-section2 .section2_bottom a .bottom_right strong:nth-child(2) {
    margin-bottom: 60px;
    position: relative;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section2 .section2_bottom a .bottom_right strong:nth-child(2) {
        margin-bottom: 30px;
    }
}

@media all and (max-width: 575px) {
    .index-content .index-section2 .section2_bottom a .bottom_right strong:nth-child(2) {
        margin-bottom: 30px;
    }
}

.index-content .index-section2 .section2_bottom a .bottom_right strong:nth-child(2)::before {
    content: "";
    width: 420px;
    height: 1px;
    background: #999999;
    display: block;
    position: absolute;
    left: -160px;
    bottom: -30px;
    z-index: 1;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .index-content .index-section2 .section2_bottom a .bottom_right strong:nth-child(2)::before {
        width: 370px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section2 .section2_bottom a .bottom_right strong:nth-child(2)::before {
        bottom: -15px;
        width: 310px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .index-content .index-section2 .section2_bottom a .bottom_right strong:nth-child(2)::before {
        left: 0;
    }
}

@media all and (max-width: 575px) {
    .index-content .index-section2 .section2_bottom a .bottom_right strong:nth-child(2)::before {
        width: 200px;
        left: 0;
        bottom: -15px;
    }
}

.index-content .index-section2 .section2_bottom a .bottom_right p {
    font-size: 24px;
    font-family: "黑体";
    color: #333;
    line-height: 24px;
    margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section2 .section2_bottom a .bottom_right p {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

@media all and (max-width: 575px) {
    .index-content .index-section2 .section2_bottom a .bottom_right p {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

.index-content .index-section2 .section2_bottom a .bottom_right span {
    font-size: 14px;
    line-height: 21px;
    font-family: "微软雅黑";
    color: #666;
    display: block;
    width: 75%;
    margin-bottom: 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .index-content .index-section2 .section2_bottom a .bottom_right span {
        margin-bottom: 25px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section2 .section2_bottom a .bottom_right span {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 15px;
    }
}

@media all and (max-width: 575px) {
    .index-content .index-section2 .section2_bottom a .bottom_right span {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 25px;
        width: 90%;
    }
}

.index-content .index-section2 .section2_bottom a .bottom_right button {
    width: 170px;
    height: 50px;
    display: block;
    outline: none;
    border: 1px solid #222;
    cursor: pointer;
    text-align: center;
    line-height: 48px;
    font-size: 16px;
    color: #222222;
    font-family: "微软雅黑";
    background: #ffffff;
    margin-left: 1px;
    color: #222;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section2 .section2_bottom a .bottom_right button {
        width: 125px;
        height: 40px;
        line-height: 38px;
        font-size: 14px;
    }
}

@media all and (max-width: 575px) {
    .index-content .index-section2 .section2_bottom a .bottom_right button {
        width: 125px;
        height: 40px;
        line-height: 38px;
        font-size: 14px;
    }
}

.index-content .index-section2 .section2_bottom a .bottom_left {
    position: relative;
    overflow: hidden;
}

.index-content .index-section2 .section2_bottom a .bottom_left img {
    width: 100%;
    transition: .3s;
}

.index-content .index-section2 .section2_bottom a .bottom_left .hover_bg {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 1s;
}

.index-content .index-section2 .section2_bottom a:hover button {
    background: #1ec2b3;
    border: 1px solid #1ec2b3;
    color: #fff;
    transition: 0.2s;
}

.index-content .index-section2 .section2_bottom a:hover img {
    transform: scale(1.1);
}

.index-content .index-section2 .section2_bottom a:hover .hover_bg {
    opacity: 1;
}

.index-content .index-section3 {
    background: url(../images/index/bg1.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    height: 860px;
    overflow: hidden;
}

@media (min-width: 576px) and (max-width: 767px) {
    .index-content .index-section3 {
        height: 600px;
    }
}

@media all and (max-width: 575px) {
    .index-content .index-section3 {
        height: 450px;
    }
}

@media (min-width: 1350px) {
    .index-content .index-section3 .container {
        width: 1320px;
    }
}

.index-content .index-section3 .Individualization {
    position: absolute;
    width: 430px;
    height: 500px;
    padding: 0 58px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
}

@media all and (max-width: 575px) {
    .index-content .index-section3 .Individualization {
        width: 290px;
        height: 410px;
        padding: 0 20px;
    }
}

.index-content .index-section3 .Individualization .swiper-container {
    flex: 1;
    width: 100%;
}

.index-content .index-section3 .Individualization .swiper-container .swiper-slide h1 {
    font-size: 40px;
    line-height: 40px;
    font-family: "Didot LT Std";
    color: #222;
    margin: 86px 0 31px;
    text-align: center;
}

@media all and (max-width: 575px) {
    .index-content .index-section3 .Individualization .swiper-container .swiper-slide h1 {
        font-size: 32px;
        line-height: 32px;
        margin: 50px 0 25px;
    }
}

.index-content .index-section3 .Individualization .swiper-container .swiper-slide p {
    font-size: 24px;
    line-height: 24px;
    font-family: "黑体";
    color: #333;
    text-align: center;
}

@media all and (max-width: 575px) {
    .index-content .index-section3 .Individualization .swiper-container .swiper-slide p {
        font-size: 22px;
        line-height: 22px;
    }
}

.index-content .index-section3 .Individualization .swiper-container .swiper-slide>i {
    display: block;
    width: 40px;
    height: 1px;
    background: #000;
    margin: 30px auto;
}

@media all and (max-width: 575px) {
    .index-content .index-section3 .Individualization .swiper-container .swiper-slide>i {
        margin: 20px auto;
    }
}

.index-content .index-section3 .Individualization .swiper-container .swiper-slide>span {
    display: block;
    font-size: 15px;
    line-height: 27px;
    color: #333;
    font-family: "微软雅黑";
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 32px;
}

@media all and (max-width: 575px) {
    .index-content .index-section3 .Individualization .swiper-container .swiper-slide>span {
        margin-bottom: 24px;
    }
}

.index-content .index-section3 .Individualization .swiper-container .swiper-slide button {
    display: block;
    outline: none;
    border: none;
    width: 170px;
    height: 50px;
    line-height: 48px;
    margin: 0 auto;
    font-size: 16px;
    font-family: "微软雅黑";
    background: #1ec2b3;
}

.index-content .index-section3 .Individualization .swiper-container .swiper-slide button a {
    color: #fff;
    display: block;
}

@media all and (max-width: 575px) {
    .index-content .index-section3 .Individualization .swiper-container .swiper-slide button {
        line-height: 38px;
        font-size: 14px;
        color: #fff;
        width: 125px;
        height: 40px;
    }
}

.index-content .index-section3 .Individualization .swiper-bottom-operate {
    margin: 0 auto 25px;
    text-align: center;
}

@media all and (max-width: 575px) {
    .index-content .index-section3 .Individualization .swiper-bottom-operate {
        margin: 0 auto 25px;
    }
}

.index-content .index-section3 .Individualization .swiper-bottom-operate .index-section3-prev {
    position: static;
    display: inline-block;
    outline: none;
    width: 24px;
    height: 24px;
    background: url(../images/about/prev1.png) no-repeat center;
    background-size: cover;
    vertical-align: middle;
    margin-top: -1px;
}

.index-content .index-section3 .Individualization .swiper-bottom-operate .index-section3-next {
    position: static;
    display: inline-block;
    outline: none;
    width: 24px;
    height: 24px;
    background: url(../images/about/next1.png) no-repeat center;
    background-size: cover;
    vertical-align: middle;
    margin-top: -1px;
}

.index-content .index-section3 .Individualization .swiper-bottom-operate .index-section3-pagination {
    position: static;
    display: inline;
    vertical-align: middle;
    font-size: 18px;
    padding: 0 19px;
    color: #333;
}

.index-content .index-section3 .Individualization .swiper-bottom-operate .swiper-pagination-current {
    padding-right: 6px;
}

.index-content .index-section3 .Individualization .swiper-bottom-operate .swiper-pagination-total {
    padding-left: 6px;
    color: #999;
}

.index-content .index-section4 {
    margin: 100px 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    .index-content .index-section4 {
        margin: 30px 0;
    }
}

@media (min-width: 1350px) {
    .index-content .index-section4 .container {
        width: 1320px;
    }
}

.index-content .index-section4 .box {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 0 -30px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section4 .box {
        margin: 0 -15px;
    }
}

@media (max-width: 767px) {
    .index-content .index-section4 .box {
        margin: 0;
        flex-direction: column;
    }
}

.index-content .index-section4 .box .box_col {
    padding: 0 30px;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section4 .box .box_col {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .index-content .index-section4 .box .box_col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 30px 0px;
    }
}

.index-content .index-section4 .box .box_col .about h1 {
    line-height: 40px;
    margin: 0 0 20px;
}

.index-content .index-section4 .box .box_col .box_img {
    overflow: hidden;
}

.index-content .index-section4 .box .box_col .about h1 strong {
    font-size: 40px;
    line-height: 40px;
    font-family: "Didot LT Std";
    display: inline-block;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section4 .box .box_col .about h1 strong {
        font-size: 36px;
        line-height: 36px;
    }
}

.index-content .index-section4 .box .box_col .about h1 span {
    font-size: 24px;
    line-height: 24px;
    color: #333;
    display: inline-block;
}

.index-content .index-section4 .box .box_col .about img {
    width: 100%;
    display: block;
}

.index-content .index-section4 .box .box_col .about p {
    font-size: 16px;
    font-family: "微软雅黑";
    line-height: 16px;
    color: #666;
    margin-top: 20px;
    width: 78%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.index-content .index-section4 .box .box_col .about a .box_img img {
    transition: 0.3s;
}

.index-content .index-section4 .box .box_col .about a:hover .box_img img {
    transform: scale(1.1);
}

.index-content .index-section4 .box .box_col .about a:hover p {
    color: #1ec2b3;
}

.index-content .index-section4 .box .box_col .case h1 {
    line-height: 40px;
    margin: 0 0 30px;
}

.index-content .index-section4 .box .box_col .case h1 strong {
    font-size: 40px;
    line-height: 40px;
    font-family: "Didot LT Std";
    display: inline-block;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section4 .box .box_col .case h1 strong {
        font-size: 36px;
        line-height: 36px;
    }
}

.index-content .index-section4 .box .box_col .case h1 span {
    font-size: 24px;
    line-height: 24px;
    color: #333;
    display: inline-block;
}

.index-content .index-section4 .box .box_col .case img {
    width: 100%;
    display: block;
}

.index-content .index-section4 .box .box_col .case p {
    font-size: 16px;
    font-family: "微软雅黑";
    line-height: 16px;
    color: #666;
    margin-top: 20px;
    width: 78%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.index-content .index-section4 .box .box_col .case p:hover a {
    color: #1ec2b3;
}

.index-content .index-section4 .box .box_col .news h1 {
    line-height: 40px;
    margin: 0 0 30px;
}

.index-content .index-section4 .box .box_col .news h1 strong {
    font-size: 40px;
    line-height: 40px;
    font-family: "Didot LT Std";
    display: inline-block;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-content .index-section4 .box .box_col .news h1 strong {
        font-size: 36px;
        line-height: 36px;
    }
}

.index-content .index-section4 .box .box_col .news h1 span {
    font-size: 24px;
    line-height: 24px;
    color: #333;
    display: inline-block;
}

.index-content .index-section4 .box .box_col .news img {
    width: 100%;
    display: block;
}

.index-content .index-section4 .box .box_col .news p {
    font-size: 16px;
    font-family: "微软雅黑";
    line-height: 16px;
    color: #666;
    margin-top: 20px;
    width: 78%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.index-content .index-section4 .box .box_col .news p:hover a {
    color: #1ec2b3;
}

.index-footer {
    background: #222;
    padding: 63px 0 81px;
}

@media (max-width: 767px) {
    .index-footer {
        padding: 30px 0 110px;
    }
}

.index-footer .footer_box {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

@media (max-width: 767px) {
    .index-footer .footer_box {
        display: none;
    }
}

.index-footer .footer_box .footer_left {
    display: flex;
    flex-direction: row;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-footer .footer_box .footer_left {
        flex: 0 0 80%;
    }
}

.index-footer .footer_box .footer_left .left_logo img {
    width: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-footer .footer_box .footer_left .left_logo img {
        width: 85%;
        padding-top: 7%;
    }
}

.index-footer .footer_box .footer_left .left_nav {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding-left: 63px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-footer .footer_box .footer_left .left_nav {
        padding-left: 15px;
        padding-top: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .index-footer .footer_box .footer_left .left_nav {
        padding-left: 38px;
    }
}

.index-footer .footer_box .footer_left .left_nav .left_top ul {
    display: flex;
    flex-direction: row;
}

.index-footer .footer_box .footer_left .left_nav .left_top ul li {
    font-size: 14px;
    line-height: 14px;
    font-family: "微软雅黑";
    color: #fff;
    padding-right: 44px;
    position: relative;
    padding-bottom: 21px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .index-footer .footer_box .footer_left .left_nav .left_top ul li {
        padding-right: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-footer .footer_box .footer_left .left_nav .left_top ul li {
        padding-right: 5px;
        padding-bottom: 12px;
    }
}

.index-footer .footer_box .footer_left .left_nav .left_top ul li a {
    color: #999;
}

.index-footer .footer_box .footer_left .left_nav .left_top ul li::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 13px;
    right: 22px;
    top: 1px;
    background: #333;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .index-footer .footer_box .footer_left .left_nav .left_top ul li::after {
        right: 15px;
    }
}

@media (max-width: 991px) {
    .index-footer .footer_box .footer_left .left_nav .left_top ul li::after {
        content: none;
    }
}

.index-footer .footer_box .footer_left .left_nav .left_top ul li:last-child::after {
    content: none;
}

.index-footer .footer_box .footer_left .left_nav .left_bottom p {
    opacity: 0.5;
}

.index-footer .footer_box .footer_left .left_nav .left_bottom p span {
    font-size: 14px;
    line-height: 14px;
    font-family: "微软雅黑";
    color: #999999;
}

.index-footer .footer_box .footer_left .left_nav .left_bottom p span:nth-child(2) {
    padding-left: 10px;
}

.index-footer .footer_box .footer_left .left_nav .left_bottom p span:nth-child(2) a {
    color: #999999;
    margin-right: 10px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-footer .footer_box .footer_left .left_nav .left_bottom p span {
        line-height: 20px;
    }
    .index-footer .footer_box .footer_left .left_nav .left_bottom p span:nth-child(1) {
        display: block;
    }
    .index-footer .footer_box .footer_left .left_nav .left_bottom p span:nth-child(2) {
        padding-left: 0px;
    }
}

.index-footer .footer_box .footer_right {
    padding-top: 14px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-footer .footer_box .footer_right {
        flex: 0 0 20%;
    }
}

.index-footer .footer_box .footer_right p {
    padding-bottom: 16px;
    line-height: 14px;
    text-align: right;
}

.index-footer .footer_box .footer_right p img {
    max-width: 20px;
}

.index-footer .footer_box .footer_right p span {
    font-size: 14px;
    line-height: 14px;
    font-family: "微软雅黑";
    color: #fff;
    opacity: 0.5;
    vertical-align: middle;
    padding-left: 10px;
}

.index-footer .footer_box .footer_right a {
    font-size: 24px;
    line-height: 24px;
    color: #fff;
    display: block;
}

@media (min-width: 768px) and (max-width: 991px) {
    .index-footer .footer_box .footer_right a {
        font-size: 18px;
        line-height: 18px;
        text-align: right;
    }
}

@media all and (max-width: 767px) {
    .index-footer .m_footer_box {
        display: block;
    }
}

@media (min-width: 768px) {
    .index-footer .m_footer_box {
        display: none;
    }
}

.index-footer .m_footer_box .m_footer_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
}

.index-footer .m_footer_box .m_footer_top .m_footer_left .m_left_logo h1 {
    margin: 0;
}

.index-footer .m_footer_box .m_footer_top .m_footer_left .m_left_logo h1 a img {
    max-width: 95px;
}

.index-footer .m_footer_box .m_footer_top .m_footer_right p {
    padding-bottom: 10px;
    text-align: right;
}

.index-footer .m_footer_box .m_footer_top .m_footer_right p img {
    max-width: 20px;
}

.index-footer .m_footer_box .m_footer_top .m_footer_right p span {
    font-size: 14px;
    line-height: 14px;
    font-family: "微软雅黑";
    color: #fff;
    opacity: 0.5;
    vertical-align: middle;
    padding-left: 10px;
    text-align: right;
}

.index-footer .m_footer_box .m_footer_top .m_footer_right a {
    font-size: 22px;
    line-height: 18px;
    color: #fff;
    display: block;
}

.index-footer .m_footer_box .m_footer_bottom .m_nav .nav_top {
    margin-top: 25px;
}

.index-footer .m_footer_box .m_footer_bottom .m_nav .nav_top ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.index-footer .m_footer_box .m_footer_bottom .m_nav .nav_top ul li {
    width: 25%;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .index-footer .m_footer_box .m_footer_bottom .m_nav .nav_top ul li {
        width: 33.33%;
        font-size: 14px;
        line-height: 14px;
        margin-bottom: 10px;
    }
}

.index-footer .m_footer_box .m_footer_bottom .m_nav .nav_top ul li a {
    color: #fff;
    opacity: 0.4;
    display: block;
}

.index-footer .m_footer_box .m_footer_bottom .m_nav .nav_bottom {
    margin-top: 10px;
}

.index-footer .m_footer_box .m_footer_bottom .m_nav .nav_bottom span {
    display: block;
    line-height: 24px;
    color: #fff;
    opacity: 0.2;
    font-size: 14px;
}

.index-footer .m_footer_box .m_footer_bottom .m_nav .nav_bottom span a {
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    margin-right: 8px;
}


/* 关于我们 */

@media (max-width: 767px) {
    .about-content .about-section1 {
        height: 120px;
    }
}

.about-content .about-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .about-section2 .company .company_top {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    line-height: 80px;
    border-bottom: 1px solid #dddddd;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .about-content .about-section2 .company .company_top {
        height: 60px;
        line-height: 60px;
    }
}

.about-content .about-section2 .company .company_top a {
    font-size: 18px;
    color: #666;
    padding: 0 8px;
    margin: 0 30px;
    display: inline-block;
}

@media (max-width: 767px) {
    .about-content .about-section2 .company .company_top a {
        font-size: 18px;
        margin: 0;
    }
}

@media (max-width: 575px) {
    .about-content .about-section2 .company .company_top a {
        font-size: 15px;
        padding: 0 5px;
        margin: 0;
    }
}

.about-content .about-section2 .company .company_top a:hover {
    color: #1ec2b3;
    border-bottom: 2px solid #1ec2b3;
}

.about-content .about-section2 .company .company_bottom {
    padding: 80px 0;
    width: 100%;
    display: flex;
}

@media (max-width: 767px) {
    .about-content .about-section2 .company .company_bottom {
        padding: 40px 0;
        display: inherit;
    }
}

.about-content .about-section2 .company .company_bottom .company_left {
    flex: 0 0 50%;
    height: 620px;
}

@media (max-width: 767px) {
    .about-content .about-section2 .company .company_bottom .company_left {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .about-content .about-section2 .company .company_bottom .company_left {
        height: 220px;
    }
}

.about-content .about-section2 .company .company_bottom .company_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .about-section2 .company .company_bottom .company_right {
    flex: 0 0 28%;
    margin-left: 78px;
}

@media (max-width: 1199px) {
    .about-content .about-section2 .company .company_bottom .company_right {
        margin-left: 50px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .about-content .about-section2 .company .company_bottom .company_right {
        flex: 0 0 40%;
    }
}

@media (max-width: 767px) {
    .about-content .about-section2 .company .company_bottom .company_right {
        margin: 0;
        padding: 20px 50px;
    }
}

@media (max-width: 575px) {
    .about-content .about-section2 .company .company_bottom .company_right {
        margin: 0;
        padding: 20px 30px;
    }
}

.about-content .about-section2 .company .company_bottom .company_right h1 {
    margin: 86px 0 35px;
    font-size: 60px;
    line-height: 60px;
    color: #333333;
    font-family: "Didot LT Std";
    font-style: italic;
    font-weight: bold;
}

@media (min-width: 1200px) and (max-width: 1660px) {
    .about-content .about-section2 .company .company_bottom .company_right h1 {
        margin: 80px 0 30px;
        font-size: 48px;
        line-height: 48px;
    }
}

@media (max-width: 1199px) {
    .about-content .about-section2 .company .company_bottom .company_right h1 {
        margin: 70px 0 40px;
        font-size: 44px;
        line-height: 44px;
    }
}

@media (max-width: 991px) {
    .about-content .about-section2 .company .company_bottom .company_right h1 {
        font-size: 36px;
        line-height: 36px;
    }
}

@media (max-width: 767px) {
    .about-content .about-section2 .company .company_bottom .company_right h1 {
        margin: 20px 0;
        font-size: 50px;
        line-height: 50px;
    }
}

@media (max-width: 575px) {
    .about-content .about-section2 .company .company_bottom .company_right h1 {
        margin: 20px 0;
        font-size: 30px;
        line-height: 30px;
    }
}

.about-content .about-section2 .company .company_bottom .company_right>p {
    font-size: 24px;
    line-height: 24px;
    font-family: "微软雅黑";
    color: #333333;
}

@media (max-width: 575px) {
    .about-content .about-section2 .company .company_bottom .company_right>p {
        font-size: 16px;
        line-height: 16px;
    }
}

.about-content .about-section2 .company .company_bottom .company_right .about_text {
    display: flex;
    justify-content: space-between;
    padding: 50px 0 40px;
    border-bottom: 2px solid #dddddd;
}

.about-content .about-section2 .company .company_bottom .company_right .about_text div p {
    font-size: 48px;
    line-height: 48px;
    color: #1ec2b3;
}

@media (min-width: 768px) and (max-width: 991px) {
    .about-content .about-section2 .company .company_bottom .company_right .about_text div p {
        font-size: 36px;
        line-height: 36px;
    }
}

@media (max-width: 575px) {
    .about-content .about-section2 .company .company_bottom .company_right .about_text div p {
        font-size: 30px;
        line-height: 30px;
    }
}

.about-content .about-section2 .company .company_bottom .company_right .about_text div p i {
    font-style: normal;
}

.about-content .about-section2 .company .company_bottom .company_right .about_text div p em {
    font-size: 36px;
    font-family: "微软雅黑";
    font-style: normal;
    vertical-align: text-top;
    padding-left: 10px;
    line-height: 10px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .about-content .about-section2 .company .company_bottom .company_right .about_text div p em {
        font-size: 22px;
        padding-left: 5px;
    }
}

@media (max-width: 575px) {
    .about-content .about-section2 .company .company_bottom .company_right .about_text div p em {
        font-size: 22px;
        padding-left: 2px;
    }
}

.about-content .about-section2 .company .company_bottom .company_right .about_text div span {
    font-size: 14px;
    font-family: "微软雅黑";
    color: #666;
    margin-top: 16px;
    display: inline-block;
}

.about-content .about-section2 .company .company_bottom .company_right .about_text div:nth-child(1) p em {
    font-size: 18px;
}

@media (max-width: 575px) {
    .about-content .about-section2 .company .company_bottom .company_right .about_text div:nth-child(1) p em {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .about-content .about-section2 .company .company_bottom .company_right .about_text div:nth-child(2) {
        padding-left: 6%;
    }
}

.about-content .about-section2 .company .company_bottom .company_right p:nth-child(1) {
    font-size: 24px;
    line-height: 24px;
    font-family: "微软雅黑";
    color: #333333;
}

.about-content .about-section2 .company .company_bottom .company_right p:nth-child(4) {
    font-size: 14px;
    line-height: 25px;
    color: #666;
    font-family: "微软雅黑";
    margin: 10px 0 5px;
}

.about-content .about-section2 .company .company_bottom .company_right .more_text>p {
    font-size: 14px;
    line-height: 25px;
    color: #666;
    font-family: "微软雅黑";
    margin: 10px 0 5px;
    display: none;
}

@media (max-width: 575px) {
    .about-content .about-section2 .company .company_bottom .company_right>span {
        margin: 25px 0;
    }
}

.about-content .about-section2 .company .company_bottom .company_right .more_button {
    display: block;
    margin-top: 30px;
    cursor: pointer;
}

.about-content .about-section3 {
    padding: 100px 0 60px;
    background: #f5f5f5;
}

@media (max-width: 991px) {
    .about-content .about-section3 {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .about-content .about-section3 {
        padding: 40px 0;
    }
}

.about-content .about-section3 .partner .partner_top {
    text-align: center;
}

.about-content .about-section3 .partner .partner_top h1 {
    font-family: "Didot LT Std";
    font-size: 40px;
    line-height: 40px;
    color: #222;
    margin: 0;
    font-style: italic;
    font-weight: bold;
}

@media (max-width: 575px) {
    .about-content .about-section3 .partner .partner_top h1 {
        font-size: 32px;
        line-height: 32px;
    }
}

.about-content .about-section3 .partner .partner_top p {
    font-family: "黑体";
    color: #333;
    font-size: 24px;
    line-height: 24px;
    margin: 20px 0 38px;
}

@media (max-width: 575px) {
    .about-content .about-section3 .partner .partner_top p {
        font-size: 22px;
        line-height: 22px;
    }
}

@media (max-width: 991px) {
    .about-content .about-section3 .partner .partner_bottom {
        padding: 0 10px;
    }
}

.about-content .about-section3 .partner .partner_bottom .swiper-slide {
    text-align: center;
    position: relative;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media (min-width: 1200px) {
    .about-content .about-section3 .partner .partner_bottom .swiper-slide {
        position: static;
    }
}

@media (max-width: 767px) {
    .about-content .about-section3 .partner .partner_bottom .swiper-slide {
        height: 250px;
    }
}

.about-content .about-section3 .partner .partner_bottom .swiper-slide .partner_img {
    width: 215px;
}

@media (max-width: 575px) {
    .about-content .about-section3 .partner .partner_bottom .swiper-slide .partner_img {
        width: 180px;
    }
}

.about-content .about-section3 .partner .partner_bottom .swiper-slide .partner_img img {
    width: 100%;
}

.about-content .about-section3 .partner .partner_bottom .swiper-slide .partner_text {
    background: #fff;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: -100%;
    left: 0;
}

@media (max-width: 1199px) {
    .about-content .about-section3 .partner .partner_bottom .swiper-slide .partner_text {
        width: 100%;
    }
}

.about-content .about-section3 .partner .partner_bottom .swiper-slide .partner_text h1 {
    margin: 0;
    padding: 48px 0 31px;
    font-size: 24px;
    color: #1ec2b3;
    font-family: "微软雅黑";
}

@media (min-width: 1200px) {
    .about-content .about-section3 .partner .partner_bottom .swiper-slide .partner_text h1 {
        padding: 36px 0 25px;
        font-size: 30px;
    }
}

.about-content .about-section3 .partner .partner_bottom .swiper-slide .partner_text p {
    padding: 0 48px;
    font-size: 14px;
    font-family: "微软雅黑";
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    max-height: 140px;
}

@media (min-width: 1200px) {
    .about-content .about-section3 .partner .partner_bottom .swiper-slide .partner_text p {
        font-size: 20px;
        line-height: 32px;
        max-height: inherit;
    }
}

@media (max-width: 991px) {
    .about-content .about-section3 .partner .partner_bottom .swiper-slide .partner_text p {
        padding: 0 30px;
    }
}

@media (max-width: 575px) {
    .about-content .about-section3 .partner .partner_bottom .swiper-slide .partner_text p {
        padding: 0 30px;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        max-height: 100px;
    }
}

.about-content .about-section3 .partner .partner_bottom .swiper-slide:hover .partner_text {
    bottom: 0;
    transition: 0.4s;
}

.about-content .about-section4 {
    padding: 80px 0;
}

@media (max-width: 767px) {
    .about-content .about-section4 {
        padding: 40px 0 0;
    }
}

.about-content .about-section4 .elegant .elegant_top {
    text-align: center;
}

.about-content .about-section4 .elegant .elegant_top h1 {
    font-family: "Didot LT Std";
    font-size: 40px;
    line-height: 40px;
    color: #222;
    margin: 0;
    font-style: italic;
    font-weight: bold;
}

@media (max-width: 575px) {
    .about-content .about-section4 .elegant .elegant_top h1 {
        font-size: 32px;
        line-height: 32px;
    }
}

.about-content .about-section4 .elegant .elegant_top p {
    font-family: "黑体";
    color: #333;
    font-size: 24px;
    line-height: 24px;
    margin: 20px 0 38px;
}

@media (max-width: 575px) {
    .about-content .about-section4 .elegant .elegant_top p {
        font-size: 22px;
        line-height: 22px;
    }
}

.about-content .about-section4 .elegant .elegant_bottom .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.about-content .about-section4 .elegant .elegant_bottom .tabs a {
    margin: 0 102px;
    font-size: 18px;
    color: #666;
}

@media (max-width: 991px) {
    .about-content .about-section4 .elegant .elegant_bottom .tabs a {
        margin: 0 70px;
    }
}

@media (max-width: 767px) {
    .about-content .about-section4 .elegant .elegant_bottom .tabs a {
        margin: 0 50px;
    }
}

@media (max-width: 575px) {
    .about-content .about-section4 .elegant .elegant_bottom .tabs a {
        margin: 0 16px;
        font-size: 16px;
    }
}

.about-content .about-section4 .elegant .elegant_bottom .tabs a.active {
    color: #1ec2b3;
}

.about-content .about-section4 .elegant .elegant_bottom #tabs-container>.swiper-wrapper>.swiper-slide {
    overflow: hidden;
}

.about-content .about-section4 .elegant .elegant_bottom .display1 {
    width: 857px;
    overflow: visible;
}

@media (max-width: 991px) {
    .about-content .about-section4 .elegant .elegant_bottom .display1 {
        width: 700px;
    }
}

@media (max-width: 767px) {
    .about-content .about-section4 .elegant .elegant_bottom .display1 {
        width: 500px;
    }
}

@media (max-width: 575px) {
    .about-content .about-section4 .elegant .elegant_bottom .display1 {
        width: 280px;
    }
}

.about-content .about-section4 .elegant .elegant_bottom .display1 img {
    width: 100%;
}

.about-content .about-section4 .elegant .elegant_bottom .display2 {
    width: 857px;
    overflow: visible;
}

@media (max-width: 991px) {
    .about-content .about-section4 .elegant .elegant_bottom .display2 {
        width: 700px;
    }
}

@media (max-width: 767px) {
    .about-content .about-section4 .elegant .elegant_bottom .display2 {
        width: 500px;
    }
}

@media (max-width: 575px) {
    .about-content .about-section4 .elegant .elegant_bottom .display2 {
        width: 280px;
    }
}

.about-content .about-section4 .elegant .elegant_bottom .display2 img {
    width: 100%;
}

.about-content .about-section4 .elegant .elegant_bottom .display3 {
    width: 857px;
    overflow: visible;
}

@media (max-width: 991px) {
    .about-content .about-section4 .elegant .elegant_bottom .display3 {
        width: 700px;
    }
}

@media (max-width: 767px) {
    .about-content .about-section4 .elegant .elegant_bottom .display3 {
        width: 500px;
    }
}

@media (max-width: 575px) {
    .about-content .about-section4 .elegant .elegant_bottom .display3 {
        width: 280px;
    }
}

.about-content .about-section4 .elegant .elegant_bottom .display3 img {
    width: 100%;
}

.about-content .about-section4 .elegant .elegant_bottom .swiper-pagination {
    position: static;
    outline: none;
    margin-top: 40px;
}

@media (max-width: 575px) {
    .about-content .about-section4 .elegant .elegant_bottom .swiper-pagination {
        margin-top: 20px;
    }
}

.about-content .about-section4 .elegant .elegant_bottom .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid #dedede;
    opacity: 1;
    outline: none;
}

@media (max-width: 575px) {
    .about-content .about-section4 .elegant .elegant_bottom .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }
}

.about-content .about-section4 .elegant .elegant_bottom .swiper-pagination-bullet-active {
    background: #1ec2b3;
    border: none;
}

.about-content .about-section5 {
    padding: 80px 0 100px;
}

@media (max-width: 767px) {
    .about-content .about-section5 {
        padding: 40px 0;
    }
}

.about-content .about-section5 .honor .honor_top {
    text-align: center;
}

.about-content .about-section5 .honor .honor_top h1 {
    font-family: "Didot LT Std";
    font-size: 40px;
    line-height: 40px;
    color: #222;
    margin: 0;
    font-style: italic;
    font-weight: bold;
}

@media (max-width: 575px) {
    .about-content .about-section5 .honor .honor_top h1 {
        font-size: 32px;
        line-height: 32px;
    }
}

.about-content .about-section5 .honor .honor_top p {
    font-family: "黑体";
    color: #333;
    font-size: 24px;
    line-height: 24px;
    margin: 20px 0 60px;
}

@media (max-width: 575px) {
    .about-content .about-section5 .honor .honor_top p {
        font-size: 22px;
        line-height: 22px;
    }
}

@media (max-width: 1199px) {
    .about-content .about-section5 .honor .container {
        padding: 0 20px;
    }
}

.about-content .about-section5 .honor .container .honor_bottom {
    position: relative;
}

@media (min-width: 400px) and (max-width: 767px) {
    .about-content .about-section5 .honor .container .honor_bottom .honor_box .swiper-slide {
        padding: 20px;
    }
}

@media (min-width: 320px) and (max-width: 399px) {
    .about-content .about-section5 .honor .container .honor_bottom .honor_box .swiper-slide {
        padding: 10px;
    }
}

.about-content .about-section5 .honor .container .honor_bottom .honor_box .swiper-slide img {
    width: 100%;
}

.about-content .about-section5 .honor .container .honor_bottom .honor_np {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10px;
}

.about-content .about-section5 .honor .container .honor_bottom .honor_np .swiper-button-next {
    right: -45px;
}

@media (min-width: 1200px) and (max-width: 1250px) {
    .about-content .about-section5 .honor .container .honor_bottom .honor_np .swiper-button-next {
        right: -25px;
    }
}

@media (max-width: 1199px) {
    .about-content .about-section5 .honor .container .honor_bottom .honor_np .swiper-button-next {
        right: 0;
    }
}

.about-content .about-section5 .honor .container .honor_bottom .honor_np .swiper-button-prev {
    left: -45px;
}

@media (min-width: 1200px) and (max-width: 1250px) {
    .about-content .about-section5 .honor .container .honor_bottom .honor_np .swiper-button-prev {
        left: -25px;
    }
}

@media (max-width: 1199px) {
    .about-content .about-section5 .honor .container .honor_bottom .honor_np .swiper-button-prev {
        left: 0;
    }
}

.about-content .about-section5 .honor .container .honor_bottom .honor-prev {
    position: absolute;
    background: url(../images/about/prev.png) no-repeat center;
    width: 12px;
    height: 22px;
    background-size: 100%;
    outline: none;
    z-index: 100;
}

.about-content .about-section5 .honor .container .honor_bottom .honor-next {
    position: absolute;
    width: 12px;
    height: 22px;
    background: url(../images/about/next.png) no-repeat center;
    background-size: 100%;
    outline: none;
    z-index: 100;
}

.about-content .about-section5 .honor .container .honor_bottom .honor-prev:hover {
    background: url(../images/about/prev_h.png) no-repeat center;
    background-size: cover;
}

.about-content .about-section5 .honor .container .honor_bottom .honor-next:hover {
    background: url(../images/about/next_h.png) no-repeat center;
    background-size: cover;
}


/* 产品：企业服装定制 */

@media (max-width: 767px) {
    .product-content .product-section1 {
        height: 120px;
    }
}

.product-content .product-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content .product-section2 .product .product_top {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    line-height: 80px;
    border-bottom: 1px solid #dddddd;
    box-sizing: border-box;
}

.product-content .product-section2 .product .product_top .title {
    white-space: nowrap;
    overflow: auto;
}

@media (max-width: 767px) {
    .product-content .product-section2 .product .product_top {
        height: 60px;
        line-height: 60px;
    }
}

.product-content .product-section2 .product .product_top a {
    font-size: 18px;
    color: #666;
    padding: 0 8px;
    margin: 0 30px;
    display: inline-block;
}

@media (max-width: 767px) {
    .product-content .product-section2 .product .product_top a {
        font-size: 17px;
        margin: 0;
    }
}

@media (max-width: 575px) {
    .product-content .product-section2 .product .product_top a {
        font-size: 15px;
        padding: 0 15px;
        margin: 0;
    }
}

.product-content .product-section2 .product .product_top a.active {
    color: #1ec2b3;
    border-bottom: 1px solid #1ec2b3;
}

.product-content .product-section2 .product .product_top a:hover {
    color: #1ec2b3;
    border-bottom: 1px solid #1ec2b3;
}

.product-content .product-section2 .product .product_bottom {
    padding: 30px 0 80px;
    width: 100%;
    display: flex;
    overflow: hidden;
}

@media (max-width: 767px) {
    .product-content .product-section2 .product .product_bottom {
        padding: 40px 0;
        display: inherit;
    }
}

@media (max-width: 575px) {
    .product-content .product-section2 .product .product_bottom {
        padding: 20px 0;
        display: inherit;
    }
}

.product-content .product-section2 .product .product_bottom .product_nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 33px;
}

@media (max-width: 575px) {
    .product-content .product-section2 .product .product_bottom .product_nav ul {
        align-items: inherit;
        display: inherit;
        justify-content: inherit;
        clear: both;
        overflow: hidden;
    }
}

.product-content .product-section2 .product .product_bottom .product_nav ul li {
    margin: 0 27px;
    color: #666;
    font-size: 16px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .product-content .product-section2 .product .product_bottom .product_nav ul li {
        margin: 0 24px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .product-content .product-section2 .product .product_bottom .product_nav ul li {
        margin: 0 8px;
    }
}

@media (max-width: 575px) {
    .product-content .product-section2 .product .product_bottom .product_nav ul li {
        float: left;
        width: 50%;
        margin: 10px 0;
        text-align: center;
        line-height: 30px;
    }
}

.product-content .product-section2 .product .product_bottom .product_nav ul li.all {
    /* margin-right: 35px; */
    padding: 0 30px;
    /* height: 30px; */
    line-height: 30px;
    text-align: center;
    background: #1ec2b3;
    color: #fff;
    font-size: 16px;
}

.product-content .product-section2 .product .product_bottom .product_nav ul li.all a {
    color: #fff;
}

@media (min-width: 576px) and (max-width: 767px) {
    .product-content .product-section2 .product .product_bottom .product_nav ul li.all {
        margin: 10px 0;
    }
}

@media (max-width: 575px) {
    .product-content .product-section2 .product .product_bottom .product_nav ul li.all {
        margin: 10px 0;
    }
}

.product-content .product-section2 .product .product_bottom .product_list ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.product-content .product-section2 .product .product_bottom .product_list ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 15px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .product-content .product-section2 .product .product_bottom .product_list ul li {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .product-content .product-section2 .product .product_bottom .product_list ul li {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.product-content .product-section2 .product .product_bottom .product_list ul li>img {
    width: 100%;
}

.product-content .product-section2 .product .product_bottom .product_list ul li .product_img {
    position: relative;
    overflow: hidden;
}

.product-content .product-section2 .product .product_bottom .product_list ul li .product_img>img {
    width: 100%;
}

.product-content .product-section2 .product .product_bottom .product_list ul li .product_img .product_box {
    position: absolute;
    background: rgba(30, 197, 179, 0.8);
    width: 100%;
    height: 100%;
    bottom: -100%;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-content .product-section2 .product .product_bottom .product_list ul li .product_img .product_box img {
    margin: 185px 0 158px;
    max-width: 40px;
}

.product-content .product-section2 .product .product_bottom .product_list ul li .product_img .product_box p {
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    margin-bottom: 18px;
    font-family: "微软雅黑";
    opacity: 1;
}

.product-content .product-section2 .product .product_bottom .product_list ul li .product_img .product_box span {
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    font-family: "微软雅黑";
    opacity: 1;
}

.product-content .product-section2 .product .product_bottom .product_list ul li .product_text {
    padding: 20px 0;
    text-align: center;
}

.product-content .product-section2 .product .product_bottom .product_list ul li .product_text p {
    font-size: 16px;
    line-height: 16px;
    color: #1ec2b3;
    margin-bottom: 18px;
    font-family: "微软雅黑";
}

.product-content .product-section2 .product .product_bottom .product_list ul li .product_text span {
    font-size: 16px;
    line-height: 16px;
    color: #666;
    font-family: "微软雅黑";
}

.product-content .product-section2 .product .product_bottom .product_list ul li:hover .product_box {
    bottom: 0;
    transition: 0.4s;
}

.product-content .product-section2 .product .product_bottom .product_list ul li:hover .product_text p,
.product-content .product-section2 .product .product_bottom .product_list ul li:hover .product_text span {
    opacity: 0;
}

.product-content .product-section2 .product .product_bottom .product_list .pages {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 38px;
}

@media (max-width: 575px) {
    .product-content .product-section2 .product .product_bottom .product_list .pages {
        padding: 0;
    }
}

.product-content .product-section2 .product .product_bottom .product_list .pages a.num,
.product-content .product-section2 .product .product_bottom .product_list .pages a.next,
.product-content .product-section2 .product .product_bottom .product_list .pages a.prev,
.product-content .product-section2 .product .product_bottom .product_list .pages a.next {
    display: inline-block;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border: 1px solid #ddd;
    margin: 0 8px;
}

@media (max-width: 575px) {
    .product-content .product-section2 .product .product_bottom .product_list .pages a.num,
    .product-content .product-section2 .product .product_bottom .product_list .pages a.next,
    .product-content .product-section2 .product .product_bottom .product_list .pages a.prev,
    .product-content .product-section2 .product .product_bottom .product_list .pages a.next {
        margin: 0 3px;
    }
}

.product-content .product-section2 .product .product_bottom .product_list .pages a.prev {
    background: url(../images/new/prev1.png) no-repeat center;
}

.product-content .product-section2 .product .product_bottom .product_list .pages a.next {
    background: url(../images/new/next1.png) no-repeat center;
}

.product-content .product-section2 .product .product_bottom .product_list .pages a.current {
    background-color: #1ec2b3;
    color: #fff;
    border: none;
}

.product-content .product-section2 .product .product_bottom .product_list .pages a.num:hover {
    background-color: #1ec2b3;
    border: none;
    color: #fff;
}

.product-content .product-section2 .product .product_bottom .product_list .pages a.prev:hover {
    background: url(../images/new/prev1_h.png) no-repeat center;
    border: 1px solid #1ec2b3;
}

.product-content .product-section2 .product .product_bottom .product_list .pages a.next:hover {
    background: url(../images/new/next1_h.png) no-repeat center;
    border: 1px solid #1ec2b3;
}

.product-content .product-section3 {
    margin-bottom: 80px;
    overflow: hidden;
}

.product-content .product-section3 .bottom_box {
    position: relative;
    background: url(../images/product/product_bg2.jpg) no-repeat center;
    background-size: cover;
    height: 180px;
}

.product-content .product-section3 .bottom_box .bottom_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.product-content .product-section3 .bottom_box .bottom_text p {
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .product-content .product-section3 .bottom_box .bottom_text p {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .product-content .product-section3 .bottom_box .bottom_text p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .product-content .product-section3 .bottom_box .bottom_text p {
        font-size: 15px;
        padding: 0 16px;
        text-align: center;
    }
}

.product-content .product-section3 .bottom_box .bottom_text a {
    width: 154px;
    height: 44px;
    line-height: 44px;
    background: #1ec2b3;
    color: #fff;
    text-align: center;
    font-size: 16px;
    display: block;
}

@media (max-width: 991px) {
    .product-content .product-section3 .bottom_box .bottom_text a {
        height: 36px;
        line-height: 36px;
    }
}


/* 产品详情 */

@media (max-width: 767px) {
    .productdetails-content .productdetails-section1 {
        height: 120px;
    }
}

.productdetails-content .productdetails-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.productdetails-content .productdetails-section2 {
    overflow: hidden;
}

.productdetails-content .productdetails-section2 .section2_top {
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.productdetails-content .productdetails-section2 .section2_top .top_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 23px 0;
}

@media (max-width: 575px) {
    .productdetails-content .productdetails-section2 .section2_top .top_box {
        display: inherit;
    }
}

.productdetails-content .productdetails-section2 .section2_top .top_box .top_left {
    font-size: 14px;
    line-height: 14px;
    color: #999;
}

.productdetails-content .productdetails-section2 .section2_top .top_box .top_left a {
    color: #999;
}

@media (max-width: 575px) {
    .productdetails-content .productdetails-section2 .section2_top .top_box .top_left {
        margin-bottom: 20px;
    }
}

.productdetails-content .productdetails-section2 .section2_top .top_box .top_right {
    width: 122px;
    height: 34px;
    background: #999;
    text-align: center;
    line-height: 34px;
}

.productdetails-content .productdetails-section2 .section2_top .top_box .top_right a {
    display: block;
    color: #fff;
}

.productdetails-content .productdetails-section2 .section2_top .top_box .top_right a img {
    margin-right: 5px;
    margin-bottom: 3px;
    max-width: 15px;
}

.productdetails-content .productdetails-section2 .section2_box {
    margin-top: 60px;
    display: flex;
}

@media (max-width: 1199px) {
    .productdetails-content .productdetails-section2 .section2_box {
        flex-direction: column;
    }
}

.productdetails-content .productdetails-section2 .section2_box .section2_left {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
}

@media (max-width: 1199px) {
    .productdetails-content .productdetails-section2 .section2_box .section2_left {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.productdetails-content .productdetails-section2 .section2_box .section2_left .left_product {
    padding-right: 20px;
}

@media (max-width: 1199px) {
    .productdetails-content .productdetails-section2 .section2_box .section2_left .left_product {
        display: none;
    }
}

.productdetails-content .productdetails-section2 .section2_box .section2_left .left_product .swiper-container {
    overflow: visible;
}

.productdetails-content .productdetails-section2 .section2_box .section2_left .left_product .swiper-slide {
    border: 2px solid #fff;
}

.productdetails-content .productdetails-section2 .section2_box .section2_left .left_product .swiper-slide .m_box {
    flex: 0 0 86px;
    max-width: 86px;
}

.productdetails-content .productdetails-section2 .section2_box .section2_left .left_product .swiper-slide .m_box img {
    max-width: 86px;
}

.productdetails-content .productdetails-section2 .section2_box .section2_left .left_product .swiper-slide-thumb-active {
    border: 2px solid #1ec2b3;
    position: relative;
}

.productdetails-content .productdetails-section2 .section2_box .section2_left .left_product .swiper-slide-thumb-active::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 41%;
    right: -12px;
    border-top: 8px solid transparent;
    border-left: 10px solid #1ec2b3;
    border-bottom: 8px solid transparent;
}

.productdetails-content .productdetails-section2 .section2_box .section2_left .right_product {
    overflow: hidden;
}

.productdetails-content .productdetails-section2 .section2_box .section2_left .right_product img {
    width: 100%;
}

.productdetails-content .productdetails-section2 .section2_box .section2_left .right_product .swiper-pagination {
    width: 100%;
    bottom: 10px;
}

.productdetails-content .productdetails-section2 .section2_box .section2_left .right_product .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cccccc;
    margin: 0 5px;
    opacity: 1;
    outline: none;
}

.productdetails-content .productdetails-section2 .section2_box .section2_left .right_product .swiper-pagination .swiper-pagination-bullet-active {
    background: #1ec2b3;
}

.productdetails-content .productdetails-section2 .section2_box .section2_right {
    flex: 0 0 50%;
    max-width: 50%;
    border: 1px solid #ddd;
    padding: 48px 60px 60px;
}

@media (min-width: 1200px) and (max-width: 1249px) {
    .productdetails-content .productdetails-section2 .section2_box .section2_right {
        padding: 30px 60px 40px;
    }
}

@media (max-width: 1199px) {
    .productdetails-content .productdetails-section2 .section2_box .section2_right {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .productdetails-content .productdetails-section2 .section2_box .section2_right {
        padding: 48px 15px;
    }
}

.productdetails-content .productdetails-section2 .section2_box .section2_right .right_top {
    padding: 0 0 30px;
}

.productdetails-content .productdetails-section2 .section2_box .section2_right .right_top p {
    font-size: 16px;
    line-height: 16px;
    font-family: "微软雅黑";
    color: #999;
    padding-bottom: 20px;
}

.productdetails-content .productdetails-section2 .section2_box .section2_right .right_top h1 {
    font-size: 30px;
    font-family: "黑体";
    color: #333;
    margin: 0;
}

@media (max-width: 575px) {
    .productdetails-content .productdetails-section2 .section2_box .section2_right .right_top h1 {
        font-size: 24px;
        line-height: 30px;
    }
}

.productdetails-content .productdetails-section2 .section2_box .section2_right .right_center {
    padding: 20px 0;
    border-top: 1px dashed #dddddd;
    border-bottom: 1px dashed #dddddd;
}

.productdetails-content .productdetails-section2 .section2_box .section2_right .right_center pre {
    line-height: 40px;
    font-size: 14px;
    color: #666;
    font-family: "微软雅黑";
    display: block;
    padding: 0;
    margin: 0;
    word-break: inherit;
    word-wrap: inherit;
    background-color: inherit;
    border: none;
    border-radius: inherit;
}

.productdetails-content .productdetails-section2 .section2_box .section2_right .right_center p {
    line-height: 40px;
    font-size: 14px;
    color: #999;
}

.productdetails-content .productdetails-section2 .section2_box .section2_right .right_center p span {
    color: #666;
    margin-left: 18px;
}

.productdetails-content .productdetails-section2 .section2_box .section2_right .right_bottom {
    padding-top: 40px;
    display: flex;
}

.productdetails-content .productdetails-section2 .section2_box .section2_right .right_bottom a {
    display: block;
    width: 158px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: #fff;
    color: #333;
    border: 1px solid #999;
    margin-right: 20px;
}

.productdetails-content .productdetails-section2 .section2_box .section2_right .right_bottom a:hover {
    background: #1ec2b3;
    border: 1px solid #1ec2b3;
    color: #fff;
}

.productdetails-content .productdetails-section3 {
    overflow: hidden;
}

.productdetails-content .productdetails-section3 .section3_box {
    margin: 60px 0 80px;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box {
    display: flex;
    justify-content: space-between;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left {
    flex: 1;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .details_box {
    border: 1px solid #ddd;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .details_box .bottom_title {
    height: 67px;
    background-color: #dddddd;
}

@media (max-width: 575px) {
    .productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .details_box .bottom_title {
        height: 50px;
    }
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .details_box .bottom_title ul {
    clear: both;
    overflow: hidden;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .details_box .bottom_title ul li {
    float: left;
    width: 180px;
    height: 67px;
    line-height: 67px;
    text-align: center;
    font-size: 18px;
    color: #333;
    cursor: pointer;
}

@media (max-width: 575px) {
    .productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .details_box .bottom_title ul li {
        width: 33.33%;
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .details_box .bottom_title ul li.active {
    background-color: #1ec2b3;
    color: #fff;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .details_box .product_tab {
    padding: 25px 45px;
    padding-bottom: 60px;
    background: #fff;
}

@media (max-width: 575px) {
    .productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .details_box .product_tab {
        padding: 20px 30px;
    }
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .details_box .product_tab .tab {
    display: none;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .details_box .product_tab .tab img {
    width: 100%;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .details_box .product_tab .tab p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .details_box .product_tab .tab:nth-child(1) {
    display: block;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .page {
    margin-top: 30px;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .page p {
    font-family: "微软雅黑";
    font-size: 14px;
    line-height: 27px;
    color: #999;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_left .page p a {
    color: #999;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right {
    margin-left: 20px;
    flex: 0 0 300px;
    max-width: 300px;
    overflow: hidden;
}

@media (min-width: 1200px) and (max-width: 1250px) {
    .productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right {
        margin-left: 15px;
        flex: 0 0 260px;
        max-width: 260px;
    }
}

@media (max-width: 1199px) {
    .productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right {
        display: none;
    }
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_top {
    margin-bottom: 20px;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_top h1 {
    width: 100%;
    height: 66px;
    line-height: 66px;
    background: #1ec2b3;
    color: #fff;
    font-size: 18px;
    font-family: "微软雅黑";
    margin: 0;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_top h1 img {
    margin: 0 10px 5px 30px;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_top .top_text {
    padding: 30px 29px 30px 29px;
    border: 1px solid #ddd;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_top .top_text .box_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_top .top_text p {
    font-size: 16px;
    line-height: 16px;
    color: #666;
    font-family: "微软雅黑";
    text-align: center;
    margin: 18px 0 28px;
}

@media (min-width: 1200px) and (max-width: 1250px) {
    .productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_top .top_text p {
        font-size: 14px;
        line-height: 14px;
    }
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_top .top_text .swiper-pagination {
    position: inherit;
    width: 100%;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_top .top_text .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cccccc;
    margin: 0 5px;
    opacity: 1;
    outline: none;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_top .top_text .swiper-pagination .swiper-pagination-bullet-active {
    background: #1ec2b3;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_bottom {
    position: relative;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_bottom img {
    width: 100%;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_bottom .bottom_box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_bottom .bottom_box a {
    display: block;
    width: 100%;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_bottom .bottom_box a p {
    margin: 64px 0 20px;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_bottom .bottom_box a h1 {
    font-size: 36px;
    line-height: 36px;
    color: #1ec2b3;
    font-weight: bold;
    margin: 0 0 18px;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_bottom .bottom_box a span {
    font-size: 18px;
    line-height: 18px;
    color: #1ec2b3;
    display: block;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_bottom .bottom_box a b {
    width: 20px;
    height: 2px;
    background: #48494a;
    display: block;
    margin: 30px auto 58px;
}

.productdetails-content .productdetails-section3 .section3_box .bottom_box .bottom_right .right_bottom .bottom_box a i {
    width: 150px;
    height: 40px;
    background: #1ec2b3;
    color: #fff;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    display: block;
    font-style: inherit;
    margin: 0 auto;
}


/* 私人定制 */

@media (max-width: 767px) {
    .private-content .private-section1 {
        height: 120px;
    }
}

.private-content .private-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.private-content .private-section2 {
    background: #f5f5f5;
    padding: 80px 0;
    overflow: hidden;
}

@media (max-width: 575px) {
    .private-content .private-section2 {
        padding: 40px 0;
    }
}

.private-content .private-section2 .section2_top {
    margin-bottom: 60px;
}

@media (max-width: 575px) {
    .private-content .private-section2 .section2_top {
        margin-bottom: 25px;
    }
}

.private-content .private-section2 .section2_top ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.private-content .private-section2 .section2_top ul li {
    width: 200px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    display: block;
    background: none;
    color: #333;
    margin: 0 15px;
    border-radius: 4px;
    text-align: center;
    font-family: "黑体";
    cursor: pointer;
}

@media (max-width: 575px) {
    .private-content .private-section2 .section2_top ul li {
        width: 140px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        margin: 0 5px;
        font-family: "微软雅黑";
    }
}

.private-content .private-section2 .section2_top ul li.active {
    background: #1ec2b3;
    color: #fff;
}

.private-content .private-section2 .section2_bottom .bottom_box {
    display: none;
}

.private-content .private-section2 .section2_bottom .bottom_box .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

@media (max-width: 1199px) {
    .private-content .private-section2 .section2_bottom .bottom_box .box {
        display: inherit;
    }
}

@media (max-width: 1199px) {
    .private-content .private-section2 .section2_bottom .bottom_box .box .box_left img {
        width: 100%;
    }
}

.private-content .private-section2 .section2_bottom .bottom_box .box .box_right {
    width: 572px;
    height: 370px;
    background: #fff;
    position: absolute;
    padding: 80px;
    top: 0;
    right: 0;
    z-index: 1;
}

@media (max-width: 1199px) {
    .private-content .private-section2 .section2_bottom .bottom_box .box .box_right {
        width: 100%;
        height: inherit;
        position: inherit;
    }
}

@media (max-width: 767px) {
    .private-content .private-section2 .section2_bottom .bottom_box .box .box_right {
        padding: 30px;
    }
}

.private-content .private-section2 .section2_bottom .bottom_box .box .box_right h1 {
    font-size: 30px;
    line-height: 30px;
    color: #333;
    margin: 0;
}

.private-content .private-section2 .section2_bottom .bottom_box .box .box_right i {
    display: block;
    background: #999;
    width: 20px;
    height: 2px;
    margin: 20px 0 28px 0;
}

.private-content .private-section2 .section2_bottom .bottom_box .box .box_right span {
    font-family: "微软雅黑";
    font-size: 14px;
    line-height: 24px;
    color: #999;
}

@media (max-width: 1199px) {
    .private-content .private-section2 .section2_bottom .bottom_box .box .box_right span {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .private-content .private-section2 .section2_bottom .bottom_box .box .box_right span {
        font-size: 14px;
    }
}

.private-content .private-section2 .section2_bottom .bottom_box .box .box_right a {
    color: #1ec2b3;
    display: block;
    margin-top: 38px;
}

.private-content .private-section2 .section2_bottom .bottom_box:nth-child(1) {
    display: block;
}

.private-content .private-section3 {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .private-content .private-section3 {
        padding: 40px 0;
    }
}

.private-content .private-section3 .brand_top {
    text-align: center;
}

.private-content .private-section3 .brand_top h1 {
    font-family: "Didot LT Std";
    font-size: 40px;
    line-height: 40px;
    color: #222;
    margin: 0;
    font-style: italic;
    font-weight: bold;
}

@media (max-width: 575px) {
    .private-content .private-section3 .brand_top h1 {
        font-size: 32px;
        line-height: 32px;
    }
}

.private-content .private-section3 .brand_top p {
    font-family: "黑体";
    color: #333;
    font-size: 24px;
    line-height: 24px;
    margin: 20px 0 38px;
}

@media (max-width: 575px) {
    .private-content .private-section3 .brand_top p {
        font-size: 22px;
        line-height: 22px;
    }
}

.private-content .private-section3 .brand_bottom ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -10px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) and (max-width: 991px) {
    .private-content .private-section3 .brand_bottom ul {
        margin: 0 -5px;
    }
}

@media (min-width: 401px) and (max-width: 575px) {
    .private-content .private-section3 .brand_bottom ul {
        margin: 0;
    }
}

.private-content .private-section3 .brand_bottom ul li {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 10px;
    text-align: center;
}

@media (min-width: 768px) and (max-width: 991px) {
    .private-content .private-section3 .brand_bottom ul li {
        padding: 0 5px;
    }
}

@media (max-width: 767px) {
    .private-content .private-section3 .brand_bottom ul li {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }
}

.private-content .private-section3 .brand_bottom ul li img {
    border: 1px solid #ddd;
    padding: 22px 56px;
}

@media (min-width: 1200px) and (max-width: 1250px) {
    .private-content .private-section3 .brand_bottom ul li img {
        padding: 22px 48px;
    }
}

@media (max-width: 1199px) {
    .private-content .private-section3 .brand_bottom ul li img {
        padding: 22px 20px;
    }
}

@media (max-width: 991px) {
    .private-content .private-section3 .brand_bottom ul li img {
        padding: 10px 0px;
    }
}

@media (max-width: 767px) {
    .private-content .private-section3 .brand_bottom ul li img {
        padding: 22px 40px;
    }
}

@media (min-width: 401px) and (max-width: 575px) {
    .private-content .private-section3 .brand_bottom ul li img {
        padding: 10px 0px;
    }
}

@media all and (max-width: 400px) {
    .private-content .private-section3 .brand_bottom ul li img {
        padding: 5px 0;
        max-width: 100%;
    }
}

.private-content .private-section3 .brand_bottom ul li p {
    font-size: 16px;
    line-height: 16px;
    color: #999;
    margin-top: 20px;
}

.private-content .private-section4 {
    background: #1ec2b3;
}

.private-content .private-section4 .section4_box {
    display: flex;
    flex-direction: row-reverse;
}

@media all and (max-width: 1200px) {
    .private-content .private-section4 .section4_box {
        display: inherit;
        flex-direction: inherit;
    }
}

.private-content .private-section4 .section4_box .box_left {
    flex: 0 0 50%;
    max-width: 50%;
}

@media all and (max-width: 1399px) {
    .private-content .private-section4 .section4_box .box_left {
        max-width: 100%;
    }
}

.private-content .private-section4 .section4_box .box_left img {
    width: 100%;
}

.private-content .private-section4 .section4_box .box_right {
    flex: 0 0 460px;
    max-width: 460px;
    margin-right: 140px;
}

@media all and (max-width: 1399px) {
    .private-content .private-section4 .section4_box .box_right {
        max-width: 100%;
        margin: 0;
        padding: 33px 40px;
    }
}

@media (max-width: 575px) {
    .private-content .private-section4 .section4_box .box_right {
        padding: 30px 20px;
        margin: 0;
    }
}

.private-content .private-section4 .section4_box .box_right h1 {
    margin: 84px 0 40px;
    font-size: 30px;
    line-height: 30px;
    color: #fff;
}

@media (min-width: 1600px) and (max-width: 1700px) {
    .private-content .private-section4 .section4_box .box_right h1 {
        margin: 50px 0 38px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .private-content .private-section4 .section4_box .box_right h1 {
        margin: 40px 0 30px;
    }
}

@media all and (max-width: 1399px) {
    .private-content .private-section4 .section4_box .box_right h1 {
        margin: 20px 0;
    }
}

.private-content .private-section4 .section4_box .box_right span {
    font-size: 16px;
    color: #fff;
    line-height: 26px;
    display: block;
    margin-bottom: 70px;
}

@media all and (max-width: 1399px) {
    .private-content .private-section4 .section4_box .box_right span {
        margin-bottom: 40px;
    }
}

.private-content .private-section4 .section4_box .box_right a {
    display: block;
    width: 142px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    color: #1ec2b3;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 0 5px #1bb1a4;
}

.private-content .private-section5 {
    padding: 80px 0 100px;
    overflow: hidden;
}

@media (max-width: 575px) {
    .private-content .private-section5 {
        padding: 40px 0 50px;
    }
}

.private-content .private-section5 .advanced_top {
    text-align: center;
}

.private-content .private-section5 .advanced_top h1 {
    font-family: "Didot LT Std";
    font-size: 40px;
    line-height: 40px;
    color: #222;
    margin: 0;
    font-style: italic;
    font-weight: bold;
}

@media (max-width: 575px) {
    .private-content .private-section5 .advanced_top h1 {
        font-size: 32px;
        line-height: 32px;
    }
}

.private-content .private-section5 .advanced_top p {
    font-family: "黑体";
    color: #333;
    font-size: 24px;
    line-height: 24px;
    margin: 20px 0 38px;
}

@media (max-width: 575px) {
    .private-content .private-section5 .advanced_top p {
        font-size: 22px;
        line-height: 22px;
    }
}

.private-content .private-section5 .advanced_bottom .advanced_box .box_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 80px 0;
}

@media (max-width: 1199px) {
    .private-content .private-section5 .advanced_bottom .advanced_box .box_top {
        margin: 80px -20px 80px;
    }
}

@media (max-width: 767px) {
    .private-content .private-section5 .advanced_bottom .advanced_box .box_top {
        margin: 40px -10px 40px;
    }
}

@media (max-width: 575px) {
    .private-content .private-section5 .advanced_bottom .advanced_box .box_top {
        margin: 40px -5px 40px;
    }
}

@media (max-width: 1199px) {
    .private-content .private-section5 .advanced_bottom .advanced_box .box_top .box_img {
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .private-content .private-section5 .advanced_bottom .advanced_box .box_top .box_img {
        padding: 0 10px;
    }
}

@media (max-width: 575px) {
    .private-content .private-section5 .advanced_bottom .advanced_box .box_top .box_img {
        padding: 0 5px;
    }
}

.private-content .private-section5 .advanced_bottom .advanced_box .box_top .box_img img {
    width: 100%;
    max-width: 546px;
}

.private-content .private-section5 .advanced_bottom .advanced_box .box_top div:nth-child(2) img {
    margin-top: 112px;
}

@media (max-width: 1199px) {
    .private-content .private-section5 .advanced_bottom .advanced_box .box_top div:nth-child(2) img {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .private-content .private-section5 .advanced_bottom .advanced_box .box_top div:nth-child(2) img {
        margin-top: 0;
    }
}

.private-content .private-section5 .advanced_bottom .advanced_box .box_bottom img {
    width: 100%;
}

.private-content .private-section6 {
    margin-bottom: 80px;
    overflow: hidden;
}

@media (max-width: 575px) {
    .private-content .private-section6 {
        margin-bottom: 40px;
    }
}

.private-content .private-section6 .bottom_text {
    text-align: center;
}

.private-content .private-section6 .bottom_text p {
    font-size: 36px;
    line-height: 36px;
    color: #333;
    margin-bottom: 48px;
}

@media (max-width: 575px) {
    .private-content .private-section6 .bottom_text p {
        font-size: 22px;
        line-height: 36px;
        margin-bottom: 24px;
    }
}

.private-content .private-section6 .bottom_text a {
    width: 154px;
    height: 44px;
    line-height: 44px;
    margin: 0 auto;
    background: #1ec2b3;
    color: #fff;
    text-align: center;
    display: block;
    font-size: 16px;
}

@media (max-width: 575px) {
    .private-content .private-section6 .bottom_text a {
        width: 120px;
        height: 40px;
        line-height: 40px;
    }
}

.private-content .private-section7 {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 9999;
    bottom: 0;
    display: none;
}

.private-content .private-section7 .js-window {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 32%;
    transform: translate(-50%, -50%);
}

.private-content .private-section7 .js-window .container {
    position: relative;
    /* height: 100%; */
}

@media (min-width: 320px) and (max-width: 767px) {
    .private-content .private-section7 .js-window .container {
        width: 100%;
    }
    .private-content .private-section7 .js-window {
        top: 23%;
    }
}

.private-content .private-section7 .js-window .container .window {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.private-content .private-section7 .js-window .container .window .del {
    position: absolute;
    top: 30px;
    right: 30px;
}

@media all and (max-width: 400px) {
    .private-content .private-section7 .js-window .container .window .del {
        top: 15px;
        right: 13px;
    }
}

@media all and (max-width: 400px) {
    .private-content .private-section7 .js-window .container .window .del img {
        max-width: 80%;
    }
}

.private-content .private-section7 .js-window .container .window .window_box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 5px #e9e9e9;
    padding: 40px 80px;
}

@media (max-width: 767px) {
    .private-content .private-section7 .js-window .container .window .window_box {
        flex-direction: column;
    }
}

@media (min-width: 401px) and (max-width: 575px) {
    .private-content .private-section7 .js-window .container .window .window_box {
        padding: 30px 55px;
    }
}

@media all and (max-width: 400px) {
    .private-content .private-section7 .js-window .container .window .window_box {
        padding: 30px 35px;
    }
}

.private-content .private-section7 .js-window .container .window .window_box .window_left {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: right;
}

@media (max-width: 767px) {
    .private-content .private-section7 .js-window .container .window .window_box .window_left {
        flex: inherit;
        max-width: inherit;
        margin-bottom: 30px;
    }
}

.private-content .private-section7 .js-window .container .window .window_box .window_left img {
    width: 100%;
}

.private-content .private-section7 .js-window .container .window .window_box .window_right {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0 0 40px;
}

@media (max-width: 767px) {
    .private-content .private-section7 .js-window .container .window .window_box .window_right {
        flex: inherit;
        max-width: inherit;
        padding: 0;
    }
}

.private-content .private-section7 .js-window .container .window .window_box .window_right h1 {
    margin: 0;
    font-size: 24px;
    line-height: 28px;
    color: #333;
    word-break: break-word;
}

@media all and (max-width: 400px) {
    .private-content .private-section7 .js-window .container .window .window_box .window_right h1 {
        font-size: 20px;
        line-height: 20px;
    }
}

.private-content .private-section7 .js-window .container .window .window_box .window_right p {
    margin: 45px 0 0;
    font-size: 14px;
    line-height: 30px;
    color: #666;
}

@media (max-width: 767px) {
    .private-content .private-section7 .js-window .container .window .window_box .window_right p {
        margin: 30px 0 0;
        font-size: 16px;
    }
}

@media all and (max-width: 400px) {
    .private-content .private-section7 .js-window .container .window .window_box .window_right p {
        margin: 10px 0 0;
        font-size: 14px;
    }
}


/* 新品发布 */

@media (max-width: 767px) {
    .newproduct-content .newproduct-section1 {
        height: 120px;
    }
}

.newproduct-content .newproduct-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newproduct-content .newproduct-section2 .item_box {
    display: flex;
    justify-content: space-between;
    padding: 100px 0;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .newproduct-content .newproduct-section2 .item_box {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .newproduct-content .newproduct-section2 .item_box {
        padding: 70px 0;
    }
}

.newproduct-content .newproduct-section2 .item_box .box_left {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 54px 0 70px;
    position: relative;
    text-align: right;
}

@media (max-width: 991px) {
    .newproduct-content .newproduct-section2 .item_box .box_left {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .newproduct-content .newproduct-section2 .item_box .box_left img {
        margin: 0 auto;
        display: block;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .newproduct-content .newproduct-section2 .item_box .box_left {
        padding: 0 0px;
    }
}

.newproduct-content .newproduct-section2 .item_box .box_left .swiper-pagination-bullet {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 0%;
    opacity: 1;
    outline: none;
}

.newproduct-content .newproduct-section2 .item_box .box_left .swiper-pagination-bullet-active {
    opacity: 1;
    background: #1ec2b3;
    width: 40px;
}

.newproduct-content .newproduct-section2 .item_box .box_left b {
    position: absolute;
    color: #1dc2b2;
    font-size: 150px;
    line-height: 108px;
    font-family: "Didot LT Std";
    font-weight: 100;
    top: 77px;
    left: 16px;
    z-index: 1;
}

@media (max-width: 575px) {
    .newproduct-content .newproduct-section2 .item_box .box_left b {
        font-size: 78px;
        line-height: 78px;
        top: 10%;
        left: -12px;
    }
}

.newproduct-content .newproduct-section2 .item_box .box_right {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (max-width: 991px) {
    .newproduct-content .newproduct-section2 .item_box .box_right {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.newproduct-content .newproduct-section2 .item_box .box_right .text_top {
    margin-bottom: 45px;
}

.newproduct-content .newproduct-section2 .item_box .box_right .text_top h1 {
    margin: 52px 0 30px;
    font-size: 24px;
    line-height: 24px;
    color: #333;
}

.newproduct-content .newproduct-section2 .item_box .box_right .text_top p {
    font-size: 16px;
    color: #666;
    line-height: 36px;
}

.newproduct-content .newproduct-section2 .item_box .box_right .text_bottom h2 {
    margin: 0 0 40px;
    font-size: 24px;
    line-height: 24px;
    color: #333;
}

.newproduct-content .newproduct-section2 .item_box .box_right .text_bottom img {
    display: block;
    width: 100%;
}

.newproduct-content .newproduct-section2 .box1,
.newproduct-content .newproduct-section2 .box3,
.newproduct-content .newproduct-section2 .box5 {
    overflow: hidden;
}

.newproduct-content .newproduct-section2 .box2,
.newproduct-content .newproduct-section2 .box4,
.newproduct-content .newproduct-section2 .box6 {
    background: #f5f5f5;
    overflow: hidden;
}

.newproduct-content .newproduct-section2 .item2,
.newproduct-content .newproduct-section2 .item4,
.newproduct-content .newproduct-section2 .item6 {
    flex-direction: row-reverse;
}

@media (max-width: 991px) {
    .newproduct-content .newproduct-section2 .item2,
    .newproduct-content .newproduct-section2 .item4,
    .newproduct-content .newproduct-section2 .item6 {
        flex-direction: column;
    }
}


/* 新闻中心 */

@media (max-width: 767px) {
    .new-content .new-section1 {
        height: 120px;
    }
}

.new-content .new-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-content .new-section2 .new .new_top {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    line-height: 80px;
    border-bottom: 1px solid #dddddd;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .new-content .new-section2 .new .new_top {
        height: 60px;
        line-height: 60px;
    }
}

.new-content .new-section2 .new .new_top a {
    font-size: 18px;
    color: #666;
    padding: 0 8px;
    margin: 0 30px;
    display: inline-block;
}

.new-content .new-section2 .new .new_top a.active {
    color: #1ec2b3;
    border-bottom: 2px solid #1ec2b3;
}

@media (max-width: 767px) {
    .new-content .new-section2 .new .new_top a {
        font-size: 18px;
        margin: 0;
    }
}

@media (max-width: 575px) {
    .new-content .new-section2 .new .new_top a {
        font-size: 15px;
        padding: 0 5px;
        margin: 0;
    }
}

.new-content .new-section2 .new .new_top a:hover {
    color: #1ec2b3;
    border-bottom: 2px solid #1ec2b3;
}

.new-content .new-section2 .new .new_bottom .new_list {
    margin: 30px 0 30px;
    overflow: hidden;
}

.new-content .new-section2 .new .new_bottom .new_list ul {
    overflow: hidden;
}

.new-content .new-section2 .new .new_bottom .new_list ul li {
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

@media (max-width: 991px) {
    .new-content .new-section2 .new .new_bottom .new_list ul li {
        margin-bottom: 50px;
    }
}

.new-content .new-section2 .new .new_bottom .new_list ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 991px) {
    .new-content .new-section2 .new .new_bottom .new_list ul li a {
        display: inherit;
        justify-content: inherit;
        align-items: center;
    }
}

.new-content .new-section2 .new .new_bottom .new_list ul li a .new_left {
    display: flex;
    flex: 0 0 80%;
    max-width: 80%;
    padding: 30px 0;
}

@media (max-width: 991px) {
    .new-content .new-section2 .new .new_bottom .new_list ul li a .new_left {
        display: inherit;
        justify-content: inherit;
        max-width: inherit;
    }
}

.new-content .new-section2 .new .new_bottom .new_list ul li a .new_left .left_item {
    flex: 0 0 310px;
    min-width: 310px;
    height: 172px;
    overflow: hidden;
    margin: 0 40px 0 0;
}

@media (max-width: 991px) {
    .new-content .new-section2 .new .new_bottom .new_list ul li a .new_left .left_item {
        margin: 0;
        height: inherit;
    }
}

.new-content .new-section2 .new .new_bottom .new_list ul li a .new_left .left_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .new-content .new-section2 .new .new_bottom .new_list ul li a .new_left .left_item img {
        margin: 0 auto;
        display: block;
        width: 50%;
    }
}

@media (max-width: 767px) {
    .new-content .new-section2 .new .new_bottom .new_list ul li a .new_left .left_item img {
        margin: 0 auto;
        display: block;
        width: 60%;
    }
}

@media (max-width: 575px) {
    .new-content .new-section2 .new .new_bottom .new_list ul li a .new_left .left_item img {
        margin: 0 auto;
        display: block;
        width: 100%;
    }
}

.new-content .new-section2 .new .new_bottom .new_list ul li a .new_left .right_item i {
    font-style: inherit;
    color: #999;
    display: block;
    margin: 31px 0 22px;
}

.new-content .new-section2 .new .new_bottom .new_list ul li a .new_left .right_item p {
    font-size: 16px;
    color: #333333;
    line-height: 16px;
    font-weight: bold;
    margin-bottom: 30px;
}

.new-content .new-section2 .new .new_bottom .new_list ul li a .new_left .right_item span {
    font-size: 14px;
    line-height: 24px;
    font-family: "微软雅黑";
    color: #666;
    min-height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .new-content .new-section2 .new .new_bottom .new_list ul li a .new_left .right_item p {
        margin-bottom: 16px;
    }
}

.new-content .new-section2 .new .new_bottom .new_list ul li a .new_right {
    flex: 0 0 12.5%;
    max-width: 12.5%;
    padding: 30px 0;
}

@media (max-width: 991px) {
    .new-content .new-section2 .new .new_bottom .new_list ul li a .new_right {
        max-width: inherit;
        padding: 20px 0;
    }
}

.new-content .new-section2 .new .new_bottom .new_list ul li a .new_right button {
    display: block;
    font-size: 16px;
    color: #333;
    width: 100%;
    height: 46px;
    line-height: 44px;
    text-align: center;
    border: 2px solid #333;
    background: #fff;
    outline: none;
    padding: 0;
}

@media (max-width: 991px) {
    .new-content .new-section2 .new .new_bottom .new_list ul li a .new_right button {
        max-width: inherit;
        width: 20%;
    }
}

@media (max-width: 767px) {
    .new-content .new-section2 .new .new_bottom .new_list ul li a .new_right button {
        width: 25%;
    }
}

@media (max-width: 575px) {
    .new-content .new-section2 .new .new_bottom .new_list ul li a .new_right button {
        width: 35%;
        height: 40px;
        line-height: 38px;
    }
}

.new-content .new-section2 .new .new_bottom .new_list ul li a:hover img {
    transform: scale(1.1);
}

.new-content .new-section2 .new .new_bottom .new_list ul li a:hover button {
    background: #1ec2b3;
    color: #fff;
    border: none;
}

.new-content .new-section2 .new .new_bottom .new_list .pages {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 38px;
    overflow: hidden;
}

@media (max-width: 575px) {
    .new-content .new-section2 .new .new_bottom .new_list .pages {
        padding: 0;
    }
}

.new-content .new-section2 .new .new_bottom .new_list .pages a.num,
.new-content .new-section2 .new .new_bottom .new_list .pages a.next,
.new-content .new-section2 .new .new_bottom .new_list .pages a.prev,
.new-content .new-section2 .new .new_bottom .new_list .pages a.next {
    display: inline-block;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border: 1px solid #ddd;
    margin: 0 8px;
}

@media (max-width: 575px) {
    .new-content .new-section2 .new .new_bottom .new_list .pages a.num,
    .new-content .new-section2 .new .new_bottom .new_list .pages a.next,
    .new-content .new-section2 .new .new_bottom .new_list .pages a.prev,
    .new-content .new-section2 .new .new_bottom .new_list .pages a.next {
        margin: 0 3px;
    }
}

.new-content .new-section2 .new .new_bottom .new_list .pages a.prev {
    background: url(../images/new/prev1.png) no-repeat center;
}

.new-content .new-section2 .new .new_bottom .new_list .pages a.next {
    background: url(../images/new/next1.png) no-repeat center;
}

.new-content .new-section2 .new .new_bottom .new_list .pages a.current {
    background-color: #1ec2b3;
    color: #fff;
    border: none;
}

.new-content .new-section2 .new .new_bottom .new_list .pages a.num:hover {
    background-color: #1ec2b3;
    border: none;
    color: #fff;
}

.new-content .new-section2 .new .new_bottom .new_list .pages a.prev:hover {
    background: url(../images/new/prev1_h.png) no-repeat center;
    border: 1px solid #1ec2b3;
}

.new-content .new-section2 .new .new_bottom .new_list .pages a.next:hover {
    background: url(../images/new/next1_h.png) no-repeat center;
    border: 1px solid #1ec2b3;
}


/* 常见问题 */

@media (max-width: 767px) {
    .problem-content .new-section1 {
        height: 120px;
    }
}

.problem-content .new-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-content .new-section2 .new .new_top {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    line-height: 80px;
    border-bottom: 1px solid #dddddd;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .problem-content .new-section2 .new .new_top {
        height: 60px;
        line-height: 60px;
    }
}

.problem-content .new-section2 .new .new_top a.active {
    color: #1ec2b3;
    border-bottom: 2px solid #1ec2b3;
}

.problem-content .new-section2 .new .new_top a {
    font-size: 18px;
    color: #666;
    padding: 0 8px;
    margin: 0 30px;
    display: inline-block;
}

@media (max-width: 767px) {
    .problem-content .new-section2 .new .new_top a {
        font-size: 18px;
        margin: 0;
    }
}

@media (max-width: 575px) {
    .problem-content .new-section2 .new .new_top a {
        font-size: 15px;
        padding: 0 5px;
        margin: 0;
    }
}

.problem-content .new-section2 .new .new_top a:hover {
    color: #1ec2b3;
    border-bottom: 2px solid #1ec2b3;
}

.problem-content .new-section2 .new .new_bottom .new_list {
    margin: 30px 0 30px;
}

.problem-content .new-section2 .new .new_bottom .new_list .problemlist {
    margin: 0 0 70px;
}

@media (max-width: 991px) {
    .problem-content .new-section2 .new .new_bottom .new_list .problemlist {
        margin: 0 0 60px;
    }
}

@media (max-width: 575px) {
    .problem-content .new-section2 .new .new_bottom .new_list .problemlist {
        margin: 0 0 30px;
    }
}

.problem-content .new-section2 .new .new_bottom .new_list .problemlist .item {
    margin: 0 0 40px;
}

@media (max-width: 767px) {
    .problem-content .new-section2 .new .new_bottom .new_list .problemlist .item {
        margin: 0 0 20px;
    }
}

.problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .top {
    cursor: pointer;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    padding: 28px 40px;
    border: 1px solid #ddd;
}

@media (max-width: 991px) {
    .problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .top {
        padding: 15px 20px;
    }
}

.problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .top .q {
    flex: 0 0 35px;
    min-width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: #666;
    border-radius: 3px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin-right: 20px;
    transition: 0.3s;
}

@media (max-width: 575px) {
    .problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .top .q {
        flex: 0 0 25px;
        min-width: 25px;
        height: 25px;
        line-height: 23px;
        font-size: 16px;
    }
}

.problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .top .tit {
    font-size: 18px;
    color: #333;
    flex: 1;
}

@media (max-width: 767px) {
    .problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .top .tit {
        font-size: 14px;
    }
}

.problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .top .more {
    flex: 0 0 20px;
    min-width: 20px;
    margin-left: 20px;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .top .more {
        flex: 0 0 15px;
        min-width: 15px;
    }
}

@media (max-width: 575px) {
    .problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .top .more {
        display: none;
    }
}

.problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .top .more img {
    width: 100%;
}

.problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .bottom {
    display: none;
    border: 1px solid #ddd;
    border-top: 0;
}

.problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .bottom .inner {
    cursor: pointer;
    background: #fff;
    display: flex;
    align-items: flex-start;
    padding: 28px 90px 28px 40px;
}

@media (max-width: 991px) {
    .problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .bottom .inner {
        padding: 15px 20px;
    }
}

.problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .bottom .inner .a {
    flex: 0 0 35px;
    min-width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 3px;
    background-color: #666;
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin-right: 20px;
    transition: 0.3s;
}

@media (max-width: 575px) {
    .problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .bottom .inner .a {
        flex: 0 0 25px;
        min-width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 16px;
    }
}

.problem-content .new-section2 .new .new_bottom .new_list .problemlist .item .bottom .inner .des {
    font-size: 14px;
    color: #666;
    flex: 1;
    line-height: 1.8;
}

.problem-content .new-section2 .new .new_bottom .new_list .problemlist .item.on .top .q {
    /* background-color: #1ec2b3; */
}

.problem-content .new-section2 .new .new_bottom .new_list .problemlist .item.on .top .more {
    transform: rotate(-180deg);
}

.problem-content .new-section2 .new .new_bottom .new_list .problemlist .item.on .bottom .inner .a {
    background-color: #1ec2b3;
}

.problem-content .new-section2 .new .new_bottom .new_list .pages {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 38px;
}

@media (max-width: 575px) {
    .problem-content .new-section2 .new .new_bottom .new_list .pages {
        padding: 0;
    }
}

.problem-content .new-section2 .new .new_bottom .new_list .pages a.num,
.problem-content .new-section2 .new .new_bottom .new_list .pages a.next,
.problem-content .new-section2 .new .new_bottom .new_list .pages a.prev,
.problem-content .new-section2 .new .new_bottom .new_list .pages a.next {
    display: inline-block;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border: 1px solid #ddd;
    margin: 0 8px;
}

@media (max-width: 575px) {
    .problem-content .new-section2 .new .new_bottom .new_list .pages a.num,
    .problem-content .new-section2 .new .new_bottom .new_list .pages a.next,
    .problem-content .new-section2 .new .new_bottom .new_list .pages a.prev,
    .problem-content .new-section2 .new .new_bottom .new_list .pages a.next {
        margin: 0 3px;
    }
}

.problem-content .new-section2 .new .new_bottom .new_list .pages a.prev {
    background: url(../images/new/prev1.png) no-repeat center;
}

.problem-content .new-section2 .new .new_bottom .new_list .pages a.next {
    background: url(../images/new/next1.png) no-repeat center;
}

.problem-content .new-section2 .new .new_bottom .new_list .pages a.current {
    background-color: #1ec2b3;
    color: #fff;
    border: none;
}

.problem-content .new-section2 .new .new_bottom .new_list .pages a.num:hover {
    background-color: #1ec2b3;
    border: none;
    color: #fff;
}

.problem-content .new-section2 .new .new_bottom .new_list .pages a.prev:hover {
    background: url(../images/new/prev1_h.png) no-repeat center;
    border: 1px solid #1ec2b3;
}

.problem-content .new-section2 .new .new_bottom .new_list .pages a.next:hover {
    background: url(../images/new/next1_h.png) no-repeat center;
    border: 1px solid #1ec2b3;
}


/* 新闻详情 */

@media (max-width: 767px) {
    .newdetails-content .newdetails-section1 {
        height: 120px;
    }
}

.newdetails-content .newdetails-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newdetails-content .newdetails-section2 .section2_top {
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.newdetails-content .newdetails-section2 .section2_top .top_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 23px 0;
}

@media (max-width: 575px) {
    .newdetails-content .newdetails-section2 .section2_top .top_box {
        display: inherit;
    }
}

.newdetails-content .newdetails-section2 .section2_top .top_box .top_left {
    font-size: 14px;
    line-height: 14px;
    color: #999;
}

.newdetails-content .newdetails-section2 .section2_top .top_box .top_left a {
    color: #999;
}

@media (max-width: 575px) {
    .newdetails-content .newdetails-section2 .section2_top .top_box .top_left {
        margin-bottom: 20px;
    }
}

.newdetails-content .newdetails-section2 .section2_top .top_box .top_right {
    width: 122px;
    height: 34px;
    background: #999;
    text-align: center;
    line-height: 34px;
}

.newdetails-content .newdetails-section2 .section2_top .top_box .top_right a {
    display: block;
    color: #fff;
}

.newdetails-content .newdetails-section2 .section2_top .top_box .top_right a img {
    margin-right: 5px;
    margin-bottom: 3px;
    max-width: 15px;
}

.newdetails-content .newdetails-section2 .section2_bottom {
    margin: 60px 0 80px;
    overflow: hidden;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box {
    display: flex;
    justify-content: space-between;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_left {
    flex: 1;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_left .case_text {
    padding: 60px 39px;
    border: 1px solid #ddd;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_left .case_text p {
    line-height: 28px;
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
}

@media (min-width: 1200px) and (max-width: 1250px) {
    .newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_left .case_text {
        padding: 60px 15px;
    }
}

@media (max-width: 575px) {
    .newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_left .case_text {
        padding: 30px 25px;
    }
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_left .case_text h1 {
    margin: 0 0 53px;
    font-family: "微软雅黑";
    font-size: 30px;
    line-height: 30px;
    color: #333;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

@media (max-width: 767px) {
    .newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_left .case_text h1 {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_left .case_text h1 {
        font-size: 24px;
    }
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_left .case_text span {
    font-family: "微软雅黑";
    font-size: 14px;
    line-height: 27px;
    color: #666;
    margin: 0 0 30px;
    display: block;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_left .case_text .text_content p {
    font-family: "微软雅黑";
    font-size: 16px;
    line-height: 16px;
    color: #1ec2b3;
    margin-bottom: 14px;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_left .case_text .text_content span {
    font-family: "微软雅黑";
    font-size: 14px;
    line-height: 27px;
    color: #666;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_left .case_text img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_left .case_page {
    margin-top: 30px;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_left .case_page p {
    font-family: "微软雅黑";
    font-size: 14px;
    line-height: 27px;
    color: #999;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_left .case_page p a {
    color: #999;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right {
    margin-left: 20px;
}

@media (min-width: 1200px) and (max-width: 1250px) {
    .newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right {
        margin-left: 15px;
    }
}

@media (max-width: 1199px) {
    .newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right {
        display: none;
    }
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right .right_top {
    margin-bottom: 20px;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right .right_top h1 {
    width: 100%;
    height: 66px;
    line-height: 66px;
    background: #1ec2b3;
    color: #fff;
    font-size: 18px;
    font-family: "微软雅黑";
    margin: 0;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right .right_top h1 img {
    margin: 0 10px 5px 30px;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right .right_top .top_text {
    padding: 39px 29px 58px 29px;
    border: 1px solid #ddd;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right .right_top .top_text p {
    font-family: "微软雅黑";
    font-size: 14px;
    line-height: 20px;
    color: #333;
    margin-bottom: 18px;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom {
    position: relative;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom .bottom_box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom .bottom_box a {
    display: block;
    width: 100%;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom .bottom_box a p {
    margin: 64px 0 20px;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom .bottom_box a h1 {
    font-size: 36px;
    line-height: 36px;
    color: #1ec2b3;
    font-weight: bold;
    margin: 0 0 18px;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom .bottom_box a span {
    font-size: 18px;
    line-height: 18px;
    color: #1ec2b3;
    display: block;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom .bottom_box a b {
    width: 20px;
    height: 2px;
    background: #48494a;
    display: block;
    margin: 30px auto 58px;
}

.newdetails-content .newdetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom .bottom_box a i {
    width: 150px;
    height: 40px;
    background: #1ec2b3;
    color: #fff;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    display: block;
    font-style: inherit;
    margin: 0 auto;
}


/* 案例中心 */

@media (max-width: 767px) {
    .case-content .case-section1 {
        height: 120px;
    }
}

.case-content .case-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content .case-section2 .case .case_top {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    line-height: 80px;
    border-bottom: 1px solid #dddddd;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .case-content .case-section2 .case .case_top {
        height: 60px;
        line-height: 60px;
    }
}

.case-content .case-section2 .case .case_top a {
    font-size: 18px;
    color: #666;
    padding: 0 8px;
    margin: 0 30px;
    display: inline-block;
}

@media (max-width: 767px) {
    .case-content .case-section2 .case .case_top a {
        font-size: 18px;
        margin: 0;
    }
}

@media (max-width: 575px) {
    .case-content .case-section2 .case .case_top a {
        font-size: 15px;
        padding: 0 5px;
        margin: 0;
    }
}

.case-content .case-section2 .case .case_top a.active {
    color: #1ec2b3;
    border-bottom: 2px solid #1ec2b3;
}

.case-content .case-section2 .case .case_top a:hover {
    color: #1ec2b3;
    border-bottom: 2px solid #1ec2b3;
}

.case-content .case-section2 .case .case_bottom .case_list {
    margin: 60px 0 30px;
}

.case-content .case-section2 .case .case_bottom .case_list ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.case-content .case-section2 .case .case_bottom .case_list ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 15px 30px;
}

@media (max-width: 991px) {
    .case-content .case-section2 .case .case_bottom .case_list ul li {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .case-content .case-section2 .case .case_bottom .case_list ul li {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.case-content .case-section2 .case .case_bottom .case_list ul li a:hover .case_img img {
    transform: scale(1.1);
}

.case-content .case-section2 .case .case_bottom .case_list ul li a:hover .case_text h1 {
    color: #1ec2b3;
}

.case-content .case-section2 .case .case_bottom .case_list ul li .case_img {
    overflow: hidden;
    height: 272px;
}

.case-content .case-section2 .case .case_bottom .case_list ul li .case_img img {
    display: block;
    width: 100%;
    transition: .3s;
    height: 100%;
    font-family: 'object-fit: contain;';
}

.case-content .case-section2 .case .case_bottom .case_list ul li .case_text {
    background: #f8f8f8;
    padding: 44px 30px 50px 30px;
}

.case-content .case-section2 .case .case_bottom .case_list ul li .case_text h1 {
    font-family: "微软雅黑";
    font-size: 18px;
    line-height: 18px;
    margin: 0 0 29px;
    color: #333;
    font-weight: bold;
}

.case-content .case-section2 .case .case_bottom .case_list ul li .case_text span {
    font-size: 14px;
    line-height: 24px;
    font-family: "微软雅黑";
    color: #666;
    min-height: 48px;
    margin-bottom: 38px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.case-content .case-section2 .case .case_bottom .case_list ul li .case_text p {
    font-size: 14px;
    line-height: 14px;
    color: #666;
    font-family: "微软雅黑";
}

.case-content .case-section2 .case .case_bottom .case_list .pages {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 38px;
}

@media (max-width: 575px) {
    .case-content .case-section2 .case .case_bottom .case_list .pages {
        padding: 0;
    }
}

.case-content .case-section2 .case .case_bottom .case_list .pages a.num,
.case-content .case-section2 .case .case_bottom .case_list .pages a.next,
.case-content .case-section2 .case .case_bottom .case_list .pages a.prev,
.case-content .case-section2 .case .case_bottom .case_list .pages a.next {
    display: inline-block;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border: 1px solid #ddd;
    margin: 0 8px;
}

@media (max-width: 575px) {
    .case-content .case-section2 .case .case_bottom .case_list .pages a.num,
    .case-content .case-section2 .case .case_bottom .case_list .pages a.next,
    .case-content .case-section2 .case .case_bottom .case_list .pages a.prev,
    .case-content .case-section2 .case .case_bottom .case_list .pages a.next {
        margin: 0 3px;
    }
}

.case-content .case-section2 .case .case_bottom .case_list .pages a.prev {
    background: url(../images/new/prev1.png) no-repeat center;
}

.case-content .case-section2 .case .case_bottom .case_list .pages a.next {
    background: url(../images/new/next1.png) no-repeat center;
}

.case-content .case-section2 .case .case_bottom .case_list .pages a.current {
    background-color: #1ec2b3;
    color: #fff;
    border: none;
}

.case-content .case-section2 .case .case_bottom .case_list .pages a.num:hover {
    background-color: #1ec2b3;
    border: none;
    color: #fff;
}

.case-content .case-section2 .case .case_bottom .case_list .pages a.prev:hover {
    background: url(../images/new/prev1_h.png) no-repeat center;
    border: 1px solid #1ec2b3;
}

.case-content .case-section2 .case .case_bottom .case_list .pages a.next:hover {
    background: url(../images/new/next1_h.png) no-repeat center;
    border: 1px solid #1ec2b3;
}


/* 案例详情 */

@media (max-width: 767px) {
    .casedetails-content .casedetails-section1 {
        height: 120px;
    }
}

.casedetails-content .casedetails-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casedetails-content .casedetails-section2 .section2_top {
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.casedetails-content .casedetails-section2 .section2_top .top_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 23px 0;
}

@media (max-width: 575px) {
    .casedetails-content .casedetails-section2 .section2_top .top_box {
        display: inherit;
    }
}

.casedetails-content .casedetails-section2 .section2_top .top_box .top_left {
    font-size: 14px;
    line-height: 14px;
    color: #999;
}

.casedetails-content .casedetails-section2 .section2_top .top_box .top_left a {
    color: #999;
}

@media (max-width: 575px) {
    .casedetails-content .casedetails-section2 .section2_top .top_box .top_left {
        margin-bottom: 20px;
    }
}

.casedetails-content .casedetails-section2 .section2_top .top_box .top_right {
    width: 122px;
    height: 34px;
    background: #999;
    text-align: center;
    line-height: 34px;
}

.casedetails-content .casedetails-section2 .section2_top .top_box .top_right a {
    display: block;
    color: #fff;
}

.casedetails-content .casedetails-section2 .section2_top .top_box .top_right a img {
    margin-right: 5px;
    margin-bottom: 3px;
    max-width: 15px;
}

.casedetails-content .casedetails-section2 .section2_bottom {
    margin: 60px 0 80px;
    overflow: hidden;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box {
    display: flex;
    justify-content: space-between;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_left {
    flex: 1;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_left .case_text {
    padding: 60px 39px;
    border: 1px solid #ddd;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_left .case_text p {
    line-height: 28px;
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
}

@media (min-width: 1200px) and (max-width: 1250px) {
    .casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_left .case_text {
        padding: 60px 15px;
    }
}

@media (max-width: 575px) {
    .casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_left .case_text {
        padding: 30px 25px;
    }
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_left .case_text h1 {
    margin: 0 0 53px;
    font-family: "微软雅黑";
    font-size: 30px;
    line-height: 30px;
    color: #333;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

@media (max-width: 767px) {
    .casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_left .case_text h1 {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_left .case_text h1 {
        font-size: 24px;
    }
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_left .case_text span {
    font-family: "微软雅黑";
    font-size: 14px;
    line-height: 27px;
    color: #666;
    margin: 0 0 30px;
    display: block;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_left .case_text .text_content p {
    font-family: "微软雅黑";
    font-size: 16px;
    line-height: 16px;
    color: #1ec2b3;
    margin-bottom: 14px;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_left .case_text .text_content span {
    font-family: "微软雅黑";
    font-size: 14px;
    line-height: 27px;
    color: #666;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_left .case_text img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_left .case_page {
    margin-top: 30px;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_left .case_page p {
    font-family: "微软雅黑";
    font-size: 14px;
    line-height: 27px;
    color: #999;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_left .case_page p a {
    color: #999;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right {
    margin-left: 20px;
}

@media (min-width: 1200px) and (max-width: 1250px) {
    .casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right {
        margin-left: 15px;
    }
}

@media (max-width: 1199px) {
    .casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right {
        display: none;
    }
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right .right_top {
    margin-bottom: 20px;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right .right_top h1 {
    width: 100%;
    height: 66px;
    line-height: 66px;
    background: #1ec2b3;
    color: #fff;
    font-size: 18px;
    font-family: "微软雅黑";
    margin: 0;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right .right_top h1 img {
    margin: 0 10px 5px 30px;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right .right_top .top_text {
    padding: 39px 29px 58px 29px;
    border: 1px solid #ddd;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right .right_top .top_text p {
    font-family: "微软雅黑";
    font-size: 14px;
    line-height: 20px;
    color: #333;
    margin-bottom: 18px;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom {
    position: relative;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom .bottom_box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom .bottom_box a {
    display: block;
    width: 100%;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom .bottom_box a p {
    margin: 64px 0 20px;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom .bottom_box a h1 {
    font-size: 36px;
    line-height: 36px;
    color: #1ec2b3;
    font-weight: bold;
    margin: 0 0 18px;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom .bottom_box a span {
    font-size: 18px;
    line-height: 18px;
    color: #1ec2b3;
    display: block;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom .bottom_box a b {
    width: 20px;
    height: 2px;
    background: #48494a;
    display: block;
    margin: 30px auto 58px;
}

.casedetails-content .casedetails-section2 .section2_bottom .bottom_box .bottom_right .right_bottom .bottom_box a i {
    width: 150px;
    height: 40px;
    background: #1ec2b3;
    color: #fff;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    display: block;
    font-style: inherit;
    margin: 0 auto;
}


/* 联系我们 */

@media (max-width: 767px) {
    .contact-content .content-section1 {
        height: 120px;
    }
}

.contact-content .content-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-content .content-section2 .contact .contact_top {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    line-height: 80px;
    border-bottom: 1px solid #dddddd;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .contact-content .content-section2 .contact .contact_top {
        height: 60px;
        line-height: 60px;
    }
}

.contact-content .content-section2 .contact .contact_top a {
    font-size: 18px;
    color: #666;
    padding: 0 8px;
    margin: 0 30px;
    display: inline-block;
}

@media (max-width: 767px) {
    .contact-content .content-section2 .contact .contact_top a {
        font-size: 18px;
        margin: 0;
    }
}

@media (max-width: 575px) {
    .contact-content .content-section2 .contact .contact_top a {
        font-size: 15px;
        padding: 0 5px;
        margin: 0;
    }
}

.contact-content .content-section2 .contact .contact_top a:hover {
    color: #1ec2b3;
    border-bottom: 2px solid #1ec2b3;
}

.contact-content .content-section2 .contact .contact_bottom {
    padding: 60px 0 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .contact-content .content-section2 .contact .contact_bottom {
        padding: 40px 0;
        display: inherit;
    }
}

.contact-content .content-section2 .contact .contact_bottom .contact_left h1 {
    font-size: 36px;
    line-height: 36px;
    color: #333;
    margin: 0;
    padding: 24px 0 20px;
    border-bottom: 1px solid #dddddd;
}

@media (max-width: 575px) {
    .contact-content .content-section2 .contact .contact_bottom .contact_left h1 {
        font-size: 26px;
        line-height: 26px;
    }
}

.contact-content .content-section2 .contact .contact_bottom .contact_left .contact_phone {
    display: flex;
    margin: 30px 0 40px;
}

@media (max-width: 575px) {
    .contact-content .content-section2 .contact .contact_bottom .contact_left .contact_phone {
        display: inherit;
    }
}

.contact-content .content-section2 .contact .contact_bottom .contact_left .contact_phone .left_item {
    margin-right: 120px;
}

@media (max-width: 575px) {
    .contact-content .content-section2 .contact .contact_bottom .contact_left .contact_phone .left_item {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.contact-content .content-section2 .contact .contact_bottom .contact_left .contact_phone .left_item p {
    font-size: 18px;
    line-height: 18px;
    color: #666;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .contact-content .content-section2 .contact .contact_bottom .contact_left .contact_phone .left_item p {
        margin-bottom: 14px;
    }
}

.contact-content .content-section2 .contact .contact_bottom .contact_left .contact_phone .left_item b {
    font-size: 30px;
    line-height: 30px;
    color: #1ec2b3;
    font-family: "Impact";
}

.contact-content .content-section2 .contact .contact_bottom .contact_left .contact_phone .right_item p {
    font-size: 18px;
    line-height: 18px;
    color: #666;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .contact-content .content-section2 .contact .contact_bottom .contact_left .contact_phone .right_item p {
        margin-bottom: 14px;
    }
}

.contact-content .content-section2 .contact .contact_bottom .contact_left .contact_phone .right_item b {
    font-size: 30px;
    line-height: 30px;
    color: #333333;
    font-family: "Impact";
}

.contact-content .content-section2 .contact .contact_bottom .contact_left .contact_address .address {
    margin-bottom: 30px;
}

.contact-content .content-section2 .contact .contact_bottom .contact_left .contact_address .address p {
    font-size: 18px;
    line-height: 18px;
    color: #666;
    margin-bottom: 18px;
}

.contact-content .content-section2 .contact .contact_bottom .contact_left .contact_address .address span {
    font-size: 16px;
    line-height: 16px;
    color: #333;
}

.contact-content .content-section2 .contact .contact_bottom .contact_right .map {
    width: 600px;
    height: 367px;
}

@media (max-width: 1199px) {
    .contact-content .content-section2 .contact .contact_bottom .contact_right .map {
        width: 100%;
    }
}

.contact-content .content-section2 .contact .contact_bottom .contact_right .map #map {
    width: 100%;
    height: 100%;
}

.contact-content .content-section3 {
    padding: 100px 0 60px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.contact-content .content-section3 #tab1 {
    position: absolute;
    top: 0;
}

@media (max-width: 991px) {
    .contact-content .content-section3 {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .contact-content .content-section3 {
        padding: 40px 0;
    }
}

.contact-content .content-section3 .order_top {
    text-align: center;
}

.contact-content .content-section3 .order_top h1 {
    font-family: "Didot LT Std";
    font-size: 40px;
    line-height: 40px;
    color: #222;
    margin: 0;
    font-style: italic;
    font-weight: bold;
}

@media (max-width: 575px) {
    .contact-content .content-section3 .order_top h1 {
        font-size: 32px;
        line-height: 32px;
    }
}

.contact-content .content-section3 .order_top p {
    font-family: "黑体";
    color: #333;
    font-size: 24px;
    line-height: 24px;
    margin: 20px 0 38px;
}

@media (max-width: 575px) {
    .contact-content .content-section3 .order_top p {
        font-size: 22px;
        line-height: 22px;
    }
}

.contact-content .content-section3 .order_bottom .order_input {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .contact-content .content-section3 .order_bottom .order_input {
        display: inherit;
        justify-content: inherit;
    }
}

.contact-content .content-section3 .order_bottom .order_input input {
    flex: 0 0 32.33%;
    max-width: 32.33%;
    padding: 0 20px;
    background: #fff;
    height: 50px;
    line-height: 50px;
    border: none;
    outline: none;
}

@media (max-width: 991px) {
    .contact-content .content-section3 .order_bottom .order_input input {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

.contact-content .content-section3 .order_bottom textarea {
    width: 100%;
    height: 280px;
    resize: none;
    background: #fff;
    border: none;
    outline: none;
    margin: 30px 0 40px;
    padding: 30px 0 30px 20px;
}

@media (max-width: 991px) {
    .contact-content .content-section3 .order_bottom textarea {
        margin: 0 0 20px;
    }
}

.contact-content .content-section3 .order_bottom a {
    display: block;
    width: 200px;
    height: 50px;
    background: #1ec2b3;
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 50px;
    margin: 0 auto 30px;
}

.contact-content .content-section3 .order_bottom p {
    text-align: center;
    color: #999;
    font-size: 14px;
}

.contact-content .content-section4 {
    padding: 100px 0 60px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .contact-content .content-section4 {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .contact-content .content-section4 {
        padding: 40px 0;
    }
}

.contact-content .content-section4 .talent_top {
    text-align: center;
}

.contact-content .content-section4 .talent_top h1 {
    font-family: "Didot LT Std";
    font-size: 40px;
    line-height: 40px;
    color: #222;
    margin: 0;
    font-style: italic;
    font-weight: bold;
}

@media (max-width: 575px) {
    .contact-content .content-section4 .talent_top h1 {
        font-size: 32px;
        line-height: 32px;
    }
}

.contact-content .content-section4 .talent_top p {
    font-family: "黑体";
    color: #333;
    font-size: 24px;
    line-height: 24px;
    margin: 20px 0 38px;
}

@media (max-width: 575px) {
    .contact-content .content-section4 .talent_top p {
        font-size: 22px;
        line-height: 22px;
    }
}

.contact-content .content-section4 .talent_top span {
    margin: 0 0 40px;
    display: block;
    color: #666;
    font-size: 14px;
    line-height: 14px;
}

@media (max-width: 991px) {
    .contact-content .content-section4 .talent_top span {
        line-height: 22px;
        padding: 0 30px;
    }
}

.contact-content .content-section4 .talent_bottom .talent_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .contact-content .content-section4 .talent_bottom .talent_box {
        display: inherit;
        justify-content: inherit;
    }
}

.contact-content .content-section4 .talent_bottom .talent_box .talent_left {
    border: 1px solid #ddd;
    padding: 45px 39px 50px;
    flex: 0 0 49%;
    max-width: 49%;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .contact-content .content-section4 .talent_bottom .talent_box .talent_left {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
        padding: 30px 20px 25px;
    }
}

.contact-content .content-section4 .talent_bottom .talent_box .talent_left .left_top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid #ddd;
}

.contact-content .content-section4 .talent_bottom .talent_box .talent_left .left_top p {
    font-size: 18px;
    line-height: 18px;
    color: #333;
}

.contact-content .content-section4 .talent_bottom .talent_box .talent_left .left_top span {
    font-size: 14px;
    line-height: 14px;
    color: #666;
}

.contact-content .content-section4 .talent_bottom .talent_box .talent_left .left_top span i {
    color: #173ec7;
    margin-left: 5px;
    font-style: inherit;
}

.contact-content .content-section4 .talent_bottom .talent_box .talent_left .left_bottom em {
    width: 100px;
    height: 32px;
    background: #1ec2b3;
    color: #fff;
    line-height: 32px;
    text-align: center;
    margin: 30px 0 27px;
    display: block;
    font-style: inherit;
}

.contact-content .content-section4 .talent_bottom .talent_box .talent_left .left_bottom p {
    font-size: 14px;
    color: #666;
    line-height: 30px;
}

.contact-content .content-section4 .talent_bottom .talent_box .talent_right {
    border: 1px solid #ddd;
    padding: 45px 39px 50px;
    flex: 0 0 49%;
    max-width: 49%;
}

@media (max-width: 991px) {
    .contact-content .content-section4 .talent_bottom .talent_box .talent_right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 30px 20px 25px;
    }
}

.contact-content .content-section4 .talent_bottom .talent_box .talent_right .right_top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid #ddd;
}

.contact-content .content-section4 .talent_bottom .talent_box .talent_right .right_top p {
    font-size: 18px;
    line-height: 18px;
    color: #333;
}

.contact-content .content-section4 .talent_bottom .talent_box .talent_right .right_top span {
    font-size: 14px;
    line-height: 14px;
    color: #666;
}

.contact-content .content-section4 .talent_bottom .talent_box .talent_right .right_top span i {
    color: #173ec7;
    margin-left: 5px;
    font-style: inherit;
}

.contact-content .content-section4 .talent_bottom .talent_box .talent_right .right_bottom em {
    width: 100px;
    height: 32px;
    background: #1ec2b3;
    color: #fff;
    line-height: 32px;
    text-align: center;
    margin: 30px 0 27px;
    display: block;
    font-style: inherit;
}

.contact-content .content-section4 .talent_bottom .talent_box .talent_right .right_bottom p {
    font-size: 14px;
    color: #666;
    line-height: 30px;
}


/* 售后 */

@media (max-width: 767px) {
    .sale-content .sale-section1 {
        height: 120px;
    }
}

.sale-content .sale-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sale-content .sale-section2 {
    background: #f5f5f5;
    overflow: hidden;
}

.sale-content .sale-section2 .section2_box {
    display: flex;
    justify-content: space-between;
    margin: 80px 0;
    overflow: hidden;
}

@media all and (max-width: 1199px) {
    .sale-content .sale-section2 .section2_box {
        display: inherit;
        justify-content: inherit;
    }
}

@media (max-width: 575px) {
    .sale-content .sale-section2 .section2_box {
        margin: 50px 0;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .sale-content .sale-section2 .section2_box .box_left img {
        margin: 0 auto;
        display: block;
    }
}

@media all and (max-width: 767px) {
    .sale-content .sale-section2 .section2_box .box_left img {
        margin: 0 auto;
        display: block;
        width: 100%;
    }
}

.sale-content .sale-section2 .section2_box .box_right {
    margin-left: 39px;
}

@media all and (max-width: 1199px) {
    .sale-content .sale-section2 .section2_box .box_right {
        margin-left: 0;
    }
}

.sale-content .sale-section2 .section2_box .box_right h1 {
    margin: 55px 0 38px;
    font-size: 30px;
    line-height: 30px;
    color: #333;
}

@media (max-width: 575px) {
    .sale-content .sale-section2 .section2_box .box_right h1 {
        margin: 30px 0 20px;
        font-size: 26px;
    }
}

.sale-content .sale-section2 .section2_box .box_right span {
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #666;
    font-family: "微软雅黑";
    margin-bottom: 30px;
}

.sale-content .sale-section2 .section2_box .box_right a {
    width: 140px;
    height: 42px;
    display: block;
    border-radius: 4px;
    text-align: center;
    background: #1ec2b3;
    color: #fff;
    line-height: 42px;
    font-family: "微软雅黑";
}

.sale-content .sale-section3 .sale_box {
    background: #1ec2b3;
}

.sale-content .sale-section3 .sale_box .box_top {
    display: flex;
}

@media all and (max-width: 1200px) {
    .sale-content .sale-section3 .sale_box .box_top {
        display: inherit;
        flex-direction: inherit;
    }
}

.sale-content .sale-section3 .sale_box .box_top .box_left {
    flex: 0 0 50%;
    max-width: 50%;
}

@media all and (max-width: 1399px) {
    .sale-content .sale-section3 .sale_box .box_top .box_left {
        max-width: 100%;
    }
}

.sale-content .sale-section3 .sale_box .box_top .box_left img {
    width: 100%;
}

.sale-content .sale-section3 .sale_box .box_top .box_right {
    flex: 0 0 600px;
    max-width: 600px;
    margin-left: 44px;
}

@media (min-width: 576px) and (max-width: 1399px) {
    .sale-content .sale-section3 .sale_box .box_top .box_right {
        max-width: 100%;
        margin: 0;
        padding: 0 40px;
    }
}

@media (max-width: 575px) {
    .sale-content .sale-section3 .sale_box .box_top .box_right {
        padding: 30px 20px;
        margin: 0;
    }
}

.sale-content .sale-section3 .sale_box .box_top .box_right h1 {
    margin: 60px 0 40px;
    font-size: 30px;
    line-height: 30px;
    color: #fff;
}

@media (min-width: 1600px) and (max-width: 1700px) {
    .sale-content .sale-section3 .sale_box .box_top .box_right h1 {
        margin: 50px 0 38px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .sale-content .sale-section3 .sale_box .box_top .box_right h1 {
        margin: 40px 0 30px;
    }
}

@media all and (max-width: 1399px) {
    .sale-content .sale-section3 .sale_box .box_top .box_right h1 {
        margin: 24px 0;
    }
}

.sale-content .sale-section3 .sale_box .box_top .box_right p {
    font-size: 16px;
    color: #fff;
    line-height: 26px;
    margin-bottom: 16px;
}

@media (min-width: 576px) and (max-width: 1399px) {
    .sale-content .sale-section3 .sale_box .box_top .box_right p {
        font-size: 14px;
        line-height: 20px;
    }
}

.sale-content .sale-section3 .sale_box .box_top .box_right p:last-child {
    margin-bottom: 0;
}

.sale-content .sale-section3 .sale_box .box_bottom {
    display: flex;
    flex-direction: row-reverse;
}

@media all and (max-width: 1200px) {
    .sale-content .sale-section3 .sale_box .box_bottom {
        display: inherit;
        flex-direction: inherit;
    }
}

.sale-content .sale-section3 .sale_box .box_bottom .box_left {
    flex: 0 0 50%;
    max-width: 50%;
}

@media all and (max-width: 1399px) {
    .sale-content .sale-section3 .sale_box .box_bottom .box_left {
        max-width: 100%;
    }
}

.sale-content .sale-section3 .sale_box .box_bottom .box_left img {
    width: 100%;
}

.sale-content .sale-section3 .sale_box .box_bottom .box_right {
    flex: 0 0 600px;
    max-width: 600px;
    margin-right: 38px;
}

@media all and (max-width: 1399px) {
    .sale-content .sale-section3 .sale_box .box_bottom .box_right {
        max-width: 100%;
        margin: 0;
        padding: 0 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .sale-content .sale-section3 .sale_box .box_bottom .box_right {
        padding: 30px 20px;
        margin: 0;
    }
}

.sale-content .sale-section3 .sale_box .box_bottom .box_right h1 {
    margin: 84px 0 40px;
    font-size: 30px;
    line-height: 30px;
    color: #fff;
}

@media (min-width: 1600px) and (max-width: 1700px) {
    .sale-content .sale-section3 .sale_box .box_bottom .box_right h1 {
        margin: 50px 0 38px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .sale-content .sale-section3 .sale_box .box_bottom .box_right h1 {
        margin: 40px 0 30px;
    }
}

@media all and (max-width: 1399px) {
    .sale-content .sale-section3 .sale_box .box_bottom .box_right h1 {
        margin: 24px 0;
    }
}

.sale-content .sale-section3 .sale_box .box_bottom .box_right p {
    font-size: 16px;
    color: #fff;
    line-height: 26px;
    margin-bottom: 16px;
}

@media (max-width: 1399px) and (min-width: 576px) {
    .sale-content .sale-section3 .sale_box .box_bottom .box_right p {
        font-size: 14px;
        line-height: 20px;
    }
}

.sale-content .sale-section3 .sale_box .box_bottom .box_right p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .sale-content .sale-section4 {
        display: none;
    }
}

.sale-content .sale-section4 {
    background: url(../images/sale/sale_bg2.jpg);
    background-size: cover;
    position: relative;
    height: 530px;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 767px) {
    .sale-content .sale-section4 {
        height: 600px;
    }
}

@media (max-width: 575px) {
    .sale-content .sale-section4 {
        height: 730px;
    }
}

@media (min-width: 320px) and (max-width: 375px) {
    .sale-content .sale-section4 {
        background-position-x: -920px;
    }
}

@media (min-width: 376px) and (max-width: 475px) {
    .sale-content .sale-section4 {
        background-position-x: -860px;
    }
}

@media (min-width: 476px) and (max-width: 575px) {
    .sale-content .sale-section4 {
        background-position-x: -760px;
    }
}

.sale-content .sale-section4 .sale_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.sale-content .sale-section4 .sale_item .item_box {
    padding: 0 160px;
}

@media (max-width: 991px) {
    .sale-content .sale-section4 .sale_item .item_box {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .sale-content .sale-section4 .sale_item .item_box {
        padding: 0 20px;
    }
}

.sale-content .sale-section4 .sale_item .item_box h1 {
    color: #fff;
    margin: 0 0 40px;
    font-size: 30px;
}

@media (max-width: 575px) {
    .sale-content .sale-section4 .sale_item .item_box h1 {
        font-size: 26px;
        margin: 0 0 25px;
    }
}

.sale-content .sale-section4 .sale_item .item_box p {
    color: #fff;
    opacity: 0.8;
    line-height: 22px;
    margin-bottom: 30px;
}

.sale-content .sale-section6 {
    background: url(../images/sale/sale_bg2.jpg);
    background-size: cover;
    position: relative;
    height: 530px;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 767px) {
    .sale-content .sale-section6 {
        height: 600px;
    }
}

@media (max-width: 575px) {
    .sale-content .sale-section6 {
        height: 730px;
    }
}


/* @media (min-width: 320px) and (max-width: 375px) {
  .sale-content .sale-section6 {
    background-position-x: -920px;
  }
}
@media (min-width: 376px) and (max-width: 475px) {
  .sale-content .sale-section6 {
    background-position-x: -860px;
  }
}
@media (min-width: 476px) and (max-width: 575px) {
  .sale-content .sale-section6 {
    background-position-x: -760px;
  }
} */

@media (min-width: 768px) {
    .sale-content .sale-section6 {
        display: none;
    }
}

.sale-content .sale-section6 .sale_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.sale-content .sale-section6 .sale_item .item_box {
    padding: 0 160px;
}

@media (max-width: 991px) {
    .sale-content .sale-section6 .sale_item .item_box {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .sale-content .sale-section6 .sale_item .item_box {
        padding: 0 20px;
    }
}

.sale-content .sale-section6 .sale_item .item_box h1 {
    color: #fff;
    margin: 0 0 40px;
    font-size: 30px;
}

@media (max-width: 575px) {
    .sale-content .sale-section6 .sale_item .item_box h1 {
        font-size: 26px;
        margin: 0 0 25px;
    }
}

.sale-content .sale-section6 .sale_item .item_box p {
    color: #fff;
    opacity: 0.8;
    line-height: 22px;
    margin-bottom: 30px;
}

.sale-content .sale-section5 {
    margin: 60px 0;
}

@media (max-width: 767px) {
    .sale-content .sale-section5 {
        margin: 40px 0;
    }
}

.sale-content .sale-section5 .section5_box {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

@media (max-width: 767px) {
    .sale-content .sale-section5 .section5_box {
        display: inherit;
        justify-content: inherit;
    }
}

.sale-content .sale-section5 .section5_box .box_left {
    position: relative;
    background: url(../images/sale/sale_5.jpg) no-repeat center;
    background-size: cover;
    height: 200px;
    width: 49%;
}

@media (max-width: 767px) {
    .sale-content .sale-section5 .section5_box .box_left {
        width: 100%;
        margin-bottom: 30px;
    }
}

.sale-content .sale-section5 .section5_box .box_left .box_text {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
}

.sale-content .sale-section5 .section5_box .box_left .box_text a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    transition: .3s;
}

.sale-content .sale-section5 .section5_box .box_left .box_text a p {
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 31px;
}

@media (max-width: 991px) {
    .sale-content .sale-section5 .section5_box .box_left .box_text a p {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .sale-content .sale-section5 .section5_box .box_left .box_text a p {
        font-size: 20px;
    }
}

.sale-content .sale-section5 .section5_box .box_left .box_text a span {
    display: block;
    width: 154px;
    height: 44px;
    background: #1ec2b3;
    color: #fff;
    text-align: center;
    line-height: 44px;
    font-size: 16px;
    transition: .3s;
}

@media (max-width: 767px) {
    .sale-content .sale-section5 .section5_box .box_left .box_text a span {
        height: 40px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .sale-content .sale-section5 .section5_box .box_left .box_text a span {
        width: 120px;
        height: 36px;
        line-height: 36px;
    }
}

.sale-content .sale-section5 .section5_box .box_left .box_text a:hover {
    background: rgba(30, 197, 179, 0.8);
}

.sale-content .sale-section5 .section5_box .box_left .box_text a:hover span {
    background: #000;
    color: #fff;
}

.sale-content .sale-section5 .section5_box .box_right {
    position: relative;
    background: url(../images/sale/sale_6.jpg) no-repeat center;
    background-size: cover;
    height: 200px;
    width: 49%;
}

@media (max-width: 767px) {
    .sale-content .sale-section5 .section5_box .box_right {
        width: 100%;
    }
}

.sale-content .sale-section5 .section5_box .box_right .box_text {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
}

.sale-content .sale-section5 .section5_box .box_right .box_text a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    transition: .3s;
}

.sale-content .sale-section5 .section5_box .box_right .box_text a p {
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 31px;
}

@media (max-width: 991px) {
    .sale-content .sale-section5 .section5_box .box_right .box_text a p {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .sale-content .sale-section5 .section5_box .box_right .box_text a p {
        font-size: 20px;
    }
}

.sale-content .sale-section5 .section5_box .box_right .box_text a span {
    display: block;
    width: 154px;
    height: 44px;
    background: #1ec2b3;
    color: #fff;
    text-align: center;
    line-height: 44px;
    font-size: 16px;
    transition: .3s;
}

@media (max-width: 767px) {
    .sale-content .sale-section5 .section5_box .box_right .box_text a span {
        height: 40px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .sale-content .sale-section5 .section5_box .box_right .box_text a span {
        width: 120px;
        height: 36px;
        line-height: 36px;
    }
}

.sale-content .sale-section5 .section5_box .box_right .box_text a:hover {
    background: rgba(30, 197, 179, 0.8);
}

.sale-content .sale-section5 .section5_box .box_right .box_text a:hover span {
    background: #000;
    color: #fff;
}


/* 量身 */

@media (max-width: 767px) {
    .volume-content .index-section1 {
        height: 120px;
    }
}

.volume-content .index-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.volume-content .index-section2 .section2_box {
    width: 100%;
    text-align: center;
    margin: 80px auto 90px;
}

@media (max-width: 767px) {
    .volume-content .index-section2 .section2_box img {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .volume-content .index-section2 .section2_box {
        margin: 40px auto;
    }
}

.volume-content .index-section2 .section2_box h1 {
    font-size: 30px;
    line-height: 30px;
    color: #1ec2b3;
    margin: 0 0 20px;
}

@media (max-width: 575px) {
    .volume-content .index-section2 .section2_box h1 {
        font-size: 26px;
    }
}

.volume-content .index-section2 .section2_box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 36px;
}

@media (min-width: 320px) and (max-width: 400px) {
    .volume-content .index-section2 .section2_box .box_img {
        height: 120px;
    }
}

.volume-content .index-section2 .section2_box .box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.volume-content .index-section3 .section3_box {
    position: relative;
    background: url(../images/volume/service_bg2.jpg) no-repeat center;
    background-size: cover;
    height: 180px;
}

.volume-content .index-section3 .section3_box .box_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 575px) {
    .volume-content .index-section3 .section3_box .box_text {
        padding: 0 20px;
    }
}

.volume-content .index-section3 .section3_box .box_text h1 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 27px;
}

@media (max-width: 991px) {
    .volume-content .index-section3 .section3_box .box_text h1 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .volume-content .index-section3 .section3_box .box_text h1 {
        font-size: 20px;
        line-height: 24px;
    }
}

@media (max-width: 575px) {
    .volume-content .index-section3 .section3_box .box_text h1 {
        font-size: 18px;
        text-align: center;
        margin: 0 0 20px;
    }
}

.volume-content .index-section3 .section3_box .box_text p {
    font-size: 16px;
    color: #fff;
    text-align: center;
}

@media (max-width: 575px) {
    .volume-content .index-section3 .section3_box .box_text p {
        font-size: 14px;
    }
}

.volume-content .index-section4 {
    width: 100%;
    margin: 80px auto;
    clear: both;
    overflow: hidden;
}

@media (max-width: 575px) {
    .volume-content .index-section4 {
        margin: 40px auto;
    }
}

.volume-content .index-section4 .pro_lists .item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.volume-content .index-section4 .pro_lists .item .left_info {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (max-width: 991px) {
    .volume-content .index-section4 .pro_lists .item .left_info {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.volume-content .index-section4 .pro_lists .item .left_info img {
    width: 100%;
}

.volume-content .index-section4 .pro_lists .item .right_info {
    clear: both;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 0 0 50%;
    max-width: 50%;
    justify-content: center;
    padding: 0 40px;
}

@media (max-width: 991px) {
    .volume-content .index-section4 .pro_lists .item .right_info {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 40px 40px 100px;
    }
}

@media (max-width: 575px) {
    .volume-content .index-section4 .pro_lists .item .right_info {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 10px 0px 50px;
    }
}

.volume-content .index-section4 .pro_lists .item .right_info h1 {
    background: url(../images/volume/service_icon13.png) no-repeat;
    background-position: right center;
    font-size: 60px;
    color: #1ec2b3;
    margin: 0 0 30px;
}

@media (max-width: 575px) {
    .volume-content .index-section4 .pro_lists .item .right_info h1 {
        font-size: 40px;
        margin: 0 0 20px;
    }
}

.volume-content .index-section4 .pro_lists .item .right_info h3 {
    font-size: 30px;
    color: #333;
    margin: 0 0 30px;
}

@media (max-width: 575px) {
    .volume-content .index-section4 .pro_lists .item .right_info h3 {
        font-size: 24px;
        margin: 0 0 20px;
    }
}

.volume-content .index-section4 .pro_lists .item .right_info p {
    font-size: 16px;
    color: #666;
    text-align: left;
}

@media (max-width: 575px) {
    .volume-content .index-section4 .pro_lists .item .right_info p {
        font-size: 14px;
    }
}

.volume-content .index-section4 .pro_lists .item2,
.volume-content .index-section4 .pro_lists .item4 {
    flex-direction: row-reverse;
}

@media (max-width: 991px) {
    .volume-content .index-section4 .pro_lists .item2,
    .volume-content .index-section4 .pro_lists .item4 {
        flex-direction: inherit;
    }
}

.volume-content .index-section5 {
    width: 100%;
    min-height: 500px;
    margin: 80px auto 0;
    clear: both;
    overflow: hidden;
    background: url(../images/volume/service_bg3.jpg) no-repeat center;
    background-size: cover;
}

@media (max-width: 767px) {
    .volume-content .index-section5 {
        margin: 20px auto 0;
    }
}

@media (max-width: 767px) {
    .volume-content .index-section5 {
        min-height: 360px;
    }
}

.volume-content .index-section5 .nav_list {
    margin: 120px auto;
}

@media (max-width: 767px) {
    .volume-content .index-section5 .nav_list {
        margin: 60px auto 60px;
    }
}

.volume-content .index-section5 .nav_list ul {
    text-align: center;
    display: flex;
    justify-content: center;
}

.volume-content .index-section5 .nav_list ul li {
    display: block;
    font-size: 16px;
    width: 280px;
    height: 64px;
    line-height: 64px;
    background-color: #fff;
    border-radius: 6px;
    border: none;
    outline: none;
}

@media (max-width: 767px) {
    .volume-content .index-section5 .nav_list ul li {
        width: 200px;
        height: 54px;
        line-height: 54px;
    }
}

@media (max-width: 575px) {
    .volume-content .index-section5 .nav_list ul li {
        width: 170px;
        height: 46px;
        line-height: 46px;
    }
}

.volume-content .index-section5 .nav_list ul li.on {
    background-color: #1ec2b3;
    color: #fff;
}

.volume-content .index-section5 .section5_box {
    position: relative;
    display: none;
}

.volume-content .index-section5 .section5_box .box_list {
    background: url(../images/volume/lines.png) no-repeat;
    background-position: 0 30%;
    color: #fff;
    background-size: 100%;
}

.volume-content .index-section5 .section5_box .box_list .swiper-slide {
    text-align: center;
}

.volume-content .index-section5 .section5_box .box_list .swiper-slide .numbers {
    display: inline-block;
    width: 62px;
    height: 66px;
    line-height: 66px;
    text-align: center;
    background: url(../images/volume/bg.png) no-repeat;
    color: #fff;
    background-size: 100%;
}

.volume-content .index-section5 .section5_box .box_list .swiper-slide p {
    margin-top: 24px;
}

.volume-content .index-section5 .section5_box:nth-child(1) {
    display: block;
}

.volume-content .index-section5 .box_np {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10px;
}

.volume-content .index-section5 .box_np .swiper-button-next {
    right: -45px;
    top: 34px;
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .volume-content .index-section5 .box_np .swiper-button-next {
        right: -20px;
    }
}

@media (min-width: 992px) and (max-width: 1050px) {
    .volume-content .index-section5 .box_np .swiper-button-next {
        right: -20px;
    }
}

@media (min-width: 768px) and (max-width: 850px) {
    .volume-content .index-section5 .box_np .swiper-button-next {
        right: -20px;
    }
}

.volume-content .index-section5 .box_np .swiper-button-prev {
    left: -45px;
    top: 34px;
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .volume-content .index-section5 .box_np .swiper-button-prev {
        left: -20px;
    }
}

@media (min-width: 992px) and (max-width: 1050px) {
    .volume-content .index-section5 .box_np .swiper-button-prev {
        left: -20px;
    }
}

@media (min-width: 768px) and (max-width: 850px) {
    .volume-content .index-section5 .box_np .swiper-button-prev {
        left: -20px;
    }
}

.volume-content .index-section5 .box_np .box-prev {
    position: absolute;
    background: url(../images/about/prev_h.png) no-repeat center;
    width: 12px;
    height: 22px;
    background-size: 100%;
    outline: none;
    z-index: 100;
}

@media (max-width: 767px) {
    .volume-content .index-section5 .box_np .box-prev {
        display: none;
    }
}

.volume-content .index-section5 .box_np .box-next {
    position: absolute;
    width: 12px;
    height: 22px;
    background: url(../images/about/next_h.png) no-repeat center;
    background-size: 100%;
    outline: none;
    z-index: 100;
}

@media (max-width: 767px) {
    .volume-content .index-section5 .box_np .box-next {
        display: none;
    }
}

.volume-content .index-section5 .box_np .swiper-button-prev.swiper-button-disabled {
    background: url(../images/about/prev.png) no-repeat center;
    background-size: 100%;
    opacity: 1;
}

.volume-content .index-section5 .box_np .swiper-button-next.swiper-button-disabled {
    background: url(../images/about/next.png) no-repeat center;
    background-size: 100%;
    opacity: 1;
}

.volume-content .index-section5 .box_np .swiper-pagination {
    width: 100%;
    bottom: -30px;
    display: none;
}

@media (max-width: 767px) {
    .volume-content .index-section5 .box_np .swiper-pagination {
        display: block;
    }
}

.volume-content .index-section5 .box_np .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cccccc;
    margin: 0 5px;
    opacity: 1;
    outline: none;
}

.volume-content .index-section5 .box_np .swiper-pagination .swiper-pagination-bullet-active {
    background: #1ec2b3;
}

.volume-content .index-section6 {
    margin: 110px auto 90px;
    text-align: center;
}

@media (max-width: 575px) {
    .volume-content .index-section6 {
        margin: 50px auto;
    }
}

.volume-content .index-section6 span a {
    display: inline-block;
    font-size: 30px;
    line-height: 30px;
    color: #1ec2b3;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 3px solid #1ec2b3;
}

@media (max-width: 575px) {
    .volume-content .index-section6 span a {
        font-size: 22px;
    }
}


/* 服务特色 */

@media (max-width: 767px) {
    .server-content .index-section1 {
        height: 120px;
    }
}

.server-content .index-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.server-content .index-section2 {
    width: 100%;
    margin: 80px auto 90px;
    overflow: hidden;
}

@media (max-width: 575px) {
    .server-content .index-section2 {
        margin: 40px auto 80px;
    }
}

.server-content .index-section2 .section2_title {
    text-align: center;
}

.server-content .index-section2 .section2_title h1 {
    font-size: 30px;
    line-height: 30px;
    color: #1ec2b3;
    margin: 0 0 20px;
}

@media (max-width: 575px) {
    .server-content .index-section2 .section2_title h1 {
        font-size: 26px;
    }
}

.server-content .index-section2 .section2_title p {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.server-content .index-section2 .server2_box {
    position: relative;
}

.server-content .index-section2 .server2_box .server_section2 .item {
    display: flex;
    background: #f5f5f5;
    overflow: hidden;
}

@media (max-width: 767px) {
    .server-content .index-section2 .server2_box .server_section2 .item {
        flex-direction: column;
    }
}

.server-content .index-section2 .server2_box .server_section2 .item .left_item {
    flex: 0 0 680px;
    max-width: 680px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .server-content .index-section2 .server2_box .server_section2 .item .left_item {
        flex: 0 0 450px;
        max-width: 450px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .server-content .index-section2 .server2_box .server_section2 .item .left_item {
        flex: 0 0 400px;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .server-content .index-section2 .server2_box .server_section2 .item .left_item {
        flex: inherit;
        max-width: inherit;
    }
}

.server-content .index-section2 .server2_box .server_section2 .item .left_item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.server-content .index-section2 .server2_box .server_section2 .item .right_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 65px 0 40px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .server-content .index-section2 .server2_box .server_section2 .item .right_item {
        padding: 0 30px;
    }
}

@media (max-width: 767px) {
    .server-content .index-section2 .server2_box .server_section2 .item .right_item {
        padding: 30px;
    }
}

.server-content .index-section2 .server2_box .server_section2 .item .right_item h1 {
    font-size: 30px;
    line-height: 30px;
    color: #333;
    margin: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
    .server-content .index-section2 .server2_box .server_section2 .item .right_item h1 {
        font-size: 26px;
        line-height: 30px;
    }
}

.server-content .index-section2 .server2_box .server_section2 .item .right_item i {
    display: block;
    margin: 29px 0 32px;
    width: 20px;
    height: 2px;
    background: #999999;
}

@media (min-width: 768px) and (max-width: 991px) {
    .server-content .index-section2 .server2_box .server_section2 .item .right_item i {
        margin: 15px 0;
    }
}

.server-content .index-section2 .server2_box .server_section2 .item .right_item span {
    font-size: 16px;
    line-height: 30px;
    color: #666;
    margin-bottom: 35px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .server-content .index-section2 .server2_box .server_section2 .item .right_item span {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 15px;
    }
}

.server-content .index-section2 .server2_box .server_section2 .item .right_item a {
    color: #1ec2b3;
}

.server-content .index-section2 .server2_box .adviser_np {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10px;
}

.server-content .index-section2 .server2_box .adviser_np .swiper-button-next {
    right: -45px;
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .server-content .index-section2 .server2_box .adviser_np .swiper-button-next {
        right: -20px;
    }
}

@media (min-width: 992px) and (max-width: 1050px) {
    .server-content .index-section2 .server2_box .adviser_np .swiper-button-next {
        right: -20px;
    }
}

@media (min-width: 768px) and (max-width: 850px) {
    .server-content .index-section2 .server2_box .adviser_np .swiper-button-next {
        right: -20px;
    }
}

.server-content .index-section2 .server2_box .adviser_np .swiper-button-prev {
    left: -45px;
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .server-content .index-section2 .server2_box .adviser_np .swiper-button-prev {
        left: -20px;
    }
}

@media (min-width: 992px) and (max-width: 1050px) {
    .server-content .index-section2 .server2_box .adviser_np .swiper-button-prev {
        left: -20px;
    }
}

@media (min-width: 768px) and (max-width: 850px) {
    .server-content .index-section2 .server2_box .adviser_np .swiper-button-prev {
        left: -20px;
    }
}

.server-content .index-section2 .server2_box .adviser_np .adviser-prev {
    position: absolute;
    background: url(../images/about/prev_h.png) no-repeat center;
    width: 12px;
    height: 22px;
    background-size: 100%;
    outline: none;
    z-index: 100;
}

@media (max-width: 767px) {
    .server-content .index-section2 .server2_box .adviser_np .adviser-prev {
        display: none;
    }
}

.server-content .index-section2 .server2_box .adviser_np .adviser-next {
    position: absolute;
    width: 12px;
    height: 22px;
    background: url(../images/about/next_h.png) no-repeat center;
    background-size: 100%;
    outline: none;
    z-index: 100;
}

@media (max-width: 767px) {
    .server-content .index-section2 .server2_box .adviser_np .adviser-next {
        display: none;
    }
}

.server-content .index-section2 .server2_box .adviser_np .swiper-button-prev.swiper-button-disabled {
    background: url(../images/about/prev.png) no-repeat center;
    background-size: 100%;
    opacity: 1;
}

.server-content .index-section2 .server2_box .adviser_np .swiper-button-next.swiper-button-disabled {
    background: url(../images/about/next.png) no-repeat center;
    background-size: 100%;
    opacity: 1;
}

.server-content .index-section2 .server2_box .adviser_np .swiper-pagination {
    width: 100%;
    bottom: -30px;
    display: none;
}

@media (max-width: 767px) {
    .server-content .index-section2 .server2_box .adviser_np .swiper-pagination {
        display: block;
    }
}

.server-content .index-section2 .server2_box .adviser_np .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cccccc;
    margin: 0 5px;
    opacity: 1;
    outline: none;
}

.server-content .index-section2 .server2_box .adviser_np .swiper-pagination .swiper-pagination-bullet-active {
    background: #1ec2b3;
}

.server-content .index-section3 .section3_box {
    position: relative;
    background: url(../images/volume/service_bg2.jpg) no-repeat center;
    background-size: cover;
    height: 180px;
    overflow: hidden;
}

.server-content .index-section3 .section3_box .box_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 575px) {
    .server-content .index-section3 .section3_box .box_text {
        padding: 0 20px;
    }
}

.server-content .index-section3 .section3_box .box_text h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 27px;
}

@media (max-width: 991px) {
    .server-content .index-section3 .section3_box .box_text h1 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .server-content .index-section3 .section3_box .box_text h1 {
        font-size: 20px;
        line-height: 24px;
    }
}

@media (max-width: 575px) {
    .server-content .index-section3 .section3_box .box_text h1 {
        font-size: 18px;
        text-align: center;
        margin: 0 0 20px;
    }
}

.server-content .index-section3 .section3_box .box_text p {
    font-size: 16px;
    color: #fff;
    text-align: center;
}

@media (max-width: 575px) {
    .server-content .index-section3 .section3_box .box_text p {
        font-size: 14px;
    }
}

.server-content .index-section4 {
    width: 100%;
    min-height: 720px;
    clear: both;
    overflow: hidden;
    background: url(../images/server/service_bg3.jpg) no-repeat center;
    background-size: cover;
}

@media (max-width: 1199px) {
    .server-content .index-section4 {
        min-height: 980px;
    }
}

@media (max-width: 767px) {
    .server-content .index-section4 {
        min-height: 1250px;
    }
}

@media (max-width: 575px) {
    .server-content .index-section4 {
        min-height: 1750px;
    }
}

.server-content .index-section4 .section4_title p {
    text-align: center;
    margin: 80px auto 28px;
    font-size: 30px;
    line-height: 30px;
    color: #fff;
}

.server-content .index-section4 .section4_box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -10px;
}

.server-content .index-section4 .section4_box ul li {
    flex: 0 0 16.66%;
    max-width: 16.66%;
    padding: 0 10px;
    margin: 30px 0;
    cursor: pointer;
}

@media (max-width: 1199px) {
    .server-content .index-section4 .section4_box ul li {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 767px) {
    .server-content .index-section4 .section4_box ul li {
        flex: 0 0 33.3%;
        max-width: 33.3%;
    }
}

@media (max-width: 575px) {
    .server-content .index-section4 .section4_box ul li {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.server-content .index-section4 .section4_box ul li .item_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 52px 0 57px;
    border: 1px solid #474645;
    border-radius: 4px;
    position: relative;
}

.server-content .index-section4 .section4_box ul li .item_list .list_img {
    margin-bottom: 20px;
}

.server-content .index-section4 .section4_box ul li .item_list .list_img img {
    max-width: 40px;
}

.server-content .index-section4 .section4_box ul li .item_list>p {
    color: #fff;
    font-size: 18px;
}

.server-content .index-section4 .section4_box ul li .item_list>span {
    position: absolute;
    display: block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    background: #1ec2b3;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    bottom: -19px;
    left: 40%;
}

@media (min-width: 320px) and (max-width: 350px) {
    .server-content .index-section4 .section4_box ul li .item_list>span {
        left: 35%;
    }
}

.server-content .index-section4 .section4_box ul li .item_list .list_hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1ec2b3;
    border: 1px solid #1ec2b3;
    border-radius: 4px;
    opacity: 0;
}

@media (max-width: 575px) {
    .server-content .index-section4 .section4_box ul li .item_list .list_hover {
        padding: 0 8px;
    }
}

.server-content .index-section4 .section4_box ul li .item_list .list_hover p {
    color: #fff;
    font-size: 18px;
    margin: 0 0 20px;
}

@media (max-width: 575px) {
    .server-content .index-section4 .section4_box ul li .item_list .list_hover p {
        font-size: 16px;
        margin: 0 0 15px;
    }
}

.server-content .index-section4 .section4_box ul li .item_list .list_hover span {
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    text-align: center;
}

.server-content .index-section4 .section4_box ul li:hover .list_hover {
    opacity: 1;
    transition: 0.35s;
}

.server-content .index-section5 {
    width: 100%;
    margin: 80px auto;
    clear: both;
    overflow: hidden;
}

@media (max-width: 575px) {
    .server-content .index-section5 {
        margin: 40px auto;
    }
}

.server-content .index-section5 .section4_title {
    text-align: center;
}

.server-content .index-section5 .section4_title h1 {
    font-family: "Didot LT Std";
    font-size: 48px;
    line-height: 48px;
    color: #999;
    margin: 0;
    font-weight: bold;
}

@media (max-width: 575px) {
    .server-content .index-section5 .section4_title h1 {
        font-size: 32px;
        line-height: 32px;
    }
}

.server-content .index-section5 .section4_title p {
    font-family: "黑体";
    color: #333;
    font-size: 30px;
    line-height: 30px;
    margin: 20px 0 60px;
}

@media (max-width: 575px) {
    .server-content .index-section5 .section4_title p {
        font-size: 22px;
        line-height: 22px;
        margin: 20px 0 30px;
    }
}

.server-content .index-section5 .pro_lists .item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.server-content .index-section5 .pro_lists .item .left_info {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (max-width: 991px) {
    .server-content .index-section5 .pro_lists .item .left_info {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.server-content .index-section5 .pro_lists .item .left_info img {
    width: 100%;
}

.server-content .index-section5 .pro_lists .item .right_info {
    clear: both;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 0 0 50%;
    max-width: 50%;
    justify-content: center;
    padding: 0 40px;
}

@media (max-width: 991px) {
    .server-content .index-section5 .pro_lists .item .right_info {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 40px 40px 100px;
    }
}

@media (max-width: 575px) {
    .server-content .index-section5 .pro_lists .item .right_info {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 10px 0px 50px;
    }
}

.server-content .index-section5 .pro_lists .item .right_info h1 {
    background: url(../images/volume/service_icon13.png) no-repeat;
    background-position: right center;
    font-size: 60px;
    color: #1ec2b3;
    margin: 0 0 30px;
    font-family: "Didot LT Std";
}

@media (max-width: 575px) {
    .server-content .index-section5 .pro_lists .item .right_info h1 {
        font-size: 40px;
        margin: 0 0 20px;
    }
}

.server-content .index-section5 .pro_lists .item .right_info h3 {
    font-size: 30px;
    color: #333;
    margin: 0 0 30px;
}

@media (max-width: 575px) {
    .server-content .index-section5 .pro_lists .item .right_info h3 {
        font-size: 24px;
        margin: 0 0 20px;
    }
}

.server-content .index-section5 .pro_lists .item .right_info p {
    font-size: 16px;
    color: #666;
    text-align: left;
}

@media (max-width: 575px) {
    .server-content .index-section5 .pro_lists .item .right_info p {
        font-size: 14px;
    }
}

.server-content .index-section5 .pro_lists .item2,
.server-content .index-section5 .pro_lists .item4 {
    flex-direction: row-reverse;
}

@media (max-width: 991px) {
    .server-content .index-section5 .pro_lists .item2,
    .server-content .index-section5 .pro_lists .item4 {
        flex-direction: inherit;
    }
}

.server-content .index-section6 {
    width: 100%;
    min-height: 620px;
    margin: 80px auto 0;
    clear: both;
    overflow: hidden;
    background: url(../images/server/service_bg4.jpg) no-repeat center;
    overflow: hidden;
    background-size: cover;
}

@media (max-width: 767px) {
    .server-content .index-section6 {
        margin: 20px auto 0;
    }
}

@media (max-width: 767px) {
    .server-content .index-section6 {
        min-height: 460px;
    }
}

.server-content .index-section6 .nav_list {
    margin: 120px auto;
}

@media (max-width: 767px) {
    .server-content .index-section6 .nav_list {
        margin: 60px auto 60px;
    }
}

.server-content .index-section6 .nav_list ul {
    text-align: center;
    display: flex;
    justify-content: center;
}

.server-content .index-section6 .nav_list ul li {
    display: block;
    font-size: 22px;
    width: 280px;
    height: 64px;
    line-height: 64px;
    background-color: #fff;
    border-radius: 6px;
    border: none;
    outline: none;
}

@media (max-width: 767px) {
    .server-content .index-section6 .nav_list ul li {
        width: 200px;
        height: 54px;
        line-height: 54px;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .server-content .index-section6 .nav_list ul li {
        width: 170px;
        height: 46px;
        line-height: 46px;
    }
}

.server-content .index-section6 .nav_list ul li.on {
    background-color: #1ec2b3;
    color: #fff;
}

.server-content .index-section6 .section5_box {
    position: relative;
    display: none;
}

.server-content .index-section6 .section5_box .box_list {
    background: url(../images/volume/lines.png) no-repeat;
    background-position: 0 30%;
    color: #fff;
    background-size: 100%;
}

.server-content .index-section6 .section5_box .box_list .swiper-slide {
    text-align: center;
}

.server-content .index-section6 .section5_box .box_list .swiper-slide .numbers {
    display: inline-block;
    width: 62px;
    height: 66px;
    line-height: 66px;
    text-align: center;
    background: url(../images/volume/bg.png) no-repeat;
    color: #fff;
    background-size: 100%;
    font-size: 24px;
}

.server-content .index-section6 .section5_box .box_list .swiper-slide p {
    margin-top: 24px;
    font-size: 16px;
}

.server-content .index-section6 .section5_box .box_np {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10px;
}

.server-content .index-section6 .section5_box .box_np .swiper-button-next {
    right: -45px;
    top: 34px;
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .server-content .index-section6 .section5_box .box_np .swiper-button-next {
        right: -20px;
    }
}

@media (min-width: 992px) and (max-width: 1050px) {
    .server-content .index-section6 .section5_box .box_np .swiper-button-next {
        right: -20px;
    }
}

@media (min-width: 768px) and (max-width: 850px) {
    .server-content .index-section6 .section5_box .box_np .swiper-button-next {
        right: -20px;
    }
}

.server-content .index-section6 .section5_box .box_np .swiper-button-prev {
    left: -45px;
    top: 34px;
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .server-content .index-section6 .section5_box .box_np .swiper-button-prev {
        left: -20px;
    }
}

@media (min-width: 992px) and (max-width: 1050px) {
    .server-content .index-section6 .section5_box .box_np .swiper-button-prev {
        left: -20px;
    }
}

@media (min-width: 768px) and (max-width: 850px) {
    .server-content .index-section6 .section5_box .box_np .swiper-button-prev {
        left: -20px;
    }
}

.server-content .index-section6 .section5_box .box_np .box-prev {
    position: absolute;
    background: url(../images/about/prev_h.png) no-repeat center;
    width: 12px;
    height: 22px;
    background-size: 100%;
    outline: none;
    z-index: 100;
}

@media (max-width: 767px) {
    .server-content .index-section6 .section5_box .box_np .box-prev {
        display: none;
    }
}

.server-content .index-section6 .section5_box .box_np .box-next {
    position: absolute;
    width: 12px;
    height: 22px;
    background: url(../images/about/next_h.png) no-repeat center;
    background-size: 100%;
    outline: none;
    z-index: 100;
}

@media (max-width: 767px) {
    .server-content .index-section6 .section5_box .box_np .box-next {
        display: none;
    }
}

.server-content .index-section6 .section5_box .box_np .swiper-button-prev.swiper-button-disabled {
    background: url(../images/about/prev.png) no-repeat center;
    background-size: 100%;
    opacity: 1;
}

.server-content .index-section6 .section5_box .box_np .swiper-button-next.swiper-button-disabled {
    background: url(../images/about/next.png) no-repeat center;
    background-size: 100%;
    opacity: 1;
}

.server-content .index-section6 .section5_box .box_np .swiper-pagination {
    width: 100%;
    bottom: -30px;
    display: none;
}

@media (max-width: 767px) {
    .server-content .index-section6 .section5_box .box_np .swiper-pagination {
        display: block;
    }
}

.server-content .index-section6 .section5_box .box_np .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cccccc;
    margin: 0 5px;
    opacity: 1;
    outline: none;
}

.server-content .index-section6 .section5_box .box_np .swiper-pagination .swiper-pagination-bullet-active {
    background: #1ec2b3;
}

.server-content .index-section6 .section5_box:nth-child(1) {
    display: block;
}

.server-content .index-section6 .section5_button a {
    display: block;
    width: 200px;
    height: 44px;
    line-height: 44px;
    background: #1ec2b3;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 4px;
    margin: 70px auto 0;
}


/* 搜索 */

@media (max-width: 767px) {
    .search-content .product-section1 {
        height: 120px;
    }
}

.search-content .product-section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-content .product-section2 .product .product_top {
    display: flex;
    align-items: center;
    height: 80px;
    line-height: 80px;
    border-bottom: 1px solid #dddddd;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 767px) {
    .search-content .product-section2 .product .product_top {
        height: 60px;
        line-height: 60px;
    }
}

.search-content .product-section2 .product .product_top .title {
    font-size: 24px;
}

.search-content .product-section2 .product .product_top .title a {
    font-size: 18px;
    color: #666;
    margin: 0 10px;
    padding: 0 8px;
    display: inline-block;
    position: relative;
}

@media (max-width: 767px) {
    .search-content .product-section2 .product .product_top .title a {
        font-size: 18px;
        margin: 0;
    }
}

@media (max-width: 575px) {
    .search-content .product-section2 .product .product_top .title a {
        font-size: 13px;
        padding: 0 2px;
        margin: 0;
    }
}

.search-content .product-section2 .product .product_top .title a::after {
    position: absolute;
    content: ">";
    font-size: 20px;
    line-height: 79px;
    right: -20px;
    color: #666;
}

.search-content .product-section2 .product .product_top .title a:last-child::after {
    content: none;
}

.search-content .product-section2 .product .product_top .title a:hover {
    color: #1ec2b3;
}

.search-content .product-section2 .product .product_bottom {
    padding: 30px 0 80px;
    width: 100%;
    display: flex;
    overflow: hidden;
}

@media (max-width: 767px) {
    .search-content .product-section2 .product .product_bottom {
        padding: 40px 0;
        display: inherit;
    }
}

@media (max-width: 575px) {
    .search-content .product-section2 .product .product_bottom {
        padding: 20px 0;
        display: inherit;
    }
}

.search-content .product-section2 .product .product_bottom .product_nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 33px;
}

@media (max-width: 575px) {
    .search-content .product-section2 .product .product_bottom .product_nav ul {
        align-items: inherit;
        display: inherit;
        justify-content: inherit;
        clear: both;
        overflow: hidden;
    }
}

.search-content .product-section2 .product .product_bottom .product_nav ul li {
    margin: 0 27px;
    color: #666;
    font-size: 16px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .search-content .product-section2 .product .product_bottom .product_nav ul li {
        margin: 0 24px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .search-content .product-section2 .product .product_bottom .product_nav ul li {
        margin: 0 8px;
    }
}

@media (max-width: 575px) {
    .search-content .product-section2 .product .product_bottom .product_nav ul li {
        float: left;
        width: 50%;
        margin: 10px 0;
        text-align: center;
    }
}

.search-content .product-section2 .product .product_bottom .product_nav ul li.all {
    margin-right: 35px;
    width: 78px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #1ec2b3;
    color: #fff;
    font-size: 16px;
}

@media (min-width: 576px) and (max-width: 767px) {
    .search-content .product-section2 .product .product_bottom .product_nav ul li.all {
        margin-right: 5px;
    }
}

@media (max-width: 575px) {
    .search-content .product-section2 .product .product_bottom .product_nav ul li.all {
        float: inherit;
        margin: 0 0 10px;
    }
}

.search-content .product-section2 .product .product_bottom .product_list ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.search-content .product-section2 .product .product_bottom .product_list ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 15px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .search-content .product-section2 .product .product_bottom .product_list ul li {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .search-content .product-section2 .product .product_bottom .product_list ul li {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.search-content .product-section2 .product .product_bottom .product_list ul li>img {
    width: 100%;
}

.search-content .product-section2 .product .product_bottom .product_list ul li .product_img {
    position: relative;
    overflow: hidden;
}

.search-content .product-section2 .product .product_bottom .product_list ul li .product_img>img {
    width: 100%;
}

.search-content .product-section2 .product .product_bottom .product_list ul li .product_img .product_box {
    position: absolute;
    background: rgba(30, 197, 179, 0.8);
    width: 100%;
    height: 100%;
    bottom: -100%;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-content .product-section2 .product .product_bottom .product_list ul li .product_img .product_box img {
    margin: 185px 0 158px;
}

.search-content .product-section2 .product .product_bottom .product_list ul li .product_img .product_box p {
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    margin-bottom: 18px;
    font-family: "微软雅黑";
    opacity: 1;
}

.search-content .product-section2 .product .product_bottom .product_list ul li .product_img .product_box span {
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    font-family: "微软雅黑";
    opacity: 1;
}

.search-content .product-section2 .product .product_bottom .product_list ul li .product_text {
    padding: 20px 0;
    text-align: center;
}

.search-content .product-section2 .product .product_bottom .product_list ul li .product_text p {
    font-size: 16px;
    line-height: 16px;
    color: #1ec2b3;
    margin-bottom: 18px;
    font-family: "微软雅黑";
}

.search-content .product-section2 .product .product_bottom .product_list ul li .product_text span {
    font-size: 16px;
    line-height: 16px;
    color: #666;
    font-family: "微软雅黑";
}

.search-content .product-section2 .product .product_bottom .product_list ul li:hover .product_box {
    bottom: 0;
    transition: 0.4s;
}

.search-content .product-section2 .product .product_bottom .product_list ul li:hover .product_text p,
.search-content .product-section2 .product .product_bottom .product_list ul li:hover .product_text span {
    opacity: 0;
}

.search-content .product-section2 .product .product_bottom .product_list .pages {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 38px;
}

@media (max-width: 575px) {
    .search-content .product-section2 .product .product_bottom .product_list .pages {
        padding: 0;
    }
}

.search-content .product-section2 .product .product_bottom .product_list .pages a.num,
.search-content .product-section2 .product .product_bottom .product_list .pages a.next,
.search-content .product-section2 .product .product_bottom .product_list .pages a.prev,
.search-content .product-section2 .product .product_bottom .product_list .pages a.next {
    display: inline-block;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border: 1px solid #ddd;
    margin: 0 8px;
}

@media (max-width: 575px) {
    .search-content .product-section2 .product .product_bottom .product_list .pages a.num,
    .search-content .product-section2 .product .product_bottom .product_list .pages a.next,
    .search-content .product-section2 .product .product_bottom .product_list .pages a.prev,
    .search-content .product-section2 .product .product_bottom .product_list .pages a.next {
        margin: 0 3px;
    }
}

.search-content .product-section2 .product .product_bottom .product_list .pages a.prev {
    background: url(../images/new/prev1.png) no-repeat center;
}

.search-content .product-section2 .product .product_bottom .product_list .pages a.next {
    background: url(../images/new/next1.png) no-repeat center;
}

.search-content .product-section2 .product .product_bottom .product_list .pages a.current {
    background-color: #1ec2b3;
    color: #fff;
    border: none;
}

.search-content .product-section2 .product .product_bottom .product_list .pages a.num:hover {
    background-color: #1ec2b3;
    border: none;
    color: #fff;
}

.search-content .product-section2 .product .product_bottom .product_list .pages a.prev:hover {
    background: url(../images/new/prev1_h.png) no-repeat center;
    border: 1px solid #1ec2b3;
}

.search-content .product-section2 .product .product_bottom .product_list .pages a.next:hover {
    background: url(../images/new/next1_h.png) no-repeat center;
    border: 1px solid #1ec2b3;
}

.search-content .product-section3 {
    margin-bottom: 80px;
    overflow: hidden;
}

.search-content .product-section3 .bottom_box {
    position: relative;
    background: url(../images/product/product_bg2.jpg) no-repeat center;
    background-size: cover;
    height: 180px;
    overflow: hidden;
}

.search-content .product-section3 .bottom_box .bottom_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.search-content .product-section3 .bottom_box .bottom_text p {
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .search-content .product-section3 .bottom_box .bottom_text p {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .search-content .product-section3 .bottom_box .bottom_text p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .search-content .product-section3 .bottom_box .bottom_text p {
        font-size: 15px;
        padding: 0 16px;
        text-align: center;
    }
}

.search-content .product-section3 .bottom_box .bottom_text a {
    width: 154px;
    height: 44px;
    line-height: 44px;
    background: #1ec2b3;
    color: #fff;
    text-align: center;
    font-size: 16px;
    display: block;
}

@media (max-width: 991px) {
    .search-content .product-section3 .bottom_box .bottom_text a {
        height: 36px;
        line-height: 36px;
    }
}


/* 手机端底部导航栏 */

@media (min-width: 768px) {
    .footer_nav {
        display: none;
    }
}

.footer_nav {
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    position: fixed;
    bottom: 0;
    z-index: 998;
}

.footer_nav ul {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
}

.footer_nav ul li {
    width: 33.33%;
    text-align: center;
    height: 60px;
}

.footer_nav ul li a {
    height: 100%;
    flex: 1;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
}

.footer_nav ul li img {
    vertical-align: middle;
    /* margin-bottom: 10px; */
    margin-right: 8px;
}

.footer_nav ul li span {
    font-size: 18px;
    line-height: 18px;
    color: #fff;
}

.footer_nav ul li:nth-child(1) {
    background: #333;
}

.footer_nav ul li:nth-child(2) {
    background: #999;
}

.footer_nav ul li:nth-child(3) {
    background: #1ec2b3;
}

.footer_nav ul li:nth-child(1) img {
    width: 25px;
    margin-bottom: 2px;
}

.footer_nav ul li:nth-child(2) img {
    width: 22px;
}

.footer_nav ul li:nth-child(3) img {
    width: 23px;
}

.newproduct-section2>div:nth-child(2n)>.container>div.item_box {
    flex-direction: row-reverse;
}