/* banner */
.banner {
    width: 100%;
    margin-top: 90px;
}

.banner>a {
    width: 100%;
    display: block;
    overflow: hidden;
}

.banner>a>img {
    overflow: hidden;
    width: 100%;
}

@media (max-width: 1200px) {
    .banner {
        margin-top: 60px;
    }
}

@media (max-width: 760px) {
    .banner>a>img {
        width: 200%;
        margin-left: -15%;
    }
}

/* 二级导航 */
.navigation {
    width: 100%;
    background-color: #f5f7fa;
    border-bottom: 1px solid #e8e8e8;
}

.navigation .content {
    width: 71.875%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.navigation .content .boxlist {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation .content .boxlist ul {
    display: flex;
    flex-wrap: wrap;
}

.navigation .content .boxlist ul li {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    position: relative;
    margin: 0 30px;
}

.navigation .content .boxlist ul li::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 30px;
    height: 2px;
    background-color: transparent;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.navigation .content .boxlist ul li.active::after {
    background-color: #0060ab;
}

.navigation .content .boxlist ul li:hover::after {
    background-color: #0060ab;
}

.navigation .content .boxlist ul li a {
    width: 100%;
    height: 100%;
    display: block;
    font-size: 14px;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation .content .boxlist ul .active a {
    color: #0060ab;
}

.navigation .content .boxlist ul li:hover a {
    color: #0060ab;
}

.navigation .content .boxlist .crumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.navigation .content .boxlist .crumbs .img {
    width: auto;
}

.navigation .content .boxlist .crumbs .img a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation .content .boxlist .crumbs .img a img {
    width: 14px;
    height: 14px;
    margin-right: 5px;
}

.navigation .content .boxlist .crumbs .img a {
    font-size: 12px;
    color: #999999;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.navigation .content .boxlist .crumbs .img a:hover {
    color: #333333;
}

.navigation .content .boxlist .crumbs p {
    margin-right: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation .content .boxlist .crumbs p::after {
    content: "-";
    font-size: 12px;
    color: #999999;
    margin-left: 5px;
}

.navigation .content .boxlist .crumbs p:last-child {
    margin-right: 0;
}

.navigation .content .boxlist .crumbs p:last-child::after {
    display: none;
}

.navigation .content .boxlist .crumbs p {
    font-size: 12px;
    color: #999999;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.navigation .content .boxlist .crumbs p a {
    color: #999999;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.navigation .content .boxlist .crumbs p.active a {
    color: #333333;
}

.navigation .content .boxlist .crumbs p:hover a {
    color: #333333;
}

@media (max-width:1400px) {
    .navigation .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .navigation .content .boxlist .crumbs {
        display: none;
    }

    .navigation .content {
        width: 95%;
    }

    .navigation .content .boxlist ul {
        width: 100%;
    }

    .navigation .content .boxlist ul li a {
        font-size: 14px;
    }

    .navigation .content .boxlist ul li {
        height: 50px;
        margin: 0 20px;
    }
}

@media (max-width:550px) {
    .navigation .content .boxlist ul li a {
        font-size: 12px;
    }

    .navigation .content .boxlist ul li {
        height: 40px;
        margin: 0 10px;
    }

    .navigation .content .boxlist ul li::after {
        width: 15px;
        height: 1px;
    }
}

/* 产品导航 */
.navigation.product_nav {
    position: relative;
}

.navigation.product_nav .content .boxlist {
    justify-content: right;
}

.navigation.product_nav .content .boxlist ul {
    position: absolute;
    top: 300%;
    right: 76%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: transparent;
    z-index: 100;
}

.navigation.product_nav .content .boxlist ul li {
    width: 220px;
    height: 56px;
    background-color: #f6f9ff;
    margin: 0;
    margin-bottom: 20px;
    border-radius: 28px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    -ms-border-radius: 28px;
    -o-border-radius: 28px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.navigation.product_nav .content .boxlist ul li::after {
    display: none;
}

.navigation.product_nav .content .boxlist ul li a {
    color: #666666;
    font-size: 16px;
}

.navigation.product_nav .content .boxlist ul li:hover {
    background-color: #0060ab;
}

.navigation.product_nav .content .boxlist ul li:hover a {
    color: #ffffff;
}

.navigation.product_nav .content .boxlist ul li.active {
    background-color: #0060ab;
}

.navigation.product_nav .content .boxlist ul li.active a {
    color: #ffffff;
}

@media (max-width: 1400px) {
    .navigation.product_nav .content .boxlist ul {
        right: 82%;
    }

    .navigation.product_nav .content .boxlist ul li {
        width: 180px;
        height: 46px;
    }
}

@media (max-width: 1200px) {
    .navigation.product_nav .content .boxlist ul {
        flex-direction: inherit;
        position: inherit;
        z-index: 1;
    }

    .navigation.product_nav .content .boxlist ul li a {
        font-size: 14px;
    }

    .navigation.product_nav .content .boxlist ul li {
        width: auto;
        height: 50px;
        margin: 0 20px;
    }

    .navigation.product_nav .content .boxlist ul li {
        background-color: transparent;
    }

    .navigation.product_nav .content .boxlist ul li.active {
        background-color: transparent;
    }

    .navigation.product_nav .content .boxlist ul li.active a {
        color: #0060ab;
    }

    .navigation.product_nav .content .boxlist ul li::after {
        display: block;
    }

    .navigation.product_nav .content .boxlist ul li:hover {
        background-color: transparent;
    }

    .navigation.product_nav .content .boxlist ul li:hover a {
        color: #0060ab;
    }
}

@media (max-width: 550px) {
    .navigation.product_nav .content .boxlist ul li {
        height: 40px;
        margin: 0 10px;
    }

    .navigation.product_nav .content .boxlist ul li a {
        font-size: 12px;
    }
}

/* 案例分享 */
.case_sharing {
    width: 100%;
    padding: 80px 0 140px;
    background-color: #ffffff;
}

.case_sharing .content {
    width: 71.875%;
    margin: 0 auto;
}

.case_sharing .content .boxlist {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.case_sharing .content .boxlist .list {
    width: 31.8%;
    margin-right: 2.3%;
    margin-bottom: 3%;
    padding: 2%;
    background-color: #f6f6f6;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.case_sharing .content .boxlist .list:nth-child(3n) {
    margin-right: 0;
}

.case_sharing .content .boxlist .list .list_img {
    width: 100%;
}

.case_sharing .content .boxlist .list .list_img .img {
    width: 100%;
    position: relative;
    padding-bottom: 73.6%;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.case_sharing .content .boxlist .list .list_img .img .img_1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.case_sharing .content .boxlist .list .list_img .img .img_1 img {
    width: 100%;
}

.case_sharing .content .boxlist .list .list_img .img .play {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .4);
}

.case_sharing .content .boxlist .list .list_img .img .play img {
    width: 56px;
    height: 56px;
}

.case_sharing .content .boxlist .list .list_txt {
    padding: 30px 10px;
    text-align: center;
}

.case_sharing .content .boxlist .list .list_txt h1 {
    font-size: 18px;
    color: #666666;
    font-weight: 500;
    line-height: 30px;
}

.case_sharing .content .boxlist .list:hover .list_txt h1 {
    color: #0060ab;
}

.case_sharing .content .boxlist .list:hover {
    background-color: #ffffff;
    box-shadow: 4px 4px 39px rgba(9, 9, 9, .13);
}

@media (max-width: 1400px) {
    .case_sharing .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .case_sharing .content {
        width: 95%;
    }

    .case_sharing .content .boxlist .list .list_img .img .play img {
        width: 46px;
        height: 46px;
    }

    .case_sharing .content .boxlist .list .list_txt h1 {
        font-size: 15px;
    }

    .case_sharing .content .boxlist .list .list_txt {
        padding: 20px 10px;
    }

    .case_sharing {
        padding: 60px 0 100px;
    }
}

@media (max-width: 760px) {
    .case_sharing .content .boxlist {
        justify-content: space-between;
    }

    .case_sharing .content .boxlist .list {
        width: 48%;
        margin-right: 0;
        margin-bottom: 4%;
    }
}

@media (max-width: 550px) {
    .case_sharing {
        padding: 40px 0 70px;
    }

    .case_sharing .content .boxlist .list .list_img .img .play img {
        width: 36px;
        height: 36px;
    }

    .case_sharing .content .boxlist .list .list_txt {
        padding: 10px 5px;
    }

    .case_sharing .content .boxlist .list .list_txt h1 {
        font-size: 12px;
        line-height: 24px;
    }
}

/* 核心产品 */
.product {
    width: 100%;
    padding: 80px 0 180px;
    background-color: #ffffff;
    min-height:880px;
}

.product .content {
    width: 71.875%;
    margin: 0 auto;
}

.product .content .boxlist {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.product .content .boxlist .pageGuide {
    width: 84%;
    border-left: 1px dashed #c3c3c3;
    margin-top: 0;
    padding-top: 2%;
}

.product .content .boxlist .right {
    width: 84%;
    display: flex;
    flex-wrap: wrap;
    padding: 3% 0 0 6%;
    border-left: 1px dashed #c3c3c3;
}

.product .content .boxlist .list {
    width: 30.8%;
    background-color: #ffffff;
    box-shadow: 3px 3px 15px rgba(9, 44, 83, .09);
    margin-right: 3.7%;
    margin-bottom: 3.7%;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.product .content .boxlist .list:nth-child(3n) {
    margin-right: 0;
}

.product .content .boxlist .list:hover {
    box-shadow: none;
    background-color: #dbe9f6;
}

.product .content .boxlist .list .list_img {
    width: 100%;
}

.product .content .boxlist .list .list_img .img {
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.product .content .boxlist .list .list_img .img a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product .content .boxlist .list .list_img .img a img {
    width: 100%;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.product .content .boxlist .list .list_img:hover .img a img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.product .content .boxlist .list .list_txt {
    width: 100%;
}

.product .content .boxlist .list .list_txt a {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 60px;
}

.product .content .boxlist .list .list_txt a h1 {
    font-size: 16px;
    color: #6c778d;
    line-height: 30px;
    font-weight: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.product .content .boxlist .list .list_txt a p {
    font-size: 18px;
    color: #0060ab;
    line-height: 30px;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

@media (max-width: 1400px) {
    .product .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .product .content {
        width: 95%;
    }

    .product .content .boxlist .right {
        width: 100%;
        border-left: none;
        padding: 0;
    }

    .product .content .boxlist .pageGuide {
        border-left: none;
    }

    .product .content .boxlist .pageGuide {
        width: 100%;
    }

    .product .content .boxlist .list .list_txt a {
        padding-bottom: 40px;
    }

    .product .content .boxlist .list .list_txt a p {
        font-size: 16px;
        line-height: 24px;
    }

    .product .content .boxlist .list .list_txt a h1 {
        font-size: 14px;
        line-height: 24px;
    }

    .product {
        padding: 60px 0 120px;
    }
}

@media (max-width: 760px) {
    .product .content .boxlist .list {
        margin-right: 0;
        width: 48%;
        margin-bottom: 4%;
    }

    .product .content .boxlist .right {
        justify-content: space-between;
    }

    .product {
        padding: 50px 0 80px;
    }
}

@media (max-width: 550px) {
    .product {
        padding: 50px 0 80px;
    }

    .product .content .boxlist .list .list_txt a p {
        font-size: 14px;
    }

    .product .content .boxlist .list .list_txt a h1 {
        font-size: 12px;
    }

    .product .content .boxlist .list .list_txt a {
        padding-bottom: 20px;
    }
}

/* 核心产品详情 */
.product_detail {
    padding: 80px 0 180px;
    width: 100%;
    background-color: #ffffff;
}

.product_detail .content {
    width: 71.875%;
    margin: 0 auto;
}

.product_detail .content .boxlist {
    width: 100%;
}

.product_detail .content .boxlist .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.product_detail .content .boxlist .top .left {
    width: 32.6%;
}

.product_detail .content .boxlist .top .left .swiper.mySwiper2 {
    border: 1px solid #dcdcdc;
}

.product_detail .content .boxlist .top .left .swiper {
    width: 100%;
}

.product_detail .content .boxlist .top .left .swiper .swiper-wrapper {
    width: 100%;
}

.product_detail .content .boxlist .top .left .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
}

.product_detail .content .boxlist .top .left .swiper .swiper-wrapper .swiper-slide .list {
    width: 100%;
}

.product_detail .content .boxlist .top .left .swiper .swiper-wrapper .swiper-slide .list .list_img {
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.product_detail .content .boxlist .top .left .swiper.mySwiper .swiper-wrapper .swiper-slide {
    border: 1px solid #dcdcdc;
}

.product_detail .content .boxlist .top .left .swiper .swiper-wrapper .swiper-slide .list .list_img .img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_detail .content .boxlist .top .left .swiper .swiper-wrapper .swiper-slide .list .list_img .img img {
    width: 100%;
}

.product_detail .content .boxlist .top .left .swiper.mySwiper {
    margin-top: 15px;
}

.product_detail .content .boxlist .top .left .swiper.mySwiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
    border: 1px solid #0060ab;
}

.product_detail .content .boxlist .top .right {
    width: 58.6%;
}

.product_detail .content .boxlist .top .right .theme {
    width: 100%;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.product_detail .content .boxlist .top .right .theme h1 {
    font-size: 30px;
    font-weight: normal;
    line-height: 30px;
    color: #0060ab;
    margin-bottom: 10px;
}

.product_detail .content .boxlist .top .right .theme p {
    font-size: 16px;
    line-height: 30px;
    color: #666666;
}

.product_detail .content .boxlist .top .right .info {
    width: 100%;
    margin-bottom: 40px;
}

.product_detail .content .boxlist .top .right .info span {
    font-size: 18px;
    color: #000000;
    line-height: 30px;
    display: block;
    margin-bottom: 20px;
}

.product_detail .content .boxlist .top .right .info p {
    font-size: 14px;
    color: #666666;
    line-height: 32px;
}

.product_detail .content .boxlist .top .right .more {
    width: 160px;
    height: 46px;
    border-radius: 23px;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    -ms-border-radius: 23px;
    -o-border-radius: 23px;
    border: 1px solid #0060ab;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.product_detail .content .boxlist .top .right .more a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0060ab;
    font-size: 14px;
    line-height: 30px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}
.product_detail .content .boxlist .top .right .more:hover {
    background-color: #0060ab;
}
.product_detail .content .boxlist .top .right .more:hover a {
    color: #ffffff;
}
.product_detail .content .boxlist .bottom {
    width: 100%;
}

.product_detail .content .boxlist .bottom .bottom_nav {
    width: 100%;
}

.product_detail .content .boxlist .bottom .bottom_nav ul {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #eeeeee;
}

.product_detail .content .boxlist .bottom .bottom_nav ul li {
    width: 160px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #666666;
    background-color: transparent;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    cursor: pointer;
}

.product_detail .content .boxlist .bottom .bottom_nav ul li.active {
    color: #ffffff;
    background-color: #0060ab;
}

.product_detail .content .boxlist .bottom .bottom_nav ul li:hover {
    color: #ffffff;
    background-color: #0060ab;
}

.product_detail .content .boxlist .bottom .bottom_content {
    width: 100%;
    padding: 40px 0 80px;
    border-bottom: 1px solid #bfbfbf;
}

.product_detail .content .boxlist .bottom .bottom_content .info_content {
    width: 100%;
    display: none;
}

.product_detail .content .boxlist .bottom .bottom_content .info_content.active {
    display: block;
}

.product_detail .content .boxlist .bottom .bottom_content .info_content .info {
    width: 100%;
}

.product_detail .content .boxlist .bottom .bottom_content .info_content .info p {
    font-size: 16px;
    line-height: 36px;
    color: #666666;
}

@media (max-width: 1600px) {
    .product_detail .content .boxlist .top .right .theme {
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

    .product_detail .content .boxlist .top .right .theme h1 {
        font-size: 24px;
    }

    .product_detail .content .boxlist .top .right .info {
        margin-bottom: 25px;
    }
}

@media (max-width: 1400px) {
    .product_detail .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .product_detail .content {
        width: 95%;
    }

    .product_detail .content .boxlist .bottom .bottom_nav ul li {
        width: 130px;
        height: 50px;
        font-size: 15px;
    }

    .product_detail .content .boxlist .bottom .bottom_content .info_content .info p {
        font-size: 14px;
        line-height: 30px;
    }

    .product_detail .content .boxlist .bottom .bottom_content {
        padding: 30px 0 50px;
    }

    .product_detail .content .boxlist .top .right .theme h1 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .product_detail .content .boxlist .top .right .theme p {
        font-size: 14px;
        line-height: 24px;
    }

    .product_detail .content .boxlist .top .right .theme {
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .product_detail .content .boxlist .top .right .info span {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .product_detail .content .boxlist .top .right .info p {
        font-size: 13px;
        color: #666666;
        line-height: 24px;
    }

    .product_detail .content .boxlist .top .right .more {
        width: 120px;
        height: 36px;
    }

    .product_detail .content .boxlist .top .right .more a {
        font-size: 13px;
    }

    .product_detail .content .boxlist .top {
        margin-bottom: 40px;
    }

    .product_detail {
        padding: 60px 0 120px;
    }
}

@media (max-width: 1000px) {
    .product_detail .content .boxlist .top .left {
        width: 38%;
    }

    .product_detail .content .boxlist .top .right {
        width: 55%;
    }
}

@media (max-width: 760px) {
    .product_detail .content .boxlist .top {
        flex-wrap: wrap;
    }

    .product_detail .content .boxlist .top .left {
        width: 100%;
        margin-bottom: 30px;
    }

    .product_detail .content .boxlist .top .right {
        width: 100%;
    }
}

@media (max-width: 550px) {
    .product_detail .content .boxlist .top .right .theme h1 {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .product_detail .content .boxlist .top .right .theme p {
        font-size: 12px;
    }

    .product_detail .content .boxlist .top .left {
        margin-bottom: 20px;
    }

    .product_detail .content .boxlist .top .right .info span {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .product_detail .content .boxlist .top .right .info p {
        font-size: 12px;
    }

    .product_detail .content .boxlist .top .right .info {
        margin-bottom: 20px;
    }

    .product_detail .content .boxlist .top .right .more a {
        font-size: 12px;
    }

    .product_detail .content .boxlist .top .right .more {
        width: 100px;
        height: 32px;
    }

    .product_detail .content .boxlist .bottom .bottom_nav ul li {
        width: 100px;
        height: 40px;
        font-size: 12px;
    }

    .product_detail .content .boxlist .bottom .bottom_content {
        padding: 20px 0 30px;
    }

    .product_detail .content .boxlist .bottom .bottom_content .info_content .info p {
        font-size: 12px;
        line-height: 24px;
    }

    .product_detail {
        padding: 50px 0 80px;
    }
}

/* 企业简介 */
.about {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0 140px;
}

.about .content {
    width: 71.875%;
    margin: 0 auto;
}

.about .content .boxlist {
    width: 100%;
}

.about .content .boxlist .top {
    width: 100%;
    margin-bottom: 40px;
}

.about .content .boxlist .top .theme {
    width: 100%;
    text-align: center;
}

.about .content .boxlist .top .theme h1 {
    font-size: 48px;
    line-height: 50px;
    color: #f4f5f9;
    font-weight: bold;
    text-transform: uppercase;
}

.about .content .boxlist .top .theme p {
    font-size: 30px;
    line-height: 32px;
    color: #333333;
}

.about .content .boxlist .bottom {
    width: 100%;
}

.about .content .boxlist .bottom .info {
    width: 100%;
    margin-bottom: 40px;
}

.about .content .boxlist .bottom .info p {
    font-size: 12px;
    line-height: 24px;
    color: #666666;
}

.about .content .boxlist .bottom .bottom_img {
    width: 100%;
}

.about .content .boxlist .bottom .bottom_img .swiper {
    width: 100%;
    padding-bottom: 2%;
}

.about .content .boxlist .bottom .bottom_img .swiper .swiper-wrapper {
    width: 100%;
}

.about .content .boxlist .bottom .bottom_img .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
}

.about .content .boxlist .bottom .bottom_img .swiper .swiper-wrapper .swiper-slide .one {
    width: 100%;
    position: relative;
}

.about .content .boxlist .bottom .bottom_img .swiper .swiper-wrapper .swiper-slide .one .img {
    width: 97%;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.about .content .boxlist .bottom .bottom_img .swiper .swiper-wrapper .swiper-slide .one .img img {
    width: 100%;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    cursor: pointer;
}
.about .content .boxlist .bottom .bottom_img .swiper .swiper-wrapper .swiper-slide .one:hover .img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.about .content .boxlist .bottom .bottom_img .swiper .swiper-wrapper .swiper-slide .one .mask {
    width: 97%;
    padding-bottom: 74%;
    position: absolute;
    right: 0;
    bottom: -4%;
}

.about .content .boxlist .bottom .bottom_img .swiper .swiper-wrapper .swiper-slide:nth-child(1) .one .mask {
    background-color: #0060ab;
}

.about .content .boxlist .bottom .bottom_img .swiper .swiper-wrapper .swiper-slide:nth-child(2) .one .mask {
    background-color: #ff8b00;
}

.about .content .boxlist .bottom .bottom_img .swiper .swiper-wrapper .swiper-slide:nth-child(3) .one .mask {
    background-color: #0095ab;
}

.about .content .boxlist .bottom .bottom_img .swiper .swiper-button-next {
    display: none;
}

.about .content .boxlist .bottom .bottom_img .swiper .swiper-button-prev {
    display: none;
}

.about .content .boxlist .bottom .bottom_img .swiper .swiper-pagination {
    display: none;
}

@media (max-width: 1600px) {
    .about .content .boxlist .top .theme p {
        font-size: 24px;
    }

    .about .content .boxlist .top .theme h1 {
        font-size: 40px;
        line-height: 40px;
    }
}

@media (max-width: 1400px) {
    .about .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .about .content {
        width: 95%;
    }

    .about {
        padding: 60px 0 100px;
    }

    .about .content .boxlist .top .theme p {
        font-size: 20px;
    }

    .about .content .boxlist .top .theme h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .about .content .boxlist .top {
        margin-bottom: 30px;
    }
}

@media (max-width: 550px) {
    .about {
        padding: 50px 0 70px;
    }

    .about .content .boxlist .top .theme p {
        font-size: 18px;
        line-height: 24px;
    }

    .about .content .boxlist .top .theme h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .about .content .boxlist .top {
        margin-bottom: 20px;
    }

    .about .content .boxlist .bottom .info p {
        line-height: 20px;
    }

    .about .content .boxlist .bottom .info {
        margin-bottom: 30px;
    }
}

/* 企业文化 */
.about_culture {
    width: 100%;
    background: #ffffff url(../images/about_culture_background.png) no-repeat;
    background-size: cover;
    padding: 80px 0 270px;
}

.about_culture .content {
    width: 71.875%;
    margin: 0 auto;
}

.about_culture .content .boxlist {
    width: 100%;
}

.about_culture .content .boxlist .top {
    width: 100%;
    margin-bottom: 40px;
}

.about_culture .content .boxlist .top .theme {
    width: 100%;
    text-align: center;
}

.about_culture .content .boxlist .top .theme h1 {
    font-size: 48px;
    line-height: 50px;
    color: #f4f5f9;
    font-weight: bold;
    text-transform: uppercase;
}

.about_culture .content .boxlist .top .theme p {
    font-size: 30px;
    line-height: 32px;
    color: #333333;
}

.about_culture .content .boxlist .bottom {
    width: 100%;
}

.about_culture .content .boxlist .bottom .swiper {
    width: 100%;
}

.about_culture .content .boxlist .bottom .swiper .swiper-wrapper {
    width: 100%;
}

.about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
}

.about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide:nth-child(odd) {
    padding-top: 4%;
}

.about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide:nth-child(even) {
    padding-bottom: 4%;
}

.about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list {
    width: 100%;
    position: relative;
}

.about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_img {
    width: 100%;
}

.about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_img .img {
    width: 100%;
    padding-bottom: 140%;
    position: relative;
    overflow: hidden;
}

.about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_img .img .img_1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_img .img .img_1 img {
    width: 100%;
    transition: all .5s linear;
    cursor: pointer;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}
.about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list:hover .list_img .img .img_1 img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    color: rgba(0, 96, 171, 1);
    background: linear-gradient(to top, rgba(0, 96, 171, 1) 20%,rgba(0, 96, 171, .8) 70%, rgba(0, 96, 171, .7),rgba(0, 96, 171, .5),rgba(0, 96, 171, .3), rgba(0, 96, 171, .15),rgba(0, 96, 171, .05),rgba(0, 96, 171, 0));
}

.about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt .txt {
    width: 100%;
    padding: 14% 6% 6%;
}

.about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt .txt h1 {
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    line-height: 30px;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt .txt p {
    font-size: 16px;
    font-weight: lighter;
    color: #ffffff;
    line-height: 24px;
    height: 48px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.about_culture .content .boxlist .bottom .swiper .swiper-button-next {
    display: none;
}

.about_culture .content .boxlist .bottom .swiper .swiper-button-prev {
    display: none;
}

.about_culture .content .boxlist .bottom .swiper .swiper-pagination {
    display: none;
}

@media (max-width: 1600px) {
    .about_culture .content .boxlist .top .theme p {
        font-size: 24px;
    }

    .about_culture .content .boxlist .top .theme h1 {
        font-size: 40px;
        line-height: 40px;
    }

    .about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt .txt h1 {
        font-size: 22px;
    }
}

@media (max-width: 1400px) {
    .about_culture .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .about_culture .content {
        width: 95%;
    }

    .about_culture {
        padding: 60px 0 180px;
    }

    .about_culture .content .boxlist .top .theme p {
        font-size: 20px;
    }

    .about_culture .content .boxlist .top .theme h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .about_culture .content .boxlist .top {
        margin-bottom: 30px;
    }

    .about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt .txt h1 {
        font-size: 18px;
        margin-bottom: 0px;
    }

    .about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt .txt p {
        font-size: 14px;
    }
}

@media (max-width: 550px) {
    .about_culture {
        padding: 50px 0 100px;
    }

    .about_culture .content .boxlist .top .theme p {
        font-size: 18px;
        line-height: 24px;
    }

    .about_culture .content .boxlist .top .theme h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .about_culture .content .boxlist .top {
        margin-bottom: 20px;
    }

    .about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt .txt h1 {
        font-size: 16px;
    }

    .about_culture .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list .list_txt .txt p {
        font-size: 12px;
        line-height: 20px;
        height: 40px;
    }
}

/* 荣誉资质 */
.about_honor {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0 130px;
}

.about_honor .content {
    width: 71.875%;
    margin: 0 auto;
}

.about_honor .content .boxlist {
    width: 100%;
}

.about_honor .content .boxlist .top {
    width: 100%;
    margin-bottom: 40px;
}

.about_honor .content .boxlist .top .theme {
    width: 100%;
    text-align: center;
}

.about_honor .content .boxlist .top .theme h1 {
    font-size: 48px;
    line-height: 50px;
    color: #f4f5f9;
    font-weight: bold;
    text-transform: uppercase;
}

.about_honor .content .boxlist .top .theme p {
    font-size: 30px;
    line-height: 32px;
    color: #333333;
}

.about_honor .content .boxlist .bottom {
    width: 100%;
    display: flex;
    flex-wrap: wrap
}

.about_honor .content .boxlist .bottom .list {
    width: 22.4%;
    margin-right: 3.3%;
    margin-bottom: 3.3%;
}

.about_honor .content .boxlist .bottom .list:nth-child(4n) {
    margin-right: 0;
}

.about_honor .content .boxlist .bottom .list a {
    display: block;
    width: 100%;
}

.about_honor .content .boxlist .bottom .list a .list_img {
    width: 100%;
    position: relative;
    padding-bottom: 134.4%;
    overflow: hidden;
    border: 1px solid #dddddd;
}

.about_honor .content .boxlist .bottom .list a .list_img .img {
    width: 94%;
    height: 94%;
    position: absolute;
    top: 3%;
    left: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about_honor .content .boxlist .bottom .list a .list_img .img img {
    width: 100%;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.about_honor .content .boxlist .bottom .list a .list_img:hover .img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.about_honor .content .boxlist .bottom .list a .list_txt {
    padding: 10px;
}

.about_honor .content .boxlist .bottom .list a .list_txt p {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

@media (max-width: 1600px) {
    .about_honor .content .boxlist .top .theme p {
        font-size: 24px;
    }

    .about_honor .content .boxlist .top .theme h1 {
        font-size: 40px;
        line-height: 40px;
    }
}

@media (max-width: 1400px) {
    .about_honor .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .about_honor .content {
        width: 95%;
    }

    .about_honor {
        padding: 60px 0 100px;
    }

    .about_honor .content .boxlist .top .theme p {
        font-size: 20px;
    }

    .about_honor .content .boxlist .top .theme h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .about_honor .content .boxlist .top {
        margin-bottom: 30px;
    }
}

@media (max-width: 760px) {
    .about_honor .content .boxlist .bottom {
        justify-content: space-between;
    }

    .about_honor .content .boxlist .bottom .list {
        width: 48%;
        margin-right: 0;
        margin-bottom: 4%;
    }
}

@media (max-width: 550px) {
    .about_honor {
        padding: 50px 0 70px;
    }

    .about_honor .content .boxlist .top .theme p {
        font-size: 18px;
        line-height: 24px;
    }

    .about_honor .content .boxlist .top .theme h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .about_honor .content .boxlist .top {
        margin-bottom: 20px;
    }

    .about_honor .content .boxlist .bottom .list a .list_txt {
        padding: 5px;
    }

    .about_honor .content .boxlist .bottom .list a .list_txt p {
        font-size: 12px;
    }
}

/* 联系我们 */
.contact01 {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0 130px;
}

.contact01 .content {
    width: 71.875%;
    margin: 0 auto;
}

.contact01 .content .boxlist {
    width: 100%;
}

.contact01 .content .boxlist .top {
    width: 100%;
    margin-bottom: 40px;
}

.contact01 .content .boxlist .top .theme {
    width: 100%;
    text-align: center;
}

.contact01 .content .boxlist .top .theme h1 {
    font-size: 48px;
    line-height: 50px;
    color: #f4f5f9;
    font-weight: bold;
    text-transform: uppercase;
}

.contact01 .content .boxlist .top .theme p {
    font-size: 30px;
    line-height: 32px;
    color: #333333;
}

.contact01 .content .boxlist .bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.contact01 .content .boxlist .bottom .left {
    width: 50%;
}

.contact01 .content .boxlist .bottom .left .one {
    width: 100%;
    border: 1px solid #eeeeee;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.contact01 .content .boxlist .bottom .left .one:nth-child(1) {
    background: url(../images/contact01_icon01.png) no-repeat;
    background-size: 100%;
}

.contact01 .content .boxlist .bottom .left .one:nth-child(2) {
    background: url(../images/contact01_icon02.png) no-repeat;
    background-size: 100%;
}

.contact01 .content .boxlist .bottom .left .one .theme {
    width: 70%;
    padding-left: 10%;
}

.contact01 .content .boxlist .bottom .left .one .theme h1 {
    font-size: 18px;
    color: #333333;
    line-height: 24px;
    font-weight: lighter;
    margin-bottom: 20px;
}

.contact01 .content .boxlist .bottom .left .one:nth-child(1) .theme p {
    font-size: 24px;
    color: #333333;
    line-height: 24px;
}

.contact01 .content .boxlist .bottom .left .one:nth-child(2) .theme p {
    font-size: 20px;
    color: #333333;
    line-height: 30px;
}

.contact01 .content .boxlist .bottom .right {
    width: 50%;
}

.contact01 .content .boxlist .bottom .right .gaode {
    width: 100%;
    padding-bottom: 63.7%;
    position: relative;
}

@media (max-width: 1600px) {
    .contact01 .content .boxlist .top .theme p {
        font-size: 24px;
    }

    .contact01 .content .boxlist .top .theme h1 {
        font-size: 40px;
        line-height: 40px;
    }

    .contact01 .content .boxlist .bottom .left .one:nth-child(2) .theme p {
        font-size: 18px;
    }
}

@media (max-width: 1400px) {
    .contact01 .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .contact01 .content {
        width: 95%;
    }

    .contact01 {
        padding: 60px 0 100px;
    }

    .contact01 .content .boxlist .top .theme p {
        font-size: 20px;
    }

    .contact01 .content .boxlist .top .theme h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .contact01 .content .boxlist .top {
        margin-bottom: 30px;
    }

    .contact01 .content .boxlist .bottom .left .one:nth-child(2) .theme p {
        font-size: 15px;
        line-height: 24px;
    }

    .contact01 .content .boxlist .bottom .left .one:nth-child(1) .theme p {
        font-size: 20px;
    }

    .contact01 .content .boxlist .bottom .left .one .theme h1 {
        margin-bottom: 10px;
        font-size: 15px;
    }
}

@media (max-width: 1000px) {
    .contact01 .content .boxlist .bottom {
        flex-wrap: wrap;
    }

    .contact01 .content .boxlist .bottom .left {
        width: 100%;
        margin-bottom: 2px;
    }

    .contact01 .content .boxlist .bottom .right {
        width: 100%;
    }

    .contact01 .content .boxlist .bottom .left .one {
        height: auto;
        padding: 5%;
    }

    .contact01 .content .boxlist .bottom .left .one:nth-child(1) .theme p {
        margin-bottom: 24px;
    }
}

@media (max-width: 550px) {
    .contact01 {
        padding: 50px 0 70px;
    }

    .contact01 .content .boxlist .top .theme p {
        font-size: 18px;
        line-height: 24px;
    }

    .contact01 .content .boxlist .top .theme h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .contact01 .content .boxlist .top {
        margin-bottom: 20px;
    }

    .contact01 .content .boxlist .bottom .left .one:nth-child(2) .theme p {
        font-size: 13px;
        line-height: 20px;
    }

    .contact01 .content .boxlist .bottom .left .one:nth-child(1) .theme p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .contact01 .content .boxlist .bottom .left .one .theme h1 {
        margin-bottom: 0px;
        font-size: 13px;
    }
}

/* 在线留言 */
.contact02 {
    width: 100%;
    background-color: #f5f7fa;
    padding: 80px 0 110px;
}

.contact02 .content {
    width: 71.875%;
    margin: 0 auto;
}

.contact02 .content .boxlist {
    width: 100%;
}

.contact02 .content .boxlist .top {
    width: 100%;
    margin-bottom: 40px;
}

.contact02 .content .boxlist .top .theme {
    width: 100%;
    text-align: center;
}

.contact02 .content .boxlist .top .theme h1 {
    font-size: 48px;
    line-height: 50px;
    color: #dddddd;
    font-weight: bold;
    text-transform: uppercase;
}

.contact02 .content .boxlist .top .theme p {
    font-size: 30px;
    line-height: 32px;
    color: #333333;
}

.contact02 .content .boxlist .bottom {
    width: 100%;
}

.contact02 .content .boxlist .bottom .message {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact02 .content .boxlist .bottom .message .one {
    width: 49.2%;
    margin-bottom: 20px;
}

.contact02 .content .boxlist .bottom .message .one input {
    width: 100%;
    padding: 20px 30px;
    border: none;
    outline: none;
    background-color: #ffffff;
    color: #999999;
    font-size: 14px;
}

.contact02 .content .boxlist .bottom .message .one input::placeholder {
    color: #999999;
    font-size: 14px;
}

.contact02 .content .boxlist .bottom .message .two {
    width: 100%;

}

.contact02 .content .boxlist .bottom .message .two textarea {
    width: 100%;
    height: 200px;
    padding: 20px 30px;
    border: none;
    margin-bottom: 20px;
    outline: none;
    border: none;
    color: #999999;
    font-size: 14px;
    background-color: #ffffff;
}

.contact02 .content .boxlist .bottom .message .two textarea::placeholder {
    color: #999999;
    font-size: 14px;
}

.contact02 .content .boxlist .bottom .message .more {
    width: 200px;
    height: 48px;
    background-color: #0060ab;
    margin-top: 20px;
}

.contact02 .content .boxlist .bottom .message .more a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
}

@media (max-width: 1600px) {
    .contact02 .content .boxlist .top .theme p {
        font-size: 24px;
    }

    .contact02 .content .boxlist .top .theme h1 {
        font-size: 40px;
        line-height: 40px;
    }
}

@media (max-width: 1400px) {
    .contact02 .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .contact02 .content {
        width: 95%;
    }

    .contact02 {
        padding: 60px 0 100px;
    }

    .contact02 .content .boxlist .top .theme p {
        font-size: 20px;
    }

    .contact02 .content .boxlist .top .theme h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .contact02 .content .boxlist .top {
        margin-bottom: 30px;
    }

    .contact02 .content .boxlist .bottom .message .more {
        width: 160px;
        height: 40px;
    }

    .contact02 .content .boxlist .bottom .message .more a {
        font-size: 14px;
    }

    .contact02 .content .boxlist .bottom .message .one input {
        padding: 15px;
    }

    .contact02 .content .boxlist .bottom .message .two textarea {
        padding: 15px;
    }
}

@media (max-width: 760px) {}

@media (max-width: 550px) {
    .contact02 {
        padding: 50px 0 70px;
    }

    .contact02 .content .boxlist .top .theme p {
        font-size: 18px;
        line-height: 24px;
    }

    .contact02 .content .boxlist .top .theme h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .contact02 .content .boxlist .top {
        margin-bottom: 20px;
    }

    .contact02 .content .boxlist .bottom .message .one {
        width: 100%;
        margin-bottom: 15px;
    }

    .contact02 .content .boxlist .bottom .message .one input {
        padding: 10px;
    }

    .contact02 .content .boxlist .bottom .message .two textarea {
        padding: 10px;
        height: 150px;
    }

    .contact02 .content .boxlist .bottom .message .more {
        width: 120px;
        height: 36px;
        margin-top: 10px;
    }
}

/* 资料下载 */
.download {
    width: 100%;
    padding: 80px 0 140px;
    background-color: #ffffff;
}

.download .content {
    width: 71.875%;
    margin: 0 auto;
}

.download .content .boxlist {
    width: 100%;
}

.download .content .boxlist .top {
    width: 100%;
    margin-bottom: 60px;
}

.download .content .boxlist .top .theme {
    width: 100%;
    margin-bottom: 20px;
}
.download .content .boxlist .top .theme h1{
    font-size: 26px;
    line-height: 30px;
    color: #333333;
    font-weight: normal;
}
.download .content .boxlist .top .download_nav{
    padding: 35px 15px;
    background-color: #f7f7f7;
    position: relative;
}
.download .content .boxlist .top .download_nav ul{
    width: calc(100% - 60px);
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    height: 50px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}
.download .content .boxlist .top .download_nav ul.ul{
    height: auto;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}
.download .content .boxlist .top .download_nav ul li{
    width: 200px;
    height: 50px;
    border: 1px solid #a9afbb;
    font-size: 16px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    line-height: 30px;
    margin-right: 10px;
    font-weight: normal;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
    margin-bottom: 10px;
}
.download .content .boxlist .top .download_nav ul li a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666666;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}
.download .content .boxlist .top .download_nav ul li.active{
    border: 1px solid #0060ab;
    background-color: #0060ab;

}
.download .content .boxlist .top .download_nav ul li.active a{
    color: #ffffff;
}
.download .content .boxlist .top .download_nav ul li:hover{
    border: 1px solid #0060ab;
    background-color: #0060ab;
}
.download .content .boxlist .top .download_nav ul li:hover a{
    color: #ffffff;
}
.download .content .boxlist .top .download_nav span{
    position: absolute;
    top: 50px;
    right: 40px;
    display: block;
    width: 18px;
    height: 16px;
    background: url(../images/download_icon01.png) no-repeat;
    background-size: 100%;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}
.download .content .boxlist .top .download_nav span.span{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
.download .content .boxlist .bottom{
    width: 100%;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 70px;
}
.download .content .boxlist .bottom .list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 6%;
}
.download .content .boxlist .bottom .list .left{
    width: 50%;
}
.download .content .boxlist .bottom .list .left h1{
    width: calc(100% - 20px);
    font-size: 20px;
    color: #ffffff;
    line-height: 40px;
    font-weight: normal;
}
.download .content .boxlist .bottom .list .left p{
    width: calc(100% - 20px);
    font-size: 14px;
    color: #666666;
    line-height: 24px;
}
.download .content .boxlist .bottom .list .right{
    width: 50%;
    position: relative;
}
.download .content .boxlist .bottom .list .right h1{
    font-size: 20px;
    color: #ffffff;
    line-height: 40px;
    font-weight: normal;
}
.download .content .boxlist .bottom .list .right p{
    width: calc(100% - 80px);
    font-size: 14px;
    color: #666666;
    line-height: 24px;
}
.download .content .boxlist .bottom .list:nth-child(odd){
    background-color: #ffffff;
}
.download .content .boxlist .bottom .list:nth-child(even){
    background-color: #f0f0f0;
}
.download .content .boxlist .bottom .list:first-child{
    background-color: #0060ab;
}
.download .content .boxlist .bottom .list .right a{
    width: 70px;
    height: 40px;
    line-height: 30px;
    font-size: 14px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    color: #0060ab;
    border: 1px solid #0060ab;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}
.download .content .boxlist .bottom .list .right a:hover{
    background-color: #0060ab;
    color: #ffffff;
}

@media (max-width: 1400px) {
    .download .content{
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .download .content{
        width: 95%;
    }
    .download .content .boxlist .top .theme h1 {
        font-size: 20px;
        line-height: 24px;
    }
    .download .content .boxlist .top .download_nav ul li {
        width: 150px;
        height: 40px;
        font-size: 14px;
        line-height: 24px;
    }
    .download .content .boxlist .bottom .list .left h1 {
        font-size: 16px;
        line-height: 30px;
    }
    .download .content .boxlist .bottom .list .right h1 {
        font-size: 16px;
        line-height: 30px;
    }
    .download .content .boxlist .bottom .list {
        padding: 20px 6%;
    }
    .download .content .boxlist .bottom .list .right a {
        width: 50px;
        height: 32px;
        line-height: 24px;
        font-size: 13px;
    }
    .download .content .boxlist .bottom .list .right p {
        width: calc(100% - 60px);
        font-size: 13px;
    }
    .download .content .boxlist .bottom .list .left p {
        font-size: 13px;
    }
    .download .content .boxlist .top .download_nav {
        padding: 30px 10px;
    }
    .download .content .boxlist .top .download_nav ul{
        height: 40px;
    }
    .download .content .boxlist .top .download_nav span{
        top: 40px;
    }
    .download .content .boxlist .bottom {
        margin-bottom: 50px;
    }
    .download .content .boxlist .top {
        margin-bottom: 40px;
    }
    .download {
        padding: 60px 0 100px;
    }
}

@media (max-width: 550px) {
    .download .content .boxlist .bottom .list .left h1 {
        font-size: 14px;
        line-height: 24px;
    }
    .download .content .boxlist .bottom .list .right h1 {
        font-size: 14px;
        line-height: 24px;
    }
    .download .content .boxlist .bottom {
        margin-bottom: 30px;
    }
    .download .content .boxlist .top {
        margin-bottom: 20px;
    }
    .download {
        padding: 50px 0 70px;
    }
    .download .content .boxlist .bottom .list .right p {
        width: calc(100% - 55px);
        font-size: 12px;
    }
    .download .content .boxlist .bottom .list .left p {
        font-size: 12px;
    }
    .download .content .boxlist .bottom .list .right a {
        width: 45px;
        height: 28px;
        line-height: 20px;
        font-size: 12px;
    }
    .download .content .boxlist .bottom .list {
        padding: 15px 6%;
    }
    .download .content .boxlist .top .download_nav ul li {
        width: 120px;
        height: 34px;
        font-size: 12px;
    }
    .download .content .boxlist .top .download_nav {
        padding: 20px 10px;
    }
    .download .content .boxlist .top .download_nav ul {
        height: 34px;
        width: calc(100% - 30px);
    }
    
    .download .content .boxlist .top .download_nav span{
        width: 14px;
        height: 12px;
        top: 32px;
        right: 20px;
    }
    .download .content .boxlist .top .theme h1 {
        font-size: 16px;
    }
    .download .content .boxlist .top .theme {
        margin-bottom: 10px;
    }
}

/* 单页info */
.info_main {
    padding: 80px 0 180px;
}

.info_main .content {
    width: 71.875%;
    margin: 0 auto;
}
.info_main .content .info_edit{
    width: 100%;
}
.info_main .content .info_edit img {
    max-width: 100%;
}

@media (max-width:1400px) {
    .info_main .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .info_main .content {
        width: 95%;
    }

    .info_main {
        padding: 60px 0 120px;
    }
}

@media (max-width:550px) {
    .info_main {
        padding: 50px 0 80px;
    }
}

/* 新闻详情 */
.news_detail {
    width: 100%;
    background-color: #fff;
    padding: 80px 0 140px;
}

.news_detail .content {
    width: 71.875%;
    margin: 0 auto;
}

.news_detail .content .theme {
    border-bottom: 1px solid #e5e5e5;
}

.news_detail .content .theme .title {
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
}

.news_detail .content .theme .time {
    text-align: center;
    font-size: 13px;
    line-height: 30px;
    margin-bottom: 10px;
    color: #666666;
    font-weight: lighter;
}

.news_detail .content .news_detail_info {
    padding: 3%;
    margin-bottom: 40px;
}

.news_detail .content .news_detail_info img {
    max-width: 100%;
}

.news_detail .content .news_detail_other {
    width: 100%;
}

.news_detail .content .news_detail_other ul li {
    font-size: 14px;
    line-height: 26px;
    color: #666666;
    background-color: #f7f7f7;
    margin-bottom: 10px;
    padding: 20px 3%;
}

.news_detail .content .news_detail_other ul li a {
    color: #666666;
}

.news_detail .content .news_detail_other ul li a:hover {
    color: #0178fa;
}

@media (max-width: 1400px) {
    .news_detail .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .news_detail .content {
        width: 95%;
    }

    .news_detail .content .theme .title {
        font-size: 20px;
    }
    .news_detail {
        padding: 60px 0 100px;
    }
}

@media (max-width:760px) {
    .news_detail {
        padding: 50px 0 80px;
    }

    .news_detail .content .news_detail_other ul li {
        padding: 10px 3%;
    }

    .news_detail .content .news_detail_other ul li {
        font-size: 12px;
    }
    .news_detail .content .theme .title {
        margin-bottom: 0px;
    }
}

/* 新闻资讯 */
.news {
    width: 100%;
    padding: 80px 0 140px;
    background-color: #ffffff;
}

.news .content {
    width: 66.6%;
    margin: 0 auto;
}

.news .content .boxlist {
    width: 100%;
}

.news .content .boxlist .top {
    width: 100%;
    margin-bottom: 80px;
}

.news .content .boxlist .top .list {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.news .content .boxlist .top .list .list_img {
    width: 46.875%;
}

.news .content .boxlist .top .list .list_img .img {
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
    position: relative;
}

.news .content .boxlist .top .list .list_img .img a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news .content .boxlist .top .list .list_img .img a img {
    width: 100%;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.news .content .boxlist .top .list .list_img:hover .img a img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.news .content .boxlist .top .list .list_txt {
    width: 53.125%;
    padding: 0 4%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: #f9f9f9;
}

.news .content .boxlist .top .list .list_txt .theme {
    width: 100%;
    margin-bottom: 30px;
}

.news .content .boxlist .top .list .list_txt .theme span {
    font-size: 16px;
    color: #999999;
    line-height: 48px;
    display: inline-block;
}

.news .content .boxlist .top .list .list_txt .theme h1 {
    font-weight: 500;
}

.news .content .boxlist .top .list .list_txt .theme h1 a {
    color: #000000;
    font-size: 24px;
    line-height: 48px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.news .content .boxlist .top .list .list_txt .theme p {
    color: #666666;
    font-size: 14px;
    line-height: 30px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news .content .boxlist .top .list .list_txt .more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 140px;
    height: 46px;
    background-color: #0178fa;
    border-radius: 23px;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    -ms-border-radius: 23px;
    -o-border-radius: 23px;
}

.news .content .boxlist .top .list .list_txt .more a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
}

.news .content .boxlist .bottom {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.news .content .boxlist .bottom .list {
    width: 29.6%;
    margin-right: 5.4%;
    margin-bottom: 5.4%;
}

.news .content .boxlist .bottom .list:nth-child(3n) {
    margin-right: 0;
}

.news .content .boxlist .bottom .list .list_img {
    width: 100%;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.news .content .boxlist .bottom .list .list_img .img {
    width: 100%;
    padding-bottom: 73.6%;
    overflow: hidden;
    position: relative;
}

.news .content .boxlist .bottom .list .list_img .img a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news .content .boxlist .bottom .list .list_img .img a img {
    width: 100%;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.news .content .boxlist .bottom .list .list_img:hover .img a img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.news .content .boxlist .bottom .list .list_txt {
    width: 100%;
    padding: 4% 0;
}

.news .content .boxlist .bottom .list .list_txt .theme {
    width: 100%;
    margin-bottom: 30px;
}

.news .content .boxlist .bottom .list .list_txt .theme span {
    font-size: 13px;
    color: #999999;
    line-height: 24px;
    display: inline-block;
    margin-bottom: 10px;
}

.news .content .boxlist .bottom .list .list_txt .theme h1 {
    font-weight: 500;
    margin-bottom: 5px;
}

.news .content .boxlist .bottom .list .list_txt .theme h1 a {
    color: #000000;
    font-size: 18px;
    line-height: 24px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.news .content .boxlist .bottom .list .list_txt .theme p {
    color: #666666;
    font-size: 14px;
    line-height: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news .content .boxlist .bottom .list .list_txt .more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 140px;
    height: 46px;
    background-color: transparent;
    border: 1px solid #dcdcdc;
    border-radius: 23px;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    -ms-border-radius: 23px;
    -o-border-radius: 23px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.news .content .boxlist .bottom .list .list_txt .more a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666666;
    font-size: 14px;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.news .content .boxlist .bottom .list .list_txt .more:hover {
    background-color: #0178fa;
}

.news .content .boxlist .bottom .list .list_txt .more:hover a {
    color: #ffffff;
}


@media (max-width: 1600px) {
    .news .content {
        width: 75%;
    }

    .news .content .boxlist .top .theme h1 {
        font-size: 28px;
    }
}

@media (max-width: 1400px) {
    .news .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .news .content {
        width: 95%;
    }

    .news .content .boxlist .top .list .list_txt .theme h1 a {
        font-size: 20px;
        line-height: 36px;
    }

    .news .content .boxlist .top .list .list_txt .theme span {
        font-size: 14px;
        line-height: 36px;
    }

    .news .content .boxlist .top .list .list_txt .theme p {
        font-size: 13px;
        line-height: 24px;
    }

    .news .content .boxlist .bottom .list .list_txt .theme h1 a {
        font-size: 16px;
    }

    .news .content .boxlist .bottom .list .list_txt .theme p {
        font-size: 13px;
    }

    .news .content .boxlist .bottom .list .list_txt .theme span {
        font-size: 12px;
    }

    .news .content .boxlist .top .list .list_txt .more {
        width: 120px;
        height: 40px;
    }

    .news .content .boxlist .bottom .list .list_txt .more {
        width: 120px;
        height: 40px;
    }
    .news .content .boxlist .top {
        margin-bottom: 50px;
    }
    .news .content .boxlist .bottom .list .list_txt .theme {
        margin-bottom: 20px;
    }
    
    .news .content .boxlist .top .list .list_txt .theme {
        margin-bottom: 20px;
    }    
}
@media (max-width: 760px) {
    .news .content .boxlist .bottom {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .news .content .boxlist .top .list {
        flex-wrap: wrap;
    }

    .news .content .boxlist .top .list .list_img {
        width: 100%;
    }

    .news .content .boxlist .top .list .list_txt {
        width: 100%;
        padding: 4%;
    }

    .news .content .boxlist .bottom .list {
        width: 48%;
        margin-bottom: 40px;
        margin-right: 0;
    }
}

@media (max-width: 550px) {
    .news .content .boxlist .bottom .list {
        margin-bottom: 20px;
    }
    .news .content .boxlist .bottom .list .list_txt .more {
        width: 100px;
        height: 34px;
    }
    .news .content .boxlist .bottom .list .list_txt .more a{
        font-size: 12px;
    }
    .news .content .boxlist .top .list .list_txt .theme h1 a {
        font-size: 16px;
        line-height: 30px;
    }
    .news .content .boxlist .top .list .list_txt .theme span {
        font-size: 12px;
        line-height: 30px;
    }
    .news .content .boxlist .top .list .list_txt .more{
        width: 100px;
        height: 34px;
    }
    .news .content .boxlist .top .list .list_txt .more a{
        font-size: 12px;
    }
    .news .content .boxlist .top .list .list_txt .theme p {
        font-size: 12px;
    }
    .news .content .boxlist .top {
        margin-bottom: 30px;
    }
    .news .content .boxlist .bottom .list .list_txt .theme h1 a {
        font-size: 14px;
    }
    .news .content .boxlist .bottom .list .list_txt .theme p {
        font-size: 12px;
    }
    .news {
        padding: 60px 0 80px;
    }
}

.xinwen .content .boxlist .bottom .list 
{
    width:100%;
    line-height: 42px;    
    background: url(../images/li_bg2_h.jpg) left center no-repeat;
    border-bottom: 1px dotted #dbdbdb;
    font-size: 14px;
    color: #999;
    margin:0px;
}
.xinwen {
    width: 100%;
    padding: 80px 0 140px;
    background-color: #ffffff;
}
.xinwen .content {
    width: 66.6%;
    margin: 0 auto;
}
.xinwen .content .boxlist {
    width: 100%;
}
.xinwen .content .boxlist .bottom {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.xinwen .content .boxlist .bottom .list .list_txt{padding-left: 20px;}
.xinwen .content .boxlist .bottom .list .list_txt .theme{ float:left;width: 75%; padding-right:5%;white-space: nowrap;text-overflow: ellipsis;overflow: hidden; }
.xinwen .content .boxlist .bottom .list .list_txt .theme h1{font-size: 14px;    color: #999; font-weight:normal;}
.xinwen .content .boxlist .bottom .list .list_txt .time{ float:right;width: 20%; text-align:right;font-size: 14px;color: #999; font-weight:normal; line-height: 42px;}
@media (max-width: 1400px) {
    .xinwen .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .xinwen .content {
        width: 95%;
    }

    .xinwen .content .boxlist .list .list_img .img .play img {
        width: 46px;
        height: 46px;
    }

    .xinwen .content .boxlist .list .list_txt h1 {
        font-size: 15px;
    }

    .xinwen .content .boxlist .list .list_txt {
        padding: 20px 10px;
    }

    .xinwen {
        padding: 60px 0 100px;
    }
}

@media (max-width: 760px) {
    .xinwen .content .boxlist {
        justify-content: space-between;
    }

    .xinwen .content .boxlist .list {
        width: 48%;
        margin-right: 0;
        margin-bottom: 4%;
    }
}

@media (max-width: 550px) {
    .xinwen {
        padding: 30px 0 40px;
    }

    .xinwen .content .boxlist .list .list_img .img .play img {
        width: 36px;
        height: 36px;
    }

    .xinwen .content .boxlist .list .list_txt {
        padding: 10px 5px;
    }

    .xinwen .content .boxlist .list .list_txt h1 {
        font-size: 12px;
        line-height: 24px;
    }
}
