
    html {
        scroll-behavior: smooth;
    }

    .wc2026-hero {
        position: relative;
        width: 100%;
        min-height: 90vh;
        background: #000 url('//ueeshop.ly200-cdn.com/u_file/UPBH/UPBH542/2606/04/photo/WD-PC.webp') no-repeat center center/cover;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        box-sizing: border-box;
    }

    .wc-cta-wrap { margin: 0; }
    .wc-btn {
        font-family: 'Oswald', sans-serif;
        background: #e60012;
        color: #fff;
        padding: 15px 60px;
        font-size: 2rem;
        line-height: 1.2;
        text-decoration: none;
        font-weight: 900;
        text-transform: uppercase;
        border-radius: 5px;
        clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
        transition: 0.3s;
        display: inline-block;
        cursor: pointer;
    }
    .wc-btn:hover { transform: scale(1.1); background: #ff0015; }

    /* 移动端修改：高度下调+按钮靠下摆放 */
    @media (max-width: 768px) {
        .wc2026-hero {
            min-height: 72vh; /* 降低移动端整体高度，原来100vh改矮 */
            justify-content: flex-end; /* 内容从底部开始排布 */
            padding-bottom: 80px; /* 按钮距离页面底部留出间距 */
            background: #000 url('//ueeshop.ly200-cdn.com/u_file/UPBH/UPBH542/2606/04/photo/WD-C.webp') no-repeat center center/cover !important;
        }
    }
