

/* Banner */
.san-ace-hero{
    position:relative;
    width:100%;

    /* 修改这里的图片 */
    background-image:url('//ueeshop.ly200-cdn.com/u_file/UPBE/UPBE114/2606/22/photo/11.jpg');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    height:32vw;
    min-height:520px;
    max-height:650px;

    display:flex;
    align-items:center;
    overflow:hidden;

    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}

/* 内容容器 */
.hero-container{
    width:100%;
    max-width:1200px;

    margin:0 auto;
    padding:0 40px;

    box-sizing:border-box;
}

/* 内容 */
.hero-content{
    max-width:650px;
}

/* 标题 */
.hero-content h1{
    color:#ffffff;
    font-size:44px;
    font-weight:700;
    line-height:1.25;
    margin:0 0 20px;
}

/* 副标题 */
.hero-subtitle{
    color:#ffffff;
    font-size:18px;
    line-height:1.7;
    margin:0 0 35px;
}

/* 按钮 */
.hero-cta-btn{
    display:inline-block;

    background:#C1272E;
    color:#ffffff;

    text-decoration:none;
    font-size:16px;
    font-weight:600;

    padding:15px 35px;

    border-radius:4px;

    transition:all .3s ease;

    text-transform:uppercase;
    letter-spacing:.5px;
}

.hero-cta-btn:hover{
    background:#A31F25;
    color:#ffffff;
    transform:translateY(-2px);
}

/* 1440以下 */
@media screen and (max-width:1440px){

    .san-ace-hero{
        height:36vw;
        min-height:500px;
    }

    .hero-content h1{
        font-size:40px;
    }
}

/* 笔记本 */
@media screen and (max-width:1280px){

    .san-ace-hero{
        height:40vw;
        min-height:480px;
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-subtitle{
        font-size:16px;
    }
}

/* 平板 */
@media screen and (max-width:1024px){

    .san-ace-hero{
        height:48vw;
        min-height:450px;
    }

    .hero-container{
        padding:0 30px;
    }

    .hero-content h1{
        font-size:32px;
    }
}

/* 手机 */
@media screen and (max-width:767px){

    .san-ace-hero{
        height:auto;
        min-height:auto;

        padding:70px 0;

        background-position:center center;
    }

    .hero-container{
        padding:0 20px;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-content h1{
        font-size:26px;
        line-height:1.3;
        margin-bottom:15px;
    }

    .hero-subtitle{
        font-size:15px;
        line-height:1.6;
        margin-bottom:25px;
    }

    .hero-cta-btn{
        display:block;
        width:100%;
        text-align:center;
        box-sizing:border-box;
    }
}

