/* 标题 */
.section_title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
}

.section_title_Ch {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-3, 30px);
    line-height: 40px;
}

.section_title_Ch_text1 {
    color: #3192D9;
}

.section_title_Ch_line {
    width: 4px;
    height: 32px;
    margin: 0px 10px;
    background: #00AB84;
}

.section_title_Ch_text2 {
    padding: 0px 12px;
    height: 40px;
    color: #ffffff;
    background: #00AB84;
}

.section_title_EN {
    color: #D8E8F0;
    text-transform: uppercase;
    font-size: var(--font-2, 32px);
    letter-spacing: -1px;

}

/* tips */
.section_tips {
    color: #999999;
    text-align: center;
    font-size: var(--font-10, 14px);
}

.tips_title,
.tips {
    color: #999999;
    font-size: var(--font-10, 14px);
    line-height: 24px;
}

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

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

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

/* 按钮 */
.section_btn {
    width: 276px;
    height: 54px;
    padding: 0px 54px;
    box-sizing: border-box;
    color: #ffffff;
    text-align: center;
    line-height: 54px;
    font-size: var(--font-8, 18px);
    background: #3192D9;
    box-shadow: 0px 4px 10px 0px rgba(17, 98, 171, 0.48);
    border-radius: 54px;
    transition: all 0.3s;
    cursor: pointer;
}

.section_btn:hover {
    box-shadow: 0px 4px 10px 0px rgba(17, 98, 171, 0.48),
        inset 0px 0px 10px 0px rgba(255, 255, 255, 0.8);
}

.section_btn2 {
    width: 277px;
    height: 54px;
    padding: 0px 30px;
    box-sizing: border-box;
    text-align: center;
    line-height: 54px;
    font-size: var(--font-8, 18px);
    color: #3192D9;
    border-radius: 54px;
    border: 1px solid #3192D9;
    cursor: pointer;
    transition: all 0.3s
}

.section_btn2:hover {
    box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.13);
}

/* 动画 */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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


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

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

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

    50% {
        transform: scale(1.05);
    }

    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);
    }
}