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

.section_title_label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-2, 32px);
}

.section_title_label_name {
    color: #004296;
    margin-right: 16px;
}

.section_title_label_desc {
    color: #FF8B22;
    font-weight: 600;
}

.section_title_line {
    width: 100%;
    margin-top: 10px;
    border-top: 2px solid #ffffff;
}

.section_title_line_icon {
    margin: 0 auto;
    padding: 0px;
    width: 34px;
    height: 20px;
}

.section_title_shake {
    animation: shake 10s infinite ease-in-out;
}

.section_titleWhite .section_title_label_name,
.section_titleWhite .section_title_label_desc {
    color: #ffffff;
}


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

.tips_title,
.tips {
    font-size: var(--font-10, 14px);
    color: #999999;
    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: #004296  ;
    box-shadow: 0px 4px 16px 0px rgba(0, 66, 150, 0.4);
    border-radius: 54px;
    transition: all 0.3s;
    cursor: pointer;
}

.section_btn:hover {
    box-shadow: 0px 4px 16px 0px rgba(0, 66, 150, 0.4),
        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: #004296;
    border-radius: 54px;
    border: 1px solid #004296;
    cursor: pointer;
    transition: all 0.3s
}

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

/* 动画 */
@keyframes shake {

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

    2% {
        transform: translateX(-3px);
    }

    4% {
        transform: translateX(3px);
    }

    6% {
        transform: translateX(-3px);
    }

    8% {
        transform: translateX(3px);
    }

    10% {
        transform: translateX(0);
    }
}

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

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


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

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