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

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


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

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

/* 标题 */
/* 标题顶边距高约80px */
.section_title {
    display: flex;
    align-items: flex-end;
}

.section_title_EN {
    color: #DEDEDE;
    text-transform: uppercase;
    font-size: var(--font-0En, 150px);
    font-weight: 700;
    transform: translateY(36px);
}

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

.section_title_Chname {
    color: #1A1A1A;
    font-size: var(--font-0, 40px);
    font-weight: 700;
    padding-bottom: 6px;
}

.section_title_EnnName {
    color: #DEDEDE;
    text-transform: uppercase;
    font-size: var(--font-0, 40px);
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0em;
}

/* 按钮 */
.section_btn {
    width: max-content;
    text-align: center;
    padding: 8px 26px;
    font-size: var(--font-6, 18px);
    color: #ffffff;
    background: #E84249;
    border-radius: 54px;
    box-shadow: 0px 4px 10px 0px rgba(232, 66, 73, 0.33);
    transition: all 0.3s;
    cursor: pointer;
}

.section_btn:hover {
    box-shadow: 0px 4px 10px 4px rgba(206, 2, 89, 0.2), inset 0px 0px 10px 4px rgba(255, 255, 255, 0.3);
}

/* 提示 */
.tips_title,
.tips {
    color: #999999;
    font-size: var(--font-8, 14px);
}

.tips_title {
    padding-bottom: 6px;
}

.tips_item {
    display: flex;
    align-items: flex-start;
    line-height: 26px;
}

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