
/* 标题 */
.section_title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
}

.section_title_Ch {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:20px;
    line-height: 32px;
}

.section_title_Ch_text1 {
    color: #3192D9;
}

.section_title_Ch_line {
    width: 4px;
    height: 26px;
    margin: 0px 6px;
    background: #00AB84;
}

.section_title_Ch_text2 {
    padding: 0px 8px;
    height: 32px;
    color: #ffffff;
    background: #00AB84;
}

.section_title_EN {
    color: #D8E8F0;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: -1px;

}

/* 按钮 */
.section_btn {
    width: fit-content;
    min-width: 158px;
    height: 34px;
    box-sizing: border-box;
    text-align: center;
    line-height: 34px;
    background: #3192D9 ;
    color: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 10px 0px rgba(16,95,167,0.49);
    border-radius: 48px;
}

.section_btn2 {
    width: fit-content;
    min-width: 158px;
    height: 34px;
    box-sizing: border-box;
    text-align: center;
    line-height: 34px;
    color: #3192D9 ;
    border: 1px solid #3192D9 ;
    box-shadow: 0px 4px 5px 0px rgba(49, 87, 196, 0.13);
    border-radius: 48px;
}
/* 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: #0079C1 !important;
    font-weight: normal;
}

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