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

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


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

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

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

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

/* 标题 */
.section_title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.section_title_lines {
    width: 10px;
    height: 20px;
    position: relative;
}

.section_title_lines::before,
.section_title_lines::after {
    content: '';
    width: 4px;
    height: 20px;
    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: 6px;
}

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

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

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

/* 按钮 */
.section_btn {
    width: fit-content;
    min-width: 158px;
    height: 34px;
    box-sizing: border-box;
    text-align: center;
    line-height: 34px;
    background: #006426;
    color: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 5px 0px rgba(32, 126, 28, 0.45);
    border-radius: 48px;
}

.section_btn2 {
    width: fit-content;
    min-width: 158px;
    height: 34px;
    box-sizing: border-box;
    text-align: center;
    line-height: 34px;
    color: #006426;
    border: 1px solid #006426;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.13);
    border-radius: 48px;
}

/* 展开按钮 */
.openBtn {
    color: #006426 ;
    font-weight: normal;
}

/* tips */
.tips_title,
.tips {
    font-size: 13px;
    color: #999999;
    line-height: 20px;
}

.tips_item {
    display: flex;
    align-items: flex-start;
}

.tips_item .dot {
    width: 4px;
    height: 4px;
    margin-top: 10px;
    margin-right: 4px;
    border-radius: 50%;
    background: #999999;
    transform: scale(0.8);
}

.tips_item .point {
    color: #999999;
    margin-top: 4px;
    margin-right: 4px;
}

/* 隐藏滚动条 */
.hidenscrollbar::-webkit-scrollbar {
    height: 4px;
}

.hidenscrollbar::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.hidenscrollbar::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 3px;
}

.hidenscrollbar::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

