


/* 标题 */
.section_title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-4, 30px);
    font-weight: 600;
}

.section_title_lines {
    width: 16px;
    height: 30px;
    position: relative;
}

.section_title_lines::before,
.section_title_lines::after {
    content: '';
    width: 6px;
    height: 30px;
    background: #006426;
    position: absolute;
    top: 0px;
}

.section_title_lines::before {
    left: 0px;
}

.section_title_lines::after {
    right: 0px;
}

.section_title_mainText{
    color: #006426;
    padding-left: 10px;
}

.section_title_subText {
    color: #BB5B2A;
    padding-left: 12px;
    position: relative;
}

.section_title_subText::after {
    content: '';
    width: 120px;
    height: 14px;
    background: #FAD8C6;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 1;
}

.section_title_subText span {
    position: relative;
    z-index: 2;
}


/* tips */
.tips_title,
.tips {
    font-size: 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;
}

/* 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: #006426 ;
    box-shadow: 0px 4px 12px 0px rgba(0, 100, 38, 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: #006426 ;
    border-radius: 54px;
    border: 1px solid #006426 ;
    cursor: pointer;
    transition: all 0.3s
}

.section_btn:hover {
    box-shadow: 0px 4px 12px 0px rgba(0, 100, 38, 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(-4px);
    }


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

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

@keyframes scaleInOut{
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
