@keyframes float {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-2px);
    }


    75% {
        transform: translateY(2px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes scaleInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveX {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(12px);
    }

    100% {
        transform: translateX(0px);
    }
}

/* 标题 */
.section_title {
    width: max-content;
    letter-spacing: 0px;
}

.section_title_En {
    padding-left: 40px;
    color: #E2E2E2;
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
}

.section_title_box {
    width: max-content;
    position: relative;
}

.section_title_Ch {
    padding: 0px 40px 0px 40px;
    color: #207E1C;
    font-weight: 700;
    font-size: 23px;
    border-top: 2px solid #A0C544;
}

.section_title_circle {
    width: 46px;
    position: absolute;
    right: 20px;
    top: 1px;
}

.section_title_Vline {
    width: 2px;
    height: 50px;
    background: #A0C544;
    position: absolute;
    left: 26px;
    top: -23px;
    z-index: 1;
}

.section_title_point {
    width: 14px;
    height: 14px;
    background: #EE5D47;
    border-radius: 50%;
    position: absolute;
    left: 20px;
    top: -8px;
    z-index: 2;
}

.section_btn {
    width: fit-content;
    min-width: 158px;
    height: 34px;
    box-sizing: border-box;
    text-align: center;
    line-height: 34px;
    background: #207E1C;
    color: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 5px 0px rgba(32, 126, 28, 0.45);
    border-radius: 48px;
}

.section_btn2 {
    width: fit-content;
    min-width: 158px;
    height: 34px;
    box-sizing: border-box;
    text-align: center;
    line-height: 34px;
    color: #207E1C;
    border: 1px solid #207E1C;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.13);
    border-radius: 48px;
}

/* 展开按钮 */
.openBtn {
    color: #207E1C;
    font-weight: normal;
}


/* tips */
.tips_title,
.tips {
    font-size: 13px;
    color: #999999;
    line-height: 20px;
}

.tips_item {
    display: flex;
    align-items: flex-start;
}

.tips_item .dot {
    width: 4px;
    height: 4px;
    margin-top: 10px;
    margin-right: 4px;
    border-radius: 50%;
    background: #999999;
    transform: scale(0.8);
}

.tips_item .point {
    color: #999999;
    margin-top: 4px;
    margin-right: 4px;
}