/* 标题 */
.section_title {
    width: 584px;
    height: 82px;
    box-sizing: border-box;
    background-image: url("../images/title_bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.section_title_text {
    width: 100%;
    height: 68px;
    line-height: 68px;
    text-align: center;
    font-weight: 700;
    font-size: var(--font-1, 38px);
    text-shadow: 0px 5px 8px rgba(88, 2, 8, 0.02);
    background: linear-gradient(to bottom, #5A391E 0%, #AD835B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 按钮 */
.section_btn {
    width: 304px;
    height: 70px;
    box-sizing: border-box;
    background-image: url("../images/btn_bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.section_btn_text{
    width: 100%;
    height: 70px;
    color:#FFE8C9;
    font-size: var(--font-8,18px); 
    font-weight: 700;
    text-align: center;
    line-height: 60px;
}
.section_btn:hover{
    transform: scale(1.02); 
}
/* tips */
.section_tips{
    width:100%;
    text-align: center;
    color:#623D1E;
    font-size:var(--font-9,16px) ;
}

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

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


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

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

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