@font-face {
    font-family: "SOURCEHANSANSCN-NORMAL";
    src: url("../css/font/SOURCEHANSANSCN-NORMAL.OTF");
}

@font-face {
    font-family: "SOURCEHANSANSCN-Midium";
    src: url("../css/font/SourceHanSansCN-Medium.otf");
}

@font-face {
    font-family: "SOURCEHANSANSCN-bold";
    src: url("../css/font/SourceHanSansCN-Bold.otf");
}

body {
    font-family: "SOURCEHANSANSCN-NORMAL";
}

/* 
container
container
container
container
*/

.container {
    width: 1200px;
    /* border: 1px solid red; */
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

@media (max-width: 1366px) {
    .container {
        width: 1000px;
    }
}

@media (max-width: 1024px) {
    .container {
        width: 92%;
    }
}

/* 
*****************
com title
*****************
*/

/* .com-title {
    text-align: center;
    margin-bottom: 1.875vw;
}

.com-title h2 {
    font-size: 40px;
}

.com-title p {
    font-size: 18px;
    margin-top: 1vw;
} */

.com-title2,
.com-title {
    /* font-size: 48px; */
    font-size: calc(12px + 1.875vw);
    text-transform: uppercase;
    text-align: center;
    color: #333;
}

.com-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: #0DBF27;
    margin: 15px auto 0;
}

/*
********************
面包屑导航mininav 
********************
 */

.mininav {
    background-color: #f9f9f9;
    width: 100%;
    line-height: 60px;
}

.mininav .container {
    display: flex;
    align-items: center;
}

.mininav a {
    color: #999;
}

.mininav a i {
    margin: 0 3px;
}

.mininav a.cur {
    color: #333;
}

.mininav .home {
    display: inline-block;
    background: url("../images/icon-home.png") no-repeat left center;
    padding-left: 25px;
}

/* 
***************
二 页面f banner 
***************
*/

.sub-banner {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.sub-banner>.container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    text-align: left;
}

.sub-banner>img {
    width: 100%;
}

.sub-banner .sub-banner-txt h2 {
    /* font-size: 42px; */
    font-size: calc(12px + 1.5625vw);
    color: #fff;
}

.sub-banner .sub-banner-txt p {
    font-size: 16px;
    margin-top: 10px;
}

@media (max-width :768px) {
    .sub-banner .sub-banner-txt p {
        font-size: 14px;
    }
}

/* 分页 */

/* 分页 */

/* 分页 */

/* 分页 */

/* 分页 */

.page-list {
    text-align: center;
    /* margin-top: 3.125vw;
    margin-bottom: 3.125vw; */
    margin-top: calc(20px + 2.08vw);
    margin-bottom: calc(20px + 2.08vw);
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-list a {
    display: inline-block;
    font-size: 14px;
    margin: 0 10px;
    transition: all .4s ease;
    color: #333;
}

.page-list .btn-prev,
.page-list .btn-next {
    color: #313131;
    width: 40px;
    height: 40px;
    border: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.page-list .btn-prev:hover,
.page-list .btn-next:hover {
    border-color: #0DBF27;
}

.page-list a:hover,
.page-list a.cur {
    color: #0DBF27;
}

/* 分享 */

footer .share-wrap {
    margin-top: 1.8vw;
}

footer .share-wrap .bshare-custom a {
    width: 36px;
    height: 36px;
    padding: 0;
    background-color: #333951;
    border-radius: 50%;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: .52vw;
    margin-bottom: .52vw;
    margin-right: 0;
    display: inline-block;
}

footer .share-wrap .bshare-custom a.bshare-weixin {
    background-image: url("../images/icon-footer1.png");
}

footer .share-wrap .bshare-custom a.bshare-sinaminiblog {
    background-image: url("../images/icon-footer2.png");
}

footer .share-wrap .bshare-custom a.btn-footer3 {
    background-image: url("../images/icon-footer3.png");
}

footer .share-wrap .bshare-custom a.btn-footer4 {
    background-image: url("../images/icon-footer4.png");
}

footer .share-wrap .bshare-custom a.btn-footer5 {
    background-image: url("../images/icon-footer5.png");
}

@media (max-width: 1600px) {
    footer .share-wrap .bshare-custom a {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    .r-section h2 {
        font-size: 20px;
    }
    .r-section .r-txt .btn-more,
    .r-section p {
        font-size: 14px;
    }
    .com-title h2 {
        font-size: 26px;
    }
}

/* top */

.side-top {
    width: 50px;
    height: 50px;
    background: url("../images/icon-top.png") no-repeat center #0DBF27;
    border-radius: 25px;
    position: fixed;
    right: 10.4vw;
    bottom: 25%;
    display: none;
    cursor: pointer;
}

@media (max-width: 1700px) {
    .side-top {
        right: 6vw;
    }
}

@media (max-width: 1600px) {
    .side-top {
        right: 3vw;
    }
}

@media (max-width: 1500px) {
    .side-top {
        right: 2vw;
    }
}

@media (max-width: 1440px) {
    .side-top {
        bottom: 10%;
    }
}

/* 相关新闻 */

/* .btn-more */

.btn-more {
    border: 1px solid #fff;
    border-radius: 23px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 46px;
    height: 46px;
    cursor: pointer;
    display: inline-block;
}

.btn-more i {
    background: url("../images/icon-arrow-white.png") no-repeat center;
    width: 18px;
    height: 14px;
    display: inline-block;
    margin-left: 12px;
}

.btn-more.green {
    background-color: #0DBF27;
    color: #fff;
    border-color: #0DBF27;
}

@media (max-width: 500px) {
    .com-title2,
    .com-title {
        font-size: 22px;
    }
    .btn-more {
        max-width: none;
        line-height: 1.1 !important;
        padding: 8px 14px;
        height: auto !important;
        width: auto !important;
        font-size: 14px !important;
    }
}

.pcimgnewj img,
.banner-pro-com .pc img {
    width: 100%;
    object-fit: cover
}