/* 标题 */
.section_title {
    width: max-content;
    padding: 0 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #4D9503;
}

.section_title_line {
    width: 2px;
    height: 36px;
    margin-right: 14px;
    background: #4D9503;
}

.section_title_name {
    padding-bottom: 4px;
}

.section_title_name_item {
    display: flex;
    align-items: center;
    color: #4D9503;
    font-size: 16px;
    font-weight: 600;
}

.section_title_name_item .en {
    text-transform: uppercase;
}

.section_title_name_item .ch {
    padding-left: 8px;
    font-size: 18px;
}

.section_title_name .section_title_name_item:nth-child(1) .ch {
    color: #245201;
}

.section_title2 {
    border-bottom: 2px solid #D2F7B6;
}

.section_title2 .section_title_line {
    background: #D2F7B6;
}

.section_title2 .section_title_name_item .en {
    color: #D2F7B6;
}

.section_title2 .section_title_name_item .ch {
    color: #FFFFFF !important;
}

/* tips */
.section_tips {
    color: #999999;
    text-align: center;
    font-size:13px;
}

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

.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;
}

/* 展开按钮 */
.openBtn{
    color:#4D9503;
    font-weight: 600;
}

/* 按钮 */
.section_btn {
    width: max-content;
    min-width: 200px;
    height: 34px;
    box-sizing: border-box;
    text-align: center;
    line-height: 34px;
    background: #4C9503 ;
    color: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 10px 0px rgba(76,149,3,0.58);
    border-radius: 48px;
}
.section_btn2{
    width: max-content;
    min-width: 200px;
    height: 34px;
    box-sizing: border-box;
    text-align: center;
    line-height: 34px;
    background: transparent ;
    color: #4C9503;
    border:1px solid #4C9503;
    /* box-shadow: 0px 4px 10px 0px rgba(76,149,3,0.58); */
    border-radius: 48px;
}

/* 动画 */
@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);
    }
}

@keyframes moveX {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(12px);
    }

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