

/* pc端 */


@media (min-width: 1280px) {
    main{
        width: 1280px;
        margin: 0 auto;
    }
    header {
        height: 800px;
    }
    header .header-hero-img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .header-top {
        flex-direction: row;
    }
    .header-top .contact-btn{
        width: 150px;
        height: 50px;
        border: 2px solid #fff;
    }
    .header-top .text-box {
        flex-direction: row;
        gap: 1rem;
    }

    .header-card {
        flex-direction: row;
        gap: 2rem;
    }
    .header-card .card-box {
        width: 33%;
        padding: 1rem;
        aspect-ratio: 2/1;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .header-card .card-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    /* 炫酷卡片 */
    
    .header-card .card-box span{
        font-size: 1.2rem;

    }
    .header-card .card-box-img {
        width: 50%;
        height: 50%;
    }

    .section-8 .imgbox {
        display: flex;
        justify-content: space-between;
    }

    .section-8 .imgbox img {
        width: 33%;
    }

    .text-box {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .text-box span:nth-child(1) {
        font-size: 3rem;
        font-variation-settings: 'wght' 700;
        text-align: center;
        text-shadow: 0px 2.481px 2.481px rgba(0, 0, 0, 0.25);
        background: var(--text-gridient-color, linear-gradient(to top, #FFF 90%, rgba(255, 255, 255, 0.30) 100%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .text-box span:nth-child(2) {
        font-size: 2rem;
        letter-spacing: 1px;
        font-variation-settings: 'wght' 600;
        text-align: center;
        text-shadow: 0px 2.481px 2.481px rgba(0, 0, 0, 0.25);
    }
    
    .common-paragraph {
        font-size: 1.2rem;
        font-variation-settings: 'wght' 400;
        line-height: 1.5;
        opacity: .8;
        
        strong{
            font-variation-settings: 'wght' 600;
        }
    }
    
    section {
        width: 100%;
        height: 700px;
        padding-block: var(--block-padding);
        padding-inline: 20px;
        overflow: hidden;
    }
    
    
    section .text-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
        padding-block: 20px;
    }
    
    section .text-box>span:first-of-type {
        font-size: 3rem;
        font-variation-settings: 'wght' 700;
        text-align: center;
        color: #AC101E;
        text-shadow:none;
        background: none;
        background-clip: none;
        -webkit-background-clip: none;
        -webkit-text-fill-color: initial;
    }
    
    section .text-box>span:nth-of-type(2) {
        font-size: 2rem;
        letter-spacing: 1px;
        font-variation-settings: 'wght' 600;
        text-align: center;
        background: none;
        background-clip: none;
        -webkit-background-clip: none;
        -webkit-text-fill-color: initial;
    }
    section .text-box>p {
        font-size: 1.2rem;
        font-variation-settings: 'wght' 400;
        line-height: 1.5;
        opacity: .8;
    }
}
