.title {
    padding-top: 247px;
    text-align: center;
    padding-bottom: 5.2083333333vw;
    border-bottom: 1px solid rgba(3, 3, 3, 0.1);
    position: relative;
}

.title .back {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8333333333vw;
    color: #CCCCCC;
    position: absolute;
    top: 184px;
    left: 13.5416666667vw;
    transition: 0.6s;
}

.title .back:hover {
    border: 1px solid #009944;
    background: #009944;
    color: #FFFFFF;
}

.title h1 {
    font-size: 1.875vw;
    font-weight: 500;
    color: #222222;
    line-height: 1;
    margin-bottom: 2.6041666667vw;
}

.title  p{
    font-size: 1.0416666667vw;
    font-weight: 500;
    color: #333333;
    line-height: 2.0833333333vw;
}

.section {
    padding: 7.8125vw 0 7.2916666667vw;
}

.section .joke {
    width: 72.9166666667vw;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section .joke .text {
    width: 35.625vw;
}

.section .joke .text h2 {
    font-size: 1.3541666667vw;
    font-weight: 500;
    color: #222222;
    line-height: 1;
    margin-bottom: 1.5625vw;
}

.section .joke .text p {
    font-size: 0.9375vw;
    font-weight: 400;
    color: #222222;
    line-height: 1.875vw;
}

.section .joke .text > p {
    font-size: 0.9375vw;
    font-weight: 400;
    color: #222222;
    line-height: 1.875vw;
}

.section .joke .text .more_in {
    display: flex;
    align-items: center;
    width: fit-content;
    margin-top: 2.6041666667vw;
}

.section .joke .text .more_in .iconfont {
    width: 1.8229166667vw;
    height: 1.8229166667vw;
    background: #009944;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 0.7291666667vw;
    margin-right: 0.5208333333vw;
    transition: 0.4s;
}

.section .joke .text .more_in p {
    font-size: 0.8333333333vw;
    font-weight: 500;
    color: #009944;
    transition: 0.4s;
}

.section .joke .text .more_in:hover .iconfont {
    background: #DAB636;
}

.section .joke .text .more_in:hover p {
    color: #DAB636;
}

.section .joke .img {
    width: 27.5vw;
}

.section .joke .img img {
    width: 100%;
}

.section:nth-child(2n-1) {
    background: #F7F7FA;
}

.section:nth-child(2n-1) .joke {
    flex-direction: row-reverse;
}

.sec2 {
    padding: 8.75vw 0 8.0729166667vw;
}

.sec2 .joke {
    width: 72.9166666667vw;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec2 .joke .text {
    width: 35.9375vw;
}

.sec2 .joke .text h2 {
    font-size: 1.3541666667vw;
    font-weight: bold;
    color: #009944;
    margin-bottom: 1.875vw;
}

.sec2 .joke .text p {
    font-size: 0.9375vw;
    font-weight: 400;
    color: #222222;
    line-height: 1.5625vw;
}

.sec2 .joke .circle_box {
    display: flex;
    align-items: center;
    position: relative;
}

.sec2 .joke .circle_box .iconfont {
    position: absolute;
    font-size: 2.6041666667vw;
    left: 14.1145833333vw;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    z-index: 10;
    animation: 2s goTop cubic-bezier(0.42, 0, 0.29, 1.64) forwards;
}

.sec2 .joke .circle_box .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15.625vw;
    height: 15.625vw;
    background-image: radial-gradient(50% 50%, rgba(0, 153, 68, 0.01) 80%, rgba(0, 153, 68, 0.15));
    border-radius: 50%;
    animation: 1s c_x2 cubic-bezier(0.42, 0, 0.29, 1.64) forwards;
    animation-play-state: paused;
}

.sec2 .joke .circle_box .circle .cir {
    position: absolute;
    top: 0;
    left: 0;
    width: 15.625vw;
    height: 15.625vw;
    border-radius: 50%;
    background: #009944;
    clip-path: circle(7.8125vw at 23.4375vw 7.8125vw);
    animation: 1s circle_animate cubic-bezier(0.42, 0, 0.29, 1.64) forwards;
    animation-play-state: paused;
}

.sec2 .joke .circle_box .circle p {
    font-size: 1.3541666667vw;
    font-weight: bold;
    color: #009944;
    animation: 1s c_l cubic-bezier(0.42, 0, 0.29, 1.64) forwards;
    animation-play-state: paused;
}

.sec2 .joke .circle_box .circle:nth-child(2) {
    transform: translateX(-5.2083333333vw);
    animation: 1s c_x cubic-bezier(0.42, 0, 0.29, 1.64) forwards;
    animation-play-state: paused;
}

.sec2 .joke .circle_box .circle:nth-child(2) p {
    animation: 1s c_r cubic-bezier(0.42, 0, 0.29, 1.64) forwards;
    animation-play-state: paused;
}

.sec2 .joke.aos-animate .circle_box .circle {
    animation-play-state: unset;
}

.sec2 .joke.aos-animate .circle_box .circle p {
    animation-play-state: unset;
}

.sec2 .joke.aos-animate .circle_box .circle:nth-child(2) {
    animation-play-state: unset;
}

.sec2 .joke.aos-animate .circle_box .circle:nth-child(2) p {
    animation-play-state: unset;
}

.sec2 .joke.aos-animate .circle_box .cir {
    animation-play-state: unset;
}

@keyframes circle_animate {
    0% {
        clip-path: circle(7.8125vw at 23.4375vw 7.8125vw);
    }
    100% {
        clip-path: circle(7.8125vw at 18.2291666667vw 7.8125vw);
    }
}

@keyframes c_x {
    0% {
        transform: translateX(0vw);
    }
    100% {
        transform: translateX(-2.6041666667vw);
    }
}

@keyframes c_x2 {
    0% {
        transform: translateX(0vw);
    }
    100% {
        transform: translateX(2.6041666667vw);
    }
}

@keyframes c_l {
    0% {
        transform: translateX(0vw);
    }
    100% {
        transform: translateX(-3.3854166667vw);
    }
}

@keyframes c_r {
    0% {
        transform: translateX(0vw);
    }
    100% {
        transform: translateX(3.3854166667vw);
    }
}

@keyframes goTop {
    0% {
        opacity: 0;
        transform: translateY(-30%);
    }
    50% {
        opacity: 0;
        transform: translateY(-30%);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/*# sourceMappingURL=improvement.css.map */
@media screen and (max-width: 1024px) {
    .public_banner{
        display: none;
    }
    .title{
        padding: 80px 5% 50px 5%;
    }
    .title h1{
        font-size: 22px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    .title .back{
        position: relative;
        top: 0;
        left: 0;
        width: 44px;
        height: 44px;
        font-size: 14px;
        margin: 0 0 25px;
    }
    .title p{
        font-size: 14px;
        line-height: 1.8;
    }
    .section{
        padding: 30px 0;
    }
    .section .joke{
        width: 90%;
        flex-direction: column-reverse!important;
    }
    .section .joke .img{
        width: 100%;
    }
    .section .joke .text{
        width: 100%;
        margin: 25px 0 0 0;
    }
    .section .joke .text h2{
        font-size: 18px;
        margin-bottom: 15px;
    }
    .section .joke .text p{
        font-size: 13px;
        line-height: 2;
    }
    .section .joke .text .more_in .iconfont{
        width: 30px;
        height: 30px;
        font-size: 16px;
        margin: 0 8px 0 0;
    }
    .section .joke .text .more_in p{
        font-size: 14px;
    }
    .section .joke .text .more_in{
        margin: 25px 0 0 0;
    }
    .sec2 .joke{
        width: 90%;
        flex-direction: column;
        align-items: unset;
    }
    .sec2 .joke .text{
        width: 100%;
    }
    .sec2 .joke .text h2{
        font-size: 24px;
        margin: 0 0 15px;
    }
    .sec2 .joke .text p{
        font-size: 13px;
        line-height: 2;
    }
    .sec2 .joke .circle_box{
        width: fit-content;
        margin: 25px 0 0 0;
    }
    .sec2 .joke .circle_box .circle{
        width: 40vw;
        height: 40vw;
    }
    .sec2 .joke .circle_box .circle p{
        font-size: 16px;
    }
    .sec2 .joke .circle_box .iconfont{
        font-size: 16px;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .sec2 .joke .circle_box .cir,.sec2 .joke .circle_box .circle {
        animation: unset;
    }
    .sec2 .joke .circle_box .circle .cir {
        width: 100%;
        height: 100%;
        animation: unset;
        clip-path: circle(20vw at 50vw 20vw);
    }
    .sec2 .joke .circle_box .circle:nth-child(1) {
        transform: translateX(10vw);
    }
    .sec2 .joke .circle_box .circle:nth-child(2) {
        transform: translateX(-10vw);
    }
    .sec2 .joke .circle_box .iconfont {
        animation: unset;
        font-size: 20px;
    }
    .sec2 .joke .circle_box {
        width: 100%;
    }

}
<!--0.00014209747314453-->