/* 标题 */
.section_title {
    width: max-content;
    height: 56px;
    display: flex;
    align-items: center;
    padding-left: 26px;
    box-sizing: border-box;
    font-size: 30px;
    font-weight: 600;
    position: relative;
}

.section_title .section_title_icon {
    width: 54px;
    height: 54px;
    position: absolute;
    top: 0px;
    left: 0px;
}

.section_title::before {
    content: '';
    width: 178px;
    height: 1px;
    background: #E2A23A;
    position: absolute;
    top: 0px;
    left: 60px;
}

.section_title::after {
    content: '';
    width: 192px;
    height: 1px;
    background: #E2A23A;
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.section_title .section_title_mainText {
    color: #002C55;
    transition: all 0.3s ease;
}

.section_title .section_title_subText {
    min-width: 192px;
    padding-left: 14px;
    color: #DA291C;
    transition: all 0.3s ease;
}

.section_title:hover .section_title_mainText{
    transform: translateX(7px);
}
.section_title:hover .section_title_subText {
    transform: translateX(-7px);
}

/* tips */
.tips_title,
.tips {
    color: #999999;
    font-size: var(--font-12, 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 */
.section_btn {
    width: max-content;
    max-width: 277px;
    height: 54px;
    padding: 0px 30px;
    box-sizing: border-box;
    text-align: center;
    line-height: 54px;
    font-size: var(--font-10, 18px);
    color: #ffffff;
    background: #002c55 ;
    box-shadow: 0px 4px 12px 0px rgba(0, 44, 85, 0.74);
    border-radius: 54px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.section_btn:hover {
    box-shadow: 0px 4px 12px 0px rgba(0, 44, 85, 0.74), inset 0px 0px 10px 0px rgba(255, 255, 255, 0.6);
}

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


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

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


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

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