@charset "UTF-8";
@media screen and (min-width:1200px) {
    .head_h{height: 90px;}
    .header {
        height: 90px;
        line-height: 90px;
        background-color: #fff;
        border-bottom: 1px #eee solid;
        width: 100%;
        top: 0;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;        
    }
    .header.header-fixed {
        position: fixed;
        z-index: 999;
        height: 90px;
        line-height: 90px;
        transition: .4s;
    }
    .header .head-logo img {
        display: block;
        height: 90px;
        padding: 8px 0;
    }
    .header .container {
        display: flex;
        justify-content: space-between;
    }
    .header .nav-list {
        height: 100%;
    }
    .header .head-nav {
        display: flex;
        align-items: center;
    }
    .header .head-nav .tel {
        display: flex;
        margin-left: 50px;
        align-items: center;
    }
    .header .head-nav .tel .tel-main {
        line-height: 23px;
        font-size: 24px;
        color: var(--color);
        margin-left: 10px;
    }
    .header .head-nav .tel .tel-main span {
        display: block;
        color: #888;
    }
    .header .nav-list .nav-item {
        display: inline-block;
        margin-left: 30px;
        position: relative;
    }
    .header .nav-list .nav-item>a {
        display: block;
        color: #333;
        font-size: 16px;
    }
    .header .nav-list .nav-item>a::after {
        content: "";
        height: 2px;
        background-color: var(--color);
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        margin: auto;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        width: 0;
    }
    .header .nav-list .nav-item:hover a,
    .header .nav-list .nav-item.active>a {
        color: var(--color);
    }
    .header .nav-list .nav-item:hover>a::after,
    .header .nav-list .nav-item.active>a::after {
        width: 54px;
    }
    .header.header-fixed .nav-list .nav-item .subnav {
        top: 70px;
    }
    .header .nav-list .nav-item .subnav {
        position: absolute;
        width: 170px;
        top: 90px;
        left: -50px;
        z-index: 99;
        line-height: 45px;
        background-color: #fff;
        text-align: center;
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        transform-origin: 0 0;
        box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
    }
    .header .nav-list .nav-item .subnav .subnav-item a {
        display: block;
        color: #8b8e8d;
        border-bottom: 1px #ededed solid;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }
    .header .nav-list .nav-item .subnav .subnav-item a:hover {
        color: #121212;
    }
    .header .nav-list .nav-item .subnav .subnav-item:last-child a {
        border-bottom: none;
    }
    .header .nav-list .nav-item:hover .subnav {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
    }
    .index-banner {
        height: 680px;
    }
    .index-banner .swiper-slide {
        height: 680px;
        background-size: cover;
    }
    .index-banner .swiper-slide img {
        display: none;
    }
    .index-banner .swiper-button-next::after,
    .index-banner .swiper-button-prev::after {
        display: none;
    }
    .index-banner .swiper-button-prev {
        width: 69px;
        height: 7px;
        left: 120px;
        background: url(../images/icon_arrow.png) center/cover no-repeat;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        opacity: 0;
    }
    .index-banner .swiper-button-next {
        width: 69px;
        height: 7px;
        right: 120px;
        background: url(../images/icon_arrow.png) center/cover no-repeat;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        opacity: 0;
    }
    .index-banner .banner-book {
        width: 1100px;
        position: absolute;
        bottom: 60px;
        left: 0;
        right: 0;
        margin: auto;
        background: rgb(255 255 255 / 100%);
        z-index: 3;
        padding: 25px 30px;
        border-radius: 10px;
    }
    .index-banner .banner-book h4 {
        color: #333;
        margin-bottom: 18px;
        font-size: 20px;
        font-weight: bold;
    }
    .index-banner .banner-book h4 span {
        font-size: 20px;
        font-weight: bold;
    }
    .index-banner .banner-book .book-main {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .index-banner .banner-book .book-main select {
        width: 220px;
        border-radius: 3px;
        height: 46px;
        border: none;
        padding: 0 12px;
        background: #F7F7F7;
        color: #666;
    }
    .index-banner .banner-book .book-main input {
        width: 220px;
        border-radius: 3px;
        height: 46px;
        border: none;
        background: #ffffff;
        padding: 0 12px;
        background: #F7F7F7;
    }
    .index-banner .banner-book .book-main input.tel {
        width: 338px;
    }
    .index-banner .banner-book .book-main input.bt {
        background: var(--color);
        color: #fff;
        font-size: 15px;
    }
    .index-banner:hover .swiper-button-next {
        opacity: 1;
        right: 70px;
    }
    .index-banner:hover .swiper-button-prev {
        opacity: 1;
        left: 70px;
    }
    .index-advantage {
        overflow: hidden;
        padding: 60px 0;
    }
    .index-advantage .advantage-main {
        display: flex;
        justify-content: space-between;
    }
    .index-advantage .advantage-main .item {
        text-align: center;
        background: #f8f8f8;
        padding: 2% 2%;
        width: 24%;
        overflow: hidden;
        cursor: pointer;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        margin: 8px 0;
    }
    .index-advantage .advantage-main .item .icon {
        width: 60px;
        height: 60px;
        margin: auto;
    }
    .index-advantage .advantage-main .item .icon img {
        display: block;
        position: relative;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        top: 0;
        overflow: hidden;
    }
    .index-advantage .advantage-main .item .icon .on {
        opacity: 0;
        bottom: -80px;
    }
    .index-advantage .advantage-main .item:hover {
        background: var(--color);
    }
    .index-advantage .advantage-main .item:hover .icon img {
        top: -60px;
        opacity: 0;
    }
    .index-advantage .advantage-main .item:hover .icon img.on {
        opacity: 1;
        bottom: 0;
    }
    .index-advantage .advantage-main .item:hover h4 {
        color: #fff;
    }
    .index-advantage .advantage-main .item:hover p {
        color: #fff;
    }
    .index-advantage .advantage-main .item h4 {
        font-size: 22px;
        color: #333333;
        font-weight: bold;
        margin-top: 20px;
    }
    .index-advantage .advantage-main .item p {
        font-size: 15px;
        color: #666;
        margin-top: 20px;
        line-height: 22px;
    }
    .index-service {
        padding: 60px 0;
        position: relative;
        padding-bottom: 0;
    }
    .index-service::after {
        /* content: ''; */
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 280px;
        z-index: 2;
        background: var(--color);
    }
    .index-service .service-main {
        overflow: hidden;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        position: relative;
        z-index: 9;
        padding-bottom: 30px;
    }
    .index-service .service-main .item {
        width: 48.5%;
        max-width: 700px;
    }
    .index-service .service-main .item:nth-child(3),
    .index-service .service-main .item:nth-child(4){
        margin-top: 20px;
    }
    .index-service .service-main .service_case {
        overflow: hidden;
        position: relative;
        z-index: 99;
    }
    .index-service .service-main .item .text {
        text-align: center;
        padding: 30px;
        width: 92%;
        margin: auto;
        background: #fff;
        margin-top: -50px;
        position: relative;
        z-index: 9999;
        border-radius: 5px;
        box-shadow: 4px 10px 22px 0px rgb(223 223 223 / 60%);
    }
    .index-service .service-main .item .text h4 {
        position: relative;
    }
    .master_list .text h4::after {
        content: '';
        position: absolute;
        height: 3px;
        width: 62px;
        background: var(--color);
        bottom: -11px;
        left: 0;
        right: 0;
        margin: auto;
    }
    .index-service .service-main .item .text h4 a {
        color: #333;
        font-size: 22px;
        font-weight: bold;
    }
    .index-service .service-main .item .text p {
        font-size: 14px;
        margin-top: 30px;
        line-height: 24px;
        color: #686868;
    }
    .index-service .service-main .item .mobi {
        display: none;
    }
    .index-service .service-main .item .text .more {
        display: none;
        margin-top: 35px;
    }
    .index-service .service-main .item .text .more a {
        display: block;
        width: 150px;
        height: 48px;
        background: #919191;
        text-align: center;
        line-height: 48px;
        color: #fff;
        font-size: 15px;
        border-radius: 5px;
    }
    .index-service .service-main .item .text .more a:last-child {
        margin-left: 13px;
        background: var(--color);
    }
    .index-service .pagination {
        margin: auto;
        width: 120px;
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
    }
    .index-service .pagination div {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: #eeeeee;
        line-height: 55px;
        text-align: center;
        top: 0;
        border: none;
        outline: none;
        cursor: pointer;
    }
    .index-service .pagination .prev-service {
        left: 0;
    }
    .service-wrapper {
        display: flex;
    }
    .service-slide {
        flex-shrink: 0;
        width: 100%;
        height: 100%;
        position: relative;
        transition-property: transform;
    }
    .index-about {
        padding: 60px 0;
    }
    .index-about .container {
        overflow: hidden;
    }
    .index-about .about-main h4 {
        font-size: 36px;
        color: var(--color);
        line-height: 50px;
        font-weight: bold;
        text-align: center;
    }
    .index-about .about-main .data {
        display: flex;
        justify-content: space-between;
        padding: 85px 0;
        max-width: 1400px;
        margin: auto;
    }
    .index-about .about-main .data .item {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .index-about .about-main .data .item .icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--color);
        text-align: center;
        margin-right: 15px;
    }
    .index-about .about-main .data .item .icon img {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        display: block;
        height: 40px;
    }
    .index-about .about-main .data .item .num {
        color: var(--color);
        font-size: 52px;
    }
    .index-about .about-main .data .item .note {
        display: inline-block;
        text-align: left;
        margin-left: 10px;
        padding-left: 10px;
        line-height: 22px;
        vertical-align: bottom;
        font-size: 16px;
        color: rgba(102, 102, 102, .8);
    }
    .index-about .about-main .cont {
        max-width: 1400px;
        margin: auto;
        margin-top: 30px;
        text-align: center;
    }
    .index-about .about-main .cont .more {
        display: none;
    }
    .index-about .about-main .cont p {
        font-size: 16px;
        color: #666666;
        line-height: 28px;
    }
    .index-about .honor-list ul {
        display: flex;
        justify-content: space-between;
    }
    .index-about .honor-list ul li {
        width: 15%;
    }
    .index-about .honor-list ul li p {
        font-size: 14px;
        text-align: center;
        padding: 12px 0;
    }
    .index-case {
        padding: 60px 0;
        background: url(../images/index-news.jpg) no-repeat;
    }
    .index-case .case-main {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        overflow: hidden;
    }
    .index-case .pagination-cases {
        text-align: center;
        margin-top: 30px;
    }
    .index-case .pagination-cases span.swiper-pagination-bullet-active {
        background: var(--color);
    }
    .index-case .case-main .item {
        width: 24%;
        position: relative;
        margin-bottom: 10px;
        background: #fff;
        padding: 10px;
        text-align: center;
        padding-bottom: 22px;
    }
    .index-case .case-main .item img {}
    .index-case .case-main .item h4 {
        font-size: 16px;
        color: #333;
        font-weight: bold;
        margin-top: 18px;
    }
    .index-case .case-main .item p {
        color: #888;
        font-size: 13px;
        margin: 15px 0px;
        line-height: 20px;
    }
    .index-case .case-main .item ul {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
    }
    .index-case .case-main .item ul li {
        padding: 2px 8px;
        font-size: 13px;
        line-height: 30px;
        background-color: #f8f8f8;
        text-align: center;
        color: #666;
        margin-bottom: 12px;
        margin-right: 12px;
        border-radius: 1px;
    }
    .index-process {
        padding: 60px 0;
    }
    .index-process .process-main {
        display: flex;
        justify-content: space-between;
        position: relative;
    }
    .index-process .process-main::after {
        content: '';
        background: #e3e3e3;
        position: absolute;
        bottom: 18px;
        height: 1px;
        width: 94%;
        left: 0;
        margin: auto;
        right: 0;
        z-index: 2;
    }
    .index-process .process-main .item {
        text-align: center;
        z-index: 9;
    }
    .index-process .process-main .item:nth-child(1) {
        animation-delay: 0.1s;
    }
    .index-process .process-main .item:nth-child(2) {
        animation-delay: 0.2s;
    }
    .index-process .process-main .item:nth-child(3) {
        animation-delay: 0.3s;
    }
    .index-process .process-main .item:nth-child(4) {
        animation-delay: 0.4s;
    }
    .index-process .process-main .item:nth-child(5) {
        animation-delay: 0.5s;
    }
    .index-process .process-main .item:nth-child(6) {
        animation-delay: 0.6s;
    }
    .index-process .process-main .item:nth-child(7) {
        animation-delay: 0.7s;
    }
    .index-process .process-main .item:nth-child(8) {
        animation-delay: 0.8s;
    }
    .index-process .process-main .item:nth-child(9) {
        animation-delay: 0.9s;
    }
    .index-process .process-main .item .icon img{
        height: 60px;
    }
    .index-process .process-main .item h5 {
        margin-top: 16px;
        font-size: 16px;
        color: #333;
    }
    .index-process .process-main .item p {
        margin-top: 3px;
        font-size: 13px;
        color: #999;
        width: 90%;
        line-height: 1.4;
    }
    .index-process .process-main .item .step {
        height: 35px;
        width: 35px;
        margin: auto;
        margin-top: 28px;
        position: relative;
        z-index: 9;
        background: #fff;
    }
    .index-process .process-main .item .step span {
        width: 33px;
        height: 33px;
        border-radius: 50%;
        border: 1px solid #d5d5d5;
        font-size: 14px;
        color: #a3a3a3;
        display: block;
        line-height: 33px;
        margin: auto;
    }
    .index-process .process-main .item.selected .step span {
        background: var(--color);
        color: #fff;
        border: var(--color);
    }
    .index-partner {
        padding: 60px 0;
        padding-top: 30px;
    }
    .index-partner .partner-main ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .index-partner .partner-main ul li {
        width: 15%;
        margin: 0px 2% 2.5% 0;
    }
    .index-partner .partner-main ul li:nth-child(6n) {
        margin-right: 0%;
    }
    .index-partner .partner-main ul li img {
        display: block;
        width: 100%;
        border: 1px solid #eee;
    }
    .index-partner .partner-main ul li p {
        text-align: center;
        margin-top: 12px;
        color: #666;
        font-size: 14px;
    }
    .index-news {
        padding: 60px 0;
        background: url(../images/index-news.jpg) no-repeat;
    }
    .index-news .news-main {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .index-news .news-main .item {
        width: 24%;
        padding-bottom: 30px;
        background: #fff;
    }
    .index-news .news-main .item .top-pic {
        position: relative;
    }
    .index-news .news-main .item .top-pic .bt {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        margin: auto;
        color: #fff;
        height: 28px;
        font-size: 24px;
        text-align: center;
    }
    .index-news .news-main .item .bottom-list {}
    .index-news .news-main .item .bottom-list .special {}
    .index-news .news-main .item .bottom-list .special a {
        overflow: hidden;
    }
    .index-news .news-main .item .bottom-list .special a .pic {}
    .index-news .news-main .item .bottom-list .special a .text {
        width: 90%;
        margin: auto;
        margin-top: 20px;
    }
    .index-news .news-main .item .bottom-list .special a .text h5 {
        color: #333;
        font-size: 16px;
        margin-top: 3px;
        font-weight: bold;
    }
    .index-news .news-main .item .bottom-list .special a .text p {
        color: #888;
        font-size: 13px;
        line-height: 20px;
        margin-top: 12px;
    }
    .index-news .news-main .item .bottom-list ul li a {
        color: #666;
        padding: 10px 0;
        display: block;
    }
    .footer {
        background: #1f1f1f;
    }
    .footer .container {
        overflow: hidden;
    }
    .footer .foot-main {
        display: flex;
        justify-content: space-between;
        margin-bottom: 50px;
        margin-top: 65px;
    }
    .footer .foot-main .foot-nav-list {
        width: 900px;
        display: flex;
        justify-content: space-between;
        color: #fff;
    }
    .footer .foot-main .foot-nav-list .item dt.tit {
        font-size: 16px;
        margin-bottom: 30px;
        border-bottom: 1px #ddd solid;
        padding: 0 50px 10px 0;
        position: relative;
        font-weight: bold;
    }
    .footer .foot-main .foot-nav-list .item dt.tit::after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--color);
    }
    .footer .foot-main .foot-nav-list .item dd a {
        display: block;
        color: #b4b7b8;
        margin-bottom: 15px;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }
    .footer .foot-main .foot-nav-list .item dd a:hover {
        color: #fff;
    }
    .footer .foot-main .foot-contact {
        text-align: left;
        color: #fff;
    }
    .footer .foot-main .foot-contact h2.tel {
        margin: 10px 0 20px;
        font-size: 36px;
        color: #ffffff;
    }
    .footer .foot-main .foot-contact .consult {
        display: inline-block;
    }
    .footer .foot-main .foot-contact .consult a {
        background: var(--color) url(../images/icon_consult.png) 17px 13px no-repeat;
        background-size: 20px 20px;
        display: block;
        width: 120px;
        padding-left: 30px;
        height: 42px;
        line-height: 42px;
        text-align: center;
        color: #fff;
    }
    .footer .foot-main .qrcode img {
        display: block;
        width: 120px;
    }
    .footer .foot-main .qrcode p {
        color: #777;
        text-align: center;
        margin-top: 10px;
    }
    .footer .foot-bottom {
        border-top: 1px #313131 solid;
        padding: 25px 0;
        color: #999;
    }
    .footer .foot-bottom .container {
        text-align: center;
    }
    .index-wz {
        width: 100%;
        background: url(../images/wz-bg.png) repeat;
        padding: 60px 0;
    }
    .index-wz .wz-main {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        background: #fff;
        padding: 1.5%;
        overflow: hidden;
    }
    .index-wz .wz-main .pic {
        width: 48%;
    }
    .index-wz .wz-main .text {
        width: 48%;
    }
    .index-wz .wz-main .text h2 {
        font-size: 30px;
        line-height: 40px;
        color: #333;
        font-weight: bold;
        margin-top: 10px;
    }
    .index-wz .wz-main .text p {
        line-height: 26px;
        overflow: auto;
        padding-right: 10px;
        margin-top: 12px;
        font-size: 15px;
        color: #666;
    }
    .index-wz .wz-main .text .mobi-wz {
        display: none;
    }
    .index-wz .wz-main .text p span {
        font-size: 15px;
    }
    .index-wz .wz-main .text .demand ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 20px;
    }
    .index-wz .wz-main .text .demand ul li {
        width: 32%;
        margin-top: 15px;
    }
    .index-wz .wz-main .text .demand ul li select,
    input {
        padding: 8px 12px;
        border: none;
        width: 100%;
        height: 48px;
        background: #f8f8f8;
    }
    .index-wz .wz-main .text .demand ul li .submit {
        background: var(--color);
        color: #fff;
        line-height: normal;
        font-size: 15px;
    }
    .index-wz .wz-main .text .book-pic {
        margin-top: 26px;
    }
    .index-wz .wz-main .text .book-pic h5 {
        font-size: 18px;
        color: #000;
    }
    .index-wz .wz-main .text .book-pic h5 em {
        color: var(--color);
        font-size: 24px;
    }
    .index-wz .wz-main .text .book-pic .book-list {
        height: 60px;
        overflow: hidden;
        margin-top: 20px;
    }
    .index-wz .wz-main .text .book-pic .book-list li {
        color: #666;
        padding: 8px 0px;
        font-size: 14px;
    }
    .index-wz .buttom {
        display: flex;
        margin-top: 25px;
        text-align: center;
        justify-content: space-between;
        max-width: 1550px;
        margin: auto;
        margin-top: 12px;
    }
    .index-wz .buttom .buttom-item {
        margin-top: 24px;
        color: #333;
        font-size: 15px;
    }
    .index-wz .buttom .buttom-item .icon {
        width: 82px;
        height: 82px;
        background: var(--color);
        margin: auto;
        border-radius: 50%;
        text-align: center;
        margin-bottom: 10px;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }
    .index-wz .buttom .buttom-item:hover .icon {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
    .index-wz .buttom .buttom-item .icon img {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
    }
    .fix-footer {
        position: fixed;
        right: 0;
        top: 30%;
        width: 56px;
        z-index: 9;
    }
    .fix-footer a {
        width: 130px;
        height: 56px;
        margin-bottom: 5px;
        background: #d6000f;
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
        overflow: hidden;
        transition: all .4s;
    }
    .fix-footer a img {
        width: 56px;
        height: 56px;
        margin-right: 5px;
    }
    .f-no-s-center {
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-items: center;
    }
    .fix-footer a:hover {
        color: #fff;
        transform: translate(-74px, 0);
    }
    .fix-footer .nli {
        position: relative;
    }
    .fix-footer .nli .cxbox {
        position: absolute;
        width: 140px;
        height: 140px;
        right: 130px;
        bottom: 0;
        /*padding:10px;*/
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all .3s .3s;
    }
    .fix-footer .nli:hover .cxbox {
        opacity: 1;
        visibility: visible;
    }
    .fix-footer .por {
        display: none;
    }
    .fix-footer .por.top {
        display: block;
    }
}

@media screen and (min-width:320px) and (max-width:1199px) {
    .header {
        height: 1.733333rem;
        line-height: 1.733333rem;
        background-color: #fff;
        border-bottom: 1px #eee solid;
        width: 100%;
        top: 0;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        position: fixed;
        z-index: 2000;
        top: 0;
        left: 0;
        width: 100%;
    }
    .head_h{height: 1.733333rem;}
    .header.header-fixed {
        position: fixed;
        z-index: 999;
        height: 1.733333rem;
        line-height: 1.733333rem;
        transition: .4s;
    }
    .header .head-logo {
        max-width: 4.8rem;
    }
    .header .head-logo img{
        display: block;
        height: 1.46rem;
        margin-top: 0.1rem;
        max-width: unset;
    }
    .header.header-fixed .head-logo img {}
    body.scroll-hide {
        width: 100%;
        height: 100%;
        position: absolute;
        overflow: hidden;
    }
    .header .container {
        display: flex;
        justify-content: space-between;
        width: 92%;
        position: relative;
    }
    .header .head-nav {
        position: fixed;
        background-color: #ffffff;
        width: 100%;
        left: 0;
        height: 100%;
        top: 1.733333rem;
        height: 100%;
        transform: translateY(-30px);
        opacity: 0;
        transition: all 0.3s ease 0s;
        visibility: hidden;
        z-index: 9999;
    }
    .header .head-nav.show {
        transform: translateY(0);
        opacity: 1;
        visibility: inherit;
    }
    .header .container .nav-bt {
        width: .6rem;
        height: .5rem;
        overflow: hidden;
        position: absolute;
        right: 0;
        top: .64rem;
    }
    .header .container .nav-bt span {
        display: block;
        height: .0533rem;
        width: 100%;
        background: #666;
        opacity: 0.6;
        margin-bottom: .16rem;
    }
    .header .nav-list .nav-logo {
        padding: 5%;
        border-bottom: .09rem #eee solid;
        position: relative;
        margin-bottom: .266667rem;
    }
    .header .nav-list .nav-logo .close {
        position: absolute;
        right: .08rem;
        top: .2667rem;
        background: url(../images/close.svg) center center no-repeat;
        background-size: .48rem;
        width: 1rem;
        height: 0.95rem;
        z-index: 9;
    }
    .header .container .nav-bt span {
        display: block;
        margin: 0 auto;
        width: 100%;
        height: 0.05866rem;
        position: absolute;
        left: 0;
        top: 0;
        background-color: #000000;
        transition: all 0.3s ease 0s;
    }
    .header .container .nav-bt span.line2 {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }
    .header .container .nav-bt span.line3 {
        bottom: 0;
        top: unset;
    }
    .header .container .nav-bt.close span.line1 {
        transform: rotate(45deg);
        top: 0.2rem;
    }
    .header .container .nav-bt.close span.line2 {
        opacity: 0;
    }
    .header .container .nav-bt.close span.line3 {
        transform: rotate(-45deg);
        top: 0.2rem;
    }
    #mask_shadows {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 3;
    }
    .header .nav-list {
        height: 100%;
        width: 100%;
        float: right;
        background: #fff;
        z-index: 999;
    }
    .header .nav-list .nav-item {
        display: block;
        position: relative;
        border-bottom: 1px solid #eee;
        margin: 0 5%;
        padding-left: .0533rem;
        line-height: 1.28rem;
    }
    .header .nav-list .nav-item {
        display: block;
        position: relative;
    }
    .header .nav-list .nav-item>a {
        display: block;
        color: #333;
        font-size: .4rem;
    }
    .header .nav-list .nav-item .subnav {
        display: none;
        z-index: 99;
        line-height: 1.333333rem;
        background-color: #fff;
        text-align: left;
        border-top: 1px solid #eee;
    }
    .header .nav-list .nav-item.icon-arrow::after {
        content: "";
        position: absolute;
        right: 0px;
        top: .5333rem;
        width: .32rem;
        height: .2133rem;
        background: url(../images/icon_subnav.svg) 0 center no-repeat;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        background-size: 100%;
    }
    .header .nav-list .nav-item.on::after {
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
    }
    .header .nav-list .nav-item .subnav li {
        line-height: 1rem;
        padding-left: .16rem;
    }
    .header .nav-list .nav-item .subnav .subnav-item a {
        position: relative;
        color: #333;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        /* padding: 0 .5333rem; */
        /* padding-bottom: 17px; */
        font-size: .373333rem;
        line-height: .853333rem;
        opacity: 0.75;
    }
    .header .nav-list .nav-item .subnav .subnav-item a:hover {
        color: #121212;
    }
    .header .nav-list .nav-item .subnav .subnav-item:last-child a {
        border-bottom: none;
    }
    .header .nav-list .nav-item:hover .subnav {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
    }
    .index-banner {
        overflow: hidden;
    }
    .index-banner .swiper-slide {
        background: none;
        background-size: cover;
    }
    .index-banner .swiper-button-next::after,
    .index-banner .swiper-button-prev::after {
        display: none;
    }
    .index-banner .swiper-button-prev {
        width: 69px;
        height: 7px;
        left: 120px;
        background: url(../images/icon_arrow.png) center/cover no-repeat;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        opacity: 0;
    }
    .index-banner .swiper-button-next {
        width: 69px;
        height: 7px;
        right: 120px;
        background: url(../images/icon_arrow.png) center/cover no-repeat;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        opacity: 0;
    }
    .index-banner .banner-book {
        display: none;
        width: 92%;
        margin: auto;
        margin-top: 1.066667rem;
    }
    .index-banner .banner-book h4 {
        text-align: center;
        color: #333;
        margin-bottom: .8rem;
        font-size: .533333rem;
        font-weight: bold;
    }
    .index-banner .banner-book h4 span {
        font-size: 20px;
        font-weight: bold;
        display: none;
    }
    .index-banner .banner-book .book-main {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .index-banner .banner-book .book-main select {
        width: 100%;
        height: 1.226667rem;
        border: none;
        padding: 0 .32rem;
        background: #F7F7F7;
        color: #666;
        margin-bottom: .32rem;
    }
    .index-banner .banner-book .book-main input {
        width: 100%;
        height: 1.226667rem;
        border: none;
        background: #ffffff;
        padding: 0 .32rem;
        background: #F7F7F7;
        margin-bottom: .32rem;
    }
    .index-banner .banner-book .book-main input.tel {
        width: 100%;
    }
    .index-banner .banner-book .book-main input.bt {
        background: var(--color);
        color: #fff;
        font-size: .4rem;
        border-radius: 50px;
    }
    .index-banner:hover .swiper-button-next {
        opacity: 1;
        right: 70px;
    }
    .index-banner:hover .swiper-button-prev {
        opacity: 1;
        left: 70px;
    }
    .index-advantage {
        overflow: hidden;
        padding: 1.066667rem 0;
    }
    .index-advantage .advantage-main {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .index-advantage .advantage-main .item {
        width: 49%;
        text-align: center;
        padding: 3% 2%;
        overflow: hidden;
        cursor: pointer;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        margin-bottom: .4rem
    }
    .index-advantage .advantage-main .item .icon {
        width: 1.653333rem;
        height: 1.653333rem;
        margin: auto;
    }
    .index-advantage .advantage-main .item .icon img {
        display: block;
        position: relative;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
        top: 0;
        overflow: hidden;
    }
    .index-advantage .advantage-main .item .icon .on {
        opacity: 0;
        bottom: -80px;
        display: none;
    }
    .index-advantage .advantage-main .item h4 {
        font-size: .42rem;
        color: #333333;
        font-weight: bold;
        margin-top: .4rem;
    }
    .index-advantage .advantage-main .item p {
        font-size: .346667rem;
        color: #666;
        margin-top: .266667rem;
        line-height: .586667rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    .index-service {
        padding: 1.066667rem 0;
        position: relative;
        padding-bottom: 0;
    }
    .index-service::after {
        /* content: ''; */
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 280px;
        z-index: 2;
        background: var(--color);
    }
    .index-service .service-main {
        overflow: hidden;
        position: relative;
        z-index: 9;
        display: flex;
        justify-content: space-between;
    }
    .index-service .service-main .item {
        width: 48%;
        margin-bottom: .2rem;
    }
    .index-service .service-main .item:last-child {
        margin-bottom: 0;
    }
    .index-service .service-main .service_case {
        overflow: hidden;
        position: relative;
        z-index: 99;
        width: 1.92rem;
        height: 1.92rem;
        border: 2px solid var(--color);
        border-radius: 50%;
        text-align: center;
        margin: auto;
    }
    .index-service .service-main{flex-wrap: wrap;}
    .index-service .service-main .service_case img.pc{display: none;}
    .index-service .service-main .service_case img {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        display: block;
        height: 50%;
    }
    .index-service .service-main .pc {
        display: none;
    }
    .index-service .service-main .item .text {
        text-align: center;
        margin: auto;
        position: relative;
        z-index: 9999;
        margin-top: .586667rem;
    }
    .index-service .service-main .item .text h4 {
        position: relative;
    }
    .index-service .service-main .item .text h4::after {
        /* content: ''; */
        position: absolute;
        height: .053333rem;
        width: 1.28rem;
        background: var(--color);
        bottom: -0.32rem;
        left: 0;
        right: 0;
        margin: auto;
    }
    .index-service .service-main .item .text h4 a {
        color: #333;
        font-size: .48rem;
        font-weight: bold;
    }
    .index-service .service-main .item .text p {
        margin-top: .32rem;
        line-height: .586667rem;
        color: #686868;
    }
    .index-service .service-main .item .text .more {
        display: none;
        margin-top: 35px;
    }
    .index-service .service-main .item .text .more a {
        display: block;
        width: 150px;
        height: 48px;
        background: #919191;
        text-align: center;
        line-height: 48px;
        color: #fff;
        font-size: 15px;
        border-radius: 5px;
    }
    .index-service .service-main .item .text .more a:last-child {
        margin-left: 13px;
        background: var(--color);
    }
    .index-service .pagination {
        margin: auto;
        width: 120px;
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
    }
    .index-service .pagination div {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: #eeeeee;
        line-height: 55px;
        text-align: center;
        top: 0;
        border: none;
        outline: none;
        cursor: pointer;
    }
    .index-service .pagination .prev-service {
        left: 0;
    }
    .service-wrapper {
        display: flex;
    }
    .service-slide {
        flex-shrink: 0;
        width: 100%;
        height: 100%;
        position: relative;
        transition-property: transform;
    }
    .index-about {
        padding: 1.066667rem 0;
    }
    .index-about .container {
        overflow: hidden;
        width: 100%;
    }
    .index-about .about-main h4 {
        font-size: .586667rem;
        color: #ffffff;
        font-weight: bold;
        text-align: center;
        background: var(--color);
        padding-top: .8rem;
        padding-top: 1.066667rem;
    }
    .index-about .about-main .data {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: .6rem 0;
        margin: auto;
    }
    .index-about .about-main .data .item {
        width: 32%;
        text-align: center;
        margin-bottom: .48rem
    }
    .index-about .about-main .data .item .icon {
        display: none;
    }
    .index-about .about-main .data .item .num {
        color: var(--color);
        font-size: .96rem;
    }
    .index-about .about-main .data .item .note {
        line-height: .586667rem;
        color: rgba(102, 102, 102, .8);
    }
    .index-about .about-main .data .item .note br {
        display: none;
    }
    .index-about .about-main .cont {
        margin: auto;
        text-align: center;
        background: var(--color);
        padding: 1.066667rem 24px;
        padding-top: .586667rem;
    }
    .index-about .about-main .cont p {
        color: #fff;
        line-height: .693333rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
    }
    .index-about .about-main .cont .more {
        width: 3.68rem;
        display: block;
        height: 1.066667rem;
        background: #fff;
        line-height: 1.066667rem;
        color: var(--color);
        border-radius: 50px;
        margin: auto;
        margin-top: .426667rem;
    }
    .index-about .honor-list {
        width: 92%;
        margin: auto;
        overflow: hidden;
    }
    .index-about .honor-list ul {
        display: flex;
        justify-content: space-between;
    }
    .index-about .honor-list ul li {
        width: 15%;
    }
    .index-about .honor-list ul li p {
        text-align: center;
        padding: .32rem 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .index-partner .partner-main ul li{
        width: 49% !important;
        margin: 0 0 .2rem 0 !important;
    }
    .index-partner{padding: 0 !important;}
    .index-case {
        padding: 1.066667rem 0;
        background: url(../images/index-news.jpg) no-repeat;
    }
    .index-case .case-main {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        overflow: hidden;
    }
    .index-case .pagination-cases {
        text-align: center;
        margin-top: .32rem;
    }
    .index-case .pagination-cases span.swiper-pagination-bullet-active {
        background: var(--color);
    }
    .index-case .case-main .item {
        width: 24%;
        position: relative;
        margin-bottom: .266667rem;
        background: #fff;
        padding: .266667rem;
        text-align: center;
        padding-bottom: .586667rem;
    }
    .index-case .case-main .item img {}
    .index-case .case-main .item h4 {
        font-size: .426667rem;
        color: #333;
        font-weight: bold;
        margin-top: .48rem;
    }
    .index-case .case-main .item p {
        color: #888;
        margin: .4rem 0px;
        line-height: .586667rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    .index-case .case-main .item ul {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
    }
    .index-case .case-main .item ul li {
        padding: 2px 8px;
        font-size: 13px;
        line-height: 30px;
        background-color: #f8f8f8;
        text-align: center;
        color: #666;
        margin-bottom: 12px;
        margin-right: 12px;
        border-radius: 1px;
    }
    .case-swiper .item{width: 100% !important;}
    .index-process {
        padding: 1.066667rem 0;
    }
    .index-process .process-main {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
    }
    .index-process .process-main .item {
        width: 31%;
        text-align: center;
        z-index: 9;
        margin-bottom: .666667rem;
    }
    .index-process .process-main .item .icon img{
        height: 1.5rem;
    }
    .index-process .process-main .item:nth-child(1) {
        animation-delay: 0.1s;
    }
    .index-process .process-main .item:nth-child(2) {
        animation-delay: 0.2s;
    }
    .index-process .process-main .item:nth-child(3) {
        animation-delay: 0.3s;
    }
    .index-process .process-main .item:nth-child(4) {
        animation-delay: 0.4s;
        margin-bottom: 0;
    }
    .index-process .process-main .item:nth-child(5) {
        animation-delay: 0.5s;
        margin-bottom: 0;

    }
    .index-process .process-main .item:nth-child(6) {
        animation-delay: 0.6s;
        margin-bottom: 0;

    }
    .index-process .process-main .item:nth-child(7) {
        animation-delay: 0.7s;
    }
    .index-process .process-main .item:nth-child(8) {
        animation-delay: 0.8s;
    }
    .index-process .process-main .item:nth-child(9) {
        animation-delay: 0.9s;
    }
    /* .index-process .process-main .item:last-child {
        display: none;
    } */
    .index-process .process-main .item h5 {
        margin-top: .4rem;
        font-size: .4rem;
        color: #333;
        font-weight: bold;
    }
    .index-process .process-main .item p {
        margin-top: .16rem;
        font-size: .32rem;
        color: #666;
        line-height: .533333rem;
    }
    .index-process .process-main .item .step {
        display: none;
        height: 35px;
        width: 35px;
        margin: auto;
        margin-top: 28px;
        position: relative;
        z-index: 9;
        background: #fff;
    }
    .index-process .process-main .item .step span {
        width: 33px;
        height: 33px;
        border-radius: 50%;
        border: 1px solid #d5d5d5;
        font-size: 14px;
        color: #a3a3a3;
        display: block;
        line-height: 33px;
        margin: auto;
    }
    .index-process .process-main .item.selected .step span {
        background: var(--color);
        color: #fff;
        border: var(--color);
    }
    .index-evaluate .container .eva-list {
        margin-top: 0 !important;
        padding-bottom: .8rem !important;
        flex-wrap: wrap;
    }
    .index-evaluate .container .eva-item {
        width: 100% !important;
        height: auto !important;
        background: #f3f6ff;
        padding: .4rem !important;
        position: relative;
    }
   
    .index-evaluate .container .eva-item .eva_yh {
        left: .5rem !important;
        top: .5rem !important;
    }
    .index-evaluate .container .eva-item .eva_yhs {
        bottom: .5rem !important;
        right: .5rem !important;
    }
    .index-evaluate .container .eva-item .eva-cont .eva-title {
        font-size: 16px;
        margin-top: .2rem !important;
    }
    .index-evaluate .container .eva-item .eva-cont .top-avatar {
        margin: .3rem 0 !important;
    }
    .index-evaluate .container .eva-item .eva-cont .top-avatar .avatar {
        margin-right: 5px;
    }
    .index-evaluate .container .eva-item .eva-cont .top-avatar .user-name h4 {
        font-size: 16px;
        color: #000;
    }
    .index-evaluate .container .eva-item .eva-cont p {
        font-size: 0.9em;
        line-height: 1.65 !important;
        color: #666;
        margin-bottom: .4rem !important;
    }
    
    .index-partner {
        padding: 1.066667rem 0;
        padding-top: 0;
    }
    .index-partner .partner-main ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .index-partner .partner-main ul li {
        width: 31.5%;
        margin: 0px 2% 2.5% 0;
    }
    .index-partner .partner-main ul li:nth-child(3n) {
        margin-right: 0%;
    }
    .index-partner .partner-main ul li img {
        display: block;
        width: 100%;
        border: 1px solid #eee;
    }
    .index-partner .partner-main ul li p {
        text-align: center;
        margin-top: .266667rem;
        color: #666;
    }
    .index-news {
        padding: 60px 0;
        background: url(../images/index-news.jpg) no-repeat;
    }
    .index-news .news-main {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .index-news .news-main .item {
        width: 24%;
        padding-bottom: 30px;
        background: #fff;
    }
    .index-news .news-main .item .top-pic {
        position: relative;
    }
    .index-news .news-main .item .top-pic .bt {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        margin: auto;
        color: #fff;
        height: 28px;
        font-size: 24px;
        text-align: center;
    }
    .index-news .news-main .item .bottom-list {}
    .index-news .news-main .item .bottom-list .special {}
    .index-news .news-main .item .bottom-list .special a {
        overflow: hidden;
    }
    .index-news .news-main .item .bottom-list .special a .pic {}
    .index-news .news-main .item .bottom-list .special a .text {
        width: 90%;
        margin: auto;
        margin-top: 20px;
    }
    .index-news .news-main .item .bottom-list .special a .text h5 {
        color: #333;
        font-size: 16px;
        margin-top: 3px;
        font-weight: bold;
    }
    .index-news .news-main .item .bottom-list .special a .text p {
        color: #888;
        font-size: 13px;
        line-height: 20px;
        margin-top: 12px;
    }
    .index-news .news-main .item .bottom-list ul li a {
        color: #666;
        padding: 10px 0;
        display: block;
    }
    .footer {
        background: #1f1f1f;
    }
    .footer .container {
        overflow: hidden;
    }
    .footer .foot-main {
        margin-bottom: 1.066667rem;
        margin-top: 1.2rem;
    }
    .footer .foot-main .foot-nav-list {
        display: none;
        justify-content: space-between;
        color: #fff;
    }
    .footer .foot-main .foot-nav-list .item dt.tit {
        font-size: 16px;
        margin-bottom: 30px;
        border-bottom: 1px #ddd solid;
        padding: 0 50px 10px 0;
        position: relative;
        font-weight: bold;
    }
    .footer .foot-main .foot-nav-list .item dt.tit::after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--color);
    }
    .footer .foot-main .foot-nav-list .item dd a {
        display: block;
        color: #b4b7b8;
        margin-bottom: 15px;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }
    .footer .foot-main .foot-nav-list .item dd a:hover {
        color: #fff;
    }
    .footer .foot-main .foot-contact {
        text-align: center;
        color: #fff;
    }
    .footer .foot-main .foot-contact h2.tel {
        margin: .266667rem 0 .426667rem;
        font-size: .853333rem;
        color: #ffffff;
    }
    .footer .foot-main .foot-contact .consult {
        display: inline-block;
    }
    .footer .foot-main .foot-contact .consult a {
        background: var(--color) url(../images/icon_consult.png) .453333rem .293333rem no-repeat;
        background-size: .533333rem .533333rem;
        display: block;
        width: 3.2rem;
        padding-left: .8rem;
        height: 1.066667rem;
        line-height: 1.066667rem;
        text-align: center;
        color: #fff;
    }
    .footer .foot-main .qrcode img {
        display: block;
        width: 120px;
    }
    .footer .foot-main .qrcode p {
        color: #777;
        text-align: center;
        margin-top: 10px;
    }
    .footer .foot-bottom {
        border-top: 1px #313131 solid;
        padding: .533333rem 0;
        color: #999;
        line-height: .586667rem;
    }
    .footer .foot-bottom .container {
        text-align: center;
    }
    .index-wz {
        width: 100%;
        background: url(../images/wz-bg.png) repeat;
        padding: 1.066667rem 0;
    }
    .index-wz .wz-main {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        background: #fff;
        padding: 3%;
        overflow: hidden;
        padding-bottom: .853333rem;
    }
    .index-wz .wz-main .pic {
        width: 100%;
    }
    .index-wz .wz-main .text {
        width: 100%;
    }
    .index-wz .wz-main .text h2 {
        font-size: .48rem;
        line-height: .586667rem;
        color: #333;
        font-weight: bold;
        margin-top: .533333rem;
    }
    .index-wz .wz-main .text p {
        line-height: .586667rem;
        overflow: auto;
        margin-top: .32rem;
        font-size: .346667rem;
        color: #666;
    }
    .index-wz .wz-main .text p span {
        font-size: .346667rem;
    }
    .index-wz .wz-main .text .demand ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 20px;
    }
    .index-wz .wz-main .text .demand ul li {
        width: 100%;
        margin-top: .32rem;
    }
    .index-wz .wz-main .text .demand ul li select,
    input {
        padding: .213333rem .32rem;
        border: none;
        width: 100%;
        height: 1.226667rem;
        background: #f8f8f8;
    }
    .index-wz .wz-main .text .demand ul li .submit {
        background: var(--color);
        color: #fff;
        line-height: normal;
        font-size: .4rem;
        margin: .32rem 0px;
        border-radius: 50px;
    }
    .index-wz .wz-main .text .book-pic {
        margin-top: 26px;
    }
    .index-wz .wz-main .text .book-pic h5 {
        font-size: 18px;
        color: #000;
        display: none;
    }
    .index-wz .wz-main .text .book-pic h5 em {
        color: var(--color);
        font-size: 24px;
    }
    .index-wz .wz-main .text .book-pic .book-list {
        height: 2.133333rem;
        overflow: hidden;
        margin-top: .533333rem;
    }
    .index-wz .wz-main .text .book-pic .book-list li {
        color: #666;
        padding: .213333rem 0px;
    }
    .index-wz .buttom {
        display: none;
        margin-top: 25px;
        text-align: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: auto;
        margin-top: 12px;
    }
    .index-wz .wz-main .text .mobi-wz {
        display: block;
    }
    .index-wz .wz-main .text .mobi-wz .buttom {
        display: flex;
    }
    .index-wz .buttom .buttom-item {
        margin-top: .64rem;
        color: #333;
        width: 25%;
    }
    /* .index-wz .buttom .buttom-item:nth-child(9) {
        display: none;
    }
    .index-wz .buttom .buttom-item:nth-child(10) {
        display: none;
    }
    .index-wz .buttom .buttom-item:nth-child(11) {
        display: none;
    } */
    .index-wz .buttom .buttom-item .icon {
        width: 1.6rem;
        height: 1.6rem;
        background: var(--color);
        margin: auto;
        border-radius: 50%;
        text-align: center;
        margin-bottom: .266667rem;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }
    .index-wz .buttom .buttom-item:hover .icon {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
    .index-wz .buttom .buttom-item .icon img {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        width: .853333rem;
    }
    .fix-footer {
        display: none;
    }
}

@media only screen and (max-width: 1320px) and (min-width:1199px) {
    .header .container {
        width: 95%;
    }
    .header .nav-list .nav-item {
        margin-left: 16px;
    }
    .header .head-nav .tel {
        margin-left: 38px;
    }
    .header .head-nav .tel .tel-main {
        font-size: 22px;
    }
    .index-advantage .advantage-main .item h4 {
        font-size: 19px;
    }
    .index-advantage .advantage-main .item p {
        font-size: 14px;
    }
    .index-about .about-main .cont p {
        font-size: 15px;
    }
    .index-about .about-main .data .item .num {
        font-size: 48px;
    }
    .index-about .about-main .data .item .note {
        font-size: 15px;
    }
    .index-wz .wz-main .text p {
        line-height: 24px;
        font-size: 14px;
    }
    .index-wz .wz-main .text p span {
        display: none;
    }
    .index-wz .buttom .buttom-item:nth-child(10) {
        display: none;
    }
    .index-wz .buttom .buttom-item:nth-child(11) {
        display: none;
    }
    .footer .foot-main .foot-nav-list {
        width: 820px;
    }
    .index-wz .wz-main .text .demand ul li {
        width: 48.5%;
        margin-top: 15px;
    }
    .index-wz .wz-main .text {
        width: 46%;
    }
    .index-wz .wz-main .pic {
        width: 52%;
    }
    .index-wz .wz-main .text h2 {
        font-size: 26px;
        margin-top: 0px;
    }
    .index-wz .wz-main .text .book-pic h5 em {
        font-size: 23px;
    }
    .index-wz .wz-main .text .book-pic h5 {
        font-size: 16px;
    }
    .index-wz .buttom .buttom-item .icon {
        width: 72px;
        height: 72px;
    }
    .index-wz .buttom .buttom-item .icon img {
        width: 38px;
    }
    .index-wz .wz-main .text .book-pic .book-list {
        height: 45px;
        margin-top: 15px;
    }
    .index-wz .wz-main .text .book-pic .book-list li {
        padding: 6px 0px;
    }
    .index-wz .wz-main .text .demand ul {
        margin-top: 10px;
    }
    .index-wz .wz-main .text .book-pic {
        margin-top: 22px;
    }
    .index-service .service-main {
        justify-content: space-between;
    }
}

@media only screen and (max-width: 1400px) and (min-width:1321px) {
    .header .nav-list .nav-item {
        margin-left: 25px;
    }
    .header .head-nav .tel {
        margin-left: 38px;
    }
    .index-wz .wz-main .text {
        width: 46%;
    }
    .index-wz .wz-main .pic {
        width: 52%;
    }
    .index-wz .wz-main .text p span {
        display: none;
    }
    .index-wz .wz-main .text h2 {
        font-size: 28px;
    }
    .index-wz .wz-main .text .demand ul {
        margin-top: 8px;
    }
    .index-service .service-main {
        justify-content: space-between;
    }
}
.master_list{
    display: grid !important;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}
.master_list .item{
    width: 100% !important;
    margin-top: 0 !important;
}
.master_list .service_case{
    /* height: 250px; */
}
.master_list .text{
    padding: 15px !important;
}
.master_list .text p{
    line-height: 20px !important;
    margin-top: 20px !important ;
}

.index-evaluate .container .eva-list {
    display: flex;
    margin-top: 60px;
    border-radius: 8px;
    overflow: hidden;
}
.index-evaluate .container .eva-item {
    width: 20%;
    height: 400px;
    background: #f3f6ff;
    padding: 26px;
    position: relative;
}
.index-evaluate .container .eva-item:nth-child(2n) {
    background: #fff;
}
.index-evaluate .container .eva-item .eva_yh {
    position: absolute;
    left: 30px;
    top: 30px;
}
.index-evaluate .container .eva-item .eva_yhs {
    position: absolute;
    bottom: 30px;
    right: 30px;
}
.index-evaluate .container .eva-item .eva-cont .eva-title {
    font-size: 16px;
    text-align: center;
    margin-top: 36px;
    color: #000;
}
.index-evaluate .container .eva-item .eva-cont .top-avatar {
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.index-evaluate .container .eva-item .eva-cont .top-avatar .avatar {
    margin-right: 5px;
}
.index-evaluate .container .eva-item .eva-cont .top-avatar .user-name h4 {
    font-size: 16px;
    color: #000;
}
.index-evaluate .container .eva-item .eva-cont p {
    font-size: 0.9em;
    line-height: 22px;
    color: #666;
}

.index-news .item {
    border: 1px solid #ddd;
    margin-bottom: 16px;
    transition: all 0.2s linear 0s;
    margin-bottom: 18px;
    width: 49%;
}

.index-news .item a {
    padding: 28px;
}

.index-news .item h3 {
    font-size: 18px;
    vertical-align: top;
    margin-bottom: 4px;
}
.index-news .item:hover h3{
    color: var(--color) !important;
}

.index-news .item p {
    font-size: 14px;
    line-height: 20px;
    height: 40px;
    color: #666;
}

.index-news .item .time {
    display: block;
    width: 90px;
    height: 66px;
    border-right: 1px solid #ddd;
    line-height: 20px;
    margin-right: 30px;
    padding-right: 30px;
    color: #666;
    vertical-align: middle;
    zoom: 1;
}

.index-news .item .time b {
    color: var(--color);
    display: block;
    font-size: 48px;
    line-height: 48px;
}

.index-news .item:hover {
    border: 1px solid var(--color);
    -webkit-box-shadow: 0 15px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
}


.jg_img{
    display: block;
    max-width: 100%;
    margin: auto;
}   

.page-about .about-jg{
    padding-top: 60px;
}
.about-main::after{
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        background: url(../images/line_bg.png) no-repeat center / cover;
        background-attachment: fixed;
        opacity: .1;
}
.page-advantage .about-main{
    padding: 0 !important;
    background-color: #fff !important;
}
.page-advantage .about-main::after{
    position: static !important;
    display: none;
}
.page-advantage .ad-1 .img{
    width: 40%;
    margin-right: 4%;
}
.page-advantage .module_ul{
    padding-left: 45% !important;
}
.page-advantage .module_ul .item{
    position: relative;
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
    margin: 1% 0;
    height: 18%;
}
.page-advantage .module_ul .item::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color);
    opacity: .2;
}

.page-advantage .module_ul .item .flex{
    width: 100%;
}

.page-advantage .module_ul .item{
    justify-content: space-between !important;
}

.page-advantage .module_ul .item .sketch {
    font-size: 14px;
    line-height: 1.6;
    opacity: .7;
    padding-left: 4%;
}
.page-advantage .about-main .data{
    padding: 0;
}.page-advantage .index-about{
    /* padding-bottom: 0; */
}
.ad-2{
    background-color: #f5f5f5;
    padding: 60px 0;
}
.index-manship {
    background: #f8f8f8;
    padding: 80px 0;
    margin-top: 80px;
}
.ad-2 .manship-list {
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    margin-top: 60px;
}
.ad-2 .manship-list .item {
    width: 23%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #fff;
    padding: 3% 2%;
    text-align: center;
    border-radius: 10px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}
.ad-2 .manship-list .item.selected {
    background: #006cbd;
}
.ad-2 .manship-list .item.selected .text h5 {
    color: #fff;
}
.ad-2 .manship-list .item.selected .text p {
    color: #fff;
}
.ad-2 .manship-list .item.selected .text .number {
    background: #fff;
    color: #006cbd;
}
.ad-2 .manship-list .item .text .number {
    width: 80px;
    height: 80px;
    background: #006cbd;
    font-size: 22px;
    line-height: 80px;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    margin: auto;
    margin-bottom: 30px;
}
.ad-2 .manship-list .item .text h5 {
    margin-bottom: 12px;
    font-size: 18px;
}
.ad-2 .manship-list .item .text p {
    color: #777;
    line-height: 22px;
}
.foot-nav dd{width: 32%;}
.foot-nav .item{margin-right: 20px;}
.app{display: none;}
.fixedBot{display: none;}
@media screen and (max-width:767px) {
    .foot_h{height: 56px;}
    .fixedBot {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: #fff;
        height: 56px;
        width: 100%;
        z-index: 99;
        border-top: 1px solid #e1e1e1;
        display: block;
      }
      
      .fixed-link {
        float: left;
        width: 25%;
      }
      
      .fixed-link img{
        display: block;
        margin: auto;
        height: 26px;
        margin-top: 5px;
      }
      
      .fixed-title {
        text-align: center;
        font-size: 14px;
        color: #5a5a5a;
        line-height: 20px;
      }
      
      .fixed-link:hover .fa,
      .fixed-link:hover .fixed-title {
        color: var(--main-color);
      }
    .app{display: block;}
    .index-news .item {
        margin-bottom: 16px;
        width: 100%;
    }
    .index-news .item a {
        padding: .4rem;
    }
    
    .index-news .item h3 {
        font-size: .42rem;
        vertical-align: top;
        margin-bottom: 4px;
    }
    .index-news .item:hover h3{
        color: var(--color) !important;
    }
    
    .index-news .item p {
        font-size: 14px;
        line-height: 20px;
        height: 40px;
        color: #666;
    }
    
    .index-news .item .time {
        display: block;
        width: 90px;
        height: auto;
        border-right: 1px solid #ddd;
        line-height: 20px;
        margin-right: .4rem;
        padding-right: .4rem;
        color: #666;
        vertical-align: middle;
        zoom: 1;
    }
    
    .index-news .item .time b {
        color: var(--color);
        display: block;
        font-size: 1.2rem;
        line-height: 48px;
    }
    .page-about .about-jg {
        padding-top: .8rem;
    }
    .master_list {
        display: grid !important;
        grid-template-columns: repeat(2,1fr);
        gap: .3rem;
    }
    .master_list  img.pc {
        display: block !important;
        position: static !important;
        display: block;
        transform: unset !important;

    }
    .master_list .service_case {
        width: 100% !important;
        height: auto !important;
        border-radius: 10px !important;
    }
    .master_list .item .text {
        margin-top: 0.2rem !important;
        padding: 0 !important;
    }
    .master_list .item .text h4 {
        font-size: .38rem;
        font-weight: bold;
    }
    .master_list .item .text p.mobi {
        margin-top: 0.1rem !important;
        line-height: .586667rem;
        color: #686868;
        display: block !important;
    }
    .master_list .item  {
        margin-bottom: 0rem !important;
    }
    .page-advantage .ad-1{background: none !important;}
    .page-advantage .module_ul {
        padding-left: 0% !important;
    }
    .page-advantage .ad-1 .data .item {
        width: 100%;
        text-align: center;
        margin-bottom: 0.3rem;
    }
    .page-advantage .ad-1 .img {
        width: 100%;
        margin-right: 0%;
    }
    .page-advantage .ad-1 .app img{width: 100%;display: block;}
    .ad-2 .manship-list .item {
        width: 100%;
        padding: 5%;
        margin-bottom: .4rem;
    }
}