@charset 'utf-8';

@font-face {
    font-family: 'TTNormsProMedium';
    src: url('../fonts/TTNorms-Regular.otf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'TTNormsProBold';
    src: url('../fonts/TTNorms-Bold.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 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:"TTNormsProBold","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
    font-size: 3em;
    line-height: 1.2em;
    margin: 0 0 0.5em 0;
    padding: 0;
    letter-spacing: -1px;
    color: #000;
}
#hd .mini-title{
    font-family:"TTNormsProMedium","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
    font-size: 1.8em;
    line-height: 1.2em;
    margin: 0 0 0.5em 0;
    padding: 0;
    color: #444;
}
@media screen and (max-width: 1400px) {    
#hd .default-title{
    font-size: 2.5em;
}
}
@media screen and (max-width: 600px) {    
#hd .default-title{
    font-size: 2em;
}
}

#hd .default-p{
    line-height: 1.5em;
    font-size: 1.3em;
    margin: 0 0 1em 0;
    padding: 0;
}
@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{
}

#hd .asterisk{ /*20250808*/
    font-size: 0.7em;
}



/*sidenav*/

.sidenav-wrapper {
    /*display: none;*/
    position: relative;
}
.sidenav-wrapper.active {
    display: block;
}
#sidenav {
    height: 100vh;
    position: fixed;
    right: 5px;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    text-align: right;
}
#sidenav > .main-nav{
    position: relative;
    list-style-type: none;
}
#sidenav > .main-nav:before{
    content: '';
    display: block;
    width: 12px;
    height: 116px;
    background: url(../img/sidenav-decor-1.png) center top no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: 12px;
    top: -130px;
}
#sidenav > .main-nav:after{
    content: '';
    display: block;
    width: 12px;
    height: 92px;
    background: url(../img/sidenav-decor-2.png) center top no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: 11px;
    bottom: -100px;
}
#sidenav > .main-nav > li{
    margin-bottom: 0px;
    list-style-type: none;
}
#sidenav > .main-nav > li > a{
    color: transparent;
    border: 0;
    font-size: 1em;
    line-height: 1em;
    background: transparent;
    cursor: pointer;
    font-family: "Trade", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    position: relative;
    padding: 7px 30px 5px 20px;
    border: 1px solid transparent;
    border-left: 2px solid transparent;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 20px;
    height: 30px;
    overflow: hidden;
    box-sizing: border-box;
    display: inline-block;
    text-decoration: none;
}
#sidenav > .main-nav > li.active > a{
}
#sidenav > .main-nav > li > a:hover{
    width: inherit;
    color: #ba6e3b;
    border-color: #transparent;
}
#sidenav > .main-nav > li > a:focus{
    width: inherit;
}
#sidenav > .main-nav > li > a:after{
    display: block;
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 9px;
    /*border: 1px solid #000;*/
    position: absolute;
    box-sizing: border-box;
    right: 12px;
    top: 11px;
    background: #999;
}
#sidenav > .main-nav > li.active > a:after{
    /*background: #ff935c;*/
}
#sidenav > .main-nav > li > a:hover:after{
    background: #d27e46;
}

#sidenav > .main-nav > li > a span{
    opacity: 0;
}
#sidenav > .main-nav > li > a:focus span,
#sidenav > .main-nav > li > a:hover span{
    opacity: 1;
}

@media screen and (max-width: 1023px) {
.sidenav-wrapper {
    display: none;
}
.sidenav-wrapper.active {
    display: none;
}
}


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

#hd .section-kv{
    position: relative;
    overflow: hidden;
    background-color: #fff;
}
#hd .section-kv .inner{
    position: relative;
    background: url(../img/kv.jpg) center bottom no-repeat;
    height: 52vw;
    height: 45vw;
    max-height: calc(1000px * 1.33);
    max-width: calc(1920px * 1.33);
    margin: 0 auto;
    background-size: cover;
}
#hd .section-kv .inner .main-image{
    display: none;
}
#hd .section-kv .text-content{
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1000px;
    padding: 5vw 20px 0 20px;
    z-index: 2;
    box-sizing: border-box;
    text-align: center;
}
#hd .section-kv .add-content{
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 30vw 20px 0 20px;
    z-index: 2;
    max-width: 1000px;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.3em;
}
#hd .section-kv .text-content .mini-title{
    font-size: 1.8em;
    margin: 0;
    line-height: 1.2em;
    color: #555;
    font-family:"TTNormsProMedium","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
}
#hd .section-kv .text-content .title{
    font-size: 4em;
    margin: 0;
    line-height: 1.2em;
    font-family:"TTNormsProBold","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
    color: #000;
}
#hd .section-kv .text-content .title span{
    color: #8bd7ff;
}
#hd .section-kv .text-content p{
    margin: 2em 0 0 0;
    font-size: 1.1em;
    line-height: 1.3em;
    font-family:"TTNormsProLight","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
    color: #000;
}
#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","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 .add-content{
    padding-top: 750px;
}
#hd .section-kv .text-content .mini-title{
    font-size: 3em;
}
#hd .section-kv .text-content .title{
    font-size: 5em;
}
}
@media screen and (min-width: 2560px) {    
#hd .section-kv .text-content{
    padding-top: 200px;
}
}



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


@media screen and (max-width: 1500px) {    
#hd .section-kv .text-content{
}
#hd .section-kv .text-content .mini-title{
    font-size: 1.5em;
}
#hd .section-kv .text-content .title{
    font-size: 3.2em;
}
#hd .section-kv .add-content{
    font-size: 1.1em;
    padding-top: 28vw;
}
}
@media screen and (max-width: 1400px) {    
#hd .section-kv .inner{
    height: 65vw;
}
}
@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: 80px 30px 30px 30px;
}
#hd .section-kv .text-content .mini-title{
    font-size: 1.5em;
}
#hd .section-kv .text-content .title{
    font-size: 2.5em;
}
}

@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;
}
}




/*-----features-----*/

#hd .section-features{
    position: relative;
    background: #fff;
    overflow: hidden;
}
#hd .section-features .inner{
    max-width: 1200px;
    padding: 50px 30px 100px 30px;
    margin: 0 auto;
}
#hd .section-features .grid{
}
#hd .section-features .grid .row{
    display: flex;
    flex-wrap: wrap;
}
#hd .section-features .grid .row .column{
    background-color: #ccecff;
    /*background-image:linear-gradient(to bottom, #dfecff 0% ,#ccecff 30% ,#ccecff 70% ,#87c1d8 90%, #7db6cd 100%);*/
    border-radius: 20px;
    overflow: hidden;
    margin: 1%;
}
#hd .section-features .grid .row .column.of1{
    width: 98%;
}
#hd .section-features .grid .row .column.of2{
    width: 48%;
}
#hd .section-features .grid .row .column.of3{
    width: 31.33%;
}
#hd .section-features .grid .row .column.of4{
    width: 23%;
}


#hd .section-features .grid .p1{
    font-family:"TTNormsProBold","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
    font-size: 1.8em;
    color: #d16605;
    line-height: 1.1em;
    margin: 0.3em 0;
}
#hd .section-features .grid .p2{
    font-family:"TTNormsProMedium","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
    font-size: 1.3em;
    color: #111;
    line-height: 1.1em;
    margin: 0.3em 0;
}
#hd .section-features .grid .note{
    font-size: 1em;
    color: #000;
    line-height: 1.1em;
    margin: 15px 0 0 0;
}

#hd .section-features .grid .box-a1{
    background: #d6dfea url(../img/grid-wave.jpg) left center no-repeat;
    background-size: auto 200%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
#hd .section-features .grid .box-a1 .text{
    padding: 30px 20px 30px 10px;
    text-align: center;
}
#hd .section-features .grid .box-a1 .image{
    width: 40%;
    padding: 20px;
}
#hd .section-features .grid .box-a1 .image img{
    max-width: 180px;
    margin: 0 auto;
    display: block;
}
#hd .section-features .grid .box-a1 .text .p2{
    margin-top: 5px;
    font-size: 1.6em;
}

#hd .section-features .grid .row .column.box-group{
    border: none;
    background: none;
    border-radius: 0px;
    margin: 0.5% 0% 0.5% 0.5%;
    width: 48.5%;
}
#hd .section-features .grid .row .column.box-group > .row{
    display: flex;
    height: 50%;
}

#hd .section-features .grid .box-a2{
    background: #d6dfea url(../img/grid-wave.jpg) left center no-repeat;
    background-size: auto 200%;
}
#hd .section-features .grid .box-a2 .text{
    padding: 30px 20px 30px 20px;
    text-align: center;
}

#hd .section-features .grid .box-a3 {
    background: #d6dfea url(../img/grid-wave.jpg) left center no-repeat;
    background-size: auto 200%;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    flex-direction: column;
}
#hd .section-features .grid .box-a3 .image{
    padding: 30px;
}
#hd .section-features .grid .box-a4 {
    background: #d6dfea url(../img/grid-wave.jpg) right center no-repeat;
    background-size: auto 200%;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    flex-direction: column;
}
#hd .section-features .grid .box-a4 .image{
    padding: 30px;
}





#hd .section-features .grid .box-b1{
    background: #d6dfea url(../img/grid-wave.jpg) center top no-repeat;
    background-size: auto 200%;
    display: flex;
    align-items: center;
    padding: 30px 30px;
    text-align: center;
    justify-content: center;
}
#hd .section-features .grid .box-b1 .text{
    padding: 20px;
}
#hd .section-features .grid .box-b1 .text .p2{
}
#hd .section-features .grid .box-b2{
    background: #d6dfea url(../img/grid-wave.jpg) right center no-repeat;
    background-size: auto 200%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hd .section-features .grid .box-b2 .text{
    padding: 20px;
    text-align: center;
}
#hd .section-features .grid .box-b2 .image{
    width: 40%;
    padding: 20px;
}
#hd .section-features .grid .box-b2 .text .p2{
    margin-top: 5px;
    font-size: 1.6em;
}


#hd .section-features .grid .box-c1{
    background: #d6dfea url(../img/grid-wave.jpg) left center no-repeat;
    background-size: auto 200%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
#hd .section-features .grid .box-c1 .text{
    padding: 30px;
    text-align: center;
}
#hd .section-features .grid .box-c1 .image{
    width: 60%;
    padding: 0px 0px 20px 0px;
}
#hd .section-features .grid .box-c1 .text .p2{
}

#hd .section-features .grid .box-c2{
    background: #d6dfea url(../img/grid-wave.jpg) center center no-repeat;
    background-size: auto 200%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
#hd .section-features .grid .box-c2 .text{
    padding: 30px;
    text-align: center;
}




#hd .section-features .grid .box-spec{
    background: #000;
    display: flex;
    align-items: center;
    padding: 0 5%;
    flex-wrap: wrap;
}
#hd .section-features .grid .box-spec .list{
    width: 50%;
    padding: 30px 30px 30px 20px;
}
#hd .section-features .grid .box-spec .image{
    width: 50%;
    padding: 20px 0 20px 20px;
}
#hd .section-features .grid .box-spec .list ul{
    padding: 0;
    margin: 0;
    display: flex;
    list-style-type: none;
    flex-wrap: wrap;
    color: #2f4bc1;
}
#hd .section-features .grid .box-spec .list ul li{
    padding: 0 5px 0 0;
    margin: 0 0 15px 0;
    list-style-type: none;
    width: 50%;
}
#hd .section-features .grid .box-spec .list ul li .number{
    padding: 0;
    margin: 0;
    list-style-type: none;
    width: 50%;

    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #2f4bc1;
    color: #2f4bc1;
    margin-right: 10px;
}

@media screen and (max-width: 1200px) {
#hd .section-features .grid .p1 {
    font-size: 1.7em !important;
}
}
@media screen and (max-width: 850px) {
#hd .section-features .grid .column {
    width: 100% !important;
    margin: 0 0 15px 0 !important;
}
#hd .section-features .grid .box-spec{
    padding: 0;
}
#hd .section-features .grid .box-a1{
    flex-wrap: wrap;
}
#hd .section-features .grid .box-a1 .text{
    width: 100%;
    padding: 20px 0px 0px 30px;
}
#hd .section-features .grid .box-a1 .image{
    width: 70%;
    margin: 0 auto;
}
#hd .section-features .grid .row .column.box-group > .row{
    height: inherit;
}
#hd .section-features .grid .box-a2{
    background-size: cover;
}
#hd .section-features .grid .box-a3 {
    background-size: cover;
}
#hd .section-features .grid .box-a4 {
    background-size: cover;
}
#hd .section-features .grid .box-b2 {
    background-size: cover;
}
#hd .section-features .grid .box-c1 {
    background-size: cover;
}
#hd .section-features .grid .box-c2 {
    background-size: cover;
}
}
@media screen and (max-width: 767px) {
#hd .section-features .grid .box-spec .list{
    width: 100%;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}
#hd .section-features .grid .box-spec .image{
    width: 100%;
    padding: 20px;
}
}
@media screen and (max-width: 450px) {
#hd .section-features .grid .p1 {
    font-size: 1.3em !important;
}
#hd .section-features .grid .p2 {
    font-size: 1em !important;
}
#hd .section-features .grid .box-spec .list ul li{
    width: 100%;
}
}







/*performance*/
#hd .section-performance{
    background: #e2eef8;
}
#hd .section-performance.workstyle{
    background: #fff;
}
#hd .section-performance.resources{
}

#hd .section-performance .inner {
    max-width: 1200px;
    padding: 100px 30px;
    box-sizing: border-box;
    margin: 0 auto;
}
#hd .section-performance .text-content{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
#hd .section-performance .default-title{
}
#hd .section-performance .image{
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}
#hd .section-performance .image img{
    max-width: 100%;
    display: block;
}
#hd .section-performance .list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 80px;
}
#hd .section-performance .list .entry{
    width: 33.33%;
    margin-bottom: 60px;
    padding: 0 15px;
    box-sizing: border-box;
}
#hd .section-performance .list .entry h4{
    font-size: 1.4em;
    font-family: "TTNormsProMedium", "TTNorms", "MyriadPro", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    margin: 0 0 0.5em 0;
    line-height: 1.1em;
    min-height: 2.2em;
    color: #1b6e9c;
}
#hd .section-performance .list .entry p{
    font-size: 1.1em;
    margin: 0.8em 0 0 0;
    text-align: center;
    line-height: 1.3em;
    padding: 0 15px 0 0;
    color: #333;
    text-align: left;
}
#hd .section-performance .note{
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 1em;
}
@media screen and (max-width: 767px) {    
#hd .section-performance .list .entry{
    width: 50%;
    margin-bottom: 50px;
}
#hd .section-performance .list .entry h4{
    font-size: 1.2em;
}
#hd .section-performance .list .entry p{
    font-size: 1em;
}
}

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








/*-----single-----*/

#hd .section-single{
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: #fff;
}
#hd .section-single .inner{
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}
#hd .section-single .text-content{
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 30px;
}
#hd .section-single .image{
    text-align: center;
}
#hd .section-single .image.PowerSync{
    max-width: 900px;
    margin: 0 auto;
}
#hd .section-single .image img{
    display: inline-block;
}
#hd .section-single .image .note{
    max-width: 920px;
    margin: 10px auto 0 auto;
    text-align: left;
    font-style: italic;
}
#hd .section-single .image .note a{
    color: #215cad;
    text-decoration: underline !important;
}
@media screen and (max-width: 767px) {    
#hd .section-single .text-content{
    padding-top: 50px;
}
}
#hd .section-single .text-content .default-title{
}
#hd .section-single .text-content .default-p{
    color: #000;
    max-width: 900px;
    margin: 0 auto;
}
#hd .section-single .text-content .mini-title{
    font-family:"Trade","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
    color: #2a78c0; /*WCAG*/
    margin-bottom: 30px;
}
#hd .section-single .text-content .mini-title span{
    padding: 0 20px 5px 20px;
    border-bottom: 1px solid #2a78c0; /*WCAG*/
}
@media screen and (max-width: 600px) {    
#hd .section-single .text-content .mini-title{
    font-size: 1.2em;
}
}


#hd .section-single.video{
    background-color: #ececec;
}
#hd .section-single.video .inner{
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 60px;
}
#hd .section-single.video .text-content{
    margin-bottom: 50px;
}
#hd .section-single.video .video-container{
    width: 100%;
    border: 1px solid #ececec;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
#hd .section-single.video video{
    width: 100%;
}



#hd .section-single.connectivity{
    background-color: #fff;
}
#hd .section-single.connectivity .image{
    display: flex;
    flex-wrap: wrap;
}
#hd .section-single.connectivity .image img{
    width: 100%;
    display: block !important;
}
#hd .section-single.connectivity .lead{
    width: 180px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    top: -80px;
    left: calc(50% - 90px);
    background: #aaa;
    background-image:linear-gradient(to right, #d25b1a 0% ,#a73b00 100%);
    border-radius: 8px;
    font-size: 1.2em;
    font-family:"TTNormsProBold","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
}
#hd .section-single.connectivity .io{
    width: 50%;
    position: relative;
    margin-top: 120px;
}
#hd .section-single.connectivity .io ul{
    color: #000;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
#hd .section-single.connectivity .io ul li{
    color: #000;
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.1em;
    font-size: 1.1em;
}
#hd .section-single.connectivity .io.front ul li:nth-child(1){
    left: 15%;
    top: 70%;
}
#hd .section-single.connectivity .io.front ul li:nth-child(2){
    left: 38%;
    top: 60%;
}
#hd .section-single.connectivity .io.front ul li:nth-child(3){
    left: 50%;
    top: 70%;
}
#hd .section-single.connectivity .io.front ul li:nth-child(4){
    left: 69%;
    top: 63%;
}
#hd .section-single.connectivity .io.front ul li:nth-child(5){
    left: 77%;
    top: 5%;
}
#hd .section-single.connectivity .io.back ul li:nth-child(1){
    left: 21%;
    top: 12%;
}
#hd .section-single.connectivity .io.back ul li:nth-child(2){
    left: 35%;
    top: 3%;
}
#hd .section-single.connectivity .io.back ul li:nth-child(3){
    left: 57%;
    top: 9%;
}
#hd .section-single.connectivity .io.back ul li:nth-child(4){
    left: 17%;
    top: 76%;
}
#hd .section-single.connectivity .io.back ul li:nth-child(5){
    left: 30%;
    top: 69%;
}
#hd .section-single.connectivity .io.back ul li:nth-child(6){
    left: 48%;
    top: 77%;
}
#hd .section-single.connectivity .io.back ul li:nth-child(7){
    left: 61%;
    top: 67%;
}
#hd .section-single.connectivity .io.back ul li:nth-child(8){
    left: 76%;
    top: 76%;
}
@media screen and (max-width: 1200px) {    
#hd .section-single.connectivity .io.front ul li:nth-child(5){
    left: 68%;
    top: 3%;
}
}
@media screen and (max-width: 950px) {    
#hd .section-single.connectivity .image{
    max-width: 670px;
    margin: 0 auto;
}
#hd .section-single.connectivity .io{
    width: 100%;
}
}
@media screen and (max-width: 500px) {    
#hd .section-single.connectivity .io ul li{
    font-size: 0.9em;
}
#hd .section-single.connectivity .io.front ul li:nth-child(2){
    left: 34%;
}
}
@media screen and (max-width: 420px) {    
#hd .section-single.connectivity .io ul li{
    font-size: 0.8em;
}
}



#hd .section-single.Quad-Display{
    background-image:linear-gradient(to bottom, #fff 60% ,#f5c595 100%);
}



/*resources*/
#hd .section-resources{
    background: #f2f2f2;
}
#hd .section-resources .inner {
    max-width: 1300px;
    padding: 100px 30px;
    box-sizing: border-box;
    margin: 0 auto;
}
#hd .section-resources .text-content{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
#hd .section-resources .default-title{
}
#hd .section-resources .image{
    margin-bottom: 15px;
    /*border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;*/
}
#hd .section-resources .image img{
    width: 100%;
    display: block;
}
#hd .section-resources .list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 80px;
}
#hd .section-resources .list .entry{
    width: 23%;
    margin: 0 1% 50px 1%;
    box-sizing: border-box;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
#hd .section-resources .list .entry .name{
    font-family: "TTNormsProBold", "TTNorms", "MyriadPro", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    font-size: 1.1em;
    margin: 0.8em 0 0 0;
    text-align: center;
    line-height: 1.3em;
    padding: 0 15px;
    margin: 0 0 15px 0;
    color: #333;
    text-align: left;
}
#hd .section-resources .list .entry .link{
    font-family: "TTNormsProBold", "TTNorms", "MyriadPro", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    font-size: 1.1em;
    margin: 0.8em 0 0 0;
    text-align: center;
    line-height: 1.3em;
    padding: 0 15px;
    margin: 0 0 15px 0;
    color: #333;
    text-align: left;
}
#hd .section-resources .list .entry .link a{
    color: #2f48b5;
    text-decoration: none;
}
#hd .section-resources .list .entry .link a:hover{
    color: #0057b8;
    text-decoration: underline;
}
#hd .section-resources .note{
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 1em;
}

@media screen and (max-width: 1023px) {    
#hd .section-resources .list .entry{
    width: 48%;
    margin: 0 1% 50px 1%;
}
}

@media screen and (max-width: 767px) {    
}

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

/*design*/
#hd .section-design{
    background: #fff;
}
#hd .section-design .inner {
    max-width: 1300px;
    padding: 100px 50px;
    box-sizing: border-box;
    margin: 0 auto;
}
#hd .section-design .text-content{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
#hd .section-design .default-title{
}
#hd .section-design .default-p{
    color: #000;
}
#hd .section-design .image{
    margin-bottom: 15px;
    /*border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;*/
    border-radius: 20px;
    overflow: hidden;
}
#hd .section-design .image img{
    width: 100%;
    display: block;
}
#hd .section-design .list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 80px;
}
#hd .section-design .list .entry{
    width: 44%;
    margin: 0 3% 50px 3%;
    padding-bottom: 20px;
    box-sizing: border-box;
    background: #fff;
}
#hd .section-design .list .entry h4{
    font-size: 1.4em;
    font-family: "TTNormsProMedium", "TTNorms", "MyriadPro", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    margin: 0.5em 0;
    line-height: 1.1em;
    min-height: 2.2em;
    color: #1b6e9c;
}
#hd .section-design .list .entry .name{
    font-size: 1.6em;
    font-family: "TTNormsProBold", "TTNorms", "MyriadPro", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    margin: 0.5em 0;
    text-align: center;
    line-height: 1.3em;
    padding: 0 15px;
    color: #000;
}
#hd .section-design .list .entry .brief{
    font-family: "TTNormsProMedium", "TTNorms", "MyriadPro", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    font-size: 1.2em;
    margin: 0.5em 0;
    text-align: center;
    line-height: 1.3em;
    padding: 0 15px;
    color: #000;
}
#hd .section-design .list .entry .link a{
    color: #2d3a73;
    text-decoration: none;
}
#hd .section-design .list .entry .link a:hover{
    color: #2f48b5;
    text-decoration: underline;
}
#hd .section-design .note{
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 1em;
}

@media screen and (max-width: 1023px) {    
#hd .section-design .list .entry{
    width: 48%;
    margin: 0 1% 50px 1%;
}
}
@media screen and (max-width: 500px) {    
#hd .section-design .inner{
    padding: 50px 20px;
}
#hd .section-design .list .entry{
    width: 100%;
}
}


/*market*/
#hd .section-market{
    background: #fff0e2;
}
#hd .section-market .inner {
    max-width: 1300px;
    padding: 100px 30px;
    box-sizing: border-box;
    margin: 0 auto;
}
#hd .section-market .text-content{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
#hd .section-market .default-title{
}
#hd .section-market .default-p{
    color: #000;
}
#hd .section-market .image{
    margin-bottom: 15px;
    /*border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;*/
}
#hd .section-market .image img{
    width: 100%;
    display: block;
}
#hd .section-market .list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 80px;
}
#hd .section-market .list .entry{
    width: 44%;
    margin: 0 3% 50px 3%;
    padding-bottom: 20px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
#hd .section-market .list .entry h4{
    font-size: 1.4em;
    font-family: "TTNormsProMedium", "TTNorms", "MyriadPro", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    margin: 0 0 0.5em 0;
    line-height: 1.1em;
    min-height: 2.2em;
    color: #1b6e9c;
}
#hd .section-market .list .entry .name{
    font-size: 1.3em;
    font-family: "TTNormsProBold", "TTNorms", "MyriadPro", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    margin: 0 0 0.5em 0;
    text-align: center;
    line-height: 1.3em;
    padding: 0 15px;
    color: #000;
}
#hd .section-market .list .entry .brief{
    font-family: "TTNormsProMedium", "TTNorms", "MyriadPro", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    font-size: 1em;
    margin: 0 0 0.5em 0;
    text-align: center;
    line-height: 1.3em;
    padding: 0 15px;
    color: #000;
}
#hd .section-market .list .entry .link a{
    color: #2d3a73;
    text-decoration: none;
}
#hd .section-market .list .entry .link a:hover{
    color: #2f48b5;
    text-decoration: underline;
}
#hd .section-market .note{
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 1em;
}

@media screen and (max-width: 1023px) {    
#hd .section-market .list .entry{
    width: 48%;
    margin: 0 1% 50px 1%;
}
}

@media screen and (max-width: 767px) {    
}

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


/*support*/
#hd .section-support{
    background: #fff;
}
#hd .section-support .inner {
    max-width: 1300px;
    padding: 100px 30px;
    box-sizing: border-box;
    margin: 0 auto;
}
#hd .section-support .text-content{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
#hd .section-support .default-title{
}
#hd .section-support .mini-title{
    margin: 0 0 0.5em 0;
    color: #C25A00;
    font-family:"TTNormsProBold","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
}
#hd .section-support .image{
    margin-bottom: 15px;
    /*border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;*/
}
#hd .section-support .image img{
    width: 70%;
    margin: 0 auto;
    display: block;
}
#hd .section-support .list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}
#hd .section-support .list .entry{
    width: 23%;
    margin: 0 1% 50px 1%;
    box-sizing: border-box;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
#hd .section-support .list .entry h4{
    font-size: 1.4em;
    font-family: "TTNormsProMedium", "TTNorms", "MyriadPro", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    margin: 0 0 0.5em 0;
    line-height: 1.1em;
    min-height: 2.2em;
    color: #1b6e9c;
}
#hd .section-support .list .entry .name{
    font-size: 1.3em;
    font-family: "TTNormsProBold", "TTNorms", "MyriadPro", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    margin: 0 0 0.5em 0;
    text-align: center;
    line-height: 1.3em;
    padding: 0 15px;
    color: #000;
}
#hd .section-support .list .entry .brief{
    font-family: "TTNormsProMedium", "TTNorms", "MyriadPro", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    font-size: 1em;
    margin: 0 0 0.5em 0;
    text-align: center;
    line-height: 1.3em;
    padding: 0 15px;
    color: #000;
}
#hd .section-support .list .entry .note{
    font-size: 0.8em;
    margin: 0 0 0.5em 0;
    text-align: center;
    line-height: 1.1em;
    padding: 0 5px;
    color: #444;
}
#hd .section-support .list .entry .link a{
    color: #2d3a73;
    text-decoration: none;
}
#hd .section-support .list .entry .link a:hover{
    color: #2f48b5;
    text-decoration: underline;
}
#hd .section-support .note{
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 1em;
}

@media screen and (max-width: 767px) {    
#hd .section-support .list .entry{
    width: 48%;
    margin: 0 1% 50px 1%;
}
}

@media screen and (max-width: 500px) {    
#hd .section-support .inner{
    padding: 50px 20px;
}
#hd .section-support .list .entry .name{
    font-size: 1em;
    padding: 0 5px;
}
#hd .section-support .list .entry .brief{
    font-size: 1em;
}
}



/*-----cooling-----*/
#hd .section-cooling{
    background: #e5e5e5;
}
#hd .section-cooling .intro{
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#hd .section-cooling .intro .text{
    width: 45%;
    padding: 100px 10px 100px 20px;
}
#hd .section-cooling .intro .image{
    width: 55%;
}
#hd .section-cooling .intro .mini-title{
    font-size: 1.2em;
    color: #175ec9;
}
#hd .section-cooling .intro .default-title{
    font-size: 2.5em;
}
#hd .section-cooling .intro .default-p{
    padding-right: 17%;
    color: #000;
}
#hd .section-cooling .intro .feature{
    max-width: 400px;
    margin-top: 30px;
}


@media screen and (max-width: 950px) {    
#hd .section-cooling{
}
#hd .section-cooling .intro .text{
    width: 100%;
    padding: 50px 0 0 0;
}
#hd .section-cooling .intro .image{
    width: 100%;
    padding-top: 40px;
}
#hd .section-cooling .intro .image img{
    max-width: 90%;
    margin: 0 auto;
}
#hd .section-cooling .intro .default-p{
    padding-right: 0;
}
}
@media screen and (max-width: 450px) {    
#hd .section-cooling .intro .default-title{
    font-size: 2em;
}
}




/*-----tab-----*/

#hd .section-tab{
    position: relative;
    overflow: hidden;
    background-color: #fff;
    padding-bottom: 50px;
}
#hd .section-tab .inner{
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}
#hd .section-tab .text-content{
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 30px;
}
#hd .section-tab .text-content .default-title{
}
#hd .section-tab .tab{
    display: flex;
}
#hd .section-tab .tab a{
    display: block;
    cursor: pointer;
    color: #000;
    width: 50%;
    font-size: 1.3em;
    transition: all 0.2s;
    border-bottom: 1px solid #215cad;
    font-family:"TTNormsProLight","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
}
#hd .section-tab .tab a:hover{
    color: #215cad;
}
#hd .section-tab .tab a span{
    border-bottom: 3px solid transparent;
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.2s;
    padding: 10px;
}
#hd .section-tab .tab a h3{
    margin: 0;
    padding: 0;
    font-weight: normal;
}
#hd .section-tab .tab a.active{
    color: #215cad;
    border-bottom: 1px solid #215cad;
}
#hd .section-tab .tab a.active span{
    border-bottom: 3px solid #215cad;
}
#hd .section-tab .default-title{
}
#hd .section-tab .default-p{
    text-align: center;
}
#hd .section-tab .tab-content{
    padding-bottom: 50px;
    padding-top: 20px;
    color: #000;
}
#hd .section-tab .intro .text{
    max-width: 900px;
    margin: 0 auto 30px auto;
}
#hd .section-tab .tab-content .entry{
    display: none;
}
#hd .section-tab .tab-content .entry.active{
    display: block;
}
#hd .section-tab .image{
    border-radius: 30px;
    overflow: hidden;
    max-width: 920px;
    margin: 0 auto;
}
#hd .section-tab .note{
    font-size: 1em;
    color: #333;
    text-align: center;
    padding: 1em 0;
}
#hd .section-tab .video-wrapper{
    max-width: 800px;
    margin: 0 auto;
}
#hd .section-tab .video-wrapper .video-container{
    width: 100%;
    border: 1px solid #cc000e;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
#hd .section-tab .video-wrapper video{
    width: 100%;
}
#hd .video-container:before{
    display: block;
    position: absolute;
    left: -15px;
    top:  -15px;
    width: 90px;
    height: 70px;
    background: url(../img/corner.png) left bottom no-repeat;
    background-size: 100% 100%;
    content: '';
}
#hd .video-container:after{
    display: block;
    position: absolute;
    right: -15px;
    bottom:  -15px;
    width: 90px;
    height: 70px;
    background: url(../img/corner.png) left bottom no-repeat;
    background-size: 100% 100%;
    content: '';
    transform: rotate(180deg);
}


@media screen and (max-width: 1023px) {    
}
@media screen and (max-width: 767px) {    
#hd .section-tab .inner{
    padding: 0;
}
#hd .section-tab .text-content .default-title{
    padding: 0 20px;
}
#hd .section-tab .tab a{
    font-size: 1em;
}
#hd .section-tab .tab a span{
    padding: 5px;
}
#hd .section-tab .tab-content .entry{
    padding-left: 20px;
    padding-right: 20px;
}
}


@media screen and (max-width: 600px) {    
#hd .section-tab .tab-content .row .column{
    width: 100%;
    margin-bottom: 20px;
}
}





/* amd */

#hd .section-single.amd{
    padding-bottom: 150px;
}
#hd .section-single.amd .row{
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}
#hd .section-single.amd .image{
    display: flex;
    flex-wrap: wrap;
    width: 40%;
}
#hd .section-single.amd .stack-wrapper{
    width: 60%;
    padding-right: 5%;
    box-sizing: border-box;
}
#hd .section-single.amd .image img{
    width: 100%;
    display: block;
    height: auto;
}
#hd .section-single.amd .stack{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    font-family:"TTNormsProMedium","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
    color: #333;
}
#hd .section-single.amd .stack .column{
    width: 48%;
    margin: 1%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: column;
}
#hd .section-single.amd .stack .column.single{
    width: 100%;
}
#hd .section-single.amd .stack .box{
    border: 1px solid #a6def9;
    border-radius: 30px;
    padding: 20px;
    text-align: center;
    background-image:linear-gradient(135deg, #cadcfb 0% ,#d3edf9 100%);
}
#hd .section-single.amd .stack p{
    line-height: 1em;
    margin: 0;
    padding: 0;
}
#hd .section-single.amd .stack .box-1{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#hd .section-single.amd .stack .p1{
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}
#hd .section-single.amd .stack .p2{
    font-size: 1.2em;
    margin-bottom: 10px;
}
#hd .section-single.amd .stack .p3{
    font-size: 1.2em;
    margin-bottom: 10px;
}


@media screen and (max-width: 767px) {    
#hd .section-single.amd .image{
    width: 100%;
}
#hd .section-single.amd .image img{
    width: 70%;
    margin: 0 auto;
}
#hd .section-single.amd .stack-wrapper{
    width: 100%;
    padding-right: 0%;
    margin-bottom: 30px;
}
}
@media screen and (max-width: 450px) {    
#hd .section-single.amd{
    padding-bottom: 50px;
}
#hd .section-single.amd .stack .column{
    width: 100%;
}
#hd .section-single.amd .stack .p1{
    font-size: 1.8em;
}
#hd .section-single.amd .stack .p2{
    font-size: 1.3em;
}
}






/*#hd #BTN-Datasheet*/
#hd #BTN-Datasheet{
    position: relative;
    overflow: hidden;
    padding: 0px 0px 100px 0px;
}
#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: TT Norms Pro, Roboto, sans-serif;
    -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;
}





/*chip*/
#hd .section-chip{
    background: #fff;
}
#hd .section-chip .inner {
    max-width: 1500px;
    padding: 100px 50px;
    box-sizing: border-box;
    margin: 0 auto;
}
#hd .section-chip .text-content{
    max-width: 1300px;
    margin: 0 auto;
    text-align: left;
}
#hd .section-chip .default-title{
}
#hd .section-chip .mini-title{
    margin: 0 0 0.5em 0;
    color: #C25A00;
    font-family:"TTNormsProBold","Roboto","Segoe UI","Arial","PingFang TC","Microsoft JhengHei","Microsoft YaHei",sans-serif;
}
#hd .section-chip .image{
    position: relative;
    width: 80%;
}
#hd .section-chip .image img{
    display: block;
    width: 100%;
}
#hd .section-chip .image .list{
    position: absolute;
    left: 65%;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#hd .section-chip .image .list p{
    background: #aaa;
    background-image:linear-gradient(to right, #d25b1a 0% ,#a73b00 100%);
    color: #fff;
    line-height: 1.2em;
    padding: 0;
    margin: 0;
    font-size: 1.2em;
    padding: 15px 5px;
    margin: 15px 0;
    text-align: center;
    font-family: "TTNormsProMedium", "TTNorms", "MyriadPro", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
}
#hd .section-chip .image .list small{
    font-size: 0.8em;
}
#hd .section-chip .row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
#hd .section-chip .row .entry{
    width: 50%;
    margin: 0;
    box-sizing: border-box;
}
#hd .section-chip .text{
    color: #000;
    padding-left: 30px;
}
#hd .section-chip .name{
    font-size: 1.4em;
    font-family: "TTNormsProBold", "TTNorms", "MyriadPro", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    margin: 0 0 0.3em 0;
    line-height: 1.3em;
    color: #000;
}
#hd .section-chip .brief{
    font-family: "TTNormsProMedium", "TTNorms", "MyriadPro", "Roboto", "Arial", "Apple LiGothic Medium", "STHeiti Light", "Microsoft JhengHei", sans-serif;
    font-size: 1.1em;
    margin: 0 0 1.5em 0;
}
#hd .section-chip .list .entry .link a{
    color: #2d3a73;
    text-decoration: none;
}
#hd .section-chip .list .entry .link a:hover{
    color: #2f48b5;
    text-decoration: underline;
}
#hd .section-chip .note{
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 1em;
}

@media screen and (max-width: 950px) {    
#hd .section-chip .row .entry{
    width: 100%;
    margin-bottom: 50px;
}
#hd .section-chip .text{
    padding-left: 0px;
}
#hd .section-chip .image{
    width: 100%;
}
#hd .section-chip .image .list{
    left: 60%;
    width: 42%;
}
}
@media screen and (max-width: 550px) {    
#hd .section-chip .inner{
    padding: 50px 20px;
}
#hd .section-chip .list .entry .name{
    font-size: 1em;
    padding: 0 5px;
}
#hd .section-chip .list .entry .brief{
    font-size: 1em;
}
#hd .section-chip .image .list p{
    font-size: 1em;
    padding: 10px 5px;
    margin: 5px 0;
}
}


/*#hd #BTN-Datasheet*/
#hd #BTN-Datasheet{
    position: relative;
    overflow: hidden;
    padding: 50px 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: TT Norms Pro, Roboto, sans-serif;
    -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;
}
