/* 标题 */
.section_title {
    width: max-content;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section_title_En {
    color: #E7ECF1;
    font-size: var(--font-0, 40px);
    font-weight: 600;
    text-transform: uppercase;
}

.section_title_Ch {
    display: flex;
    align-items: center;
    width: max-content;
    height: 50px;
    padding: 0px 10px 0px 20px;
    margin-top: -20px;
    box-sizing: border-box;
    background: #ffffff;
    line-height: 50px;
}

.section_title_Ch1 {
    height: 50px;
    color: #1162AB;
    font-size: var(--font-2, 32px);
    font-weight: 600;
    padding-right: 10px;
}

.section_title_Ch2 {
    height: 50px;
    padding: 0px 8px;
    color: #FFFFFF;
    background: #7FC241;
    font-size: var(--font-2, 32px);
    font-weight: 600;
}

.section_title2 .section_title_En {
    color: #CAD9EA;
}

.section_title2 .section_title_Ch {
    background: #EAF3F9;
}

/* 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);
    font-weight: 600;
    background: #1162AB ;
    box-shadow: 0px 4px 16px 0px rgba(17, 98, 171, 0.4);
    border-radius: 54px;
    transition: all 0.3s;
    cursor: pointer;
}

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

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

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


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

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