.main {
    background: #FAFAFA;
}

.banner .swiper-slide {
    position: relative;
}

.banner .swiper-slide .pic img {
    display: block;
    width: 100%;
    min-height: 490px;
    object-fit: cover;
    height: 100vh;
}

.banner .swiper-slide .slideBox {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.banner .swiper-slide .slideBox .title {
    text-transform: uppercase;
    font-family: Poppins-Bold;
    color: #FFFFFF;
    line-height: 1.25;
    margin-bottom: 1.72em;
}

.banner-pagination {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: flex-end;
    bottom: 75px;
    z-index: 3;
    gap: 51px;
}

.banner-pagination li {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
    color: rgba(255, 255, 255, .5);
    transition: all .6s;
    cursor: pointer;
}

.banner-pagination li:hover,
.banner-pagination li.active {
    color: #AFE226;
}

.banner-pagination li .circle-animation {
    position: absolute;
    left: -2px;
    top: -2px;
    width: 44px;
    height: 44px;
    box-sizing: border-box;
    transform: scale(1);
}

.banner-pagination li .circle-animation svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.banner-pagination li .progress-ring__circle {
    /* 圆周长 = 2 * π * r (r=40) */
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.banner-pagination li.active .progress-ring__circle {
    animation: circle-progress 2s linear forwards;
}

@keyframes circle-progress {
    to {
        stroke-dashoffset: 0;
    }
}

.commonMore {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    line-height: 60px;
    background: #AFE226;
    border-radius: 30px;
    /* font-family: Poppins-Bold; */
    font-size: 18px;
    color: #007F41;
    text-transform: uppercase;
    font-weight: bold;
    transition: all .6s;
}

.commonMore:hover {
    color: #fff;
    opacity: .9;
}
.commonMore:hover .iconfont{
    transform: translateX(5px);
}
.commonMore .iconfont {
    font-size: 24px;
    margin-left: 20px;
    font-weight: bold;
    transition: all .6s;
}

.box1 {
    padding: 149px 0;
}

.box1 .title {
    text-align: center;
}

.box1 .box-c {
    margin-top: 83px;
}

.box1 .box-c .list {
    display: flex;
    /* grid-template-columns: repeat(6, 1fr); */
    gap: 20px;
}
.box1 .box-c .list li{
	flex: 1;
}
.box1 .box-c .list li .img {
    position: relative;
    background: linear-gradient(to bottom, #FAFAFA, #A1CEB8);
    border-radius: 110px;
    padding: 10px;
    overflow: hidden;
}

.box1 .box-c .list li .img::before {
    position: absolute;
    left: 2px;
    top: 2px;
    content: "";
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 108px;
    background: #FAFAFA;
}

.box1 .box-c .list li .picCover {
    padding-top: 150%;
    z-index: 3;
}

.box1 .box-c .list li .pic {
    border-radius: 100px;
}

.box1 .box-c .list li .icon {
    position: relative;
    width: 90px;
    height: 90px;
    background: linear-gradient(-30deg, #007F41, #FFFFFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    margin: -62px auto 0;
}

.box1 .box-c .list li .icon img {
    max-height: 43px;
    max-width: 43px;
    transition: all .6s;
}

.box1 .box-c .list li:hover .icon img {
    transform: rotateY(180deg);
}

.box1 .box-c .list li .text {
    font-family: Poppins-Bold;
    font-size: 24px;
    color: #007F41;
    line-height: 1.25;
    text-align: center;
    word-wrap: break-word;
    margin-top: 34px;
    transition: all .6s;
}

.box1 .box-c .list li:hover .text {
    color: #AFE226;
}

.box2 {
    position: relative;
    padding: 157px 0 100px;
    border-radius: 20px;
    overflow: hidden;
    min-height: 438px;
    display: flex;
    align-items: center;
}

.box2 .bg::after,
.box2 .bg img,
.box2 .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.box2 .bg::after {
    content: "";
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
    opacity: 0.3;
}

.box2 .bg img {
    object-fit: cover;
    opacity: 0;
    transition: all .6s;
}

.box2 .bg img.active {
    opacity: 1;
}

.box2 .indexTitle {
    color: #fff;
}

.box2 .content1400 {
    position: relative;
    z-index: 3;
}

.box2 .box-c {
    margin-top: 131px;
}

.box2 .box-c .item {
    display: none;
}

.box2 .box-c .item.active {
    display: block;
}

.box2 .box-c .title {
    font-family: Poppins-Bold;
    color: #FAFAFA;
    line-height: 1;
}

.box2 .box-c .des {
    font-weight: 400;
    font-size: 18px;
    color: #FAFAFA;
    line-height: 30px;
    height: 90px;
    margin-top: 1.66em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box2 .box-c .commonMore {
    margin-top: 30px;
}

.box4 .box-c .list li .commonMore span:first-child,
.box3 .commonMore span:first-child,
.box2 .box-c .commonMore span:first-child {
    color: #fff;
}

.box2 .box-b {
    margin-top: 158px;
}

.box2 .box-b .swiper::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .2);
}

.box2 .box-b .swiper-slide {
    position: relative;
    width: auto;
    /* font-family: Poppins-Bold; */
    font-size: 18px;
    color: #fff;
    line-height: 36px;
    transition: all .6s;
    padding: 15px 24px;
    text-transform: uppercase;
    font-weight: bold;
}

.box2 .box-b .swiper-slide::before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    transition: all .6s;
    background-color: #AFE226;
    border-radius: 2px;
}

.box2 .box-b .swiper-slide.active::before {
    width: 100%;
}

.box2 .box-b .swiper-slide:not(:last-child) {
    margin-right: 66px;
}

.box2 .box-b .swiper-slide:hover,
.box2 .box-b .swiper-slide.active {
    color: #AFE226;
}

.box3 {
    position: relative;
    padding: 140px 0 254px;
    background: linear-gradient(135deg, #FAFAFA 0%, #FAFAFA 50%, #6BB490 100%);
    overflow: hidden;
}

.box3::before {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    width: 605px;
    height: 605px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FAFAFA 0%, #6BB490 80%, #6BB490 100%);
    transform: translate(15%, 20%);
}

.box3 .content1400 {
    position: relative;
    z-index: 3;
}

.box3 .box-c {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.box3 .box-c .l {
    position: relative;
    width: 62.85%;
    z-index: 3;
}

.box3 .indexTitle {
    margin-bottom: 1.25em;
}

.box3 .des {
    font-family: Poppins-Bold;
    color: #007F41;
    line-height: 1.33;
    text-transform: uppercase;
    width: 102%;
    /* font-weight: bold; */
}

.box3 .l .text {
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    line-height: 30px;
    width: 677px;
    max-width: 100%;
    margin: 2em 0 5.27em;
}

.box3 .en {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    transform: translateY(52.8%);
    display: block;
}

.box3 .box-c .r {
    position: relative;
    flex: 1;
    padding-top: 61px;
    z-index: 3;
}

.box3 .box-c .r .item {
    width: 244px;
    height: 244px;
    background: #007F41;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    animation: floatAnimation 4s ease-in-out infinite;
}

.box3 .box-c .r .item .number {
    font-family: Poppins-Regular;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1;
}

.box3 .box-c .r .item .text {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    margin-top: 10px;
}

.box3 .box-c .r .item1 {
    margin: 0 0 0 auto;
    animation-delay: 0s;
}

.box3 .box-c .r .item2 {
    background-color: #AFE226;
    animation-delay: 1s;
}

.box3 .box-c .r .item3 {
    background-color: #26BCAC;
    animation-delay: 2s;
}

.box3 .box-c .r .circle {
    position: relative;
    width: 280px;
    height: 280px;
    margin-top: -88px;
}

.box3 .box-c .r .circle::before {
    position: absolute;
    left: -24%;
    top: -2%;
    content: "";
    width: 100%;
    height: 100%;
    transform-origin: left top;
    transform: scale(1.725);
    border-radius: 50%;
    border: 1px dashed #FFFFFF;
}

.box3 .box-c .r .circle .item2 {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.box3 .box-c .r .circle .itemAb {
    position: absolute;
    left: 0;
    top: 0;
    width: 249px;
    height: 249px;
    transform: translate(82.73%, 68.27%);
    z-index: 1;
}

.box3 .box-c .r .circle .itemAb .item3 {
    width: 100%;
    height: 100%;
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0)scale(1);
    }

    50% {
        transform: translateY(-15px)scale(1.03);
    }
}

.box4 {
    padding: 138px 0 152px;
}

.box4 .box-t {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box4 .box-t .more {
    display: flex;
    align-items: center;
    font-family: "Poppins-Bold";
    font-size: 24px;
    color: #999999;
    line-height: 1.5;
    transition: all .6s;
}

.box4 .box-t .more:hover {
    color: #007F41;
}

.box4 .box-t .more .iconfont {
    color: #007F41;
    font-weight: bold;
    font-size: 22px;
    margin-left: 14px;
}

.box4 .box-c {
    margin-top: 57px;
}

.box4 .box-c .list li>a {
    position: relative;
    display: flex;
    padding-bottom: 40px;
    border-bottom: 1px solid #DEDEDE;
}

.box4 .box-c .list li:not(:last-child) {
    margin-bottom: 60px;
}

.box4 .box-c .list li>a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #007F41;
    transition: all .6s;
}

.box4 .box-c .list li:hover>a::before {
    width: 100%;
}

.box4 .box-c .list li .pic {
    width: 400px;
    height: 224px;
    border-radius: 5px;
}

.box4 .box-c .list li .text-box {
    flex: 1;
    margin-left: 40px;
    padding-top: 15px;
}

.box4 .box-c .list li .text-title {
    font-family: Poppins-Bold;
    color: #222222;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .6s;
}
.box4 .box-c .list li:hover .text-title{
    color: #007F41;
}
.box4 .box-c .list li .text-des {
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    line-height: 24px;
    margin-top: 27px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box4 .box-c .list li .text-box-b {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box4 .box-c .list li .date {
    font-weight: 400;
    font-size: 18px;
    color: #007F41;
    line-height: 1;
}

.box4 .box-c .list li .commonMore {
    padding: 0 20px;
    font-family: "Poppins-Regular";
}

.box5 {
    padding: 140px 0;
    background: linear-gradient(135deg, #6BB490 0%, #FAFAFA 100%);
}

.box5 .des {
    font-family: Poppins-Bold;
    font-size: 24px;
    color: #222222;
    line-height: 1;
}

.box5 .indexTitle {
    margin-top: .2em;
    text-transform: inherit;
}

.box5 .box-c {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    align-items: flex-start;
}

.box5 .box-c .l {
    width: 47.14%;
}

.box5 .box-c .l .inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.box5 .box-c .l .inputs .input1 {
    grid-column: 1/3;
}

.box5 .box-c .l .inputs .input {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 20px 22px;
    height: 70px;
}

.box5 .box-c .l .inputs .input input,
.box5 .box-c .l .inputs .input textarea {
    width: 100%;
    height: 100%;
    font-family: Poppins-Regular;
    font-weight: 400;
    font-size: 18px;
    color: #333;
    line-height: 30px;
    border: none;
    outline: none;
    resize: none;
}

.box5 .box-c .l .inputs .input input::placeholder,
.box5 .box-c .l .inputs .input textarea::placeholder {
    color: #999999;
}

.box5 .box-c .l .inputs .input.textarea {
    height: 160px;
}

.box5 .box-c .l .submit {
    width: 160px;
    line-height: 60px;
    background: #007F41;
    border-radius: 5px;
    font-size: 18px;
    color: #FFFFFF;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
}

.box5 .box-c .r {
    width: 50%;
    box-shadow: 5px 9px 30px 0px rgba(29, 95, 99, 0.3);
    border-radius: 10px;
}

.box5 .box-c .r .pic {
    border-radius: 10px;
}

@media (max-width:1440px) {
    .box1 .box-c .list {
        gap: 10px;
    }

    .box1 .box-c .list li .img {
        padding: 5px;
    }

    .box1 .box-c .list li .img::before {
        left: 1px;
        top: 1px;
        width: calc(100% - 2px);
        height: calc(100% - 2px);
    }
    .box1 .box-c .list li .icon{
        width: 70px;
        height: 70px;
        margin-top: -34px;
    }
    .box1 .box-c .list li .icon img{
        max-width: 30px;
        max-height: 30px;
    }
    .box1 .box-c .list li .text{
        margin-top: 20px;
        font-size: 20px;
    }
    .box3 .box-c .l{
        width: 58%;
    }
}
@media (max-width:1280px) {
   
    .box3 .box-c .r .circle .itemAb,
    .box3 .box-c .r .item{
        width: 200px;
        height: 200px;
    }
    .box3 .box-c .r .item .text{
        font-size: 14px;
        line-height: 20px;
        margin-top: 0;
    }
    .box3 .box-c .r .circle{
        width: 240px;
        height: 240px;
    }
}
@media (max-width:1199px) {
    .banner .swiper-slide .slideBox .title{
        margin-bottom: 1em;
    }
    .banner .swiper-slide .pic img{
        height: auto;
    }
    .commonMore{
        font-size: 16px;
        line-height: 50px;
    }
    .banner-pagination{
        gap: 0 20px;
        bottom: 24px;
    }
    .box5,
    .box4,
    .box3,
    .box2,
    .box1{
        padding: 80px 0;
    }
    .box5 .box-c,
    .box4 .box-c,
    .box2 .box-b,
    .box2 .box-c,
    .box1 .box-c{
        margin-top: 45px;
    }
    .box4 .box-c .list li:not(:last-child),
    .box3 .l .text{
        margin-bottom: 45px;
    }
    .box2 .box-c .des{
        margin-top: .7em;
    }
    .box3 .indexTitle{
        margin-bottom: .8em;
    }
    .box3 .box-c .r{
        padding-top: 0;
    }
    .box1 .box-c .list li .text{
        font-size: 18px;
    }
    .box2 .box-b .swiper-slide:not(:last-child){
        margin-right: 40px;
    }
    .box2 .box-b .swiper-slide{
        padding: 10px 20px;
    }
    .box3 .l .text{
        font-size: 16px;
    }
    .box4 .box-t .more{
        font-size: 20px;
    }
    .box5 .box-c .r{
        display: none;
    }
    .box5 .box-c .l{
        width: 100%;
    }
    .box5 .des{
        font-size: 20px;
    }
}
@media (max-width:1024px) {
    .box5 .des{
        font-size: 18px;
    }
    .box4 .box-c .list li .commonMore{
        line-height: 40px;
    }
    .box4 .box-c .list li .text-des{
        margin-top: 15px;
    }
    .box4 .box-c .list li .text-box{
        padding-top: 0;
        margin-left: 20px;
    }
    .box4 .box-c .list li .pic{
        width: 300px;
        height: 168px;
    }
    .box3 .des{
        width: 100%;
    }
    .box3 .l .text{
        width: 100%;
    }
    .box3 .box-c{
        flex-direction: column;
        align-items: flex-end;
    }
    .box3 .box-c .l{
        width: 100%;
    }
    .box3 .box-c .r{
        width: 500px;
        max-width: 100%;
        margin-top: -60px;
    }
    .box2 .box-b .swiper-slide::before,
    .box2 .box-b .swiper::before{
        height: 2px;
    }
    .box2 .box-b .swiper-slide{
        padding: 5px 10px;
    }
    .box2 .box-c .des{
        font-size: 16px;
        line-height: 24px;
        height: 72px;
    }
    .box2 .box-c .commonMore{
        margin-top: 20px;
    }
    .box2 .box-b .swiper-slide{
        font-size: 16px;
    }
    .box2 .box-b .swiper-slide:not(:last-child){
        margin-right: 25px;
    }
    .box1 .box-c .list{
        grid-template-columns: repeat(3,1fr);
        gap: 20px;
        width: 700px;
        max-width: 100%;
        margin: 0 auto;
        display: grid;
    }
    .box5,
    .box4,
    .box3,
    .box2,
    .box1{
        padding: 70px 0;
    }
    .box5 .box-c,
    .box4 .box-c,
    .box2 .box-b,
    .box2 .box-c,
    .box1 .box-c{
        margin-top: 40px;
    }
    .box4 .box-c .list li:not(:last-child),
    .box3 .l .text{
        margin-bottom: 40px;
    }
    .box3{
        padding-bottom: 158px;
    }
    .box3 .box-c .r .circle::before{
         left: -16%;
        top: -1%;
        transform: scale(1.4);
    }
    .box3 .box-c .r .circle{
        margin-top: -131px;
    }
    .box5 .box-c .l .inputs .input{
        height: 60px;
        padding: 10px 22px;
    }
    .box5 .box-c .l .inputs .input input, .box5 .box-c .l .inputs .input textarea{
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .box5 .box-c .l .submit{
        line-height: 50px;
        font-size: 16px;
    }
    .box5 .box-c .l .inputs .input input, .box5 .box-c .l .inputs .input textarea{
        font-size: 14px;
    }
    .box5 .box-c .l .inputs .input{
        padding: 5px 14px;
        height: 50px;
    }
    .box5 .box-c .l .inputs .input1{
        grid-column: 1/1;
    }
    .box5 .box-c .l .inputs{
        grid-template-columns: repeat(1,1fr);
    }
    .box5 .des{
        font-size: 16px;
    }
    .box4 .box-t .more{
        font-size: 18px;
    }
    .box4 .box-c .list li>a{
        padding-bottom: 30px;
    }
    .box4 .box-c .list li .pic{
        width: 100%;
        height: auto;
    }
    .box4 .box-c .list li .text-box{
        flex: none;
        margin-left: 0;
        margin-top: 20px;
    }
    .box4 .box-c .list li>a{
        flex-direction: column;
    }
    .box3 .box-c .r{
        z-index: 2;
    }
    .box1 .box-c .list{
        gap: 20px 10px;
    }
    .box1 .box-c .list li .icon{
        width: 60px;
        height: 60px;
    }
    .box1 .box-c .list li .text{
        margin-top: 10px;
        font-size: 16px;
    }
    .box5,
    .box4,
    .box2,
    .box1{
        padding: 60px 0;
    }
    .box3{
        padding-top: 60px;
    }
    .box5 .box-c,
    .box4 .box-c,
    .box2 .box-b,
    .box2 .box-c,
    .box1 .box-c{
        margin-top: 30px;
    }
    .box4 .box-c .list li:not(:last-child),
    .box3 .l .text{
        margin-bottom: 30px;
    }
    .box3 .l .text{
        margin: 1em 0 1.5em;
    }
    .banner-pagination{
        gap: 0 5px;
    }
    .banner-pagination li{
        transform: scale(.9);
    }
    .commonMore{
        font-size: 14px;
        line-height: 40px;
    }
    .commonMore .iconfont{
        margin-left: 10px;
    }
    .box3 .box-c .r{
        margin-top: 0px;
    }
    .box3 .box-c .r .circle .itemAb, .box3 .box-c .r .item{
        width: 170px;
        height: 170px;
    }
    .box3 .box-c .r .circle{
        width: 200px;
        height: 200px;
    }
    .box4 .box-c .list li .text-des{
        margin-top: 10px;
    }
    .box2{
        border-radius: 10px;
    }
}
@media (max-width: 500px) {
    .box4 .box-c .list li .text-box-b{
        margin-top: 20px;
    }
    .box4 .box-c .list li .text-title{
        font-size: 18px;
    }
    .box4 .box-c .list li>a{
        padding-bottom: 25px;
    }
    .box2 .box-c .commonMore{
        margin-top: 14px;
    }
    .box2 .box-c .des{
        font-size: 14px;
        line-height: 20px;
        height: 60px;
    }
    .box2 .box-b .swiper-slide{
        font-size: 14px;
    }
    .box2 .box-c .title{
        font-size: 20px;
    }
    .box1 .box-c .list li .icon{
        width: 50px;
        height: 50px;
    }
    .box1 .box-c .list li .icon img{
        max-width: 20px;
        max-height: 20px;
    }
    .box1 .box-c .list{
        grid-template-columns: repeat(2,1fr);
    }
    .banner .swiper-slide .slideBox .title{
        font-size: 20px;
    }
    .banner-pagination li{
        transform: scale(.8);
    }
    .box5,
    .box4,
    
    .box2,
    .box1{
        padding: 50px 0;
    }
    .box3{
        padding-top: 30px;
    }
    .box5 .box-c,
    .box4 .box-c,
    .box2 .box-b,
    .box2 .box-c,
    .box1 .box-c{
        margin-top: 25px;
    }
    .box4 .box-c .list li:not(:last-child),
    .box3 .l .text{
        margin-bottom: 25px;
    }
    .box3 .box-c .r .circle .itemAb, .box3 .box-c .r .item{
        width: 150px;
        height: 150px;
    }
    .box3 .box-c .r .circle{
        width: 180px;
        height: 180px;
    }
    .box3 .box-c .r .item .text{
        font-size: 12px;
        line-height: 18px;
        margin-top: 4px;
    }
    .box3 .box-c .r .circle .itemAb{
        transform: translate(85%,70%);
    }
    .box3 .box-c .r{
        margin-top: 20px;
    }
    .box3 .box-c .r .circle::before{
       display: none;
    }
    .box3::before{
        width: 340px;
        height: 340px;
    }
    .box3 .en{
        transform: translateY(150%);
    }
}