/* 标题 */
.section_title {
    display: flex;
    align-items: flex-end;
}

.section_title_EN {
    color: #DEDEDE;
    text-transform: uppercase;
    font-size: 60px;
    font-weight: 700;
    transform: translateY(12px);
}

.section_title_name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section_title_Chname {
    color: #1A1A1A;
    font-size: 20px;
    font-weight: 700;
}

.section_title_EnnName {
    color: #DEDEDE;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0em;
}

/* tips */

.tips {
    color: #999999;
    font-size: 13px;
}

.tips_title {
    color: #999999;
    font-size: 13px;
}

.tips_item {
    display: flex;
    align-items: flex-start;
    line-height: 22px;
    color: #999999;
    font-size: 13px;
}

.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: 2px;
    margin-right: 6px;
}

.openBtn {
    color: #E84249 !important;
    font-weight: normal;
}

.section_btn {
    width: 200px;
    height: 34px;
    box-sizing: border-box;
    text-align: center;
    line-height: 34px;
    font-size: 14px;
    color: #ffffff;
    background: #E84249;
    border-radius: 54px;
    box-shadow: 0px 2px 6px 0px rgba(232, 66, 73, 0.33);
    cursor: pointer
}


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

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


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

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