﻿@charset "utf-8";
@font-face {
    font-family: 'Antonio Light';
    font-style: normal;
    font-weight: normal;
    src: local('Antonio Light'), url('../fonts/Antonio-Light.woff') format('woff');
}

@font-face {
    font-family: 'Antonio Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Antonio Regular'), url('../fonts/Antonio-Regular.woff') format('woff');
}

/*共通樣式
*****************************************/

html,
body {
    font-family: 'Antonio Light';
    font-size: 16px;
    letter-spacing: 0.5px;
}
@media screen and (max-width: 480px) {
    body {
        font-size: 15px;
        letter-spacing: 0.2px;
    }
}

main {
    min-height: 580px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Antonio Regular';
    font-weight: normal;
}

a {
    text-decoration: none;
    color: #be0404;
}

a:hover {
    color: #a00404;
    text-decoration: none;
}
.btnPdf {
    padding-left: 30px;
    background: url(../img/icon_spec_download.png) left center no-repeat;
}
strong {
    font-family: 'Antonio Regular';
    font-weight: 500;
}
.modal {
    text-align: center;
    padding: 0 !important;
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.modal-header {
    border-bottom: none;
}

.modal-body {
    padding: 0px 50px 40px;
    font-size: 18px;
}

/* hover：底線動畫中向外 */

.mod-link-bar-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.mod-link-bar-center:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: #be0404;
    height: 2px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.mod-link-bar-center:active:before,
.mod-link-bar-center:focus:before,
.mod-link-bar-center:hover:before {
    left: 0;
    right: 0;
}

@media screen and (max-width: 1200px) {
    .mod-link-bar-center:before {
        height: 0;
    }
}

/* hover：底線動畫 */

a.mod-link-bar {
    position: relative;
}

a.mod-link-bar:before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: '';
    width: 0;
    height: 2px;
    background-color: #be0404;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

@media screen and (min-width: 1201px) {
    a.mod-link-bar:hover:before {
        width: 100%;
    }
}

a.mod-link-bar.hovered:before {
    left: 100%;
    width: 0;
}

/* hover：區塊向上＋陰影 */

a.mod-link-up:hover,
a.mod-link-up:focus {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

/* 線上客服 */

#onlineHelpSide {
    height: 47px;
    width: 52px;
    position: fixed;
    z-index: 9;
    top: 28%;
    right: -2px;
}

/* 回到頂端按鈕 */

#gotop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    width: 35px;
    height: 30px;
    border-radius: 5px;
    background-color: rgba(125, 125, 125, 0.6);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

#gotop:before {
    content: '';
    background: url(../img/arrow_top.png) center center no-repeat;
    width: 12px;
    height: 7px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -4px 0 0 -6px;
    z-index: 999;
}

#gotop:hover {
    background-color: rgba(125, 125, 125, 1);
}

@media (max-width: 768px) {
    #gotop {
        width: 28px;
        height: 36px;
        right: 15px;
        bottom: 15px;
        box-shadow: 0px 3px 11px rgba(0, 0, 0, 0.2);
    }
}

/* 自定義 */

.nopd {
    padding: 0;
}

.img-center {
    margin: 0 auto;
}

.iframe100-cont {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.iframe100-cont iframe,
.iframe100-cont object,
.iframe100-cont embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.imgOverBox {
    width: 100%;
    margin: 0 auto;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
    position: relative;
}
.imgOverBox img {
    position: absolute;
    top: 50%;
    margin-top: -32%;
    width: 100%;
}

.video-cont {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.video-cont iframe,
.video-cont object,
.video-cont embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#videoModal .modal-dialog {
    position: relative;
    margin: 0 auto;
    width: 80%;
    max-width: 1280px;
}
#videoModal .modal-dialog .modal-content {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}
#videoModal .modal-dialog .video-btn {
    width: 100%;
    text-align: right;
}
#videoModal .modal-dialog button.close {
    color: #fff;
    opacity: 1;
    float: none;
    font-size: 28px;
}
#videoModal .modal-dialog iframe {
    border: none;
}

/* 共用頁籤 */
#supportNav {
    text-align: center;
    padding: 15px 0;
    background: #fff;
    min-height: 82px;
}
#supportNav nav {
    margin: 0 auto;
    width: 100%;
    z-index: 10;
    background: #fff;
}
#supportNav nav.fixed {
    position: fixed;
    top: 0;
}
#supportNav .nav {
    max-width: 1140px;
    margin: 0 auto;
}
#supportNav .nav::after {
    position: relative;
    bottom: 3px;
    z-index: 11;
    display: block;
    content: '';
    width: 100%;
    height: 3px;
    background: #777;
}
#supportNav .nav li {
    width: calc(20% - 3px);
    display: inline-block;
    text-align: center;
    border: none;
    border-bottom: 3px solid #777;
    border-radius: 0;
    position: relative;
    z-index: 12;
}

#supportNav .nav li.active {
    border: none;
    border-bottom: 3px solid #be0404;
    color: #333;
}

#supportNav .nav li:hover {
    border: none;
    border-bottom: 3px solid #be0404;
    color: #333;
    background: none;
}

#supportNav .nav li:hover::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -6px;
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #be0404 transparent;
}

#supportNav .nav li a {
    font-size: 21px;
    padding: 8px 5px;
    letter-spacing: 0.2px;
    text-decoration: none;
    color: #777;
    display: block;
    background: inherit;
}

@media (max-width: 768px) {
    #supportNav .nav li a {
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    #supportNav {
        text-align: left;
        padding: 8px 0;
    }
    #supportNav .nav li {
        width: calc(50% - 3px);
    }
}

/* 共用頁碼 */

.page-pagination {
    width: 100%;
    text-align: center;
    clear: both;
}
.pagination {
    margin: 35px 0;
    padding: 7px 0;
    width: 100%;
    max-width: 600px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.pagination > li {
    display: inline-block;
    vertical-align: middle;
}
.pagination > li:first-child {
    float: left;
}
.pagination > li:last-child {
    float: right;
}
.pagination > li > a,
.pagination > li > span {
    font-size: 15px;
    line-height: inherit;
    padding: 4px 16px;
    margin: 0 2px;
    background: none;
    border: none;
    color: #333;
    border-radius: 3px;
}
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > a > span:focus,
.pagination > li > a > span:hover {
    color: #333;
    background: #ddd;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    background: #3d4688;
    border: none;
}
.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
    background: none;
    border: none;
    color: #bbb;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-right: 10px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    margin-left: 10px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

@media (max-width: 768px) {
    .pagination > li > a,
    .pagination > li > span {
        padding: 2px 12px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .pagination > li {
        display: none;
    }
    .pagination > li:first-child {
        display: block;
    }
    .pagination > li:last-child {
        display: block;
    }
}

/* 共用搜尋 */
.page-search {
    padding: 2rem 0 1.5rem;
}

.page-search form .btn {
    height: 46px;
    padding: 10px 16px;
}

@media (max-width: 480px) {
    .page-search {
        padding: 15px 0;
    }
}

/* 共用側選單 */

.sideNav.affix {
    top: 82px;
}

.sideNav.affix-bottom {
    position: absolute;
}

.sideNav h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.sideNav ul {
    list-style: none !important;
    padding: 0;
    border-bottom: none;
    margin-bottom: 40px;
}

.sideNav ul li a {
    padding: 5px 0;
    font-size: 18px;
    letter-spacing: 0;
    color: #333;
    display: block;
    text-decoration: none;
}

.sideNav ul li.active a {
    color: #be0404;
    text-decoration: underline;
    font-family: 'Antonio Regular';
    background-color: transparent;
}

.sideNav ul li a:hover,
.sideNav ul li a:focus {
    color: #be0404;
    background-color: transparent;
}

.sideNav ul li a.btnPdf {
    padding-left: 28px;
}

/* 滑軌 */

.slider-selection {
    background: #272e5a;
}

.slider-handle {
    width: 15px;
    height: 15px;
    background-color: #272e5a;
    background-image: -webkit-linear-gradient(top, #d21617 0, #be0304 100%);
    background-image: -o-linear-gradient(top, #d21617 0, #be0304 100%);
    background-image: linear-gradient(to bottom, #d21617 0, #be0304 100%);
}

.slider.slider-horizontal {
    width: 90%;
    margin-left: 4%;
    margin-bottom: 30px;
    margin-top: 5px;
}

.slider.slider-horizontal .slider-track {
    height: 5px;
}

.slider-track-low,
.slider-track-high {
    background: #949494;
}

/* 共用進度條 */
.progress {
    height: 7px;
    margin: 0;
    position: relative;
}
.progress .progress-bar {
    background-color: #ba393a;
}
.progress .progress_line {
    width: 100%;
}
.progress .progress_line::after {
    content: '';
    width: 20%;
    border-left: 1px solid #f1cdcd;
    border-right: 1px solid #f1cdcd;
    position: absolute;
    left: 20%;
    height: 100%;
}
.progress .progress_line::before {
    content: '';
    width: 20%;
    border-left: 1px solid #f1cdcd;
    border-right: 1px solid #f1cdcd;
    position: absolute;
    left: 60%;
    height: 100%;
}

/*Navigation
*****************************************/

.header {
    position: relative;
    border-bottom: 1px solid #eee;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.logo {
    display: block;
    position: absolute;
    text-align: center;
    top: 0px;
    width: 192px;
    left: 50%;
    margin: 18px 0 16px -96px;
}

.logo a {
    display: block;
}

.logo img {
    width: 100%;
}

.navPrimary {
    padding: 0px 0 0 0;
}

.navPrimary > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navPrimary > ul > li {
    float: left;
}

.navPrimary > ul > li > a {
    width: 100%;
    z-index: 3;
    letter-spacing: 0.5px;
    font-size: 16px;
    text-decoration: none;
    color: #4d4d4d;
    display: block;
    text-align: center;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.navPrimary > ul > li > a:hover {
    color: #222;
}

ul.navLeft {
    float: left;
    margin-left: 100px;
}

ul.navLeft > li > a {
    position: relative;
    padding: 20px 12px 16px;
}

ul.navRight {
    float: right;
    margin-right: 100px;
}

ul.navRight > li > a {
    position: relative;
    padding: 20px 12px 16px;
}

ul.navRight > li > a .topForm_icon {
    position: relative;
    top: -3px;
    font-size: 16px;
    color: #6f6f6f;
}

ul.navRight > li.searchDesktop .form-control {
    width: 600px;
}

ul.navRight > li.searchDesktop .navbar-form {
    margin: 30px 0;
}

#suggesstion-box {
    margin: 0px auto 30px;
    max-width: 635px;
    text-align: center;
}

#suggesstion-box #country-list {
    text-align: left;
    padding-left: 12px;
}

ul.navLeft > li.searchMobile {
    display: none;
}
ul.navLeft > li.searchMobile .navbar-form {
    margin-top: 25px;
}

ul.navLeft > li.searchMobile .input-group {
    min-width: 100%;
}

.navSub {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    text-align: center;
    display: none;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding-left: 0;
}

.navSub:before,
.navSub:after {
    content: ' ';
    display: table;
}

.navSub:after {
    clear: both;
}

.navSub li {
    width: 12%;
    display: inline-block;
    vertical-align: top;
    box-shadow: -28px 0 0 -27px #ddd, 0 -28px 0 -27px #ddd;
    opacity: 0;
    -webkit-transition: opacity 0.1s 0s;
    -moz-transition: opacity 0.1s 0s;
    transition: opacity 0.1s 0s;
    float: none;
}

.navSub li:nth-child(-n + 7) {
    box-shadow: -28px 0 0 -27px #ddd;
}

.navSub li:nth-child(7n + 1) {
    box-shadow: 0 -28px 0 -27px #ddd;
}

.navSub li:first-child {
    box-shadow: none;
}

.navSub li a {
    display: block;
    text-align: center;
    color: #444;
    outline: none;
    padding: 1.5em 1em 1em;
    text-decoration: none;
}

.navSub li a:hover,
.navSub li a:focus {
    color: #222;
}

.navSub li a img {
    border: none;
    outline: none;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    opacity: 0.7;
}

.navSub li a:hover img {
    opacity: 1;
}

.navSub li a span {
    display: block;
    min-height: 0em;
    margin-top: 1em;
    font-size: 16px;
    line-height: 1.2;
}

.navPrimary li.open .navSub li {
    opacity: 1;
    -webkit-transition: opacity 0.5s 0.1s;
    -moz-transition: opacity 0.5s 0.1s;
    transition: opacity 0.5s 0.1s;
}

.navIcon {
    position: absolute;
    height: 26px;
    right: 10px;
    top: -30px;
    visibility: hidden;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.navIconLeft {
    position: absolute;
    height: 26px;
    right: 120px;
    top: 5px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.navIconLeft .top-cart img {
	width: 35px;
	height: 35px;
	margin: 0px 0px 0px 0px;
	padding-bottom:0px;
}

.navIconLeft .top-cart {
    position: absolute;
    margin-top:7px;
    display: block;
}

.navIconLeft .top-cart a{
    color:#A4A4A4;
    text-decoration: none;
    font-size:14px;
}

.navIconLeft .top-cart a:hover{
    color:#fff;
}

.navIconLeft .top-cart .top-cart-wording {
	float:right;
	margin-top:-20px;
	padding-left:30px;
}


.nav-toggle {
    position: absolute;
    top: 0;
    right: 15px;
    z-index: 999999;
    padding: 10px 35px 16px 0;
    cursor: pointer;
}

.nav-toggle:focus {
    outline: none;
}

.nav-toggle span,
.nav-toggle span:before,
.nav-toggle span:after {
    content: '';
    position: absolute;
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 1px;
    background: #222;
    cursor: pointer;
}

.nav-toggle span:before {
    top: -9px;
}

.nav-toggle span:after {
    bottom: -9px;
}

.nav-toggle span,
.nav-toggle span:before,
.nav-toggle span:after {
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.nav-toggle.active span {
    background-color: transparent;
}

.nav-toggle.active span:before,
.nav-toggle.active span:after {
    top: 0;
}

.nav-toggle.active span:before {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-toggle.active span:after {
    top: 10px;
    -ms-transform: translatey(-10px) rotate(-45deg);
    -webkit-transform: translatey(-10px) rotate(-45deg);
    transform: translatey(-10px) rotate(-45deg);
}

@media (max-width: 1200px) {
    .header {
        padding: 0;
    }
    .header .logo {
        position: relative;
        top: 0;
    }
    .navPrimary {
        width: 100%;
        padding: 20px 8px;
        display: none;
        float: none;
        border-top: 1px solid #eee;
    }
    .navPrimary.open {
        display: block;
    }
    .navPrimary > ul {
        float: none;
        width: 100%;
        margin: 0;
    }
    .navPrimary > ul > li {
        float: none;
    }
    .navPrimary > ul > li > a {
        border-bottom: 1px solid #eee;
        padding: 10px;
        text-align: left;
        position: relative;
    }
    .navPrimary > ul > li > a:not(:only-child):before {
        display: inline-block;
        font-family: 'Glyphicons Halflings';
        speak-as: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1.8;
        -webkit-font-smoothing: antialiased;
        content: '\e080';
        font-size: 13px;
        margin-right: 0.3em;
        opacity: 0.4;
        vertical-align: middle;
        position: absolute;
        right: 0;
        top: 11px;
        left: auto;
    }
    .navPrimary > ul > li.open > a:not(:only-child):before {
        content: '\e114';
    }
    .navPrimary .navSub {
        position: relative;
        top: 0;
        background: none;
        border-top: none;
        display: none;
        box-shadow: none;
        padding: 15px 0;
    }
    .navPrimary ul li.open .navSub {
        display: block;
    }
    ul.navRight > li.searchDesktop {
        display: none;
    }
    ul.navLeft > li.searchMobile {
        display: block;
    }
    .navSub li {
        width: 100%;
        display: block;
        box-shadow: 0 1px #cecece;
        text-align: left;
    }
    .navSub li:nth-child(-n + 6) {
        box-shadow: none;
    }
    .navSub li a {
        text-align: left;
        line-height: 40px;
        padding: 10px 10px;
    }
    .navSub li a img {
        max-height: 35px;
        opacity: 1;
    }
    .navSub li a span {
        min-height: 0;
        margin: 0;
        display: inline;
        padding-left: 15px;
        font-size: 15px;
    }
    .navIcon {
        top: 18px;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .header .logo {
        width: 170px;
        margin: 20px 0;
        left: 0;
    }
    .nav-toggle span,
    .nav-toggle span:before,
    .nav-toggle span:after {
        width: 30px;
    }
    .nav-toggle span:before {
        top: -8px;
    }
    .nav-toggle span:after {
        bottom: -8px;
    }
}

/*topForm*/

.topForm {
    font-size: 12px;
}

.topForm ul {
    font-weight: normal;
}

.topForm_icon {
    font-size: 18px;
    vertical-align: text-bottom;
    padding-right: 2px;
}

#topSearch .navbar-form .input-group > .form-control {
    width: auto;
}

#topLogin > ul {
    padding: 15px;
    min-width: 250px;
}

#topLogin label {
    color: #ccc;
}

#topLogin .form-group {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    ul.nav li.topForm:hover > ul.dropdown-menu {
        display: none;
    }
    ul.nav li.topForm.open > ul.dropdown-menu {
        display: block;
    }
    li.topForm > a {
        padding: 13px;
    }
}

/*footer
*****************************************/

footer {
    background-color: #fff;
    padding: 40px 0 0 0;
    border-top: 1px solid #eee;
}

footer dl {
    float: left;
    width: 50%;
}

footer dl > dd > a {
    padding: 5px 0;
    display: block;
    color: #4d4d4d;
    letter-spacing: 1px;
    font-size: 16px;
	min-width: 128px;
}

footer dl > dd > a:hover {
    color: #222;
}

footer div.sns {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

footer div.sns a {
    float: left;
    width: 38px;
    display: block;
    margin: 0 5px 5px;
}

footer div.sns a img {
    width: 100%;
}

footer div.sns .input-group {
    max-width: 450px;
}

footer .copyright {
    font-size: 11px;
    letter-spacing: 2px;
    text-align: center;
    margin: 35px 0;
    color: #dfdfdf;
    line-height: 180%;
}

@media (max-width: 991px) {
    footer dl {
        float: none;
    }
}

@media (max-width: 480px) {
    footer div.sns a {
        width: 35px;
    }
}

/*頁尾訂閱
*****************************************/

#newsletterModal h4 {
    font-size: 20px;
    margin: 0 0 15px;
}
#newsletterModal hr {
    margin-top: 0px;
    margin-bottom: 25px;
    border-top: 1px solid #aaa;
}
#newsletterModal .page.key #newsletter_captcha {
    display: inline-block;
    width: 150px;
    margin: 0 10px 0 0;
    padding: 0px;
    border: 1px solid #ccc;
}

#newsletterModal .page.key .newsletter_captcha_refresh {
    font-size: 14px;
    display: inline-block;
    vertical-align: bottom;
    color: #333;
}
#newsletterModal .page.key .newsletter_captcha_refresh:hover {
    text-decoration: underline;
}
#newsletterModal .page.key .btns {
    text-align: center;
    padding: 12px 0 0;
}
#newsletterModal .page.key .btns button {
    font-size: 16px;
    padding: 4px 20px;
    background: #be0404;
    color: #fff;
    border: none;
}

#newsletterModal .page.done p,
#newsletterModal .page.error p {
    font-family: 'Antonio Regular';
    font-weight: normal;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0;
    color: #5f5c5c;
}

@media (min-width: 768px) {
    #newsletterModal .modal-dialog {
        width: 450px;
    }
    #newsletterModal .modal-body {
        padding: 0px 40px 50px;
    }
}

/*flickity滑動區塊 共通樣式
*****************************************/
.flickitySlide .flickity-button {
    opacity: 0;
}

.flickitySlide:hover .flickity-button {
    opacity: 1;
}

.flickity-button {
    background: rgba(125, 125, 125, 0.5);
    transition: all 0.3s ease;
}

.flickity-button:hover {
    background: rgba(125, 125, 125, 1);
}

.flickity-prev-next-button {
    width: 35px;
    height: 60px;
    border-radius: 5px;
}

.flickity-button-icon {
    fill: white;
}

.flickity-prev-next-button.previous {
    left: 15px;
}

.flickity-prev-next-button.next {
    right: 15px;
}

.flickity-button:disabled {
    display: none;
}

.footer div .space-big {
    width: 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.footer div .space-small {
    width: 15%;
    flex: 0 0 15%;
    max-width: 15%;
}

/*CES頁簽*/
#supportNav {
    text-align: center;
    padding: 15px 0;
    background: #060606;/*#fff*/
    min-height: 82px;
}
#supportNav nav {
    margin: 0 auto;
    width: 100%;
    z-index: 10;
    background: #060606;/*#fff*/
}
#supportNav nav.fixed {
    position: fixed;
    top: 0;
}
#supportNav .nav {
    max-width: 1140px;
    margin: 1rem auto;
    position: sticky;
    top: 0;
    background: #000;
}
#supportNav .nav::after {
    position: relative;
    bottom: 3px;
    z-index: 11;
    display: block;
    content: '';
    width: 100%;
    height: 3px;
   /* background: #777;*/
}
#supportNav .nav li {
    width: calc(16% - 3px);
    display: inline-block;
    text-align: center;
    border: none;
    border-bottom: 3px solid #777;
    border-radius: 0;
    position: relative;
    z-index: 12;
}

#supportNav .nav li.active {
    border: none;
    border-bottom: 3px solid #be0404;
    color: #333;
}

#supportNav .nav li:hover {
    border: none;
    border-bottom: 3px solid #be0404;
    color: #333;
    background: none;
}

#supportNav .nav li:hover::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -6px;
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #be0404 transparent;
}

#supportNav .nav li a {
    font-size: 21px;
    padding: 8px 5px;
    letter-spacing: 0.2px;
    text-decoration: none;
    color: #f2f2f2;/*#777*/
    display: block;
    background: inherit;
}

#supportNav .nav img{
	width:80%;
}



@media (max-width: 768px) {
    #supportNav .nav li a {
        font-size: 18px;
    }
	
}
@media (max-width: 480px) {
    #supportNav {
        text-align: left;
        padding: 8px 0;
    }
    #supportNav .nav li {
        width: calc(50% - 3px);
    }
	#supportNav .nav img{
	    display: none;
}

}

#supportNav .container{
      
max-width: 1140px;
    padding: 0;
    margin: auto;
}

#supportNav .tab-content .tab-pane{
    display: none;
}

#supportNav .tab-content .active {
    display: block;
}

/*CES頁簽*/