﻿/* 面包屑导航 */
.crumbs{
    margin-top: -70px;
    margin-bottom: 40px;
}
.crumbs ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.crumbs ul::before{
    content: '';
    width: 26px;
    height: 30px;
    background: url(../images/crumbs_icon01.png) no-repeat;
    background-size: cover;
}
.crumbs ul li a{
    text-transform: uppercase;
    color: #ffffff;
    display: inline-block;
    padding: 0 20px;
    font-size: 16px;
    position: relative;
}
.crumbs ul li a::after{
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    width: 0px;
    height: 0px;
    border-width: 8px;
    border-style: solid;
    border-color:  transparent transparent transparent #ffffff;
    transform: translateY(-50%);
}
.crumbs ul li:last-child a::after{
    display: none;
}
p > img{
    max-width:100%;
}
@media (max-width: 760px){
    .crumbs ul li a{
        font-size: 14px;
    }
    .crumbs{
        margin-top: 0px;
        margin-bottom: 0px;
        background: linear-gradient(135deg,rgba(255,255,0,1) -30%,rgba(2,145,223,1));
    }
    .crumbs ul li a{
        padding: 10px 20px;
    }
    .crumbs ul li a::after{
        right: -8px;
        border-width: 6px;
    }
}
@media (max-width: 550px){
    .crumbs ul li a{
        font-size: 12px;
    }
}

/* banner */
.banner{
    width: 100%;
}
.banner > a{
    width: 100%;
    display: block;
    overflow: hidden;
}
.banner > a > img{
    overflow: hidden;
    width: 100%;
}
@media (max-width:1200px){
    .inside_pages{
        margin-top: 80px;
    }
}
@media (max-width: 760px){
    .banner > a > img{
        width: 250%;
        margin-left: -76%;
    }
}

/* 产品中心 */
.common_content{
    padding: 100px 0 160px;
}
.common_content .content{
    width: 83.3%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.common_content .content .navigation{
    width: 22.5%;
}
.common_content .content .navigation .navigation_title h3{
    font-size: 30px;
    color: #fefefe;
    background: linear-gradient(135deg,rgba(255,255,0,1) -30%,rgba(2,145,223,1));
    padding: 12% 10%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.common_content .content .navigation ul > li{
    padding: 6% 10%;
    background: #cccccc;
    border-bottom: 1px solid #ffffff;
    position: relative;
}
.common_content .content .navigation ul > li a{
    color: #fefefe;
    font-size: 18px;
    padding-left: 20px;
    position: relative;
}
.common_content .content .navigation ul > li > a::after{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border: 1px solid #fefefe;
    border-radius: 100%;
    transform: translateY(-50%);
}
.common_content .content .navigation ul > li ol{
    display: none;
    margin-top:10px;
}
.common_content .content .navigation ul > .active > ol{
            display: block;
        }
.common_content .content .navigation ul > li > .an{
            position: absolute;
            right: 20px;
            top: 19px;
            width: 20px;
            height: 20px;
            line-height: 20px;
            text-align: center;
            display: block;
            font-size: 18px;
	    font-weight: bold;
            color: #ffffff;
        }
        .common_content .content .navigation ul > li > .an_01{
            position: absolute;
            right: 20px;
            top: 19px;
            width: 20px;
            height: 20px;
            line-height: 20px;
            text-align: center;
            display: block;
            font-size: 18px;
	    font-weight: bold;
            color: #ffffff;
        }
	.common_content .content .navigation ul > li > ol > li > a{
            display: block;
            color: #fefefe;
            font-size: 18px;
            margin-left: 30px;
            position: relative;
            padding: 6% 10%;
        }
	.common_content .content .navigation ul > li > ol > .active1 > a::after{
            background: #fefefe;
        }
        .common_content .content .navigation ul > li > ol > li > a::after{
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: 8px;
            height: 8px;
            border: 1px solid #fefefe;
            /*background: #fefefe;*/
            border-radius: 100%;
            transform: translateY(-50%);
        }
.common_content .content .navigation ul > .active > a::after{
    background: #fefefe;
}
.common_content .content .navigation ul > .active{
    background: #999999;
    transition: all .5s linear; 
}
.common_content .content .product{
    width: 73.75%;
}
.common_content .content .product .boxlist{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.common_content .content .product .boxlist .list{
    width: 42.4%;
    padding: 3%;
    background: #f3f3f3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all .5s linear;
    margin-bottom: 40px;
}
.common_content .content .product .boxlist .list::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #13adeb;
    transition: all .5s linear;
    opacity:0;
}
.common_content .content .product .boxlist .list .list_img{
    width: 35.6%;
}
.common_content .content .product .boxlist .list .list_img .img{
    position: relative;
    padding-bottom: 100%;
}
.common_content .content .product .boxlist .list .list_img .img a{
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.common_content .content .product .boxlist .list .list_img .img a img{
    width: 100%;
    transition: all .5s linear;
}
.common_content .content .product .boxlist .list .list_img:hover .img a img{
    transform: scale(1.1);
}
.common_content .content .product .boxlist .list .list_txt{
    width: 59.4%;
    height: 100%;
}
.common_content .content .product .boxlist .list .list_txt h3{
    margin-bottom: 6%;
}
.common_content .content .product .boxlist .list .list_txt h3 a{
    color: #666666;
    font-size: 18px;
    font-weight: normal;
    text-transform: capitalize;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.common_content .content .product .boxlist .list .list_txt ul{
    margin-bottom: 2%;
}
.common_content .content .product .boxlist .list .list_txt ul li{
    color: #666666;
    font-size: 14px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.common_content .content .product .boxlist .list .list_txt .more{
    text-align: right;
}
.common_content .content .product .boxlist .list .list_txt .more a{
    display: inline-block;
    text-align: center;
    width: 86px;
    height: 32px;
    line-height: 32px;
    background: #999999;
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all .5s linear;
}
.common_content .content .product .boxlist .list:hover .list_txt .more a{
    background: #13adeb;
}
.common_content .content .product .boxlist .list:hover::after{
    width: 100%;
    opacity:1;
}
.common_content .content .product .boxlist .list:hover{
    box-shadow: 3px 6px 13px rgba(0,0,0,.16);
    background: #ffffff;
}
.common_content .content .product .boxlist .list:hover .list_txt h3 a{
    color: #13adeb;
}
@media (max-width:1600px){
    .common_content .content .product .boxlist .list .list_txt h3 a{
        font-size: 16px;
    }
    .common_content .content .product .boxlist .list .list_txt ul li{
        font-size: 13px;
    }
    .common_content .content .product .boxlist .list .list_txt h3{
        margin-bottom: 4%;
    }
    .common_content .content .product .boxlist .list .list_txt .more a {
        width: 70px;
        height: 28px;
        line-height: 28px;
    }
    .common_content .content .navigation ul > li a{
        font-size: 14px;
    }
    .common_content .content .navigation .navigation_title h3{
        font-size: 24px;
    }    
}
@media (max-width:1600px){
            .common_content .content .navigation ul > li > .an{
                top: 14px;
            }
            .common_content .content .navigation ul > li > .an_01{
                top: 14px;
            }
        }
        @media (max-width:1200px){
            .common_content .content .navigation ul > li > .an{
                top: 19px;
            }
            .common_content .content .navigation ul > li > .an_01{
                top: 19px;
            }
        }
        @media (max-width:1000px){
            .common_content .content .navigation ul > li > .an{
                top: 14px;
            }
            .common_content .content .navigation ul > li > .an_01{
                top: 14px;
            }
        }
@media (max-width:1400px){
    .common_content .content{
        width: 95%;
    }   
}
@media (max-width:1200px){
    .common_content .content .product .boxlist{
        flex-wrap: wrap;
    }
    .common_content .content .product .boxlist .list{
        width: 80%;
        margin: 0 auto;
        margin-bottom: 40px;
    }
    .common_content .content .product .boxlist .list .list_txt h3 a{
    }
    .common_content .content .product .boxlist .list .list_txt ul li{
    }
    .common_content .content .product .boxlist .list .list_txt h3{
        margin-bottom: 8%;
    }
    .common_content .content .product .boxlist .list .list_txt ul{
        margin-bottom: 5%;
    }
    .common_content .content .navigation{
        width: 35%;
    }
    .common_content .content .product{
        width: 60%;
    }
}
@media (max-width:900px){
    .common_content .content .product .boxlist .list{
        width: 100%;
    }
}
@media (max-width:760px){
    .common_content .content{
        flex-wrap: wrap;
    }
    .common_content .content .navigation {
        width: 100%;
        margin-bottom: 40px;
    }
    .common_content .content .navigation .navigation_title h3{
        padding: 5% 8%;
    }
    .common_content .content .navigation ul > li{
        padding: 3% 8%;
    }
    .common_content .content .product{
        width: 100%;
    }
.common_content .content .navigation ul > li > ol > li > a{
padding: 3% 8%;
}
}
@media (max-width:550px){
    .common_content{
        padding: 60px 0 100px;
    }
    .common_content .content .product .boxlist .list .list_txt h3 a{
        font-size: 14px;
    }
    .common_content .content .product .boxlist .list .list_txt h3{
        margin-bottom: 4%;
    }
    .common_content .content .product .boxlist .list .list_txt ul li{
        font-size: 12px;
    }
    .common_content .content .product .boxlist .list .list_txt ul{
        margin-bottom: 2%;
    }
    .common_content .content .product .boxlist .list{
        margin-bottom: 20px;
    }
.common_content .content .navigation ul > li > .an {
    top: 10px;
}
.common_content .content .navigation ul > li > .an_01 {
    top: 10px;
}
.common_content .content .navigation ul > li > ol > li > a{
font-size: 14px;

}

}


/* 产品详情 */
.common_content .content .product_detail{
    width: 73.75%;
}
.common_content .content .product_detail .prod-top-container{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.common_content .content .product_detail .prod-top-container .prod-top-left{
    width: 45%;
}
.common_content .content .product_detail .prod-top-container .prod-top-left .slider-pro{
    width: 79.2% !important;
    max-width: 100% !important;
}

.common_content .content .product_detail .prod-top-container .left .slider-pro .sp-slides .sp-slide{
    width: 100%;
}
.product_detail .sp-thumbnails .sp-thumbnail .sp-thumbnail-image-container .sp-thumbnail-image{
    width: 100%;
}
@media (max-width:1600px){
    .common_content .content .product_detail .prod-top-container .prod-top-left{
        width: 36.2%;
    }
    #product_detail{
        width: 100% !important;
    }
    .sp-slides-container{
        width: 100% !important;
    }
    .sp-mask{
        width: 100% !important;
        height: 100% !important;
        padding-bottom: 100%;
	overflow: hidden;
    }
    .sp-slides{
        width: 100% !important;
        height: 100% !important;
        position: relative;
    }
    .sp-slide{
        position: absolute;
        top: 0;
        left: 0;
    }
    .sp-image-container{
        width: 100% !important;
        height: 100% !important;
    }
    .sp-image-container img{
        width: 100%;
    	margin-left: 0px !important;
    }
    .sp-thumbnail-container{
        margin-top: 2% !important;
    }
}
.common_content .content .product_detail .prod-top-container .prod-top-right{
    width: 55%;
    padding: 0 6%;
}
.common_content .content .product_detail .prod-top-container .prod-top-right h1{
    font-size: 30px;
    color: #010101;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: -1.7px;
}
.common_content .content .product_detail .prod-top-container .prod-top-right p{
    font-size: 16px;
    color: #999999;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.common_content .content .product_detail .prod-top-container .prod-top-right ul{
    margin-bottom: 40px;
}
.common_content .content .product_detail .prod-top-container .prod-top-right ul li{
    font-size: 16px;
    color: #000000;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.common_content .content .product_detail .prod-top-container .prod-top-right .more a{
    width: 180px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #363636;
    transition: all .5s linear;
    padding: 0 10px;
}
.common_content .content .product_detail .prod-top-container .prod-top-right .more a:hover{
    background: linear-gradient(135deg,rgba(255,255,0,.89) -20%,rgba(32,89,160,.89));
    box-shadow: 10px 10px 8px rgb(3 25 49 / 50%);
}
.common_content .content .product_detail .prod-top-container .prod-top-right .more a span{
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    margin-left: 10px;
}
@media (max-width:1800px){
    .common_content .content .product_detail .prod-top-container .prod-top-right h1{
        font-size: 24px;
        letter-spacing: 0px;
    }
}
@media (max-width:1201px){
    .common_content .content .product_detail .prod-top-container{
        flex-wrap: wrap;
    }
    .common_content .content .product_detail .prod-top-container .prod-top-left{
        width: 100%;
        margin-bottom: 40px;
    }
    .common_content .content .product_detail .prod-top-container .prod-top-right{
        width: 100%;
        padding: 0;
    }
    .common_content .content .product_detail{
        width: 60%;
    }
}
@media (max-width:760px){
    .common_content .content .product_detail{
        width: 100%;
    }
}
@media (max-width:550px){
    .common_content .content .product_detail .prod-top-container .prod-top-right h1{
        font-size: 18px;
    }
    .common_content .content .product_detail .prod-top-container .prod-top-right p{
        font-size: 14px;
    }
    .common_content .content .product_detail .prod-top-container .prod-top-right ul li{
        font-size: 14px;
    }
    .common_content .content .product_detail .prod-top-container .prod-top-right .more a span{
        font-size: 12px;
    }
}

.common_content .content .product_detail .prod-bottom-container{
    width: 100%;
    border: 1px solid #d2d2d2;
}
.common_content .content .product_detail .prod-bottom-container .tab .hd ul{
    display: flex;
    border-bottom: 1px solid #d2d2d2;
    background: #eaedf0;
}
.common_content .content .product_detail .prod-bottom-container .tab .hd ul li{
    font-size: 18px;
    border-right: 1px solid #d2d2d2;
    width: 220px;
    height: 48px;
    line-height: 48px;
    position: relative;
    color: #999999;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}
.common_content .content .product_detail .prod-bottom-container .tab .hd ul li::after{
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ffffff;
    opacity: 0;
}
.common_content .content .product_detail .prod-bottom-container .tab .hd ul .on::after{
    opacity: 1;
}
.common_content .content .product_detail .prod-bottom-container .tab .hd ul .on{
    background: #ffffff;
    color:#000000;
}
.common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist{
    padding: 4% 2% 6%;
}
.common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list{
    margin-bottom: 40px;
}
.common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list .right_main{
    overflow: hidden;
    /*overflow-x: scroll;*/
    padding: 2%;
    padding-bottom: 5%;
    background: #f4f4f4;
    word-break: break-all;
}
.common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list h3{
    width: 100%;
    height: 46px;
    background: #dbdbdb;
    position: relative;
    overflow: hidden;
}
.common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list h3::after{
    content: "";
    position: absolute;
    left: -13px;
    top: 0;
    width: 260px;
    height: 100%;
    background: #363636;
    transform: skewX(30deg) !important;
}
.common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list h3::before{
    content: "";
    position: absolute;
    left: 8px;
    bottom: 0;
    width: 260px;
    height: 55%;
    background: #b7b5b5;
    transform: skewX(-30deg) !important;
}
.common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list h3 span{
    display: inline-block;
    color: #ffffff;
    line-height: 46px;
    padding-left: 2%;
    font-size: 18px;
    z-index: 2;
    position: relative;
}

.common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list p{
    font-size: 16px;
    background: #f4f4f4;
    color: #000000;
    line-height: 36px;
    word-break: break-all;
}
.common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .img{
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}
.common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .img img{
    text-align: center;
    max-width: 100%;
}
.common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .more{
    padding: 2%;
    border-top: 1px dashed #bfbfbf;
    border-bottom: 1px dashed #bfbfbf;
    margin-bottom: 40px;
}
.common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .more p{
    line-height: 24px;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
}
.common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .more p a{
    color: #15addf;
    font-weight: normal;
}
@media (max-width:1200px){
    .common_content .content .product_detail .prod-bottom-container .tab .hd ul li {
        font-size: 16px;
        width: 180px;
        height: 40px;
        line-height: 40px;
    }
    .common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list h3 span{
        font-size: 16px;
    }
    .common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list h3::after{
        width: 220px;
    }
    .common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list h3::before{
        width: 220px;
    }
    .common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list p{
        font-size: 14px;
    }
    .common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .more p{
        font-size: 14px;
    }
}
@media (max-width:550px){
    .common_content .content .product_detail .prod-bottom-container .tab .hd ul li {
        font-size: 12px;
        width: 140px;
        height: 34px;
        line-height: 34px;
    }
    .common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list h3 span{
        font-size: 14px;
        line-height: 36px;
    }
    .common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list h3::after{
        width: 180px;
    }
    .common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list h3::before{
        width: 180px;
        left: 4px;
    }
    .common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list h3{
        height: 36px;
    }
    .common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .list p {
        font-size: 12px;
        line-height: 26px;
    }
    .common_content .content .product_detail .prod-bottom-container .tab .bd ul .boxlist .more p {
        font-size: 12px;
    }
}

/* 关于我们 */
.about{
}
.about .content{
    width: 83.3%;
    margin: 0 auto;
}
.about .content .top{
    margin-bottom: 100px;
    box-shadow: 12px 10px 24px rgb(3 25 49 / .18);
    position: relative;
}
.about .content .top ul{
    margin-top: -30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 5% 0;
}
.about .content .top ul li{
    width: 14%;
    margin-right: 7.5%;
}
.about .content .top ul li:last-child{
    margin-right: 0%;
}
.about .content .top ul li h3{
    border-bottom: 1px solid #d2d2d2;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.about .content .top ul li h3 span{
    color: #999999;
    font-size: 16px;
    margin-left: 10px;
}
.about .content .top ul li p{
    color: #999999;
    font-size: 16px;
}
.about .content .top ul li p span{
    font-size: 48px;
    color: #000000;
    margin-right: 10px;
}
.about .content .center{
    display: flex;
    justify-content: space-between;
    padding: 0 3%;
    margin-bottom: 80px;
}
.about .content .center .theme{
    width: 40%;
    position: relative;
    margin-top: 15px;
}
.about .content .center .clear{
    display:none;
}
.about .content .center .theme h1{
    font-size: 20px;
    line-height: 34px;
    font-weight: normal;
    color: #000000;
}
.about .content .center .theme p{
    font-size: 18px;
    line-height: 34px;
    color: #999999;
    position: relative;
    text-transform: capitalize;
    margin-top: 14px;

}
.about .content .center .theme p::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg,rgba(255,255,0,.89) -30%,rgba(2,145,223,.89));
}
.about .content .center .info{
    width: 55%;
    font-size: 14px;
    line-height: 32px;
    color: #999999;
    text-transform: capitalize;
}
.about .content .bottom{
    margin-bottom: 160px;
}
.about .content .bottom .boxlist{
    display: flex;
    justify-content: space-between;
}
.about .content .bottom .boxlist .list{
    width: 31.25%;
    overflow: hidden;
}
.about .content .bottom .boxlist .list .img{
    width: 100%;
    position: relative;
    padding-bottom: 104%;
}
.about .content .bottom .boxlist .list .img a{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}
.about .content .bottom .boxlist .list .img a img{
    width: 100%;
    transition: all .5s linear;
}
.about .content .bottom .boxlist .list:hover .img a img{
    transform: scale(1.1);
}
@media (max-width:1400px){
    .about .content .top ul li{
        width: 16%;
    }
}
@media (max-width:1200px){
    .about .content .top ul li h3 span{
        font-size: 14px;
    }
    .about .content .top ul li h3 {
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    .about .content .top ul li p span{
        font-size: 38px;
    }
    .about .content{
        width: 95%;
    }
    .about .content .center{
        flex-wrap: wrap;
        padding: 0;
    }
    .about .content .center .theme{
        width: 100%;
        margin-bottom: 40px;
    }
    .about .content .center .info{
        width: 100%;
    }
    .about .content .center .theme p::after{
        bottom: -20px;
    }
    .about .content .top{
        margin-bottom: 60px;
    }
    .about .content .center .theme p{
        font-size: 16px;
    }
    .about .content .center .theme h1 {
        font-size: 18px;
    }
}
@media (max-width:1000px){
    .about .content .top ul li h3 img{
        width: 26px;
        height: 26px;
    }
    .about .content .top ul li p span{
        font-size: 30px;
    }
    .about .content .top ul li{
        margin-right: 5%;
    }
    .about .content .top ul li {
        width: 18%;
    }
}
@media (max-width:800px){
    .about .content .top ul{
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .about .content .top ul li{
        width: 40%;
        margin-right: 0;
    }
    .about .content .top ul li:nth-child(1){
        margin-bottom: 50px;
    }
    .about .content .top ul li:nth-child(2){
        margin-bottom: 50px;
    }
}
@media (max-width:760px){
    .about .content .top ul{
        margin-top: 0;
    }
}
@media (max-width:550px){
    .about .content .top ul li p span{
        font-size: 26px;
    }
    .about .content .center .theme p{
        font-size: 14px;
    }
    .about .content .center .theme h1 {
        font-size: 16px;
    }
    .about .content .center .theme p::after{
        width: 31px;
        height: 1.5px;
    }
    .about .content .center .info {
        font-size: 12px;
        line-height: 26px;
    }
    .about .content .center{
        margin-bottom: 40px;
    }
    .about .content .bottom {
        margin-bottom: 80px;
    }
    .about .content .bottom .boxlist{
        flex-wrap: wrap;
    }
    .about .content .bottom .boxlist .list{
        width: 48%;
        margin-bottom: 20px;
    }
}
/* 关于我们 */
.contact{
    padding: 80px 0 140px;
}
.contact .content{
    width: 83.3%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.contact .content .left{
    width: 50%;
}
.contact .content .left > h1{
    color: #333333;
    font-size: 30px;
    line-height: 34px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.contact .content .left > p{
    color: #666666;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 80px;
    padding-right: 22%;
}
.contact .content .left .bottom .list{
    display: flex;
    margin-bottom: 40px;
}
.contact .content .left .bottom .list .img{
    width: 40px;
    height: 40px;
    margin-right: 10px;
    margin-top: 6px;
}
.contact .content .left .bottom .list .img img{
    width: 100%;
}
.contact .content .left .bottom .list .theme{
    margin-top: 10px;
}
.contact .content .left .bottom .list .theme > span{
    font-size: 20px;
    color: #000000;
    line-height: 34px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 5px;
}
.contact .content .left .bottom .list .theme p{
    font-size: 16px;
    color: #999999;
    line-height: 34px;
    text-transform: capitalize;
}
.contact .content .left .bottom .list .theme p span{
    color: #7dd3ff;
    font-size: 20px;
}
.contact .content .right{
    width: 50%;
}
.contact .content .right > h1{
    color: #333333;
    font-size: 30px;
    line-height: 34px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.contact .content .right .one{
    width: 100%;
}
.contact .content .right .one p{
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 10px;
    color: #333333;
}
.contact .content .right .one p span{
    color: #f60808;
    margin-right: 2px;
}
.contact .content .right .one input{
    width: 94%;
    padding: 3%;
    margin-bottom: 40px;
    border: none;
    outline: none;
    background: #f8f8f8;
    position: relative;
}

.contact .content .right .one input::placeholder{
    color: #999999;
    font-size: 14px;
    text-transform: capitalize;
    font-family: "Arial";
}

.contact .content .right .one textarea{
    width: 94%;
    padding: 3%;
    height: 300px;
    border: none;
    outline: none;
    background: #f8f8f8;
    margin-bottom: 60px;
}
.contact .content .right .one textarea::placeholder{
    color: #999999;
    font-size: 14px;
    text-transform: capitalize;
    font-family: "Arial";
}
.contact .content .right .more a{
    display: inline-block;
    width: 180px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: #0093dd;
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 4px;
}
@media (max-width:1200px){
    .contact .content {
        width: 95%;
    }
    .contact .content .left > h1{
        font-size: 24px;
        margin-bottom: 30px;
    }
    .contact .content .left > p{
        font-size: 14px;
        margin-bottom: 60px;
        padding-right: 15%;
    }
    .contact .content .left .bottom .list .theme > span{
        font-size: 18px;
    }
    .contact .content .left .bottom .list .theme p{
        font-size: 14px;
    }
    .contact .content .right > h1{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .contact .content .right .one textarea{
        height: 240px;
    }
    .contact .content .left .bottom .list{
        margin-bottom: 30px;
    }    
}
@media (max-width:900px){
    .contact .content{
        flex-wrap: wrap;
    }
    .contact .content .left{
        width: 100%;
        margin-bottom: 40px;
    }
    .contact .content .right{
        width: 100%;
    }
    .contact .content .left > p{
        padding-right: 0%;
    }
}
@media (max-width:550px){
    .contact{
        padding: 60px 0 100px;
    }
    .contact .content .left > h1{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .contact .content .left > p{
        margin-bottom: 40px;
    }
    .contact .content .left .bottom .list .img{
        width: 30px;
        height: 30px;
    }
    .contact .content .left .bottom .list .theme > span{
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 0;
    }
    .contact .content .left .bottom .list{
        margin-bottom: 20px;
    }
    .contact .content .left .bottom .list .theme p{
        font-size: 12px;
        line-height: 26px;
    }
    .contact .content .left .bottom .list .theme p span{
        font-size: 16px;
    }
    .contact .content .right > h1{
        font-size: 20px;
    }
    .contact .content .right .one input{
        margin-bottom: 20px;
    }
    .contact .content .right .one textarea{
        height: 200px;
        margin-bottom: 40px;
    }
    .contact .content .right .more a{
        width: 140px;
        height: 36px;
        line-height: 36px;
    }
    .contact{
        padding: 60px 0 100px;
    }
}
/* 百度地图 */
.baidu{
    width: 100%;
    display: none;
}
.baidu #dituContent{
    width: 100%;
    height: 600px;
}
@media (max-width:1200px){
    .baidu #dituContent{
        height: 500px;
    }
}
@media (max-width:900px){
    .baidu #dituContent{
        height: 400px;
    }
}
@media (max-width:550px){
    .baidu #dituContent{
        height: 350px;
    }
}

/* 应用 */
.common_content .content .application{
    width: 73.75%;
}
.common_content .content .application .boxlist{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.common_content .content .application .boxlist .list{
    width: 30.5%;
    margin-right: 4.2%;
    margin-bottom: 5%;
}
.common_content .content .application .boxlist .list:nth-child(3),.common_content .content .application .boxlist .list:nth-child(6){
    margin-right: 0%;
}
.common_content .content .application .boxlist .list .list_img{
    width: 100%;
    position: relative;
    padding-bottom: 72.2%;
    overflow: hidden;
}
.common_content .content .application .boxlist .list .list_img a{
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
}
.common_content .content .application .boxlist .list .list_img span{
    display: inline-block;
    position: absolute;
    left: 6%;
    top: 7%;
    width: 86px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    background: #fff500;
    color: #010101;
    border-radius: 16px;
    font-size: 12px;
    font-weight: bold;
}
.common_content .content .application .boxlist .list .list_img a img{
    width: 100%;
    transition: all .5s linear;
}
.common_content .content .application .boxlist .list .list_img:hover a img{
    transform: scale(1.1);
}
.common_content .content .application .boxlist .list .list_txt h3 a{
    display: block;
    color: #333333;
    font-size: 18px;
    margin: 3% 0;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    transition: all .5s linear;
}
.common_content .content .application .boxlist .list:hover .list_txt h3 a{
    color: #0291df;
}
.common_content .content .application .boxlist .list .list_txt p{
    display: block;
    color: #333333;
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp: 2;
}
@media (max-width:1200px){
    .common_content .content .application{
        width: 60%;
    }
    .common_content .content .application .boxlist{
        justify-content: space-between;
    }
    .common_content .content .application .boxlist .list{
        width: 48%;
        margin-right: 0;
    }
}
@media (max-width:760px){
    .common_content .content .application{
        width: 100%;
    }
}
@media (max-width:550px){
    .common_content .content .application .boxlist .list .list_txt h3 a{
        font-size: 12px;
        margin: 2% 0;
    }
    .common_content .content .application .boxlist .list .list_txt p{
        font-size: 12px;
    }
}

/* 新闻中心 */
.common_content .content .news{
    width: 73.75%;
}
.common_content .content .news .boxlist{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.common_content .content .news .boxlist .list{
    width: 100%;
    padding: 2%;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .5s linear;
}
.common_content .content .news .boxlist .list:nth-of-type(odd){
    background: #f3f3f3;
    border-top: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
    transition: all .5s linear;
}
.common_content .content .news .boxlist .list:nth-of-type(even){
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    transition: all .5s linear;
}
.common_content .content .news .boxlist .list .list_img{
    width: 26%;
}
.common_content .content .news .boxlist .list .list_img .img{
    position: relative;
    padding-bottom: 73.3%;
    overflow: hidden;
}
.common_content .content .news .boxlist .list .list_img .img a{
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.common_content .content .news .boxlist .list .list_img .img a img{
    width: 100%;
    transition: all .5s linear;
}
.common_content .content .news .boxlist .list .list_img:hover .img a img{
    transform: scale(1.1);
}
.common_content .content .news .boxlist .list .list_txt{
    width: 71%;
}
.common_content .content .news .boxlist .list .list_txt h3 a{
    color: #000000;
    font-size: 18px;
    font-weight: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-bottom: 10px;
    transition: all .5s linear;
}
.common_content .content .news .boxlist .list:hover .list_txt h3 a{
    color: #0291df;
}
.common_content .content .news .boxlist .list .list_txt span{
    display: inline-block;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    margin-bottom: 20px;
}
.common_content .content .news .boxlist .list .list_txt p{
    font-size: 14px;
    color: #666666;
    line-height: 30px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.common_content .content .news .boxlist .list:hover{
    background: #ffffff;
    box-shadow: 2px 10px 24px rgba(000, 000, 000, .11);
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    z-index: 2;
}
@media (max-width:1200px){
    .common_content .content .news{
        width: 60%;
    }
    .common_content .content .news .boxlist .list .list_txt h3 a{
        font-size: 16px;
        margin-bottom: 5px;
    }
    .common_content .content .news .boxlist .list .list_txt span{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    .common_content .content .news .boxlist .list .list_txt p {
        font-size: 13px;
        line-height: 24px;
    }    
}
@media (max-width:760px){
    .common_content .content .news{
        width: 100%;
    }
}
@media (max-width:550px){
    .common_content .content .news .boxlist{
        margin-bottom: 20px;
    }
    .common_content .content .news .boxlist .list .list_txt h3 a{
        font-size: 14px;
        margin-bottom: 0px;
    }
    .common_content .content .news .boxlist .list .list_txt span{
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 5px;
    }
    .common_content .content .news .boxlist .list .list_txt p{
        font-size: 12px;
        line-height: 20px;
    }
}

/* 新闻详情 */
.common_content .content .news_detail{
    width: 73.75%;
}
.common_content .content .news_detail .box h1{
    font-size: 20px;
    color: #000000;
    margin-bottom: 40px;
}
.common_content .content .news_detail .box .news_info{
    border-bottom: 1px dashed #bfbfbf;
overflow: hidden;
    padding-bottom: 40px;
}
.common_content .content .news_detail .box .news_info p{
    font-size: 14px;
    color: #666666;
    line-height: 22px;
}
.common_content .content .news_detail .box .news_info .img{
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
    overflow: hidden;
    cursor: pointer;
}
.common_content .content .news_detail .box .news_info .img img{
    max-width: 100%;
    text-align: center;
    transition: all .5s linear;
}
.common_content .content .news_detail .box .news_info .img:hover img{
    transform: scale(1.1);
}
.common_content .content .news_detail .box .release p{
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    margin: 10px 0;
}
.common_content .content .news_detail .box .news_other p{
    color: #666666;
    font-size: 16px;
    line-height: 30px;
}
.common_content .content .news_detail .box .news_other p a{
    color: #666666;
}
.common_content .content .news_detail .box .news_other p a:hover{
    color: #15addf;
}
@media (max-width:1200px){
    .common_content .content .news_detail{
        width: 60%;
    }
    .common_content .content .news_detail .box h1{
        font-size: 18px;
        margin-bottom: 30px;
    }
    .common_content .content .news_detail .box .news_info p{
        font-size: 13px;
    }
    .common_content .content .news_detail .box .news_info .img{
        margin-bottom: 40px;
    }
    .common_content .content .news_detail .box .release p{
        font-size: 14px;
    }
    .common_content .content .news_detail .box .news_other p{
        font-size: 14px;
    }
}
@media (max-width:760px){
    .common_content .content .news_detail{
        width: 100%;
    }
}
@media (max-width:550px){
    .common_content .content .news_detail .box h1{
        font-size: 16px;
        margin-bottom: 20px;
    }
    .common_content .content .news_detail .box .news_info p{
        font-size: 12px;
    }
    .common_content .content .news_detail .box .release p{
        font-size: 12px;
    }
    .common_content .content .news_detail .box .news_other p{
        font-size: 12px;
    }
}
/* info单页 */
/* 内容 */
.info_main{
    padding: 90px 0 130px;
}
.info_main .content{
    width: 83.3%;
    margin: 0 auto;
}
.info_main .content .info_edit{

    overflow: hidden;

}
.info_main .content .info_edit p{
    font-size: 14px;
    color: #666666;
    line-height: 30px;
}
@media (max-width:760px){
    .info_main .content{
        width: 95%;
    }
}


/* 应用详情 */
.common_content .content .application_detail{
    width: 73.75%;
}
.common_content .content .application_detail .box h1{
    font-size: 20px;
    color: #000000;
    margin-bottom: 40px;
}
.common_content .content .application_detail .box .news_info{
    border-bottom: 1px dashed #bfbfbf;
    margin-bottom: 20px;
    overflow: hidden;
}
.common_content .content .application_detail .box .news_info p{
    font-size: 14px;
    color: #666666;
    line-height: 22px;
    margin-bottom: 60px;
}
.common_content .content .application_detail .box .news_other p{
    color: #666666;
    font-size: 16px;
    line-height: 30px;
}
.common_content .content .application_detail .box .news_other p a{
    color: #666666;
}
.common_content .content .application_detail .box .news_other p a:hover{
    color: #15addf;
}
@media (max-width:1200px){
    .common_content .content .application_detail{
        width: 60%;
    }
    .common_content .content .application_detail .box h1{
        font-size: 18px;
        margin-bottom: 30px;
    }
    .common_content .content .application_detail .box .news_info p{
        font-size: 13px;
        margin-bottom: 40px;
    }
    .common_content .content .application_detail .box .news_other p{
        font-size: 14px;
    }
}
@media (max-width:760px){
    .common_content .content .application_detail{
        width: 100%;
    }
}
@media (max-width:550px){
    .common_content .content .application_detail .box h1{
        font-size: 16px;
        margin-bottom: 20px;
    }
    .common_content .content .application_detail .box .news_info p{
        font-size: 12px;
    }
    .common_content .content .application_detail .box .news_other p{
        font-size: 12px;
    }
}