.section {
    padding: 240px 0 83px;
    position: relative;
}

.section .r_box {
    position: absolute;
    top: 0;
    right: calc(50vw - 760px);
    height: 100%;
    padding: 240px 0 0;
}

.section .r_box .r_box_sq {
    position: sticky;
    top: 150px;
    box-shadow: 0px 0px 12px 0px rgba(89, 113, 11, 0.05);
    border-radius: 18px;
    padding: 11px 10px 17px;
    background: #FFFFFF;
width: 190px;
}

.section .r_box .r_box_sq a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 25px;
    width: fit-content;
    height: 44px;
    border-radius: 22px;
    background: #87b22e;
}

.section .r_box .r_box_sq a p {
    font-weight: 400;
    font-size: 16px;
    color: white;
}

.section .r_box .r_box_sq a img {
    display: block;
    width: 14px;
}

.section .r_box .r_box_sq .r_box_sq_text {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #333333;
    margin: 17px 0 12px;
    padding: 0 12px;
}

.section .r_box .r_box_sq .ewm {
    width: 120px;
    margin: 0 auto;
}

.section .r_box .r_box_sq .ewm img {
    display: block;
    width: 100%;
}

.section .sq_box1 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
}

.section .sq_box1 .sq {
    content: "";
    width: 100%;
    height: 820px;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #DBE7CD 0%, #FFFFFF 100%);
    position: sticky;
    top: 0;
}

.section .wrap {
    width: 1000px;
    margin: 0 auto;
}

.section .wrap .line {
    width: 100%;
    height: 1px;
    background: #d9d9d9;
    margin: 20px 0 51px;
}

.section .wrap .section_top .title {
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 34px;
    color: black;
    text-align: center;
}

.section .wrap .section_top .flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section .wrap .section_top .flex .flex_shares {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section .wrap .section_top .flex .flex_shares p {
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #555555;
}

.section .wrap .section_top .flex .flex_shares .iconfont {
    display: block;
    font-size: 18px;
    color: #555555;
    transition: 0.6s;
}

.section .wrap .section_top .flex .flex_shares .iconfont:hover {
    color: #87B22E;
}

.section .wrap .section_top .flex .flex_shares .iconfont:nth-child(2) {
    font-size: 20px;
}

.section .wrap .section_top .flex .eye {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 60px 0 19px;
}

.section .wrap .section_top .flex .eye img {
    display: block;
    width: 22px;
}

.section .wrap .section_top .flex .eye p {
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #555555;
}

.section .wrap .section_top .flex .time {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section .wrap .section_top .flex .time img {
    display: block;
    width: 16px;
}

.section .wrap .section_top .flex p {
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #555555;
}

.section .wrap .content {
    width: 100%;
}

.section .wrap .content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #333333;
}
.section .wrap .content img {
    height: auto !important;
}
.section .wrap .content h5 {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    line-height: 2;
    color: #333333;
}
.section .wrap .section_top .flex .flex_shares {
    position: relative;
}
.section .wrap .section_top .flex .flex_shares .alert {
    width: fit-content;
    padding: 6px 15px;
    font-size: 12px;
    color: #fff;
    border-radius: 4px;
    background: #111;
    position: absolute;
    bottom: 100%;
    right: 0;
    transform: translateY(-10px);
    white-space: nowrap;
    display: none;
}

.fixed_code{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .6s ease;
}
.fixed_code.on{
    opacity: 1;
    pointer-events: auto;
}
.fixed_code .black{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.5);
}

.fixed_code .content{
    border-radius: 10px;
    background: #fff;
    width: 800px;
    height: 374px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 90%;
}
.fixed_code .content .joke .title{
    font-size: 26px;
    color: #111;
    text-align: center;
    font-weight: bold;
}
.fixed_code .content .joke canvas{
    width: 128px;
    height: 128px;
    display: block;
    margin: auto;
}

.fixed_code .content .close{
    position: absolute;
    width: 36px;
    height: 36px;
    background: #E8E8ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 20px;
    z-index: 45;
    cursor: pointer;
    transition: .6s ease;
}
.fixed_code .content .close:hover{
    background: var(--color);
}
.fixed_code .content .close:hover svg path{
    fill: #fff;
}
.fixed_code .content .close svg path{
    transition: .6s ease;
}
.fixed_code .content .close svg{
    width: 16px;
    height: 16px;
}

@media screen and (max-width: 1919px) {
    .section {
        padding: 12.5vw 0px 4.3229166667vw;
    }

    .section .r_box {
        right: calc(-39.5833333333vw + 50vw);
        padding: 12.5vw 0px 0px;
    }

    .section .r_box .r_box_sq {
        top: 7.8125vw;
        box-shadow: rgba(89, 113, 11, 0.05) 0px 0px 0.625vw 0px;
        border-radius: 0.9375vw;
        padding: 0.5729166667vw 0.5208333333vw 0.8854166667vw;
width: 9.8vw;
    }

    .section .r_box .r_box_sq a {
        gap: 0.3645833333vw;
        padding: 0px 1.3020833333vw;
        height: 2.2916666667vw;
        border-radius: 1.1458333333vw;
    }

    .section .r_box .r_box_sq a p {
        font-size: 0.8333333333vw;
    }

    .section .r_box .r_box_sq a img {
        width: 0.7291666667vw;
    }

    .section .r_box .r_box_sq .r_box_sq_text {
        font-size: 0.7291666667vw;
        line-height: 1.09375vw;
        margin: 0.8854166667vw 0px 0.625vw;
        padding: 0px 0.625vw;
    }

    .section .r_box .r_box_sq .ewm {
        width: 6.25vw;
    }

    .section .sq_box1 .sq {
        height: 42.7083333333vw;
    }

    .section .wrap {
        width: 52.0833333333vw;
    }

    .section .wrap .line {
        margin: 1.0416666667vw 0px 2.65625vw;
    }

    .section .wrap .section_top .title {
        font-size: 1.6666666667vw;
        margin-bottom: 1.7708333333vw;
    }

    .section .wrap .section_top .flex .flex_shares {
        gap: 1.0416666667vw;
    }

    .section .wrap .section_top .flex .flex_shares p {
        font-size: 0.8333333333vw;
    }

    .section .wrap .section_top .flex .flex_shares .iconfont {
        font-size: 0.9375vw;
    }

    .section .wrap .section_top .flex .flex_shares .iconfont:nth-child(2) {
        font-size: 1.0416666667vw;
    }

    .section .wrap .section_top .flex .eye {
        gap: 0.4166666667vw;
        margin: 0px 3.125vw 0px 0.9895833333vw;
    }

    .section .wrap .section_top .flex .eye img {
        width: 1.1458333333vw;
    }

    .section .wrap .section_top .flex .eye p {
        font-size: 0.8333333333vw;
    }

    .section .wrap .section_top .flex .time {
        gap: 0.625vw;
    }

    .section .wrap .section_top .flex .time img {
        width: 0.8333333333vw;
    }

    .section .wrap .section_top .flex p {
        font-size: 0.8333333333vw;
    }

    .section .wrap .content p {
        font-size: 0.8333333333vw;
    }

    .section .wrap .content h5 {
        font-size: 1.0416666667vw;
    }
}
@media screen and (max-width: 768px) {
    .section {
        padding: 100px 0 40px;
    }
    .section .wrap {
        width: 90%;
    }
    .section .wrap .section_top .title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .section .wrap .section_top .flex .time {
        gap: 5px;
    }
    .section .wrap .section_top .flex p {
        font-size: 15px;
    }
    .section .wrap .section_top .flex .time img {
        width: 14px;
    }
    .section .wrap .section_top .flex .eye {
        gap: 5px;
        margin: 0 10px;
    }
    .section .wrap .section_top .flex .flex_shares p {
        font-size: 15px;
    }
    .section .wrap .section_top .flex .flex_shares .iconfont:nth-child(2) {
        font-size: 16px;
    }
    .section .wrap .section_top .flex .flex_shares .iconfont {
        font-size: 14px;
    }
    .section .wrap .section_top .flex .flex_shares {
        gap: 6px;
    }
    .section .wrap .line {
        margin: 20px 0 25px;
    }
    .section .wrap .content p {
        font-size: 16px;
        line-height: 2;
    }
    .section .wrap .content p img {
        height: unset !important;
    }
    .section .wrap .section_top .flex .eye img {
        width: 16px;
    }
    .section .wrap .section_top .flex .eye p {
        font-size: 15px;
    }
    .section .r_box {
        display: none;
    }
}
