/* banner */
.banner {
    width: 100%;
    margin-top: 0px;
}

.banner>a {
    width: 100%;
    display: block;
    overflow: hidden;
}

.banner>a>img {
    overflow: hidden;
    width: 100%;
}

@media (max-width: 1200px) {
    .banner {
        margin-top: 0px;
    }
}

@media (max-width: 760px) {
    .banner>a>img {
        width: 200%;
        margin-left: -25%;
    }
}

/* 二级导航 */
.navigation {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.navigation .content {
    width: 75%;
    margin: 0 auto;
}

.navigation .content .boxlist {
    width: 100%;
}

.navigation .content ul {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.navigation .content ul li {
    position: relative;
    height: 80px;
    margin: 0 2%;
}

.navigation .content ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #0178fa;
    transition: all .5s linear;
    opacity: 0;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.navigation .content ul .active::after {
    opacity: 1;
}

.navigation .content ul li:hover::after {
    opacity: 1;
}

.navigation .content ul li a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 36px;
    color: #666666;
}

.navigation .content ul .active a {
    color: #000000;
    font-size: 18px;
}

.navigation .content ul li:hover a {
    color: #000000;
    font-size: 18px;
}

@media (max-width:1400px) {
    .navigation .content {
        width: 85%;
    }
}

@media (max-width:1200px) {
    .navigation .content {
        width: 95%;
    }

    .navigation .content ul li a {
        font-size: 14px;
    }

    .navigation .content ul li:hover a {
        font-size: 16px;
    }

    .navigation .content ul .active a {
        font-size: 16px;
    }
}

@media (max-width:760px) {
    .navigation .content ul{
        justify-content: flex-start;
    }
    .navigation .content ul li {
        height: 50px;
    }

    .navigation .content ul li a {
        font-size: 12px;
    }

    .navigation .content ul li:hover a {
        font-size: 13px;
    }

    .navigation .content ul .active a {
        font-size: 13px;
    }

    .navigation .content ul li::after {
        height: 1px;
    }
}

/* 产品信息 */
.product {
    padding: 80px 0;
    width: 100%;
    background-color: #ffffff;
    padding-top:20px;
}

.product .content {
    width: 100%;
}

.product .content .boxlist {
    width: 100%;
}

.product .content .boxlist .list {
    width: 100%;
}

.product .content .boxlist .list .list_content {
    width: 66.6%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3% 4%;
}

.product .content .boxlist .list:nth-child(odd) {
    background-color: #ffffff;
}

.product .content .boxlist .list:nth-child(even) {
    background-color: #f5f8fb;
}

.product .content .boxlist .list:nth-child(odd) .list_content .list_img {
    order: 1;
}

.product .content .boxlist .list:nth-child(odd) .list_content .list_img {
    order: 2;
}

.product .content .boxlist .list:nth-child(even) .list_content .list_txt {
    order: 2;
}

.product .content .boxlist .list:nth-child(even) .list_content .list_txt {
    order: 1;
}

.product .content .boxlist .list .list_content .list_txt {
    width: 48%;
}

.product .content .boxlist .list .list_content .list_txt .theme {
    width: 100%;
    margin-bottom: 30px;
}

.product .content .boxlist .list .list_content .list_txt h1 {
    font-weight: 500;
    margin-bottom: 20px;
}

.product .content .boxlist .list .list_content .list_txt h1 a {
    font-size: 24px;
    line-height: 30px;
    color: #0178fa;
}

.product .content .boxlist .list .list_content .list_txt .info {
    width: 100%;
}

.product .content .boxlist .list .list_content .list_txt .info p {
    font-size: 14px;
    line-height: 30px;
    color: #666666;
}

.product .content .boxlist .list .list_content .list_txt .more {
    width: 140px;
    height: 50px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: transparent;
    border: 1px solid #0178fa;
    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_content .list_txt .more a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #0178fa;
}
.product .content .boxlist .list .list_content .list_txt .more:hover {
    background-color: #0178fa;
}
.product .content .boxlist .list .list_content .list_txt .more:hover a {
    color: #ffffff;
}
.product .content .boxlist .list .list_content .list_img {
    width: 40%;
}

.product .content .boxlist .list .list_content .list_img .img {
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.product .content .boxlist .list .list_content .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_content .list_img .img a img {
    width: 100%;
}

@media (max-width: 1600px) {
    .product .content .boxlist .list .list_content {
        width: 75%;
    }
}

@media (max-width: 1400px) {
    .product .content .boxlist .list .list_content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .product .content .boxlist .list .list_content {
        width: 95%;
    }

    .product .content .boxlist .list .list_content .list_txt .more {
        width: 120px;
        height: 44px;
    }

    .product .content .boxlist .list .list_content .list_txt h1 a {
        font-size: 20px;
    }

    .product .content .boxlist .list .list_content .list_txt .info p {
        font-size: 13px;
        line-height: 24px;
    }
}

@media (max-width: 760px) {
    .product .content .boxlist .list .list_content {
        flex-wrap: wrap;
    }

    .product .content .boxlist .list .list_content .list_txt {
        width: 100%;
    }

    .product .content .boxlist .list .list_content .list_img {
        width: 75%;
        margin: auto;
    }

    .product .content .boxlist .list:nth-child(odd) .list_content .list_img {
        order: 1;
    }

    .product .content .boxlist .list:nth-child(odd) .list_content .list_txt {
        order: 2;
    }
}

@media (max-width: 550px) {
    .product .content .boxlist .list .list_content .list_txt h1 a {
        font-size: 16px;
    }

    .product .content .boxlist .list .list_content .list_txt .info p {
        font-size: 12px;
    }

    .product .content .boxlist .list .list_content .list_txt .more {
        width: 100px;
        height: 36px;
    }

    .product .content .boxlist .list .list_content .list_txt .more a {
        font-size: 12px;
    }

    .product .content .boxlist .list .list_content {
        padding: 0;
        padding-bottom: 30px;
    }

    .product {
        padding: 40px 0 50px;
    }

    .product .content .boxlist .list .list_content .list_txt .theme {
        margin-bottom: 20px;
    }
}

/* 产品详情 */
.product_detail01 {
    width: 100%;
    background-color: #f5f8fb;
}

.product_detail01 .content {
    width: 66.6%;
    margin: 0 auto;
}

.product_detail01 .content .boxlist {
    width: 100%;
}

.product_detail01 .content .boxlist .top {
    padding-top: 12%;
    width: 100%;
}

.product_detail01 .content .boxlist .top .theme {
    width: 100%;
}

.product_detail01 .content .boxlist .top .theme h1 {
    font-size: 30px;
    line-height: 30px;
    color: #0178fa;
    font-weight: 500;
    text-align: center;
}

.product_detail01 .content .boxlist .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.product_detail01 .content .boxlist .bottom .left {
    width: 50%;
}

.product_detail01 .content .boxlist .bottom .left .info {
    width: 100%;
}

.product_detail01 .content .boxlist .bottom .left .info p {
    font-size: 14px;
    line-height: 30px;
    color: #666666;
}

.product_detail01 .content .boxlist .bottom .right {
    width: 38%;
}

.product_detail01 .content .boxlist .bottom .right .img {
    width: 100%;
}

.product_detail01 .content .boxlist .bottom .right .img img {
    width: 100%;
}

@media (max-width: 1600px) {
    .product_detail01 .content {
        width: 75%;
    }
}

@media (max-width: 1400px) {
    .product_detail01 .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .product_detail01 .content {
        width: 95%;
    }

    .product_detail01 .content .boxlist .top .theme h1 {
        font-size: 24px;
    }

    .product_detail01 .content .boxlist .bottom .left .info p {
        font-size: 13px;
        line-height: 24px;
    }
}

@media (max-width: 1000px) {
    .product_detail01 .content .boxlist .bottom {
        padding: 0 3% 2%;
    }
}

@media (max-width: 760px) {
    .product_detail01 .content .boxlist .bottom {
        flex-wrap: wrap;
        padding: 0;
        padding-bottom: 30px;
    }

    .product_detail01 .content .boxlist .bottom .left {
        width: 100%;
        order: 2;
    }

    .product_detail01 .content .boxlist .bottom .right {
        width: 100%;
        order: 1;
    }
}

@media (max-width: 550px) {
    .product_detail01 .content .boxlist .bottom .left .info p {
        font-size: 12px;
    }

    .product_detail01 .content .boxlist .top .theme h1 {
        font-size: 20px;
    }
}

/* 产品优势 */
.product_detail02 {
    width: 100%;
    padding: 60px 0 80px;
    background-color: #ffffff;
}

.product_detail02 .content {
    width: 66.6%;
    margin: 0 auto;
}

.product_detail02 .content .boxlist {
    width: 100%;
}

.product_detail02 .content .boxlist .top {
    width: 100%;
}

.product_detail02 .content .boxlist .top .theme {
    width: 100%;
}

.product_detail02 .content .boxlist .top .theme h1 {
    font-size: 24px;
    line-height: 30px;
    color: #333333;
    font-weight: 500;
    text-align: center;
}

.product_detail02 .content .boxlist .bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product_detail02 .content .boxlist .bottom .list {
    width: 46%;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.product_detail02 .content .boxlist .bottom .list .list_img {
    width: 120px;
    height: 120px;
}

.product_detail02 .content .boxlist .bottom .list .list_img .img {
    width: 100%;
}

.product_detail02 .content .boxlist .bottom .list .list_img .img img {
    width: 100%;
}

.product_detail02 .content .boxlist .bottom .list .list_txt {
    width: calc(100% - 150px);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}

.product_detail02 .content .boxlist .bottom .list .list_txt h1 {
    font-weight: normal;
    font-size: 22px;
    color: #0178fa;
    line-height: 30px;
}

.product_detail02 .content .boxlist .bottom .list .list_txt p {
    font-weight: normal;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
}

@media (max-width: 1600px) {
    .product_detail02 .content {
        width: 75%;
    }
}

@media (max-width: 1400px) {
    .product_detail02 .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .product_detail02 .content {
        width: 95%;
    }

    .product_detail02 .content .boxlist .top .theme h1 {
        font-size: 20px;
    }

    .product_detail02 .content .boxlist .bottom .list .list_txt h1 {
        font-size: 18px;
    }

    .product_detail02 .content .boxlist .bottom .list .list_txt p {
        font-size: 14px;
        line-height: 24px;
    }

    .product_detail02 .content .boxlist .bottom .list {
        margin-top: 40px;
    }

    .product_detail02 .content .boxlist .bottom .list .list_img {
        width: 80px;
        height: 80px;
    }

    .product_detail02 .content .boxlist .bottom .list .list_txt {
        width: calc(100% - 100px);
    }
}

@media (max-width: 760px) {
    .product_detail02 .content .boxlist .bottom .list {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .product_detail02 .content .boxlist .bottom .list .list_txt {
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        margin-top: 10px;
    }

    .product_detail02 .content .boxlist .bottom .list .list_txt h1 {
        margin-bottom: 10px;
    }
}

@media (max-width: 550px) {
    .product_detail02 {
        padding: 40px 0 50px;
    }

    .product_detail02 .content .boxlist .bottom .list {
        margin-top: 20px;
    }

    .product_detail02 .content .boxlist .bottom .list .list_img {
        width: 60px;
        height: 60px;
    }

    .product_detail02 .content .boxlist .bottom .list .list_txt h1 {
        font-size: 14px;
        margin-bottom: 0;
    }

    .product_detail02 .content .boxlist .bottom .list .list_txt p {
        font-size: 12px;
    }

    .product_detail02 .content .boxlist .top .theme h1 {
        font-size: 16px;
    }
}


/* 产品优势 */
.product_detail03 {
    width: 100%;
    padding: 100px 0 180px;
    background-color: #f5f8fb;
}

.product_detail03 .content {
    width: 66.6%;
    margin: 0 auto;
}

.product_detail03 .content .boxlist {
    width: 100%;
}

.product_detail03 .content .boxlist .top {
    width: 100%;
    margin-bottom: 80px;
}

.product_detail03 .content .boxlist .top .theme {
    width: 100%;
}

.product_detail03 .content .boxlist .top .theme h1 {
    font-size: 24px;
    line-height: 30px;
    color: #333333;
    font-weight: 500;
    text-align: center;
}

.product_detail03 .content .boxlist .bottom {
    width: 100%;
}

@media (max-width: 1600px) {
    .product_detail03 .content {
        width: 75%;
    }
}

@media (max-width: 1400px) {
    .product_detail03 .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .product_detail03 .content {
        width: 95%;
    }

    .product_detail03 .content .boxlist .top {
        margin-bottom: 50px;
    }

    .product_detail03 .content .boxlist .top .theme h1 {
        font-size: 20px;
    }

    .product_detail03 {
        padding: 80px 0 120px;
    }
}

@media (max-width: 550px) {
    .product_detail03 {
        padding: 60px 0 80px;
    }

    .product_detail03 .content .boxlist .top {
        margin-bottom: 20px;
    }

    .product_detail03 .content .boxlist .top .theme h1 {
        font-size: 16px;
    }
}

/* 合作伙伴 */
.cooperation {
    width: 100%;
    padding: 80px 0 130px;
    background-color: #ffffff;
}

.cooperation .content {
    width: 66.6%;
    margin: 0 auto;
}

.cooperation .content .boxlist {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}


.cooperation .content .boxlist .list {
    width: 22.2%;
    margin-right: 3.7%;
    margin-bottom: 3.7%;
}

.cooperation .content .boxlist .list:nth-child(4n) {
    margin-right: 0%;
}

.cooperation .content .boxlist .list .list_img {
    width: 100%;
    border: 1px solid #dcdcdc;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.cooperation .content .boxlist .list .list_img .img {
    width: 100%;
    padding-bottom: 57.1%;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.cooperation .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;
}

.cooperation .content .boxlist .list .list_img .img a img {
    height: 70%;
}

.cooperation .content .boxlist .list:hover .list_img {
    border: 1px solid transparent;
    box-shadow: 3px 3px 21px rgba(0, 0, 0, 0.14);
}

@media (max-width: 1600px) {
    .cooperation .content {
        width: 75%;
    }
}

@media (max-width: 1400px) {
    .cooperation .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .cooperation .content {
        width: 95%;
    }

    .cooperation {
        padding: 60px 0 90px;
    }
}

@media (max-width: 760px) {
    .cooperation .content .boxlist {
        justify-content: space-between;
    }

    .cooperation .content .boxlist .list {
        width: 48%;
        margin-right: 0;
    }

    .cooperation {
        padding: 40px 0 60px;
    }
}

/* 联系我们 */
.contact01 {
    width: 100%;
    padding: 120px 0;
    background-color: #ffffff;
}

.contact01 .content {
    width: 66.6%;
    margin: 0 auto;
}

.contact01 .content .boxlist {
    width: 100%;
}

.contact01 .content .boxlist .top {
    width: 100%;
    margin-bottom: 60px;
}

.contact01 .content .boxlist .top .theme {
    width: 100%;
}

.contact01 .content .boxlist .top .theme h1 {
    font-size: 34px;
    color: #444444;
    font-weight: normal;
    line-height: 72px;
    position: relative;
    text-align: center;
}

.contact01 .content .boxlist .top .theme h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 2px;
    background-color: #0178fa;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.contact01 .content .boxlist .bottom {
    width: 100%;
}

.contact01 .content .boxlist .bottom .bottom_top {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}

.contact01 .content .boxlist .bottom .bottom_top .list {
    width: 47.6%;
    padding: 5% 10%;
    box-shadow: 3px 3px 8px rgba(4, 38, 79, 0.14);
    background: linear-gradient(to bottom, #f5f5f5, #ffffff);
}

.contact01 .content .boxlist .bottom .bottom_top .list .list_txt {
    width: 100%;
}

.contact01 .content .boxlist .bottom .bottom_top .list .list_txt .img {
    width: 60px;
    height: 60px;
}

.contact01 .content .boxlist .bottom .bottom_top .list .list_txt .img img {
    width: 100%;
}

.contact01 .content .boxlist .bottom .bottom_top .list .list_txt .theme {
    width: 100%;
    margin-bottom: 20px;
}

.contact01 .content .boxlist .bottom .bottom_top .list .list_txt .theme h1 {
    font-size: 24px;
    line-height: 42px;
    color: #333333;
    font-weight: normal;
    margin-bottom: 10px;
}

.contact01 .content .boxlist .bottom .bottom_top .list .list_txt .theme p {
    font-size: 20px;
    line-height: 42px;
    color: #333333;
    font-weight: lighter;
}

.contact01 .content .boxlist .bottom .bottom_bottom {
    width: 100%;
    position: relative;
}

.contact01 .content .boxlist .bottom .bottom_bottom .gaode {
    width: 100%;
    position: relative;
    padding-bottom: 48.4%;
    overflow: hidden;
}

.contact01 .content .boxlist .bottom .bottom_bottom .info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 160;
}

.contact01 .content .boxlist .bottom .bottom_bottom .info .theme {
    width: 100%;
    padding: 20px 40px;
    background-color: rgba(1, 171, 250, .68);
}

.contact01 .content .boxlist .bottom .bottom_bottom .info .theme h1 {
    font-size: 26px;
    line-height: 30px;
    color: #ffffff;
    font-weight: normal;
    position: relative;
    margin-bottom: 25px;
}

.contact01 .content .boxlist .bottom .bottom_bottom .info .theme h1::after {
    content: "";
    width: 36px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    bottom: -15px;
}

.contact01 .content .boxlist .bottom .bottom_bottom .info .theme p {
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
}

@media (max-width: 1600px) {
    .contact01 .content {
        width: 75%;
    }

    .contact01 .content .boxlist .top .theme h1 {
        font-size: 28px;
    }
}

@media (max-width: 1400px) {
    .contact01 .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .contact01 .content {
        width: 95%;
    }

    .contact01 .content .boxlist .top .theme h1 {
        font-size: 24px;
        line-height: 60px;
    }

    .contact01 .content .boxlist .bottom .bottom_top .list .list_txt .theme h1 {
        font-size: 20px;
        line-height: 30px;
    }

    .contact01 .content .boxlist .bottom .bottom_top .list .list_txt .theme p {
        font-size: 16px;
        line-height: 30px;
    }

    .contact01 {
        padding: 90px 0;
    }

    .contact01 .content .boxlist .bottom .bottom_top .list .list_txt .img {
        width: 50px;
        height: 50px;
    }

    .contact01 .content .boxlist .bottom .bottom_bottom .info .theme h1 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contact01 .content .boxlist .bottom .bottom_bottom .info .theme p {
        font-size: 14px;
    }

    .contact01 .content .boxlist .bottom .bottom_bottom .info .theme {
        padding: 15px 30px;
    }

    .contact01 .content .boxlist .bottom .bottom_bottom .info .theme h1::after {
        bottom: -10px;
    }

    .contact01 .content .boxlist .bottom .bottom_top .list {
        padding: 4% 6%;
    }

    .contact01 .content .boxlist .top {
        margin-bottom: 40px;
    }
}

@media (max-width: 760px) {
    .contact01 .content .boxlist .bottom .bottom_bottom .info {
        position: initial;
    }
}

@media (max-width: 550px) {
    .contact01 .content .boxlist .bottom .bottom_top .list .list_txt .img {
        width: 40px;
        height: 40px;
    }

    .contact01 .content .boxlist .top .theme h1 {
        font-size: 20px;
        line-height: 50px;
    }

    .contact01 .content .boxlist .top .theme h1::after {
        width: 30px;
        height: 1px;
    }

    .contact01 {
        padding: 50px 0;
    }

    .contact01 .content .boxlist .bottom .bottom_top .list .list_txt .theme h1 {
        font-size: 16px;
        margin-bottom: 0;
    }

    .contact01 .content .boxlist .bottom .bottom_top .list .list_txt .theme p {
        font-size: 14px;
        line-height: 24px;
    }

    .contact01 .content .boxlist .bottom .bottom_top {
        margin-bottom: 20px;
    }

    .contact01 .content .boxlist .bottom .bottom_bottom .info .theme h1 {
        font-size: 16px;
    }

    .contact01 .content .boxlist .bottom .bottom_bottom .info .theme p {
        font-size: 12px;
    }

    .contact01 .content .boxlist .bottom .bottom_bottom .info .theme {
        padding: 10px 20px;
    }

    .contact01 .content .boxlist .bottom .bottom_bottom .gaode {
        padding-bottom: 66.6%;
    }

    .contact01 .content .boxlist .top {
        margin-bottom: 30px;
    }
}

/* 在线留言 */
.contact02 {
    width: 100%;
    padding: 60px 0 120px;
    background-color: #f8f8f8;
}

.contact02 .content {
    width: 66.6%;
    margin: 0 auto;
}

.contact02 .content .boxlist {
    width: 100%;
}

.contact02 .content .boxlist .top {
    width: 100%;
    margin-bottom: 60px;
}

.contact02 .content .boxlist .top .theme {
    width: 100%;
}

.contact02 .content .boxlist .top .theme h1 {
    font-size: 34px;
    color: #444444;
    font-weight: normal;
    line-height: 72px;
    position: relative;
    text-align: center;
}

.contact02 .content .boxlist .top .theme h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 2px;
    background-color: #0178fa;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.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;
    border: none;
    outline: none;
    background-color: transparent;
    border: 1px solid #cacaca;
    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;
    border: none;
    margin-bottom: 20px;
    outline: none;
    border: none;
    color: #999999;
    font-size: 14px;
    border: 1px solid #cacaca;
    background-color: transparent;
}

.contact02 .content .boxlist .bottom .message .two textarea::placeholder {
    color: #999999;
    font-size: 14px;
}

.contact02 .content .boxlist .bottom .message .more {
    margin: 0 auto;
    width: 200px;
    height: 48px;
    background-color: #0178fa;
    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 {
        width: 75%;
    }

    .contact02 .content .boxlist .top .theme h1 {
        font-size: 28px;
    }
}

@media (max-width: 1400px) {
    .contact02 .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .contact02 .content {
        width: 95%;
    }

    .contact02 .content .boxlist .top .theme h1 {
        font-size: 24px;
        line-height: 60px;
    }

    .contact02 .content .boxlist .top {
        margin-bottom: 40px;
    }

    .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: 550px) {
    .contact02 .content .boxlist .top .theme h1 {
        font-size: 20px;
        line-height: 50px;
    }

    .contact02 .content .boxlist .top .theme h1::after {
        width: 30px;
        height: 1px;
    }

    .contact02 {
        padding: 30px 0 60px;
    }

    .contact02 .content .boxlist .top {
        margin-bottom: 30px;
    }

    .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;
    }
}

/* 公司简介 */
.about01 {
    width: 100%;
    background-color: #ffffff;
    padding-top: 100px;
}

.about01 .content {
    width: 66.6%;
    margin: 0 auto;
}

.about01 .content .boxlist {
    width: 100%;
}

.about01 .content .boxlist .top {
    width: 100%;
    margin-bottom: 10px;
}

.about01 .content .boxlist .top .theme {
    width: 100%;
}

.about01 .content .boxlist .top .theme h1 {
    font-size: 34px;
    color: #444444;
    font-weight: normal;
    line-height: 72px;
    position: relative;
    padding-bottom: 5px;
}

.about01 .content .boxlist .top .theme h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 60px;
    height: 2px;
    background-color: #0178fa;
}

.about01 .content .boxlist .bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.about01 .content .boxlist .bottom .left {
    width: 46.8%;
    padding-top: 20px;
}

.about01 .content .boxlist .bottom .left .info {
    width: 100%;
}

.about01 .content .boxlist .bottom .left .info p {
    font-size: 16px;
    line-height: 42px;
    color: #666666;
    font-weight: lighter;
}

.about01 .content .boxlist .bottom .right {
    width: 44.5%;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.about01 .content .boxlist .bottom .right .img {
    width: 94.7%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    overflow: hidden;
}

.about01 .content .boxlist .bottom .right .img img {
    width: 100%;
    cursor: pointer;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.about01 .content .boxlist .bottom .right .img:hover 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);
}

.about01 .content .boxlist .bottom .right .mask {
    width: 87.7%;
    padding-bottom: 73.6%;
    background: linear-gradient(to bottom, #006fe9, #1fadee);
}


@media (max-width: 1600px) {
    .about01 .content {
        width: 75%;
    }

    .about01 .content .boxlist .top .theme h1 {
        font-size: 28px;
    }
}

@media (max-width: 1400px) {
    .about01 .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .about01 .content {
        width: 95%;
    }

    .about01 .content .boxlist .top .theme h1 {
        font-size: 24px;
        line-height: 60px;
    }

    .about01 .content .boxlist .bottom .left .info p {
        font-size: 14px;
        line-height: 30px;
    }

    .about01 {
        padding-top: 70px;
    }
}

@media (max-width: 760px) {
    .about01 .content .boxlist .bottom {
        flex-wrap: wrap;
    }

    .about01 .content .boxlist .bottom .left {
        width: 100%;
        margin-bottom: 40px;
    }

    .about01 .content .boxlist .bottom .right {
        width: 100%;
    }
}

@media (max-width: 550px) {
    .about01 .content .boxlist .top .theme h1 {
        font-size: 20px;
        line-height: 50px;
    }

    .about01 .content .boxlist .top .theme h1::after {
        width: 30px;
        height: 1px;
    }

    .about01 {
        padding-top: 40px;
    }

    .about01 .content .boxlist .bottom .left .info p {
        font-size: 12px;
        line-height: 24px;
    }

    .about01 .content .boxlist .bottom .left {
        margin-bottom: 30px;
        padding-top: 10px;
    }
}

/* 公司文化 */
.about02 {
    width: 100%;
    padding: 120px 0 240px;
    background: url(../images/about02_background.jpg) no-repeat center bottom;
    background-size: 100%;
}

.about02 .content {
    width: 66.6%;
    margin: 0 auto;
}

.about02 .content .boxlist {
    width: 100%;
}

.about02 .content .boxlist .top {
    width: 100%;
    margin-bottom: 60px;
}

.about02 .content .boxlist .top .theme {
    width: 100%;
}

.about02 .content .boxlist .top .theme h1 {
    font-size: 34px;
    color: #444444;
    font-weight: normal;
    line-height: 72px;
    position: relative;
    text-align: center;
}

.about02 .content .boxlist .top .theme h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 2px;
    background-color: #0178fa;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.about02 .content .boxlist .bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.about02 .content .boxlist .bottom .list {
    width: 24.2%;
    background-color: #ffffff;
    box-shadow: 3px 3px 8px rgba(9, 44, 83, 0.09);
    padding: 5% 2.5%;
}

.about02 .content .boxlist .bottom .list .list_txt {
    width: 100%;
}

.about02 .content .boxlist .bottom .list .list_txt .img {
    margin: 0 auto;
    width: 72px;
    height: 72px;
    margin-bottom: 30px;
}

.about02 .content .boxlist .bottom .list .list_txt .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;
}
.about02 .content .boxlist .bottom .list:hover .list_txt .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);
}
.about02 .content .boxlist .bottom .list .list_txt .theme {
    width: 100%;
}

.about02 .content .boxlist .bottom .list .list_txt .theme h1 {
    font-size: 24px;
    line-height: 36px;
    color: #0178fa;
    font-weight: normal;
    text-align: center;
    margin-bottom: 20px;
}

.about02 .content .boxlist .bottom .list .list_txt .theme .info {
    width: 100%;
}

.about02 .content .boxlist .bottom .list .list_txt .theme .info p {
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    font-weight: lighter;
    text-align: center;
}

@media (max-width: 1600px) {
    .about02 .content {
        width: 75%;
    }

    .about02 .content .boxlist .top .theme h1 {
        font-size: 28px;
    }
}

@media (max-width: 1400px) {
    .about02 .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .about02 .content {
        width: 95%;
    }

    .about02 .content .boxlist .top .theme h1 {
        font-size: 24px;
        line-height: 60px;
    }

    .about02 .content .boxlist .top {
        margin-bottom: 40px;
    }

    .about02 {
        padding: 80px 0 160px;
    }

    .about02 .content .boxlist .bottom .list .list_txt .img {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
    }

    .about02 .content .boxlist .bottom .list .list_txt .theme h1 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .about02 .content .boxlist .bottom .list .list_txt .theme .info p {
        font-size: 13px;
    }
}

@media (max-width: 760px) {
    .about02 .content .boxlist .bottom {
        flex-wrap: wrap;
    }

    .about02 .content .boxlist .bottom .list {
        width: 48%;
        margin-bottom: 4%;
    }
}

@media (max-width: 550px) {
    .about02 .content .boxlist .top .theme h1 {
        font-size: 20px;
        line-height: 50px;
    }

    .about02 .content .boxlist .top .theme h1::after {
        width: 30px;
        height: 1px;
    }

    .about02 {
        padding: 50px 0 80px;
        background-size: 200%;
    }

    .about02 .content .boxlist .top {
        margin-bottom: 30px;
    }

    .about02 .content .boxlist .bottom .list .list_txt .theme h1 {
        font-size: 16px;
        line-height: 24px;
    }

    .about02 .content .boxlist .bottom .list .list_txt .theme .info p {
        font-size: 12px;
    }

    .about02 .content .boxlist .bottom .list .list_txt .img {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }
}

/* 发展历程 */
.about03 {
    width: 100%;
    padding-top: 100px;
    background: #ffffff url(../images/about03_background.jpg) no-repeat;
    background-size: 100%;
    padding-bottom:80px;
}

.about03 .content {
    width: 66.6%;
    margin: 0 auto;
}

.about03 .content .boxlist {
    width: 100%;
}

.about03 .content .boxlist .top {
    width: 100%;
    margin-bottom: 60px;
}

.about03 .content .boxlist .top .theme {
    width: 100%;
}

.about03 .content .boxlist .top .theme h1 {
    font-size: 34px;
    color: #444444;
    font-weight: normal;
    line-height: 72px;
    position: relative;
    text-align: center;
}

.about03 .content .boxlist .top .theme h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 2px;
    background-color: #0178fa;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.about03 .content .boxlist .bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.about03 .content .boxlist .bottom .left {
    width: 50%;
}

.about03 .content .boxlist .bottom .left .list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8.5%;
    border: 1px solid #d2d2d2;
    background-color: #ffffff;
}

.about03 .content .boxlist .bottom .left .list .list_img {
    width: 80px;
}

.about03 .content .boxlist .bottom .left .list .list_img .img {
    width: 100%;
}

.about03 .content .boxlist .bottom .left .list .list_img .img img {
    width: 100%;
}

.about03 .content .boxlist .bottom .left .list .list_txt {
    width: calc(100% - 120px);
}

.about03 .content .boxlist .bottom .left .list .list_txt h1 {
    font-size: 24px;
    line-height: 72px;
    color: #000000;
    font-weight: bold;
}

.about03 .content .boxlist .bottom .left .list .list_txt p {
    font-size: 16px;
    line-height: 24px;
    color: #666666;
}

.about03 .content .boxlist .bottom .right {
    width: 50%;
}

.about03 .content .boxlist .bottom .right .img {
    width: 100%;
    overflow: hidden;
}

.about03 .content .boxlist .bottom .right .img img {
    width: 100%;
    cursor: pointer;
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear;
}

.about03 .content .boxlist .bottom .right .img:hover 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);
}

@media (max-width: 1600px) {
    .about03 .content {
        width: 75%;
    }

    .about03 .content .boxlist .top .theme h1 {
        font-size: 28px;
    }
}

@media (max-width: 1400px) {
    .about03 .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .about03 .content {
        width: 95%;
    }

    .about03 .content .boxlist .top .theme h1 {
        font-size: 24px;
        line-height: 60px;
    }

    .about03 .content .boxlist .top {
        margin-bottom: 40px;
    }

    .about03 .content .boxlist .bottom .left .list .list_txt h1 {
        font-size: 20px;
        line-height: 50px;
    }

    .about03 .content .boxlist .bottom .left .list .list_img {
        width: 60px;
    }

    .about03 .content .boxlist .bottom .left .list .list_txt {
        width: calc(100% - 80px);
    }

    .about03 .content .boxlist .bottom .left .list {
        padding: 6%;
    }

    .about03 .content .boxlist .bottom .left .list .list_txt p {
        font-size: 14px;
    }

    .about03 {
        padding-top: 60px;
    }
}

@media (max-width: 760px) {
    .about03 .content .boxlist .bottom {
        flex-wrap: wrap;
    }

    .about03 .content .boxlist .bottom .left {
        width: 100%;
    }

    .about03 .content .boxlist .bottom .right {
        width: 100%;
    }
}

@media (max-width: 550px) {
    .about03 .content .boxlist .top .theme h1 {
        font-size: 20px;
        line-height: 50px;
    }

    .about03 .content .boxlist .top .theme h1::after {
        width: 30px;
        height: 1px;
    }

    .about03 {
        padding: 30px 0 20px;
    }

    .about03 .content .boxlist .top {
        margin-bottom: 30px;
    }

    .about03 .content .boxlist .bottom .left .list .list_img {
        width: 40px;
    }

    .about03 .content .boxlist .bottom .left .list .list_txt h1 {
        font-size: 16px;
        line-height: 30px;
    }

    .about03 .content .boxlist .bottom .left .list .list_txt p {
        font-size: 12px;
    }

    .about03 .content .boxlist .bottom .left .list .list_txt {
        width: calc(100% - 60px);
    }

    .about03 .content .boxlist .bottom .left .list {
        padding: 4%;
    }
}

/* 荣誉奖项 */
.about04 {
    width: 100%;
    padding: 120px 0 140px;
    background-color: #F8FCFD;
}

.about04 .content {
    width: 66.6%;
    margin: 0 auto;
}

.about04 .content .boxlist {
    width: 100%;
}

.about04 .content .boxlist .top {
    width: 100%;
    margin-bottom: 60px;
}

.about04 .content .boxlist .top .theme {
    width: 100%;
}

.about04 .content .boxlist .top .theme h1 {
    font-size: 34px;
    color: #444444;
    font-weight: normal;
    line-height: 72px;
    position: relative;
    text-align: center;
}

.about04 .content .boxlist .top .theme h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 2px;
    background-color: #0178fa;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.about04 .content .boxlist .bottom {
    width: 100%;
}

.about04 .content .boxlist .bottom .swiper {
    width: 100%;
    padding-bottom: 60px;
}

.about04 .content .boxlist .bottom .swiper .swiper-wrapper {
    width: 100%;
}

.about04 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
}

.about04 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list {
    width: 100%;
}

.about04 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list a {
    width: 100%;
    display: block;
}

.about04 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list a .list_img {
    width: 100%;
    padding-bottom: 142.8%;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #bfbfbf;
}

.about04 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list a .list_img .img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about04 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .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;
}

.about04 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .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);
}

.about04 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list a .list_txt {
    width: 100%;
    background-color: #0178fa;
}

.about04 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list a .list_txt h1 {
    font-size: 16px;
    color: #ffffff;
    line-height: 60px;
    font-weight: normal;
    padding: 0 10px;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.about04 .content .boxlist .bottom .swiper .swiper-button-next {
    display: none;
}

.about04 .content .boxlist .bottom .swiper .swiper-button-prev {
    display: none;
}

.about04 .content .boxlist .bottom .swiper .swiper-pagination {
    bottom: 0px;
}

.about04 .content .boxlist .bottom .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 1;
    background-color: #b5b5b5;
}

.about04 .content .boxlist .bottom .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0178fa;
}

@media (max-width: 1600px) {
    .about04 .content {
        width: 75%;
    }

    .about04 .content .boxlist .top .theme h1 {
        font-size: 28px;
    }
}

@media (max-width: 1400px) {
    .about04 .content {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .about04 .content {
        width: 95%;
    }

    .about04 .content .boxlist .top .theme h1 {
        font-size: 24px;
        line-height: 60px;
    }

    .about04 .content .boxlist .top {
        margin-bottom: 40px;
    }

    .about04 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list a .list_txt h1 {
        font-size: 14px;
        line-height: 45px;
    }

    .about04 {
        padding: 50px 0 90px;
    }
}

@media (max-width: 550px) {
    .about04 .content .boxlist .top .theme h1 {
        font-size: 20px;
        line-height: 50px;
    }

    .about04 .content .boxlist .top .theme h1::after {
        width: 30px;
        height: 1px;
    }

    .about04 {
        padding: 20px 0 60px;
    }

    .about04 .content .boxlist .top {
        margin-bottom: 30px;
    }

    .about04 .content .boxlist .bottom .swiper .swiper-wrapper .swiper-slide .list a .list_txt h1 {
        font-size: 12px;
        line-height: 40px;
    }

    .about04 .content .boxlist .bottom .swiper {
        padding-bottom: 30px;
    }
}

/* 新闻资讯 */
.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;
    }
}

/* 新闻详情 */
.news_detail {
    width: 100%;
    background-color: #fff;
    padding: 70px 0 140px;
}

.news_detail .content {
    width: 66.6%;
    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: 1600px) {
    .news_detail .content {
        width: 75%;
    }
}

@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;
    }
}

@media (max-width:760px) {
    .news_detail {
        padding: 40px 0 60px;
    }

    .news_detail .content .news_detail_other ul li {
        padding: 10px 3%;
    }

    .news_detail .content .news_detail_other ul li {
        font-size: 12px;
    }
}

/* 单页内容 */
.info_main{
    padding: 80px 0 140px;
}
.info_main .content{
    width: 66.6%;
    margin: 0 auto;
}
.info_main .content .info_edit{
    width: 100%;
}
.info_main .content .info_edit img{
    max-width: 100%;
}
@media (max-width:1600px){
    .info_main .content{
        width: 75%;
    }
}
@media (max-width:1600px){
    .info_main .content{
        width: 75%;
    }
}
@media (max-width:1400px){
    .info_main .content{
        width: 85%;
    }
}
@media (max-width:1200px){
    .info_main .content{
        width: 95%;
    }
    .info_main{
        padding: 60px 0 80px;
    }
}

/* 核心产品详情 */
.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;
    }
}


/* 二级导航 */
.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;
    display:none;
}

.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;
    }
}


/* 核心产品 */
.product {
    width: 100%;
   
}

.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:100%;

    margin-top: 0;
    padding-top: 2%;
}

.product .content .boxlist .right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 3% 0 0 0%;
  
}

.product .content .boxlist .list {
    width: 17%;
    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(5n) {
    margin-right: 0;
}

.product .content .boxlist .list:hover {
    box-shadow: none;
    background-color: #dbe9f6;
}

.product .content .boxlist .list .list_img {
    width: 100%;
    padding:4%;
}

.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: 20px;
}

.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;
    }
}
