@charset 'utf-8';

@font-face {
    font-family: 'TTNorms';
    src: url('../fonts/TTNorms-Regular.otf');
    font-weight: normal;
    font-style: normal;
}

/* ---------- RESET ---------- */

html,
body {
    margin: 0;
    background-color: #fff;
    overflow: visible;
}
#hd * {
    /*margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    word-break: break-word;
    /*letter-spacing: 0.12em !important;
    line-height: 2em !important;*/ /*WCAG 2023 行距至少需支援放大到預設字體大小的 1.5 倍 字母間距至少需支援放大到預設字體大小的 0.12 倍*/
}
#hd {
    font-family:"Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
    color: #fff;
    font-size: 16px;
    max-width: 2560px;
    margin: 0 auto;
    background: #000;
}
#hd h1,
#hd h2,
#hd h3,
#hd h4,
#hd p,
#hd a,
#hd li {
    font: inherit;
}
#hd sup{
    line-height: 0; /*修正sup行距變動*/
}
#hd img {
    display: block;
    height: auto;
    border: none;
    max-width: 100%;
    margin: 0 auto;
}
#hd img.lazyLoad {
    opacity: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
body.noscroll{
    overflow: hidden;
}
#hd p{
    font-family:"Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif
    font-weight: normal;
    line-height: 1.6em;
    margin: 0.5em 0;
}
#hd ul{
    font-family:"Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif
    font-weight: normal;
    line-height: 1.6em;
}
/*-----SCROLL UP-----*/
    #scrollUp {
        position: fixed;
        right: 30px;
        bottom: 30px;
        width: 45px;
        height: 45px;
        text-align: center;
        cursor: pointer;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border: 2px solid #027ab9;
        z-index: 999;
        opacity: 0;
    }
    #scrollUp.hd-show {
        opacity: 1;
    }
    #scrollUp:hover {
        background-color: #027ab9;
    }
    #scrollUp:hover svg {
        fill: #FFF;
    }
    #scrollUp svg {
        display: block;
        position: absolute;
        margin: auto;
        top: 0;
        right: 0;
        bottom: 5px;
        left: 0;
        fill: #027ab9;
        -webkit-transform: rotateZ(270deg);
        -moz-transform: rotateZ(270deg);
        -ms-transform: rotateZ(270deg);
        -o-transform: rotateZ(270deg);
        transform: rotateZ(270deg);
    }



/*-------------General-------------------*/

#hd .default-title{
    font-family:"TTNormsProMedium","TTNorms","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
    font-size: 2.6em;
    line-height: 1.2em;
    margin: 0 0 0.5em 0;
    padding: 0;
    letter-spacing: -1px;
    color: #fff;
}
#hd .mini-title{
    font-family:"TTNormsProMedium","TTNorms","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
    font-size: 1.7em;
    line-height: 1.2em;
    margin: 0 0 0.5em 0;
    padding: 0;
    color: #89f7fe;
}
@media screen and (max-width: 1400px) {    
#hd .default-title{
    font-size: 2.2em;
}
}
@media screen and (max-width: 600px) {    
#hd .default-title{
    font-size: 1.8em;
}
}

#hd .default-p{
    line-height: 1.5em;
    font-size: 1.1em;
    margin: 0 0 1em 0;
    padding: 0;
}
@media screen and (max-width: 1400px) {    
#hd .default-p{
    font-size: 1em;
}
}
@media screen and (max-width: 767px) {    
#hd .default-p{
    font-size: 1em;
}
}

#hd .note{
    color: #585858;
    line-height: 1.3em;
    font-size: 0.8em;
    margin: 0 0 1em 0;
    padding: 0;
}
#hd .default-link{
    text-decoration: none;
    font-size: 1.1em;
    display: inline-block;
    /*
    color: #89f7fe;
    background-color:#89f7fe;
    background-image:-moz-linear-gradient(58deg, #66a6ff 20%,#89f7fe 80%);
    background-image:-webkit-linear-gradient(58deg, #66a6ff 20%,#89f7fe 80%);
    background-image:linear-gradient(58deg, #66a6ff 20%,#89f7fe 80%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    */
    position: relative;
    color: #fff;
}
#hd .default-link:after{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background-image:linear-gradient(58deg, rgba(102,166,255,0) 0%, rgba(102,166,255,1) 20%,rgba(137,247,254,0) 100%);
    opacity: 0;
    width: 0%;
    transition: all 0.3s;
}
#hd .default-link:hover:after{
    opacity: 1;
    width: 100%;
}
#hd a{
    color: #4d4d4d;
}
#hd a:hover{
}




/*-----kv-----*/

#hd .section-kv{
    position: relative;
    overflow: hidden;
    background-color: #fff;
    z-index: 1;
    padding-bottom: 50px;
}
#hd .section-kv .inner{
    position: relative;
    background: url(../img/kv.jpg) center top no-repeat;
    /*height: 52vw;
    max-height: calc(1000px * 1.33);
    max-width: calc(1920px * 1.33);*/
    margin: 0 auto;
    background-size: 100% auto;
}
#hd .section-kv .inner .main-image{
    display: none;
}
#hd .section-kv .text-content{
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1700px;
    padding: 52vw 20px 80px 20px;
    z-index: 2;
    box-sizing: border-box;
    text-align: center;
}
#hd .section-kv .text-content .mini-title{
    font-size: 1.8em;
    margin: 0 0 0.5em 0;
    line-height: 1.2em;
    color: #000;
    font-weight: normal;
    font-family:"TTNormsProMedium","TTNorms","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
}
#hd .section-kv .text-content .title{
    font-size: 3.5em;
    margin: 0;
    line-height: 1.2em;
    font-weight: normal;
    font-family:"TTNormsProMedium","TTNorms","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
    color: #000;
}
#hd .section-kv .text-content p{
    margin: 2em auto 0 auto;
    max-width: 1200px;
    color: #000;
}
#hd .section-kv .text-content .title span{
    color: #8bd7ff;
}
#hd .section-kv .text-content .title img{
    display: inline-block;
}
#hd .section-kv .icon2{
    margin-top: 30px;
}
#hd .section-kv .text-content ul{
    margin: 20px 0 0 1em;
    padding: 0;
    font-size: 1em;
    line-height: 1.2em;
    list-style-type: disc;
    font-family:"TTNormsProLight","TTNorms","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
}
#hd .section-kv .text-content ul li{
    margin: 0 0 0.5em 0;
    padding: 0;
    list-style-type: disc;
}
#hd .section-kv .text-content .copilot{
    max-width: 400px;
    margin-top: 60px;
}
@media screen and (min-width: 2400px) {    
#hd .section-kv .text-content{
}
#hd .section-kv .text-content .mini-title{
    font-size: 3em;
}
#hd .section-kv .text-content .title{
    font-size: 4.5em;
}
}
@media screen and (min-width: 2560px) {    
#hd .section-kv .text-content{
    padding-top: 1300px;
}
}



@media screen and (max-width: 1800px) {    
#hd .section-kv .inner{
}
}


@media screen and (max-width: 1500px) {    
#hd .section-kv .text-content{
    padding-top: 52vw;
}
#hd .section-kv .text-content .mini-title{
    font-size: 1.5em;
}
#hd .section-kv .text-content .title{
    font-size: 3.2em;
}
}
@media screen and (max-width: 1400px) {    
#hd .section-kv .inner{
}
}
@media screen and (max-width: 1200px) {    
#hd .section-kv .text-content{
}
#hd .section-kv .text-content .mini-title{
    font-size: 1.2em;
}
#hd .section-kv .text-content .title{
    font-size: 2.5em;
}
}
@media screen and (max-width: 1023px) {    
#hd .section-kv .inner{
    height: inherit;
    max-height: inherit;
    background-image: none;
}
#hd .section-kv .inner .main-image{
    display: block;
}
#hd .section-kv .text-content{
    padding: 60px 30px 30px 30px;
}
#hd .section-kv .add-content{
    max-width: inherit;
    padding: 0px 30px 0px 30px;
    color: #000;
}
#hd .section-kv .inner .icon{
    position: absolute;
    right: 30px;
    top: 20px;
    width: 100px;
}
}
@media screen and (max-width: 750px) {    
#hd .section-kv .inner .icon{
    width: 60px;
}
#hd .section-kv .text-content{
    padding: 20px 30px 0px 30px;
}
#hd .section-kv .text-content .mini-title{
    font-size: 1.5em;
}
#hd .section-kv .text-content .title{
    font-size: 2.5em;
}
#hd .section-kv .text-content .title img{
    width: 50px;
}
#hd .section-kv .icon2{
    width: 60%;
    margin: 30px auto 0 auto;
}
}

@media screen and (max-width: 550px) {    
#hd .section-kv .text-content .mini-title{
    font-size: 1.2em;
}
#hd .section-kv .text-content .title{
    font-size: 2em;
}
#hd .section-kv .text-content p{
    font-size: 1em;
    margin-top: 1em;
}
#hd .section-kv .inner .icon{
    right: 15px;
    top: 10px;
}
}



/*-----intro-----*/

#hd .section-intro{
    background: #fff url(../img/deco.png) center 50px no-repeat;
    padding-top: 200px;
    position: relative;
    z-index: 0;
    padding-bottom: 100px;
}
#hd .section-intro .intro{
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row-reverse;
}
#hd .section-intro .intro.rev{
    flex-direction: row;
}
#hd .section-intro .intro .text{
    width: 55%;
    padding: 20px 0px 20px 80px;
}
#hd .section-intro .intro.rev .text{
    padding: 20px 80px 20px 0px;
}
#hd .section-intro .intro .image{
    width: 45%;
}
#hd .section-intro .default-title {
    color: #000;
}
#hd .section-intro .default-p {
    color: #000;
}
@media screen and (max-width: 1200px) {    
#hd .section-intro{
    background-size: 90% auto;
}
}
@media screen and (max-width: 850px) {    
#hd .section-intro{
    padding-top: 100px;
}
#hd .section-intro .intro{
    padding: 0px 30px;
}
#hd .section-intro .intro .text{
    width: 100%;
    padding: 50px 0 0 0 !important;
}
#hd .section-intro .intro .image{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 50px;
}
#hd .section-intro .intro .image img{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
}

@media screen and (max-width: 450px) {    
#hd .section-intro{
    padding-top: 50px;
}
}






/*feature*/
#hd .section-feature{
    background: #1a1a1a url(../img/bg.jpg) center top no-repeat;
    background-size: 100% auto;
    padding: 100px 0 50px 0;
    position: relative;
}
#hd .section-feature:before{
    content: '';
    display: block;
    position: absolute;
    left: calc(50% - 60px);
    top: -60px;
    width: 123px;
    height: 123px;
    background: url(../img/badge.png) center top no-repeat;
    background-size: contain;
}
#hd .section-feature .inner {
    max-width: 1500px;
    padding: 100px 30px;
    box-sizing: border-box;
    margin: 0 auto;
}


#hd .section-feature .arm{
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row-reverse;
}
#hd .section-feature .arm .text{
    width: 55%;
    padding: 20px 0px 20px 80px;
}
#hd .section-feature .arm .image{
    width: 45%;
}
#hd .section-feature .default-title{
    color: #dfc9a9;
    background-image:linear-gradient(90deg, #dfc9a9 30%,#9a7a59 90%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
#hd .section-feature .default-p {
}


#hd .section-feature .text-content{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}
#hd .section-feature .default-title{
}
#hd .section-feature .image{
    margin-bottom: 30px;
}
#hd .section-feature .image img{
    max-width: 100%;
    width: 100%;
    display: block;
}
#hd .section-feature .everything{
    margin-top: 50px;
}
#hd .section-feature .list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin: 30px auto 0px auto;
    padding: 0 30px;
    box-sizing: border-box;
    max-width: 800px;
}
#hd .section-feature .list .entry{
    width: 46%;
    margin: 0 2% 60px 2%;
    box-sizing: border-box;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding: 0 0 30px 0;
}
#hd .section-feature .list .entry h4{
    font-size: 1.4em;
    font-family: "TTNormsProMedium", "TTNorms", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    margin: 0 0 0.5em 0;
    text-align: center;
    line-height: 1.1em;
    min-height: 2.2em;
    color: #000;
    padding: 0 5px;
}
#hd .section-feature .list .entry p{
    font-size: 1em;
    margin: 0.8em 0 0 0;
    text-align: center;
    line-height: 1.3em;
    padding: 0 25px;
    color: #333;
}
#hd .section-feature .note{
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 50px;
    font-size: 1em;
}
@media screen and (max-width: 850px) {    
#hd .section-feature .arm{
    padding: 0px 30px;
}
#hd .section-feature .arm .text{
    width: 100%;
    padding: 50px 0 0 0 !important;
}
#hd .section-feature .arm .image{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 50px;
}
#hd .section-feature .arm .image img{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
}
@media screen and (max-width: 768px) {    
#hd .section-feature .list .entry h4{
    font-size: 1.2em;
}
#hd .section-feature .list .entry p{
    font-size: 1em;
}
}

@media screen and (max-width: 500px) {    
#hd .section-feature .inner{
    padding: 50px 20px;
}
#hd .section-feature .list .entry{
    width: 100%;
}
}






/*action*/
#hd .section-action{
    background: #1a1a1a url(../img/deco2.png) center top no-repeat;
    background-size: 450px auto;
}
#hd .section-action .inner {
    max-width: 1300px;
    padding: 130px 30px;
    box-sizing: border-box;
    margin: 0 auto;
}
#hd .section-action .text-content{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
#hd .section-action .default-title{
    color: #dfc9a9;
    background-image:linear-gradient(90deg, #dfc9a9 30%,#9a7a59 90%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
#hd .section-action .default-p{
    color: #fff;
    font-size: 1.4em;
    font-family: "TTNormsProMedium", "TTNorms", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
}
#hd .section-action .action{
    margin-top: 50px;
}
#hd .section-action .action a{
    color: #fff;
    font-size: 1.5em;
    text-transform: uppercase;
    background:linear-gradient(90deg, #d2b189 30%,#9a7a59 90%);
    padding: 8px 40px;
    transition: all 0.2s;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #dfc9a9;
    font-family: "TTNormsProMedium", "TTNorms", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
}
#hd .section-action .action a:hover{
    border-color: #6d4d2b;
}
#hd .section-action .note{
    margin-top: 30px;
    color: #fff;
}

@media screen and (max-width: 500px) {    
#hd .section-action{
    background-size: 90% auto;
}
#hd .section-action .inner {
    padding: 70px 20px;
}
}



/*spec*/
#hd .section-spec{
    background: #fff;
    color: #1a1a1a;
}
#hd .section-spec .inner {
    max-width: 800px;
    padding: 50px 30px;
    box-sizing: border-box;
    margin: 0 auto;
}
#hd .section-spec table {
    border-collapse: collapse;
    width: 100%;
}
#hd .section-spec table th{
    border-collapse: collapse;
    border: 1px solid #9a7a59;
    padding: 7px 12px;
    text-align: left;
    font-weight: bold;
    background: #dfc9a9;
}
#hd .section-spec table .title{
}
#hd .section-spec table td{
    border-collapse: collapse;
    border: 1px solid #9a7a59;
    padding: 7px 12px;
}
@media screen and (max-width: 500px) {    
#hd .section-spec .inner {
    padding: 50px 20px;
}
#hd .section-spec table{
    font-size: 0.9em;
}
#hd .section-spec table th{
    padding: 5px 3px 5px 5px;
}
#hd .section-spec table td{
    padding: 5px 3px 5px 5px;
}
}






/*#hd #BTN-Datasheet*/
#hd #BTN-Datasheet{
    position: relative;
    overflow: hidden;
    padding: 20px 0px 60px 0px;
    background: #fff;
}
#hd #BTN-Datasheet .maintitle {
    text-align: center;
    width: 100%;
    max-width: 1236px;
    margin: 0 auto;
    padding-top: 0;
    padding-right: 18px;
    padding-left: 18px;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}
#hd #BTN-Datasheet a.Button_Datasheet{
    border: 1px solid #818181 !important;
    cursor: pointer;
    padding: 11px 12px 11px 16px !important;
    text-align: left !important;
    border-radius: 4px;
    -webkit-transition: all .3s;
    display: inline-flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 48px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 197px;
    height: auto !important;
    min-width: 144px;
        font-size: 1.1875rem;
}

#hd #BTN-Datasheet a.Button_Datasheet .Button_Datasheet_Text{
    color: #181818 !important;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 15px;
    white-space: normal !important;
    font-family: var(--font-title);
    font-weight: 400;
    -webkit-transition: all .3s;
}
#hd #BTN-Datasheet a.Button_Datasheet .Button_Datasheet_arrowDownloadSVG{
    height: 24px;
    width: 24px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    outline: none;
    margin-left: 10px;
        
}
#hd #BTN-Datasheet a.Button_Datasheet svg path{
    -webkit-transition: all .3s;
    stroke: #181818;
}

#hd #BTN-Datasheet a.Button_Datasheet:hover{
    background: #0b63a8;
        border: 1px solid #0b63a8 !important;
    -webkit-transition: all .3s;
}
#hd #BTN-Datasheet a.Button_Datasheet:hover .Button_Datasheet_Text{
    color: #fff !important;
    -webkit-transition: all .3s;
}
#hd #BTN-Datasheet a.Button_Datasheet:hover svg path{
    stroke: #fff;
    -webkit-transition: all .3s;
}



/*-----nvidia-----*/

#hd .section-nvidia{
    position: relative;
    background: #c0c0c0 url(../img/nvidia-bg.webp) center top no-repeat;
    background-size: 100% auto;
    overflow: hidden;
    padding-bottom: 50px;
}
#hd .section-nvidia .text-content{
    text-align: center;
    padding: 100px 20px 0 20px;
}
#hd .section-nvidia .text-content .default-title{
    color: #000;
}
#hd .section-nvidia .inner{
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 30px;
    padding-top: 350px;
}
#hd .section-nvidia .grid{
}
#hd .section-nvidia .grid .row{
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    align-items: stretch;
}
#hd .section-nvidia .grid .row .column{
    background: #fff;
    color: #1a1a1a;
    margin: 1%;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2); 
}
#hd .section-nvidia .grid .row .column.of4{
    width: 23%;
}
#hd .section-nvidia .grid .row .column.of3{
    width: 31.33%;
}
#hd .section-nvidia .grid .row .box{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
}
#hd .section-nvidia .grid .row .box .image{
    width: 28%;
    box-sizing: border-box;
    padding: 8px;
}
#hd .section-nvidia .grid .row .box .text{
    width: 72%;
    box-sizing: border-box;
    padding: 20px 20px 20px 0px;
}
#hd .section-nvidia .grid .p1{
    line-height: 1.2em;
    margin: 0.2em 0;
}
#hd .section-nvidia .grid .p2{
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.2em;
    margin: 0.2em 0;
}
#hd .section-nvidia .grid .p3{
    line-height: 1.2em;
    margin: 0.2em 0;
}


#hd .section-nvidia .grid .row .of3 .box{
    align-items: flex-start;
}
#hd .section-nvidia .grid .row .of3 .box .image{
    width: 24%;
    padding-top: 15px;
}
#hd .section-nvidia .grid .row .of3 .box .text{
    width: 76%;
}
#hd .section-nvidia .grid .of3 .p2{
    font-size: 1.3em;
}
#hd .section-nvidia .grid .of3 .p3{
    line-height: 1.4em;
}

@media screen and (max-width: 2500px) {    
#hd .section-nvidia .text-content{
    padding-top: 4vw;
}
#hd .section-nvidia .inner{
    padding-top: 13vw;
}
}
@media screen and (max-width: 1400px) {    
#hd .section-nvidia{
    background-size: 175% auto;
}
#hd .section-nvidia .text-content{
    padding-top: 7vw;
}
#hd .section-nvidia .inner{
    padding-top: 25vw;
}
}
@media screen and (max-width: 900px) {    
#hd .section-nvidia .grid .p2{
    font-size: 1.3em;
}
}
@media screen and (max-width: 768px) {    
#hd .section-nvidia .grid .row .column.of4{
    width: 48%;
}
#hd .section-nvidia .grid .row .column.of3{
    width: 98%;
}
#hd .section-nvidia .grid .row .of3 .box .image{
    max-width: 100px;
}
#hd .section-nvidia .grid .row .of3 .box .text{
}
}
@media screen and (max-width: 700px) {    
#hd .section-nvidia .text-content{
    padding-top: 38vw;
}
#hd .section-nvidia .inner{
    padding-top: 2vw;
}
}
@media screen and (max-width: 450px) {    
#hd .section-nvidia .grid .row .column.of4{
    width: 98%;
}
#hd .section-nvidia .grid .row .of4 .box .image{
    max-width: 80px;
    padding: 0 10px 0 15px;
}
}



/* FAQ */
#hd .section-faq{
    padding-top: 60px;
    padding-bottom: 50px;
    background: #e3e0dc;
    background-image:linear-gradient(180deg, #e6d3b8 0%,#eaeaea 100%);
}
#hd .section-faq .default-title{
    color: #1a1a1a;
    text-align: center;
}
#hd .faq-wrapper {
    padding: 0 30px;
}
#hd .faq-container {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto 0 auto;
}
#hd .faq-item {
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}
#hd .faq-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none; /* 移除預設外框，改用下方自定義樣式 */
}
/* 鍵盤聚焦時的視覺回饋 */
#hd .faq-header:focus-visible {
    background: #ececec;
}
#hd .faq-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
}

/* 圖示設計 */
#hd .faq-icon {
    font-size: 1.5rem;
    color: #8a6846;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* 內容區塊 */
#hd .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0px 30px;
}

.faq-content p {
    padding: 1em 0 1em 0;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}
#hd .faq-content p:first-child {
    border-top: 1px solid #b28442;
    padding-top: 1em;
}
#hd .faq-content a{
    color: #ed9720 !important;
    text-decoration: underline;
    transition: all 0.2s;
}
#hd .faq-content a:hover{
    color: #aaa !important;
}
#hd .faq-content ul {
    padding: 0 0 1em 0;
    margin: 0 0 0 1em;
    list-style: disc;
    color: #fff;
    line-height: 1.6;
}
#hd .faq-content ul li{
    padding: 0;
    margin: 0 0 0.5em 0;
}



/* 展開狀態的樣式 */
#hd .faq-item.active {
}
#hd .faq-item.active .faq-content {
    max-height: 1000px; /* 足夠大的高度以容納內容 */
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

#hd .faq-item.active .faq-icon {
    color: #8a6846; /* 展開時變色 x */
}



/* table */
#hd .faq-content table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    margin: 0;
    text-align: center;
}
#hd .faq-content th, .faq-content td {
    border: 1px solid #555;
    padding: 12px;
    font-size: 1.1rem;
    color: #fff;
}
#hd .faq-content thead th {
    background-color: #333;
    font-weight: normal;
}
#hd .faq-content td:first-child {
    text-align: left;
}
#hd .faq-content tr:hover {
    /*background-color: #555;*/
}
@media (max-width: 767px) {
#hd .faq-content th, .faq-content td {
    padding: 6px 3px;
    font-size: 1rem;
}
}
@media (max-width: 420px) {
#hd .faq-title {
    font-size: 1rem;
}
#hd .faq-content th, .faq-content td {
    font-size: 0.9rem;
}
}


