/* 标题 */
.section_title {
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-left: 16px;
    padding-bottom: 2px;
    position: relative;
}

.section_title_En {
    color: #D27C00;
    font-size: var(--font-10, 16px);
    text-transform: uppercase;
}

.section_title_Ch {
    color: #000000;
    font-size: var(--font-1, 36px);
}

.section_title_Ch .yellow {
    color: #D27C00;
    font-weight: 600;
}

.section_line {
    width: 2px;
    height: 56px;
    background: #000000;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

/* 按钮 */
.section_btn {
    width: 180px;
    height: 40px;
    padding-left: 20px;
    box-sizing: border-box;
    background: #D27C00;
    clip-path: polygon(95% 0, 100% 22%, 100% 100%, 0 100%, 0 0);
    position: relative;
    cursor: pointer;
}

.section_btn::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: 4px;
    left: 4px;
    background-color: #000000;
    transition: all 0.5s ease;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    transition: all 200ms ease-out;
    z-index: 2;
}

.section_btn::after {
    content: "";
    width: 180px;
    height: 40px;
    background: #222;
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translateX(-180px);
    transition: all 200ms ease-out;
    z-index: 1;
}

.section_btn:hover::before {
    background-color: #ffffff;
}

.section_btn:hover::after {
    transform: translateX(0px);
}

.section_btn .text {
    text-align: center;
    line-height: 40px;
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-10, 16px);
    position: relative;
    z-index: 2;
}

/* 动画 */
@keyframes shine {
    0% {
        transform: skewX(-25deg) translateX(-220px)
    }

    100% {
        transform: skewX(-25deg) translateX(1050px)
    }
}


@keyframes shine2 {
    0% {
        transform: skewX(-25deg) translateX(-100px)
    }

    100% {
        transform: skewX(-25deg) translateX(820px)
    }
}


@keyframes scaleInOut{
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}