header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
.headPc{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    position: relative;
    transition: all .5s;
}
.headPc .headPc-left .logo{
    display: none;
    padding: 0 !important;
}
.headPc .headPc-right{
    display: flex;
    align-items: center;
}
.headPc .headPc-right .box1{
    display: flex;
    align-items: center;
    margin-right: 30px;
    margin-bottom: 0;
}
.headPc .headPc-right .box1>li{
    margin: 0 40px;
    position: relative;
    line-height: 80px;
}
.headPc .headPc-right .box1>li>a{
    line-height: 25px;
    transition: all .2s;
    color: #FFF;
    text-align: center;
    font-family: "Source Han Serif CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.headPc .headPc-right .box1>li::after {
    content: '';
    width: 0;
    height: 2px;
    background: #FFFFFF;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.headPc .headPc-right .box1>li:hover:after {
    width: 100%;
}
.headPc .headPc-right .box1>li:hover a{
    font-weight: 500;
}
.headPc .headPc-right .box1>li.active::after {
    width: 100%;
}
.headPc .headPc-right .box1>li.active a{
    font-weight: 500;
}

.headPc.active{
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #E1E1E1;
    background: #FFF;
}
.headPc.active .headPc-right .box1>li>a{
    color: #333;
}
.headPc.active .headPc-right .box1>li::after{
    background:#333;
}
.headPc.active .headPc-right .box1>li.active>a{
    color: #333;
}
.headPc.active .headPc-left .logo{
    display: block;
}
.headPc.active .headPc-left .logo-white{
    display: none;
}

.headPc.activeShow{
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #E1E1E1;
    background: #FFF;
}
.headPc.activeShow .headPc-right .box1>li>a{
    color: #333;
}
.headPc.activeShow .headPc-right .box1>li::after{
    background:#333;
}
.headPc.activeShow .headPc-right .box1>li.active>a{
    color: #333;
}
.headPc.activeShow .headPc-left .logo{
    display: block;
}
.headPc.activeShow .headPc-left .logo-white{
    display: none;
}

.headMob {
    display: none;
    background: #fff;
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 10%);
}
.headMob .mob-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.headMob .box-right img {
    width: 30px;
}
.headMob .logo{
    display: none;
}
.headMob .logo,.headMob .logo-white{
    width: 80%;
}
.mob-bg {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 7;
    left: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
    visibility: hidden;
}
.headMob.headMob-active .mob-bg {
    opacity: 1;
    visibility: inherit;
}
.mob-list {
    position: fixed;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    width: 100%;
    top: 0;
    right: -100%;
    z-index: 8;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    box-shadow: 0 -8px 16px 0 rgb(0 0 0 / 16%);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
}
.headMob.headMob-active .mob-list {
    right: 0;
    opacity: 1;
    visibility: inherit;
}
.mob-list .list-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mob-list .top-left {
    float: left;
}
.mob-list .top-left img{
    width: 70%;
}
.mob-list .top-right {
    float: right;
}
.mob-list .top-right .clone {
    display: inline-block;
    background: url(../images/icon-phone-guanbi-white.svg) no-repeat center;
    background-size: contain;
    width: 18px;
    height: 18px;
}
.mob-list .list-cent {
    margin-top: 30px;
}
.mob-list .box-list>li {
    padding: 12px 0;
    position: relative;
}
.mob-list .box-list>li:not(:last-child) {
    border-bottom: 1px solid #818181;
}
.mob-list .box-list > li > a {
    font-family: 'Source Han Serif CN';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #252931;
}
.mob-list .list-cent .con-laug{
    margin-top: 30px;
}

.mob-list .box-list .icon-bottom{
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../images/phone-icon-bottom.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 16px;
}
.mob-list .box-list > li.active .icon-bottom {
    background: url(../images/phone-icon-top.svg) no-repeat center;
    background-size: contain;
}
.mob-list .box-list .two-list {
    margin: 10px 0;
    display: none;
}
.mob-list .box-list .two-list>li {
    width: 100%;
}
.mob-list .box-list .two-list>li>a {
    font-family: 'Source Han Serif CN';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    color: #818181;
}
.mob-list .search-input{
    margin-top: 30px;
}
.mob-list .left-search {
    display: flex;
    margin: 20px 0;
    border: 1px solid #2653D1;
    padding-left: 15px;
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
}
.mob-list .left-search input {
    flex: 1;
    outline: none;
    border: none;
    font-size: 14px;
    font-weight: 400;
    color: #808080;
    line-height: 20px;
    background: #fff;
    font-family: 'Source Han Serif CN';
}
.mob-list .left-search button {
    outline: none;
    border: none;
    background: #2653D1;
    padding: 6px 20px;
}
.mob-list .left-search button span {
    font-size: 15px;
    font-family: 'Source Han Serif CN';
    font-weight: 400;
    color: #FFFFFF;
    line-height: 22px;
    vertical-align: middle;
    padding-left: 5px;
}
.mob-list.mob-listEn .box-list .two-list>li {
    width: 100%;
    float: left;
}

.woman-nav{
    padding: 120px 0 70px 0;
}
.woman-nav .nav-tip img{
    width: 100%;
}
.woman-nav .nav_ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}
.woman-nav .nav_ul li{
    border-radius: 39px;
    border: 1px solid #000;
    padding: 9px;
    width: 23%;
    text-align: center;
    /* margin-left: 20px;
    margin-right: 20px; */
}
.woman-nav .nav_ul a{
    color: #000;
    text-align: center;
    font-family: "Source Han Serif CN";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    display: block;
}
.woman-nav .nav_ul li.active{
    background: #000;
}
.woman-nav .nav_ul li.active a{
    color: #FFF;
}
.woman-box{
    padding-bottom: 80px;
}
.woman-box .col-xl-2 {
    -ms-flex: 0 0 19.666667%;
    flex: 0 0 19.666667%;
    max-width: 19.666667%;
}
.woman-box .wmBox{
    position: relative;
    overflow: hidden;
    /*transition: all .5s;*/
    display: block;
}
.woman-box .wmBox .box-img1 img{
    width: 100%;
    /*height: 478px;*/
    height: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}
.woman-box .box-img2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transition: opacity .3s ease-in-out, transform 0s linear .3s;
}
.woman-box .box-img2 .box2_mb{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%);
}
.woman-box .box-img2 .box2_mb h2{
    color: #FFF;
    font-family: "Source Han Serif CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.woman-box .box-img2 .box2_mb .mb_text{
    position: absolute;
    left: 26px;
    bottom: 26px;

    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity .2s ease-in-out, height .2s cubic-bezier(.23,1,.32,1);
}
.woman-box .box-img2 .box2_mb p{
    color: #FFF;
    font-family: "Source Han Serif CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 6px;
}
.woman-box .box-img2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.woman-box .box-img2 img:not([src]) {
    visibility: hidden;
}

.woman-box .wmBox:hover .box-img2 {
    opacity: 0;
    transform: none;
}

.woman-box .wmBox.is-hover-img-loaded:hover .box-img2 {
    opacity: 1;
    transform: scale(1.02);
    transition: opacity .3s ease-in-out, transform .3s cubic-bezier(.86,0,.07,1);
}

.woman-box .wmBox.is-hover-img-loaded:hover .box-img2 .box2_mb .mb_text {
    height: auto;
    opacity: 1;
}
/*.woman-box .wmBox:hover .box-img2{*/
/*    opacity: 1;*/
/*    transform: scale(1.02);*/
/*    transition: opacity .3s ease-in-out, transform .3s cubic-bezier(.86,0,.07,1);*/
/*}*/
/*.woman-box .wmBox:hover .box-img2 .box2_mb .mb_text{*/
/*    height: auto;*/
/*    opacity: 1;*/
/*}*/
.woman-box .row{
    margin-bottom: -30px;
}
.woman-box .row>div{
    padding-bottom: 30px;
}

.womanShow-list .iWoman_box .set_box .set_text{
    background: #fff;
    text-align: right;
}
.womanShow-list .iWoman_box .set_box .text2_list {
    justify-content: end;
}
.womanShow-list .iWoman_box .set_box .set_img {
    height: 100vh;
}
.womanShow-list .iWoman_box .set_box .set_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.womanShow-list .index_com_link a img {
    transform: rotate(180deg);
}
.womanShow-box{
    padding: 80px 0;
}
.womanShow-box .row{
    margin-bottom: -30px;
}
.womanShow-box .row>div{
    padding-bottom: 30px;
}
.womanShow-box .womanShow-link{
    display: block;
}
.womanShow-box .womanShow-link img{
    width: 100%;
    height: 481px;
    object-fit: contain;
}
.womanShow-box .boxImg{
    /* column-count: 5; */
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.womanShow-box .boxImg .img-box{
    width: 20%;
    margin-bottom: 30px;
    padding: 0 15px;
}

.train-box{
    padding: 140px 0 60px 0;
}
.trainBox{
    position: relative;
}
.trainBox .trainBox-img{
    width: 100%;
}
.trainBox .box-tip{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 95%;
}
.trainBox .box-tip h3{
    color: #000;
    text-align: center;
    font-family: "Source Han Serif CN";
    font-size: 138px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.trainBox .box-tip p{
    color: #000;
    text-align: center;
    font-family: "Source Han Serif CN";
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 8px;
}

.news-nav.woman-nav .nav_ul{
    justify-content: center;
}
.news-nav.woman-nav .nav_ul li{
    margin: 0 15px;
}
.news-box .box-link{
    display: block;
}
.news-box .box-link .bl-img img{
    width: 100%;
}
.news-box .box-link .bl-text{
    margin: 16px 0;
}
.news-box .box-link h2{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px; /* 134.783% */
    text-transform: uppercase;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-box .box-link p{
    overflow: hidden;
    color: #777;
    font-family: "Source Han Serif CN";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 192.857% */
    text-transform: uppercase;
    margin-top: 10px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news-box{
    padding-bottom: 70px;
}
.news-box .row{
    margin-bottom: -30px;
}
.news-box .row>div{
    padding-bottom: 30px;
}
/* 新闻详情 */
.latestDetail{
    padding: 150px 0 60px 0;
}
.latestDetail .left-dt{
    background: #fff;
    padding: 0 18px 36px 18px;
}
.latestDetail .left-dt .dt-top h2{
    color: #323232;
    font-family: "Source Han Serif CN";
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
}
.latestDetail .left-dt .dt-top p{
    margin: 35px 0 20px 0;
}
.latestDetail .left-dt .dt-top p i{
    vertical-align: middle;
    color: #7F7F7F;
    font-family: "Source Han Serif CN";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 185.714% */
}
.latestDetail .left-dt .dt-top {
    border-bottom: 1px solid #E6E6E6;
}
.latestDetail .left-dt .dt-cont img{
    max-width: 100%;
}
.latestDetail .left-dt .dt-cont h2{
    margin-top: 8px;
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 115.385% */
}
.latestDetail .left-dt .dt-cont{
    padding: 30px 0;
}
.latestDetail .left-dt .dt-cont p{
    color: #818181;
    font-family: "Source Han Serif CN";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 214.286% */
    margin-top: 8px;
    line-height: 26px; /* 166.667% */
}
.latestDetail .left-dt .dt-cont a{
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #007bff;
    line-height: 26px;
}
.latestDetail .left-dt .dt-cont video{
    max-width: 100%;
    margin: 20px auto;
}
.latestDetail .left-dt .dt-bot{
    text-align: center;
    border-top: 1px solid #E6E6E6;;
    padding-top: 30px;
}
.latestDetail .left-dt .dt-bot a{
    display: inline-block;
    background: #000;
    color: #FFF;
    font-family: "Source Han Serif CN";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 15px 42px;
}
.latestDetail .right-box1 ul {
    padding: 24px 0;
}
.latestDetail .right-box1 .box1-tit h3{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.latestDetail .right-box1 ul a {
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    border-bottom: 1px solid #E6E6E6;
    padding: 15px 10px;
    transition: all .3s;
}
.latestDetail .right-box1 li:hover a{
    background: #000;
    color: #fff;
}
.latestDetail .right-box2 {
    margin-top: 30px;
}
.latestDetail .right-box2 .box2-tit h3{
    color: #808080;
    font-family: "Source Han Serif CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.latestDetail .right-box2 .box2-list{
    margin-top: 15px;
}
.latestDetail .right-box2 .box2-list a{
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #E6E6E6;
    padding: 20px 0;
}
.latestDetail .right-box2 .box2-list span{
    color: #343434;
    font-family: "Source Han Serif CN";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.latestDetail .right-box2 .box2-list p {
    color: #343434;
    font-family: "Source Han Serif CN";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 8px;
    flex: 1;
}
.latestDetail .row{
    margin-right: -60px;
    margin-left: -60px;
}
.latestDetail .row>div{
    padding-right: 60px;
    padding-left: 60px;
}
/* 新闻详情 */
.busin_warp{
    padding-top: 60px;
}
.busin_box{
    padding: 80px 0;
}
.busin_box_tit h2{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 117px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
}
.busin_box_con{
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
}
.busin_box_con .con_left{
    width: 73%;
}
.busin_box_con .con_right{
    background: #000;
    width: 24%;
    padding: 50px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.busin_box_con .con_right .rig1 h2{
    color: #FFF;
    font-family: "Source Han Serif CN";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.busin_box_con .con_right .rig1 p{
    color: rgba(255, 255, 255, 0.80);
    font-family: "Source Han Serif CN";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    text-transform: uppercase;
    margin-top: 23px;
}
.busin_box_con .con_right .rig2 h2{
    color: #FFF;
    font-family: "Source Han Serif CN";
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 126.316% */
    text-transform: uppercase;
}
.busin_box_con .con_right .rig2 p{
    color: rgba(255, 255, 255, 0.80);
    font-family: "Source Han Serif CN";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    text-transform: uppercase;
    margin-top: 17px;
}
.busin_box_list .box_text{
    border-top: 1px solid #D9D9D9;
    padding-top: 17px;
    padding-bottom: 24px;
}
.busin_box_list .box_text h3{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.busin_box_list .box_text p{
    overflow: hidden;
    color: #8C8C8C;
    font-family: "Source Han Serif CN";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    text-transform: uppercase;
    margin-top: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.busin_box_list .row{
    margin-bottom: -30px;
}
.busin_box_list .row>div{
    padding-bottom: 30px;
}

.about_intro{
    padding: 160px 0 100px 0;
}
.about_intro .boxLeft1 h2{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 92px;
    font-style: normal;
    font-weight: 500;
    line-height: 96px; /* 104.348% */
    text-transform: uppercase;
}
.about_intro .boxLeft1 p{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 22px;
}
.about_intro .boxLeft2{
    margin-top: 28%;
}
.about_intro .boxLeft2 .boxLeft2_text{
    height: 200px;
    overflow-y: auto;
    padding-right: 30px;
}
.about_intro .boxLeft2 .boxLeft2_text p{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 12px;
}
.about_intro .boxLeft2 .boxLeft2_text::-webkit-scrollbar{
    width: 2px;
    height: 2px;
    background-color:rgba(0, 0, 0, 0.20);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
}
.about_intro .boxLeft2 .boxLeft2_text::-webkit-scrollbar-thumb{
    background-color: rgba(0, 0, 0);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
}
.about_times{
    padding-bottom: 100px;
}
.about_times .times_box p{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.about_times .times_box i{
    display: block;
    width: 100%;
    height: 1px;
    background: #D9D9D9;
    margin: 17px 0;
}
.about_times .times_box h2 span,.about_times .times_box h2 strong{
    color: #000;
    font-family: Arial;
    font-size: 69px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.about_vio .vio_right{
    background: #F7F7F7;
    padding: 80px;
    height: 100%;
    margin-left: 30px;
}
.about_vio .vio_right .ri1 h2{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 92px;
    font-style: normal;
    font-weight: 500;
    line-height: 96px; /* 104.348% */
    text-transform: uppercase;
}
.about_vio .vio_right .ri1 h3{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 28.293px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 12px;
}
.about_vio .vio_right .ri2{
    margin: 30px 0;
}
.about_vio .vio_right .ri2 p{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 212.5% */
}
.about_vio .vio_right .ri3 p{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 212.5% */
}
.about_contact{
    padding: 100px 0;
}
.about_contact .con_left{
    background: linear-gradient(270deg, #D3D0D1 0%, #DBD8D9 50.5%, #CECCCD 100%);
}
.about_contact .con_left .left_text{
    padding: 40px 40px 15px 40px;
}
.about_contact .con_left .left_text h3{
    color: #333;
    font-family: "Source Han Serif CN";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.about_contact .con_left ul{
    margin-top: 25px;
}
.about_contact .con_left ul li{
    margin-top: 14px;
}
.about_contact .con_left .left_text img{
    vertical-align: middle;
}
.about_contact .con_left .left_text span{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    vertical-align: middle;
    padding-left: 12px;
}
.about_contact .conRight1 h2{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 92px;
    font-style: normal;
    font-weight: 500;
    line-height: 96px; /* 104.348% */
    text-transform: uppercase;
}
.about_contact .conRight1 p{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 24px;
}
.about_contact .conRight2{
    margin-top: 80px;
}
.about_contact .conRight2 .layui-input{
    height: 55px;
    color: #898989;
    font-family: "Source Han Serif CN";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.about_contact .conRight2 .layui-btn{
    color: #FFF;
    font-family: "Source Han Serif CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: #000;
    padding: 0 85px;
    height: 48px;
    border-radius: 38px;
}
.about_contact .conRight2 .layui-btn-container{
    padding-top: 30px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #D9D9D9;
}
.about_contact .conRight2 .layui-btn-container p i{
    color: #000;
    font-family: "Source Han Serif CN";
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.about_contact .conRight2 .layui-btn-container p span{
    color: #555;
    text-align: right;
    font-family: "Source Han Serif CN";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 16px;
}

/* 分页 */
.text-center{
    z-index: 2;
    position: relative;
}
.pager .pagination{
    margin: 25px 0;
}
.pager ul{
    justify-content: center;
}
.pager li {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 32px;
    margin: 0 5px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: #7F7F7F;
}
.pager li.active {
    background: #000;
    color: #fff;
}
.pager li:hover {
    background: #000;
    color: #fff;
}
.pager li:hover a {
    color: #fff;
}
.pager li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-family: 'Source Han Serif CN';
    font-weight: 500;
    color: #7F7F7F;
}
/* 分页 */
.loadmore{
    text-align: center;
    margin: 25px 0;
}
.loadmore .loadmore-tips{
    font-size: 22px;
    font-family: 'Source Han Serif CN';
    font-weight: 400;
    color: #000;
    line-height: 30px;
}
.tool {
    background: #000;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 100;
}
.tool .tool-ul li:first-child {
    border-bottom: 1px solid #4B4B4B;;
}
.tool .tool-box {
    display: block;
    text-align: center;
    padding: 12px 13px;
}
.tool .tool-box h3{
    color: #FFF;
    text-align: center;
    font-family: "Source Han Serif CN";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px; /* 118.75% */
}
.tool .tool-box p{
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-family: "Source Han Serif CN";
    font-size: 9px;
    font-style: normal;
    font-weight: 300;
    line-height: 12px; /* 133.333% */
    text-transform: uppercase;
    margin-top: 3px;
}