@charset "utf-8";
.over {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flex-sb {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-wrap: wrap;
}

.flex-fs {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    flex-wrap: wrap;
}

.flex-ce {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    flex-wrap: wrap;
}

.box-siz {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
}


/**字体**/

@font-face {
    font-family: "FBTM";
    src: url("../font/FuturaBT-Medium.otf") format("truetype");
}

@font-face {
    font-family: "OPPO";
    src: url("../font/OPPOSans-B.ttf") format("truetype");
}

@font-face {
    font-family: "OPPOH";
    src: url("../font/OPPOSans-H.ttf") format("truetype");
}

@font-face {
    font-family: "DIN";
    src: url("../font/DIN.ttf") format("truetype");
}

body {
    min-width: 1200px;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
}


/*广告*/

.banner {
    max-width: 1920px;
    margin: 0 auto;
}

.banner img {
    width: 100%;
    display: block;
}

.banner .banner-btn-prev,
.banner .banner-btn-next {
    position: absolute;
    width: 2.8rem;
    height: 2.8rem;
    border: 2px solid #fff;
    border-radius: 50%;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 5;
    cursor: pointer;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.banner .banner-btn-prev:hover,
.banner .banner-btn-next:hover {
    background: #00953f;
    border-color: #00953f;
}

.banner .banner-btn-prev:after {
    content: "";
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    border-style: solid none none solid;
    position: absolute;
    right: 50%;
    margin-right: -7px;
    top: 50%;
    margin-top: -4px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.banner .banner-btn-next:after {
    content: "";
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    border-style: solid solid none none;
    position: absolute;
    left: 50%;
    margin-left: -7px;
    top: 50%;
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.banner .banner-btn-prev {
    left: 2.5%;
}

.banner .banner-btn-next {
    right: 2.5%;
}

.banner:hover .banner-btn-prev,
.banner:hover .banner-btn-next {
    opacity: 1;
}

.banner .banner-paging {
    position: absolute;
    height: 1rem;
    line-height: 1rem;
    left: 0;
    bottom: 2.5rem;
    text-align: center;
    z-index: 1;
}

.banner .banner-paging .swiper-pagination-bullet {
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 100%;
    margin: 0 0.5rem;
    /*border:0.1rem solid #ffffff;*/
    background-color: #fff;
    cursor: pointer;
    opacity: 1;
}

.banner .banner-paging .swiper-pagination-bullet-active {
    background-color: #00953f;
}


/*引子*/


/*合作客户*/

.hz {
    width: 100%;
    height: 47rem;
    padding-top: 3.5rem;
    background-image: url('../images/fot-bg2.jpg');
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: 100% 100%;
}

.hz .plan_tit {
    margin: 0 auto 2rem;
}

.hz .plan_tit span {
    font-size: 5rem;
    font-family: OPPOH;
    color: #e7efd6;
    text-align: center;
    display: block;
}

.hz .plan_tit a {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    display: block;
    line-height: 2.5rem;
}

.hz_l {
    width: 33%;
    height: 30.80rem;
    background-image: url('../images/hzimg.jpg');
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: 100% 30.80rem;
    padding: 3rem 4% 0;
    box-sizing: border-box;
    border-top-left-radius: 2rem;
}

.hz_l h3 {
    line-height: 1.8rem;
    /*! height:2rem;*/
    overflow: hidden;
}

.hz_l h3 a {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}

.hz_l p {
    font-size: 0.8rem;
    color: #fff;
    padding-top: 0.6rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    line-height: 1.5rem;
    height: 9rem;
}

.hz_btn {
    display: block;
    width: 50%;
    height: 2.5rem;
    margin: 2rem 0 0;
}

.hz_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 2.5rem;
    background: #00953f;
    font-size: 0.8rem;
    color: #fff;
    border-radius: 3rem;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.hz_btn em {
    width: 1rem;
    height: 1rem;
    line-height: 0;
    overflow: hidden;
    padding-left: 1.8rem;
}

.hz_btn em img {
    width: 1rem;
    height: 1rem;
}

.hz_btn a:hover {
    transform: translateX(3px);
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    -moz-transform: translateX(3px);
}

.hz_r {
    width: 67%;
    background: #fff;
    height: 30.80rem;
    overflow: hidden;
    box-sizing: border-box;
    border-bottom-right-radius: 2rem;
}

.hz_r ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.hz_r ul li {
    width: 19.7%;
    float: left;
    position: relative;
    overflow: hidden;
    border-top: #fff 1px solid;
    border-left: #fff 1px solid;
    border-right: #fff 1px solid;
    border-bottom: #fff 1px solid;
    height: 7.7rem;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.hz_r ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.hz_r ul li:nth-child(16):after,
.hz_r ul li:nth-child(17):after,
.hz_r ul li:nth-child(18):after,
.hz_r ul li:nth-child(19):after,
.hz_r ul li:nth-child(20):after {
    background: none;
}

@media screen and (min-width: 1200px) {
    .hz_r ul li {
        width: 19.5%;
    }
}

@media screen and (min-width: 768px) {
    .hz_r ul li {
        width: 19.4%;
    }
}

@media screen and (min-width: 1460px) {
    .hz_r ul li {
        width: 19.6%;
    }
}

@media screen and (min-width: 1560px) {
    .hz_r ul li {
        width: 19.8%;
    }
}

.hz_r ul li:before {
    content: "";
    width: 1px;
    height: 100%;
    background: #eee;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.hz_r ul li:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #eee;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.hz_r ul li:nth-child(5n):before {
    background: none;
}

.hz_r ul li img {
    /*! -webkit-transition:transform 0.3s;*/
    /*! transition:transform 0.3s;*/
    width: 100%;
    height: auto;
}

.hz_r ul li:hover {
    border: 1px solid #00953f !important;
}

.hz_r ul li:hover:before {
    border: none;
}

.hz_r ul li:hover img {
    /*! -webkit-transform:translate(0,-3px);*/
    /*! transform:translate(0,-3px);*/
}

.hz_r ul li:nth-child(5n).hz_r ul li:before {
    display: none;
}

.hz_r ul li:nth-child(1),
.hz_r ul li:nth-child(2),
.hz_r ul li:nth-child(3),
.hz_r ul li:nth-child(4),
.hz_r ul li:nth-child(5) {
    /* border-top: #fff 1px solid; */
}


/*产品*/

.product {
    background-color: #f9fff9;
    padding: 0 0 3rem 0;
}

.pro {
    width: 100%;
    margin: 0 auto;
}

.product .pro-nav {
    height: 11.15rem;
}

.product .pro-nav ul {
    height: 8.8rem;
    border-radius: 0.8rem;
    position: relative;
    overflow: hidden;
    background: url(../images/ptit_bg.png) no-repeat center top;
    background-size: 100% 4.35rem;
    border: 1px solid #d9d9d9;
}

.product .pro-nav ul li {
    float: left;
    width: 16.66%;
    height: 4.35rem;
    line-height: 4.35rem;
}

.product .pro-nav ul li.cur {
    background: #00c445;
}

.product .pro-nav ul li.cur span:before {}

.pro-two em a:before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid #999;
    position: absolute;
    top: 1.9rem;
    left: 0;
    z-index: 2;
    box-sizing: border-box;
}

.product .pro-nav ul li span {
    display: block;
    line-height: 4.35rem;
    text-align: center;
    padding: 0 0.75rem;
    border-right: 0.05rem solid #bfd6e9;
    box-sizing: border-box;
    position: relative;
    z-index: 200;
}

.product .pro-nav ul li span a {
    display: flex;
    align-items: center;
    font-size: 1rem;
    height: 4.35rem;
    color: #FFF;
}
.product .pro-nav ul li span a em{display: block;width: 100%;line-height: 1.5rem;
/*text-transform: capitalize;*/
    
}
.product .pro-nav ul li:last-child span {
    border: none;
}

.product .pro-nav ul li .pro-two {
    width: 100%;
    height: 4.35rem;
    background: #FFF;
    position: absolute;
    left: 0;
    top: 4.35rem;
    padding: 0rem 2rem 0 2rem;
    box-sizing: border-box;
    transition: .5s;
    display: none;
}

.product .pro-nav ul li .pro-two a {
    display: block;
    float: left;
    font-size: 0.9rem;
    color: #505050;
    margin-right: 1.3rem;
    position: relative;
    padding-left: 1.2rem;
}

.product .pro-nav ul li .pro-two a:last-child {
    margin-right: 0;
}

.product .pro-nav ul li.cur .pro-two {
    display: block;
}

.p-main {
    display: flex;
    background-color: #28a745;
}

.p-main a {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.p-main a:hover {
    background-color: #218838;
}

.p-sub {
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.p-sub a {
    position: relative;
    padding-left: 12px;
    color: #666;
    text-decoration: none;
}

.p-sub a::before {
    content: "○";
    position: absolute;
    left: 0;
    color: #28a745;
    font-size: 12px;
}

.pro-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2%;
    width: 96%;
    margin: 0 auto;
}

.pro-list dl {
    background: url(../images/p_bg1.png) no-repeat center top;
    background-size: 100% 16.45rem;
    height: 11.45rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.pro-list dl.cur:before {
    background: url(../images/p_bg1s.png) no-repeat center top;
    background-size: 100% 16.45rem;
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    top: 0;
}

.pro-list dl.cur dt a,
.pro-list dl.cur dt i {
    color: #fff;
}

.pro-list dl.cur dt .more-link img,
.pro-list dl:hover .more-link img {
    margin-left: -2.75rem;
}

.pro-list dl.cur dt a::before {
    background: #05afea;
}

.pro-item {
    padding: 2.5rem 0;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    list-style: none;
    /* 清除默认列表样式 */
}

.pro-list dl dt a {
    font-size: 1.2rem;
    color: #333;
    text-align: left;
    display: block;
    line-height: 1.6rem;
    position: relative;
    padding-left: 1rem;
}

.pro-list dl dt a::before {
    content: "";
    position: absolute;
    left: 0;
    color: #28a745;
    font-size: 12px;
    width: 0.35rem;
    height: 1.15rem;
    background: #00953f;
    top: 0.25rem;
}
.pro-list dl dt h4{height: 8rem;margin-bottom: 2rem;font-size: 1.1rem;
/*text-transform: capitalize;*/
overflow: hidden;
text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 5;-webkit-box-orient: vertical;}
.pro-item dt i {
    display: block;
    font-size: 16px;
    color: #949588;
    height: 6rem;
    line-height: 1.6rem;
}

.pro-item:hover {
    transform: translateY(-5px);
}

.pro-list dl dd {
    position: absolute;
    z-index: 2;
    right: 4%;
    top: 2rem;
}

.pro-item dd img {
    width: auto;
    height: 12.55rem;
    border-radius: 4px;
}

.pro-item dd a {
    display: block;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 10px;
}

.pro-item dt {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    width: 49%;
}

.pro-item .more-link {
    display: block;
    width: 2.75rem;
    height: 2.4rem;
    /*! line-height:30px; */
    /*! border-radius:50%; */
    /*! background-color:#28a745; */
    color: #fff;
    text-decoration: none;
    /*! font-size:16px; */
    transition: background 0.3s;
    overflow: hidden;
}

.pro-item .more-link img {
    width: 5.5rem;
    height: 2.4rem;
}

.pro-more {
    text-align: center;
    margin-top: 2.2rem;
}

.pro-more a {
    display: inline-block;
    background: #00953f url(../images/hz_btn.png) no-repeat 15rem center;
    color: #fff;
    text-decoration: none;
    border-radius: 2rem;
    font-size: 16px;
    transition: background 0.3s;
    height: 3.3rem;
    width: 20.5rem;
    text-align: center;
    line-height: 3.3rem;
    padding-right: 2rem;
    background-size: 1rem 1rem;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.pro-more a:hover {
    background-color: #218838;
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
}


/*标题*/

.tit {
    margin: 2rem auto;
}

.tit span {
    font-size: 5rem;
    font-family: OPPOH;
    color: #efefef;
    text-align: center;
    display: block;
}

.tit a {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    display: block;
    line-height: 2.5rem;
}

.tit3 {
    margin: 0 auto 4.5rem;
    padding-top: 3rem;
}

.tit3 span {
    font-size: 5rem;
    font-family: OPPOH;
    color: #55b3fa;
    text-align: center;
    display: block;
}

.tit3 a {
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    display: block;
    line-height:2.5rem; 
}

.tit3 i {
    font-size: 1.2rem;
    display: block;
    font-weight: normal;
    padding-top: 0.5rem;
   line-height: 1.5rem;
}

.tit2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    padding-top: 3.5rem;
    line-height: 3rem;
    font-weight: bold;
    text-align: center;
}

.tit2 a {
    color: #333;
    text-decoration: none;
    font-size: 2.2rem;
    line-height: 2.5rem;
}

.tit2 span {
    font-size: 1.2rem;
    display: block;
    font-weight: normal;
    color: #333;
    padding-top: 0.5rem;
    line-height: 1.5rem;
}


/*可信赖*/

.jiag {
    padding: 0 0 2.5rem;
    background: url(../images/sip-bg2.jpg) no-repeat center;
    min-height: 62.1rem;
    background-size: 100% 100%;
}

.jia {
    width: 80rem;
    margin: 0 auto;
    position: relative;
    height: 66rem;
}

.jia-header {
    text-align: center;
}

.jia-header h2 {
    font-size: 2.2rem;
    color: #333;
    line-height: 2.5rem;
    font-weight: bold;
    padding-top: 3rem;
}

.jia-header h2 span {
    color: #00953f;
}

.jia-header p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.5rem;
}

.jia-center {
    position: relative;
    width: 100%;
}

.jimg {
    width: 33.4rem;
    height: 33rem;
    margin: 0 auto;
    /*! border-radius:50%; */
    overflow: hidden;
    /*! box-shadow:0 0 20px rgba(0,0,0,0.1); */
    padding-top: 2.6rem;
}

.jimg img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.jico {
    position: absolute;
    text-align: center;
    width: 25rem;
}

.jico .icon {
    width: 5.15rem;
    height: 5.15rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jico .icon img {
    width: 100%;
    height: auto;
}

.jico .icon:hover img {
    animation-duration: 2s;
    animation-name: flipInY;
}

.jico h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 1.2rem auto 1rem auto;
    font-weight: bold;
}

.jico p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6rem;
}

.jico.jpro {
    top: 8rem;
    left: 15%;
    transform: translate(-50%, -20%);
}

.jico.mature {
    top: 8rem;
    right: 13%;
    transform: translate(50%, -20%);
}

.jico.innovate {
    bottom: -10rem;
    left: 50%;
    transform: translate(-50%, 50%);
}


/*ban1*/

.ban1 {
    width: 100%;
    background: url(../images/yanbg.jpg) no-repeat center;
    height: 27.7rem;
    background-size: 100% 27.7rem;
}

.sban {
    width: 80rem;
    margin: 0 auto;
    /* min-height:400px; */
    /* background:url('https://via.placeholder.com/1920x400') no-repeat center/cover; */
    display: flex;
    align-items: center;
    padding: 40px;
}

.sb-con {
    color: #333;
}

.sb-con h2 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    border-bottom: 2px solid #bfcdd0;
    height: 3rem;
    line-height: 3rem;
}

.sb-con h2 span {
    color: #00953f;
    font-weight: bold;
    font-size: 1.2rem;
}

.sb-con h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white;
    color: #333;
    font-weight: bold;
    border-bottom: 2px solid #bfcdd0;
    padding-bottom: 1rem;
}

.sb-con h1 span {
    color: #00953f;
}

.sb-con p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
}

.sbtn {
    display: flex;
    align-items: center;
    /*border: 1px solid #00953f;*/
    /*border-radius: 2rem;*/
    /*background: #00953f;*/
}

.sbhot {
    background: #fff url(../images/tel.png) no-repeat 1.5rem center;
    /*! padding:12px 20px; */
    /*! border:1px solid #28a745; */
    border-right: none;
    border-radius: 2rem 0 0 2rem;
    color: #333;
    font-size: 0.9rem;
    height: 3.15rem;
    line-height: 3.15rem;
    padding: 0 1.5rem 0 3.3rem;
}

.sbhot i {
    font-size: 1.3rem;
    font-weight: bold;
}

.sap-btn {
    background:#00953f; 
    height: 3.15rem;
    line-height: 3.2rem;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 1.2rem;
    padding: 0 2rem;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    display: block;
}

.sap-btn:hover {
    color: #fff
}


/*案例*/

.anli {
    background: url(../images/albg1.jpg) no-repeat center 3.5rem;
    padding: 1rem 0 3rem 0;
    background-size: 100% 34.65rem;
    max-width: 1920px;
    min-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.ancom {
    width: 100%;
    margin: 0 auto;
}

.an-title {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.an-title h2 {
    font-size: 2rem;
    color: #333;
    position: relative;
    z-index: 1;
}

.an-title a {
    text-decoration: none;
}

.an-title::before {
    content: "Achievements";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #e6f9ea;
}

.an-content {}

.an-left {
    width: 25%;
    background-color: #f2fce9;
    color: #fff;
    float: left;
}

.an-left ul {
    list-style: none;
}

.an-left li {
    padding: 0 5% 0 16%;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    border-bottom: 1px solid #dbe3d2;
}

.an-left li:last-child {
    border-bottom: none;
}

.an-left li a {
    /*! display: flex; */
}

.an-left li a i {
    color: #333;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    height: 5.65rem;
    line-height: 5.65rem;
    white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.an-left li span {
    width: 2.75rem;
    height: 2.25rem;
    overflow: hidden;
    display: block;
    float: left;
    padding-top: 1.7rem;
    margin-right: 1rem;
}

.an-left li span img {
    width: 5.5rem;
    height: 2.25rem;
}

.an-left li.active img {
    margin-left: -2.75rem;
}

.an-left li.active i {
    color: #fff;
}

.an-left li.active::before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 0;
    height: 0;
    border-top: 0.7rem solid transparent;
    border-bottom: 0.7rem solid transparent;
    border-left: 0.6rem solid #00953f;
    top: 2.2rem;
    left: 100%;
}

.an-left li.active {
    background-color: #00953f;
}

.an-right {
    float: right;
    width: 72%;
    position: relative;
}

.case-item {
    float: left;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 66%;
    margin-right: 2rem;
}

.case-item dt img {
    width: 100%;
    height: auto;
}

.case-info {
    padding: 20px;
}

.case-item dd a {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin: 0 0 0.75rem;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    display: block;
    width: 75%;
}

.case-item dd {
    background: url(../images/yiny.png) repeat;
    font-size: 0.9rem;
    color: #fff;
    position: absolute;
    z-index: 2;
    bottom: 0.3rem;
    width: 90%;
    padding: 1rem 5%;
}

.pro-img {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 6.5rem;
    height: 6.5rem;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.pro-img img {
    width: 100%;
    height: auto;
}

.xleft,
.xright {
    position: absolute;
    z-index: 9;
    top: 45%;
    width: 0.6rem;
    height: auto;
    background: #00953f;
    padding: 0.8rem;
}

.xleft img,
.xright img {
    width: 100%;
    height: auto;
}

.xleft {
    left: 1.5%;
}

.xright {
    right: 1.5%;
}


/*走进*/

.about {
    width: 100%;
    background: url(../images/guany-bg.jpg) no-repeat center;
    height: 39.1rem;
    background-size: 100% 39.1rem;
    position: relative;
    z-index: 5;
}

.abcom {
    width: 80rem;
    margin: 0 auto;
}

.ab-banner {
    height: 36rem;
    text-align: center;
    color: #fff;
}

.ab-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    padding-top: 4rem;
    line-height: 3rem;
    font-weight: bold;
}

.ab-banner h1 a {
    color: #fff;
    text-decoration: none;
    font-size: 3rem;
}

.ab-banner p {
    font-size: 1rem;
}

.ab-info {
    background-color: #f1fce5;
    margin: -60px auto 0;
    width: 90%;
    padding: 2rem 5%;
    border-top-right-radius: 3rem;
    text-align: center;
    position: relative;
}

.ab-info h2,
.ab-info h2 a {
    font-size: 1.8rem;
    color: #333;
    line-height: 2rem;
    font-weight: bold;
    height: 3.5rem;
}

.ab-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6rem;
    margin-bottom: 30px;
}

.ab-btn {
    display: block;
    background: #00953f url(../images/hz_btn.png) no-repeat 8.8rem center;
    color: #fff;
    text-decoration: none;
    border-radius: 2rem;
    transition: background 0.3s;
    width: 9.2rem;
    height: 2.6rem;
    margin: 0 auto;
    line-height: 2.5rem;
    font-size: 0.9rem;
    position: absolute;
    left: 43%;
    bottom: -1rem;
    background-size: 1rem 1rem;
    text-align: left;
    padding-left: 3rem;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.ab-btn:hover {
    color: #fff;
    transform: translateX(-3px);
    -webkit-transform: translateX(-3px);
    -ms-transform: translateX(-3px);
    -moz-transform: translateX(-3px);
}


/*发展历程*/

.fzlc {
    width: 100%;
    background: url(../images/fz-bg.jpg) no-repeat center;
    height: 45.75rem;
    background-size: 100% 51.75rem;
    padding-top: 7.5rem;
}

.fzcom {
    width: 92%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.fzcom h1 {
    font-size: 3rem;
    color: #333;
    padding-top: 12rem;
    height: 3rem;
    font-weight: bold;
}

.fzcom p.subtitle {
    font-size: 1rem;
    color: #333;
    display: block;
}

.fztime {
    position: relative;
    /*height:400px;margin-bottom:40px;*/
}


/*.fztime::before {content:'';position:absolute;top:50%;left:0;width:100%;height:2px;background:#fff;z-index:1;}*/

.fz {
    position: absolute;
    padding: 0 0 0 1.5rem;
    border-radius: 8px;
    z-index: 2;
    text-align: left;
    background: url(../images/fico.png) no-repeat left 1rem;
    height: 8rem;
    background-size: 0.6rem 6.8rem;
    width: 11rem;
}

.fz .year {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    line-height: 2.5rem;
    font-family: OPPO;
}

.fz .year b {
    font-size: 1rem;
}

.fz p {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.4rem;
}

.fz-2000 {
    left: 1%;
    top: 10rem;
}

.fz-2005 {
    left: 16.6%;
    top: 9rem;
}

.fz-2012 {
    left: 34.4%;
    top: 3rem;
}

.fz-2017 {
    left: 48.8%;
    top: 6.5rem;
}

.fz-2021 {
    left: 63.6%;
    top: 9rem;
}

.fz-2022 {
    left: 78.7%;
    top: 4.5rem;
}

.fz-2023 {
    left: 93.3%;
    top: -2rem;
    width: 8rem;
}

.fz-2023 span {
    line-height: 3rem;
}

.fzbtn {
    display: block;
    background: #00953f;
    color: #fff;
    text-decoration: none;
    border-radius: 2rem;
    transition: background 0.3s;
    font-size: 0.9rem;
    height: 2.7rem;
    line-height: 2.7rem;
    width: 12.5rem;
    margin: 28rem auto 0 auto;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.fzbtn:hover {
    color: #fff;
    transform: translateX(-3px);
    -webkit-transform: translateX(-3px);
    -ms-transform: translateX(-3px);
    -moz-transform: translateX(-3px);
}


/*新闻*/


/*新闻资讯*/

.news {
    padding: 0.5rem 0 2rem;
}

.news .pro_tit {
    margin-bottom: 2.5rem;
}

.news_l {
    width: 57%;
    height: 36.7rem;
    overflow: hidden;
}

.news_tit {
    width: 100%;
    height: 3rem;
    line-height: 3rem;
    position: relative;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.news_tit:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    position: absolute;
    bottom: 0;
    left: 0;
}

.news_tit:after {
    content: "";
    width: 5rem;
    height: 1px;
    background: #009e36;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.news_tit a {
    font-size: 1.3rem;
    color: #333;
}

.news_tit span {
    display: block;
    float: right;
}

.news_tit span a {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
}

.news_dl {
    display: block;
    width: 100%;
    height: 10.5rem;
    padding: 1.2rem 0 0;
    border-bottom: #dcdcdc 1px solid;
}

.news_dl dt {
    width: 36%;
    max-width: 36%;
    height: 9.1rem;
    float: left;
    line-height: 0;
}

.news_dl dt img {
    width: 100%;
    height: auto;
    border-radius: 0.6rem;
}

.news_dl dd {
    width: 60%;
    float: right;
    padding-top: 0.5rem;
}

.news_dl dd h5 {
    font-size: 0.8rem;
    color: #333333;
    font-weight: bold;
    line-height: 1.3rem;
    max-height: 3.9rem;
}

.news_dl dd p {
    font-size: 0.8rem;
    color: #999;
    padding-top: 0.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.5rem;
    height: 3rem;
}

.news_dl:hover dd h5,
.news_dl:hover dd span {
    color: #00953f;
}

.news_dl:hover dd span img {
    margin-left: -1.5rem;
}

.news_dl:hover dd h5 {
    font-weight: bold;
}

.news_btn {
    font-size: 0.8rem;
    color: #333;
    display: flex;
    align-items: center;
    height: 1.5rem;
    padding-top: 0.5rem;
}

.news_btn em {
    width: 1.5rem;
    height: 0.75rem;
    line-height: 0;
    margin-left: 0.5rem;
    overflow: hidden;
}

.news_btn em img {
    width: 3rem;
    height: 0.75rem;
}

.news_r {
    width: 37.5%;
    height: 36.7rem;
    overflow: hidden;
    padding: 0 3.4%;
    box-sizing: border-box;
    background: url(../images/qusbg2.jpg) no-repeat center top;
    background-size: 100% 36.7rem;
}

.news_r h3 {
    width: 100%;
}

.news_r h3 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 5.5rem;
    font-size: 1.3rem;
    color: #333333;
    font-weight: normal;
}

.news_r h3 em {
    width: 2.6rem;
    height: 2.6rem;
    display: block;
    float: right;
    line-height: 0;
    overflow: hidden;
}

.news_r h3 em img {
    width: 2.6rem;
    height: 2.6rem;
}

.news_r .news_pic {
    width: 100%;
    line-height: 0;
    margin-bottom: 1rem;
}

.news_r .news_pic img {
    width: 100%;
    height: auto;
}

.news_r ul li {
    width: 100%;
    border-bottom: #dcdcdc 1px dashed;
}

.news_r ul li:last-child {
    border-bottom: none;
}

.news_r ul li a {
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    width: 100%;
    height: 4.5rem;
    line-height: 1.5rem;
}
.news_r ul li a span{display: block;width: 100%;}
.news_r ul li a:hover {
    color: #90c320;
}


/*媒体查询html {font-size:12px;-webkit-text-size-adjust:none;}*/

@media screen and (min-width: 1263px) {
    html {
        font-size: calc(1263px * 20 / 1903);
    }
}

@media screen and (min-width: 1349px) {
    html {
        font-size: calc(1349px * 20 / 1903);
    }
}

@media screen and (min-width: 1463px) {
    html {
        font-size: calc(1463px * 20 / 1903);
    }
}

@media screen and (min-width: 1543px) {
    html {
        font-size: calc(1543px * 20 / 1903);
    }
}

@media screen and (min-width: 1583px) {
    html {
        font-size: calc(1583px * 20 / 1903);
    }
}

@media screen and (min-width: 1643px) {
    html {
        font-size: calc(1643px * 20 / 1903);
    }
}

@media screen and (min-width: 1663px) {
    html {
        font-size: calc(1663px * 20 / 1903);
    }
}

@media screen and (min-width: 1903px) {
    html {
        font-size: calc(1903px * 20 / 1903);
    }
}