/* header */

.header {
    height: 88px;
    /* background-image: url(../images/top-bg1.png); */
    background-color: rgba(255, 255, 255, 1);
    background-repeat: repeat-x;
    position: sticky;
    z-index: 2;
}

.header_box {
    display: flex;
    align-items: center;
    line-height: 88px;
}

.header_box .logo {
    width: 33%;
    margin-right: auto;
}

.header_box .logo img {
    max-width: 4rem;
    width: 100%;
    display: block;
}

.header_box .nav {
    width: 52%;
    display: flex;
}

.header_box .nav a {
    width: 16.6666%;
    text-align: center;
    color: #000;
    font-size: 17px;
}

.header_box .nav a:hover {
    color: #fab927;
}

@media screen and (max-width: 1600px) {
    .header_box .nav a {
        font-size: 0.16rem;
    }
}

.header_box .header_tel {
    margin-left: auto;
    display: flex;
    align-items: center;
    font-size: 0.24rem;
    font-family: impact;
    letter-spacing: 1px;
    color: #000;
}

.header_box .header_tel img {
    max-width: 0.3rem;
    max-height: 0.3rem;
    width: 100%;
    display: block;
    margin-right: 5px;
}

@media screen and (max-width: 1600px) {
    .header_box .header_tel img {
        max-width: 0.25rem;
        max-height: 0.25rem;
        width: 100%;
        display: block;
        margin-right: 5px;
    }
    .header_box .header_tel {
        font-size: 0.18rem;
    }
}


/* banner */

#banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: -100px;
}

#banner .swiper-container {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#banner .swiper-slide .detail {
    position: absolute;
    width: 50%;
    bottom: 48%;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s 0.3s;
}

#banner .swiper-slide-active .detail {
    opacity: 1;
    width: 100%;
    text-align: center;
}

#banner .swiper-slide .detail h3 {
    color: #fff;
    font-size: 0.35rem;
    /* margin-bottom: 0.15rem; */
    letter-spacing: 3px;
}

#banner .swiper-slide .detail span {
    width: 100px;
    height: 3px;
    background: #fff;
    display: block;
    margin: 0 auto;
}

#banner .swiper-slide .detail p {
    font-size: 0.18rem;
    letter-spacing: 3px;
    margin-top: 0.05rem;
}

#banner .swiper-slide .detail p span {
    display: block;
}


/**/

.effect1 img {
    transform: scale(1.25, 1.25) translate(10%, 10%);
    transform: scale(1.1, 1.1) translate(4.545%, 4.545%);
    /*tr     =    (sc-1)/2sc*100%              */
    /* --1.25       0.25/2.5*100%=10%          */
}

.leftUp img {
    -webkit-animation-name: leftUp;
    animation-name: leftUp;
}

@-webkit-keyframes leftUp {
    0% {
        transform: scale(1.1, 1.1) translate(4.545%, 4.545%);
    }
    100% {
        transform: scale(1.1, 1.1) translate(-4.545%, -4.545%);
    }
}

@keyframes leftUp {
    0% {
        transform: scale(1.1, 1.1) translate(4.545%, 4.545%);
    }
    100% {
        transform: scale(1.1, 1.1) translate(-4.545%, -4.545%);
    }
}

.moveRight img {
    -webkit-animation-name: moveRight;
    animation-name: moveRight;
}

@-webkit-keyframes moveRight {
    0% {
        transform: scale(1.1, 1.1) translate(-4.545%, 0);
    }
    100% {
        transform: scale(1.1, 1.1) translate(4.545%, 0);
    }
}

@keyframes moveRight {
    0% {
        transform: scale(1.1, 1.1) translate(-4.545%, 0);
    }
    100% {
        transform: scale(1.1, 1.1) translate(4.545%, 0);
    }
}

.moveDown img {
    -webkit-animation-name: moveDown;
    animation-name: moveDown;
}

@-webkit-keyframes moveDown {
    0% {
        transform: scale(1.1, 1.1) translate(0, -4.545%);
    }
    100% {
        transform: scale(1.1, 1.1) translate(0, 4.545%);
    }
}

@keyframes moveDown {
    0% {
        transform: scale(1.1, 1.1) translate(0, -4.545%);
    }
    100% {
        transform: scale(1.1, 1.1) translate(0, 4.545%);
    }
}

.centerBig img {
    -webkit-animation-name: centerBig;
    animation-name: centerBig;
}

@-webkit-keyframes centerBig {
    100% {
        transform: scale(1.1, 1.1);
    }
}

@keyframes centerBig {
    100% {
        transform: scale(1.1, 1.1);
    }
}

.rightDownBig img {
    -webkit-animation-name: rightDownBig;
    animation-name: rightDownBig;
}

@-webkit-keyframes rightDownBig {
    100% {
        transform: scale(1.1, 1.1) translate(4%, 4%);
    }
}

@keyframes rightDownBig {
    100% {
        transform: scale(1.1, 1.1) translate(4%, 4%);
    }
}

.swiper-slide img {
    animation-duration: 12s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 12s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
    width: 100%;
    height: 100%;
}

#banner .swiper-pagination {
    bottom: 35px;
    right: 46.5%;
}

#banner .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: #fff;
    margin: 0 5px;
}

#banner .banner_txt h3 {
    text-align: center;
    font-size: 0.35rem;
    color: #fefefe;
}

#banner .banner_txt p {
    text-align: center;
    font-size: 0.18rem;
    color: #fefefe;
    margin-top: 15px;
}


/* product */

.index_product {
    background-image: url(../images/index_pro_bg.jpg);
    background-size: 100% 100%;
}

.product_box {
    padding: 50px 0;
}

.product_box .hd {
    display: flex;
}

.product_box .hd span {
    font-size: 32px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
}

.product_box .hd span em {
    height: 5px;
    background-color: #1c5e34;
    width: 0.6rem;
    border-radius: 5px;
    display: inline-block;
}

.product_box .hd ul {
    margin-left: auto;
    display: flex;
    margin-top: 15px;
}

.product_box .hd ul li {
    width: 120px;
    height: 40px;
    font-size: 16px;
    background-color: #1c5e34;
    margin-right: 20px;
    color: #fff;
    text-align: center;
    border-radius: 40px;
    line-height: 40px;
    cursor: pointer;
    transition: 0.6s;
}

.product_box .hd ul li:hover {
    transition: 0.6s;
    background-color: #c12025;
}

.product_box .hd ul li:last-of-type {
    margin-right: 0;
}

.product_box .bd {
    background-color: #fff;
    margin-top: 40px;
}

.product_box .bd ul {
    display: flex;
    align-items: center;
}

.product_box .bd ul .index_product_box_L {
    width: 56%;
    padding: 50px;
    box-sizing: border-box;
}

@media screen and (max-width: 1600px) {
    .product_box .bd ul .index_product_box_L {
        padding: 0.28rem;
    }
}

@media screen and (max-width: 1401px) {
    .product_box .bd ul .index_product_box_L {
        padding: 0.25rem;
    }
}

@media screen and (max-width: 1301px) {
    .product_box .bd ul .index_product_box_L {
        padding: 0.21rem;
    }
}

.product_box .bd ul .index_product_box_L h3 {
    font-size: 26px;
    font-weight: bold;
    color: #1c5e34;
}

.product_box .bd ul .index_product_box_L p {
    font-size: 16px;
    margin-top: 15px;
    line-height: 26px;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #333;
}

.product_box .bd ul .index_product_box_L em {
    font-style: normal;
    font-size: 20px;
    color: #ff9b20;
    font-weight: 600;
    margin-top: 15px;
    letter-spacing: 1px;
    display: inline-block;
}

@media screen and (max-width: 1600px) {
    .product_box .bd ul .index_product_box_L p {
        font-size: 0.16rem;
        line-height: 0.24rem;
        margin-top: 0.05rem;
    }
}

.product_box .bd ul .index_product_box_R {
    width: 44%;
}

.product_box .bd ul .index_product_box_R a img {
    height: 100%;
}

.index_product_box_L span {
    margin-top: 0.2rem;
    display: inline-block;
}

.index_product_box_L span a {
    color: #ee2d00;
    font-size: 0.17rem;
}

.index_product_box_pic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 20px;
}


/* index_ys */

.index_ys {
    background-image: url(../images/index_ys_bg.jpg);
    background-size: 100% auto;
}

.index_ys_box {
    padding: 0.5rem 0 0 0;
}

.index_ys_box .ys_title {
    margin: 0 auto;
    max-width: 6.23rem;
    width: 100%;
    max-height: 0.67rem;
}

@media screen and (max-width: 1600px) {
    .index_ys_box .ys_title {
        max-width: 5.23rem;
    }
}

@media screen and (max-width: 1400px) {
    .index_ys_box .ys_title {
        max-width: 4.23rem;
    }
}

.index_ys_box .ys_title img {
    width: 100%;
    display: block;
}

.index_ys_box .ys_ftitle {
    text-align: center;
}

.index_ys_box .ys_ftitle p {
    background-color: #fab927;
    color: #fff;
    height: 0.35rem;
    display: inline-block;
    text-align: center;
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    padding: 0 0.3rem;
}

@media screen and (max-width: 1400px) {
    .index_ys_box .ys_ftitle p {
        font-size: 0.14rem;
        padding: 0 0.2rem;
    }
}


/* .index_ys_cont {
  background-image: url(../images/index_ys_pic.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 5.27rem;
  display: grid;
  grid-template-columns: 30% 40% 30%;
  align-items: center;
  margin-top: 0.4rem;
} */

.index_ys_cont {
    background-image: url(../images/index_ys_pic.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* width: 100%; */
    height: 52.7vh;
    margin-top: 80px;
}

.index_ys_cont dl {
    position: relative;
    margin-top: -0.5rem;
}

.index_ys_cont_top {
    display: flex;
}

.index_ys_cont_top dl {
    width: 29%;
    color: #fff;
    margin-top: 2vh;
}

.index_ys_cont_top dl:first-of-type dt {
    text-align: right;
}

.index_ys_cont_top dl:last-of-type {
    margin-left: auto;
}

.index_ys_cont_top dl dt {
    font-size: 30px;
    font-weight: bold;
    color: #fab927;
}

.index_ys_cont_top dl dd {
    padding-top: 3vh;
    font-size: 16px;
    line-height: 30px;
}


/* ys 小于 1600 */

@media screen and (max-width: 1600px) {
    .index_ys_cont_top dl {
        margin-top: 1.3vh;
    }
    .index_ys_cont_top dl dt {
        font-size: 26px;
    }
    .index_ys_cont_top dl dd {
        padding-top: 2vh;
    }
}


/* ys 小于 1401 */

@media screen and (max-width: 1400px) {
    .index_ys_cont_top dl {
        margin-top: 2.5vh;
    }
    .index_ys_cont_top dl dt {
        font-size: 24px;
    }
    .index_ys_cont_top dl dd {
        padding-top: 2vh;
        font-size: 15px;
        line-height: 26px;
    }
}

.index_ys_cont_bottom {
    margin-top: 16.5vh;
    display: flex;
}

.index_ys_cont_bottom dl {
    width: 29%;
    color: #fff;
}

.index_ys_cont_bottom dl:first-of-type dt {
    text-align: right;
}

.index_ys_cont_bottom dl:last-of-type {
    margin-left: auto;
}

.index_ys_cont_bottom dl dt {
    font-size: 30px;
    font-weight: bold;
    color: #fab927;
}

.index_ys_cont_bottom dl dd {
    padding-top: 3vh;
    font-size: 17px;
    line-height: 30px;
}


/* ys 小于 16001 */

@media screen and (max-width: 1600px) {
    .index_ys_cont_bottom {
        margin-top: 18.6vh;
        display: flex;
    }
    .index_ys_cont_bottom dl dt {
        font-size: 26px;
    }
    .index_ys_cont_bottom dl dd {
        padding-top: 2vh;
    }
}


/* ys 小于 1400 */

@media screen and (max-width: 1400px) {
    .index_ys_cont_bottom {
        margin-top: 18.5vh;
        display: flex;
    }
    .index_ys_cont_bottom dl dt {
        font-size: 24px;
    }
    .index_ys_cont_bottom dl dd {
        padding-top: 2vh;
        font-size: 15px;
        line-height: 26px;
    }
}

@media screen and (max-width: 1322px) {
    .index_ys_cont_bottom {
        margin-top: 15.5vh;
        display: flex;
    }
    .index_ys_cont_bottom dl dt {
        font-size: 24px;
    }
    .index_ys_cont_bottom dl dd {
        padding-top: 2vh;
        font-size: 15px;
        line-height: 26px;
    }
}


/* index_case */

.index_case {
    padding: 50px 0;
    background-image: url(../images/case_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.title h3 {
    font-size: 32px;
    text-align: center;
    font-weight: bold;
}

.title em {
    height: 5px;
    background-color: #1c5e34;
    width: 0.6rem;
    border-radius: 5px;
    display: table;
    margin: 0 auto;
}

.index_case_box ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    margin-top: 40px;
}

.index_case_box ul li {
    background-color: #fff;
    box-shadow: 0 0 20px #d7d6d6;
}

.index_case_box ul li a {
    position: relative;
}

.index_case_box ul li a span {
    padding-bottom: 76%;
    overflow: hidden;
    position: relative;
    transition: all 0.6s ease;
    display: block;
    margin: 2% 2% 0 2%;
}

.index_case_box ul li a span img {
    transition: all 0.6s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    width: 100%;
    height: 100%;
    margin: auto;
}

.index_case_box ul li a:hover span img {
    transform: scale(1.1);
}

.index_case_box ul li a p {
    font-size: 16px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #333;
    transition: 1s;
}

.index_case_box ul li a:hover p {
    background: #1c5e34;
    color: #fff;
    transition: 1s;
}

.ys_an {
    text-align: center;
    margin-top: 0.5rem;
}

.ys_an a {
    background-color: #1c5e34;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    font-size: 18px;
    padding: 0 80px;
    color: #fff;
    border-radius: 10px;
}


/* index_about */

.index_about {
    background-image: url(../images/index_about_bg.jpg);
    /* height: 74vh; */
    width: auto;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    background-attachment: fixed;
}

.index_about em {
    display: block;
    color: #fff;
    font-size: 65px;
    line-height: 65px;
    text-align: center;
    font-style: normal;
    font-weight: bold;
}

.index_about span {
    line-height: normal;
    color: rgba(255, 255, 255, 1);
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    display: block;
}


/* .index_about .index_about_hr {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 1);
  height: 1px;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-bottom: 0px;
  padding-top: 0px;
} */

.index_about_txt {
    margin-top: 36px;
}

.index_about .index_about_txt p {
    color: rgba(255, 255, 255, 1);
    line-height: 34px;
    /* text-indent: 2em; */
    font-size: 16px;
    text-align: center;
    text-align: justify;
}

.index_about_txt p:nth-of-type(2) {
    margin-top: 10px;
}

.index_about_txt p:nth-of-type(3) {
    margin-top: 10px;
}

.index_about_btn {
    margin-top: 45px;
}

.index_about_btn a {
    display: table;
    position: relative;
    /* overflow: hidden; */
    text-align: center;
    box-sizing: border-box;
    line-height: 50px;
    font-family: Arial;
    font-size: 16px;
    transition-property: all;
    border-radius: 10px;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
    background-color: #1c5e34;
    color: #fff;
    margin: 0 auto;
    height: 50px;
    padding: 0 80px;
    letter-spacing: 1px;
}

.index_about_pic {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0.4rem;
}

.index_about_pic a {
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    max-height: 207px;
    overflow: hidden;
}

.index_about_pic a img {
    box-sizing: border-box;
    display: block;
    width: 100%;
    transition: all 1s;
    max-height: 100%;
}

.index_about_pic a:hover img {
    transform: scale(1.1);
}


/* index_serve */

.index_serve {
    margin-top: 30px;
    display: flex;
    padding-bottom: 50px;
}

.index_serve .index_serve_L {
    width: 8%;
    position: relative;
}

.index_serve .index_serve_L p {
    /* writing-mode: vertical-rl; */
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    /* top: 0;
    margin-left: 0.35rem;
    margin-top: 0.26rem; */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.index_serve .index_serve_R {
    width: 92%;
    display: grid;
}

.index_serve .index_serve_R ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.index_serve .index_serve_R ul li {
    width: 8%;
    margin-left: 5%;
}

.index_serve .index_serve_R ul li img {
    width: 75%;
    margin: 0 auto;
}

.index_serve .index_serve_R ul li p {
    text-align: center;
    font-size: 17px;
    color: #fff;
    margin-top: 10px;
}

@media screen and (max-width: 1600px) {
    .index_serve .index_serve_R ul li p {
        font-size: 16px;
    }
}

@media screen and (max-width: 1350px) {
    .index_serve .index_serve_R ul li img {
        width: 80%;
    }
    .index_serve .index_serve_R ul li p {
        font-size: 14px;
    }
}


/* index_news */

.index_news {
    padding: 50px 0;
}

.index_news_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    margin-top: 40px;
}

.index_news_boxL {}

.index_news_boxL_pic {
    border: 1px solid #dbdbdb;
}

.index_news_boxL_pic img {
    padding: 0.08rem;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.index_news_boxL_content {
    border-top: 1px solid #dbdbdb;
    margin-top: 0.2rem;
}

.index_news_boxL_content a {
    display: block;
}

.index_news_boxL_title {
    display: flex;
    align-items: center;
}

.index_news_boxL_title h3 {
    font-size: 17px;
    font-weight: bold;
    height: 36px;
    line-height: 36px;
    color: #222;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 80%;
    margin-top: 10px;
    transition: 1s;
}

.index_news_boxL_content a:hover .index_news_boxL_title h3 {
    color: #1c5e34;
    transition: 1s;
}

.index_news_boxL_title span {
    margin-left: auto;
    font-size: 16px;
    color: #000;
    height: 36px;
    line-height: 36px;
    margin-top: 10px;
}

.index_news_boxL_txt p {
    line-height: 28px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #666;
    text-indent: -2em;
    font-family: 微软雅黑;
}

.index_news_boxL_txt span {
    margin-top: 15px;
    color: #1c5e34;
    display: inline-block;
    font-size: 17px;
}

.index_news_boxR {
    /* border: 1px solid #333; */
}

.index_news_boxR dl a {
    display: grid;
    grid-template-columns: 15% 85%;
    margin-bottom: 15px;
    border-bottom: 1px dashed #d3d3d3;
    padding-bottom: 15px;
}

.index_news_boxR dl dt {
    border: 1px solid #d3d3d3;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    max-width: 88px;
    max-height: 88px;
}

.index_news_boxR dl dt h4 {
    font-size: 40px;
    font-weight: bold;
    color: #d4d4d4;
    height: 40px;
    line-height: 40px;
}

.index_news_boxR dl dt p {
    font-size: 20px;
    color: #c4c4c4;
}

.index_news_boxR dl dd {
    padding-left: 1px;
    padding-left: 18px;
}

.index_news_boxR dl dd strong {
    font-size: 17px;
    color: #222;
    display: flex;
}

.index_news_boxR dl a:hover dd strong {
    color: #1c5e34;
}

.index_news_boxR dl dd strong em {
    margin-left: auto;
    font-style: normal;
    font-weight: normal;
}

.index_news_boxR dl dd p {
    line-height: 24px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #666;
    margin-top: 12px;
    text-indent: -2em;
}


/* footer */

.footer {
    width: 100%;
    background-image: url(../images/footer_bg.jpg);
    background-size: auto;
}

.footer_bootom {
    display: grid;
    grid-template-columns: 40% 44% 16%;
    padding: 50px 0;
}

.footer_bottom_L {
    border-top: 1px solid #fefefe;
    border-bottom: 1px solid #fefefe;
    padding: 30px 0;
}

.footer_bottom_L ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.footer_bottom_L ul li p {
    font-size: 16px;
    line-height: 16px;
    margin: 0 0 22px 0;
    color: #fff;
    font-weight: bold;
}

.footer_bottom_L ul li a {
    display: block;
    font-size: 15px;
    line-height: 15px;
    color: #e4e4e4;
    margin-bottom: 16px;
    padding-left: 10px;
    box-sizing: content-box;
    background: url(../images/ft_dian.png) left center no-repeat;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.footer_bottom_L .tel {
    line-height: 25px;
    margin-top: 25px;
    padding-left: 50px;
    box-sizing: content-box;
    background: url(../images/ft_icon_03.png) left center no-repeat;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
}

.footer_bottom_C {
    padding-top: 30px;
    border-top: solid 1px #e4e4e4;
    overflow: hidden;
    box-sizing: content-box;
    margin-left: 70px;
}

.footer_bottom_C .infro {
    padding-left: 35px;
    box-sizing: content-box;
    margin-bottom: 20px;
}

.footer_bottom_C .infro:nth-of-type(1) {
    background: url(../images/ft_icon_01.png) left top no-repeat;
}

.footer_bottom_C .infro:nth-of-type(2) {
    background: url(../images/ft_icon_02.png) left top no-repeat;
}

.footer_bottom_C .infro h4 {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: bold;
}

.footer_bottom_C .infro span {
    font-size: 15px;
    line-height: 30px;
    color: #fff;
}

.footer_bottom_C p {
    display: inline-block;
    margin-bottom: 17px;
    color: #fff;
}

.footer_bottom_C p a {
    color: #fff;
}

.footer_bottom_R {
    padding: 30px 0;
    margin-left: auto;
}

.footer_bottom_R img {
    width: 140px;
}

.footer_bottom_R p {
    color: #fff;
    font-size: 14px;
    text-align: center;
    height: 32px;
    line-height: 32px;
}

.bottom {
    height: 160px;
    background: #095db4;
}

.bottom_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    justify-items: center;
    height: 160px;
}

.bottom_bar {
    display: flex;
    width: 100%;
    align-items: center;
    border-right: 1px solid #3a7dc3;
}

.bottom_bar:last-child {
    border-right: none;
}

.bottom_bar_txt {
    display: flex;
    flex-direction: column;
}

.bottom_bar_img {
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    line-height: 60px;
    margin-left: 100px;
    text-align: center;
}

.bottom_bar_txt {
    color: #fff;
    margin-left: 25px;
    border-left: 3px solid #fff;
    padding-left: 20px;
}

.bottom_bar_txt span {
    font-size: 16px;
}

.bottom_bar_txt em {
    font-style: normal;
    font-size: 16px;
    margin-top: 8px;
}


/* index_ysgb */

.index_ysgb {
    /* background-color: #d3d3d3; */
    padding: 50px 0;
}

.index_ysgb_title {
    text-align: center;
}

.index_ysgb_title h3 {
    font-size: 38px;
}

.index_ysgb_title p {
    font-size: 16px;
    color: rgba(137, 137, 137, 1);
    font-family: 微软雅黑;
}

.index_ysgb .index_ysgb_box {
    display: grid;
    grid-template-columns: 25% 50% 25%;
    align-items: center;
    position: relative;
    height: 500px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.index_ysgb .index_ysgb_box ul li {
    margin-top: 20px;
}

.index_ysgb .index_ysgb_box ul li:first-of-type {
    border-bottom: 1px solid rgba(221, 221, 221, 1);
    margin-top: 20px;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.index_ysgb .index_ysgb_box ul li .index_ysgb_tb {
    width: 50px;
}

.index_ysgb .index_ysgb_box ul li span {
    font-size: 26px;
    color: #1c5e34;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 10px;
}

.index_ysgb .index_ysgb_box ul li p {
    line-height: 2;
    color: rgba(102, 102, 102, 1);
    font-size: 16px;
    margin-bottom: 0px;
    min-height: 46px;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 微软雅黑;
}

.index_ysgb .index_ysgb_box .index_ysgb_pic {
    max-width: 708px;
    padding: 40px;
}

.index_ysgb .index_ysgb_box .index_ysgb_pic::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 640px;
    top: calc(50% - 220px);
    left: calc(50% - 320px);
    background-image: url(../images/index_ysgb_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    animation: circle2 30s infinite linear;
    background-size: 80%;
}

.index_ysgb .index_ysgb_box .index_ysgb_pic img {
    /* padding: 55px;
  box-sizing: border-box;
  animation: circle2 30s infinite linear;
  background-size: 100%; */
    position: absolute;
    width: 39%;
    left: 30%;
    top: -2%;
}

@-webkit-keyframes circle2 {
    0% {
        transform: rotate(-360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}