/* 基本設定_start */

.nopadding {
    padding: 0px !important;
}

.nomargin {
    margin: 0px !important;
}

.mobileShow {
    display: none!important;
}

.webShow {
    display: inherit;
}

.container1280 {
    max-width: 1280px;
}

.container1400 {
    max-width: 1400px;
}

.container1680 {
    max-width: 1680px;
}

.requirement {
    color: #FF0000!important;
}


/* 基本設定_end */


/* 編輯器設定_start */


/* 編輯器設定_end */


/* logo/登入/註冊/詢價車/語系/搜尋_start */

.headerContent {
    background-color: transparent;
    position: fixed;
    top: 24px;
    z-index: 99;
    width: 100%;
}

.topFixedHeader {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    background-color: #08192D;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.navSlideUp {
    transform: translateY(-124px);
    -webkit-transform: translateY(-124px);
    -moz-transform: translateY(-124px);
    -ms-transform: translateY(-124px);
    -o-transform: translateY(-124px);
}

.pcLogo {
    width: 180px;
    padding: 8px 0;
}

.pcLogo a {
    display: block;
    padding-bottom: 24px;
}

.loginBtn::before {
    font-family: 'Material Icons';
    content: 'login';
    left: 12px;
    display: block;
    position: absolute;
}

.registerBtn::before {
    font-family: 'Material Icons';
    content: 'app_registration';
    left: 12px;
    display: block;
    position: absolute;
}

.logoutBtn::before {
    font-family: 'Material Icons';
    content: 'logout';
    left: 12px;
    display: block;
    position: absolute;
}

.searchBtn::before {
    font-family: 'Material Icons';
    content: 'search';
    left: 12px;
    display: block;
    position: absolute;
}

.inquiryBtn::before {
    font-family: 'Material Icons';
    content: 'shopping_cart';
    left: 12px;
    display: block;
    position: absolute;
}


/* logo/登入/註冊/詢價車/語系/搜尋_end */


/* 主選單_start */

.menuContainer {
    display: table;
    margin: 0 auto;
}

.menuContainerInner {
    padding: 0 12px;
    display: table-cell;
    vertical-align: middle;
}

.mainNav {
    /* width: 100%; */
    display: table;
    table-layout: fixed;
}

.mainNav li {
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mainNav>li {
    display: table-cell;
    vertical-align: middle;
}

.mainNav>li>a {
    position: relative;
}

.mainNav>li>a::after {
    content: '';
    background-color: #ff990080;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    border-radius: 24px;
}

.mainNav>li>a:hover::after {
    opacity: 1;
}

.mainNav a {
    display: block;
    padding: 12px;
    text-align: center;
    color: #fcfcfc;
    font-size: 1rem;
}

.dropdownMenu .dropdownMenu {
    left: 100%;
    top: 0;
}

.dropdownMenu {
    /* max-height: 968px; */
    min-width: 320px;
    /* overflow: auto; */
    /* border: #eee solid 1px; */
    position: absolute;
    border-radius: 4px;
    z-index: 99;
    background-color: #08192D;
    left: 0px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.2s, opacity 0.2s ease;
    -webkit-transition: visibility 0s 0.2s, opacity 0.2s ease;
    -moz-transition: visibility 0s 0.2s, opacity 0.2s ease;
    -o-transition: visibility 0s 0.2s, opacity 0.2s ease;
    -ms-transition: visibility 0s 0.2s, opacity 0.2s ease;
}

.dropdownMenu a {
    color: #fcfcfc;
}

.dropdownMenu li a {
    /* border-bottom: 1px solid #fcfcfc; */
    text-align: left;
    font-size: 0.875rem;
    padding: 8px 12px;
    letter-spacing: 1px;
    line-height: 1;
}

.dropdownMenu li:last-child a {
    border-bottom: 0;
}


/* 
.mainNav li:hover {
    background-color: #005CAF;
} */

.mainNav li:hover>a {
    color: #FFF;
}

.nextDropdownMenu {
    left: 100%;
    top: 0px;
}

.mainNav li:hover>.dropdownMenu {
    visibility: visible;
    opacity: 1;
}

.arrowDown {
    padding: 12px 24px 12px 12px;
}


/* 
.arrowDown {
    position: relative;
    padding: 12px 24px 12px 12px;
} */

.arrowRight::before {
    font-family: 'Material Icons';
    content: 'keyboard_arrow_right';
    /* content: '';
    background-image: url(../images/right-arrow-black.svg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px; */
    display: block;
    position: absolute;
    right: 4px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    top: 50%;
}

.arrowDown::before {
    font-family: 'Material Icons';
    content: 'keyboard_arrow_down';
    /* content: '';
    background-image: url(../images/right-arrow-black.svg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px; */
    display: block;
    position: absolute;
    right: 4px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    top: 50%;
}

.dropdownMenu li:hover>a {
    color: #000!important;
    background-color: #ffcc00!important;
}

.dropdownMenu li:hover::before {
    color: #000!important;
}


/* 主選單_end */


/* 手機選單_start */

.mbHeadContainer {
    display: none;
}


/* 手機選單_end */


/* 頁尾_start */


/* 頁尾公司資訊_start */


/* 頁尾選單 */

.companyInfo {
    margin-top: 12px;
    margin-bottom: 12px;
}

.companyInfoContent {
    display: table;
    padding: 0;
    margin: 0;
    table-layout: fixed;
    width: 100%;
}

.companyInfoContent .txtTitle {
    margin-bottom: 24px;
}

.companyInfoContentInner {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}


/* 公司資訊 */

.footerContent {
    padding: 96px 0;
    position: relative;
    background-image: url(../images/footer-bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    overflow: hidden;
}

.footerContentInner {
    position: relative;
    z-index: 999;
}

.footerContent::after {
    position: absolute;
    width: 100%;
    content: '';
    display: block;
    background: linear-gradient(to bottom, #08192D 0%, #08192D10 70%, #08192D 100%);
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}


/* 
.footerContent::before {
    position: absolute;
    width: 100%;
    content: '';
    display: block;
    background: linear-gradient(to top, #08192D 5%, #08192D90 50%, #08192D90 80%, rgba(255, 255, 255, 0) 100%);
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 9;
} */

.navitemContent a {
    padding: 0;
    text-align: left;
    position: relative;
    padding-left: 24px;
    display: block;
    font-size: 1.125rem;
    line-height: 1.4;
}

.navitemContent a::after {
    position: absolute;
    content: '';
    background-color: #fff;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    top: 7px;
    left: 0;
}

.navitemContent a:hover {
    color: #ffcc00;
}

.navitemContent a:hover::after {
    background-color: #ffcc00;
}

.footerLogo {
    margin-bottom: 24px;
}

.footerLogo a {
    display: block;
    max-width: 320px;
    margin: 0 auto;
    padding: 8px;
}

.companyInfo ul li {
    margin-bottom: 24px;
    font-size: 1rem;
}

.companyInfo ul li .d-inline-block {
    vertical-align: middle;
}

.companyInfo ul li .d-inline-block:first-child {
    padding-right: 8px;
}

.copyright {
    text-align: center;
    padding: 12px;
    background-color: #08192D;
    color: #fcfcfc;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.copyright a {
    color: #fcfcfc;
}

.copyright a:hover {
    color: #ffcc00;
}


/* 頁尾公司資訊_end */


/* 內容_start */

.contentTitle {
    padding-bottom: 24px;
    font-size: 2.5rem;
    line-height: 1.6;
    /* text-transform: uppercase; */
    /* color:#0089A7; */
}

.contentTitle:first-letter {
    color: #ffcc00;
}

.txtContent {
    line-height: 1.6;
    font-size: 1rem;
}

.txtContent p {
    line-height: 1.8;
    margin-bottom: 8px;
}

.txtContent ul {
    margin-bottom: 12px;
    padding-left: 20px;
}

.txtContent ul li {
    list-style: disc;
    margin-bottom: 6px;
    line-height: 1.6;
}


/* .txtContent img {
    width: 100%;
} */

.txtTitle {
    font-size: 1.25rem;
}

.txtSubtitle {
    font-size: 1.125rem;
}

.txtNormal {
    font-size: 1rem;
}

.hashTagGroup {
    margin-top: 12px;
    padding: 0 4px;
    line-height: 1.4;
    /* 開發完後開啟 */
    display: none;
}

.hashTagGroup a {
    font-size: 1rem;
    margin-right: 4px;
    display: inline-block;
    line-height: 1.6;
}

.hashTagGroup a:last-child {
    margin-right: 0;
}

.topHashtagContent {
    padding: 18px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.topHashtagContent .hashTagGroup a {
    display: block;
    padding-bottom: 8px;
    border-bottom: 1px solid #efefef;
    margin-right: 0;
    margin-bottom: 8px;
}

.topHashtagContent .hashTagGroup a:last-child {
    margin-bottom: 0;
}


/* 分頁_start */

.navigation {
    margin-top: 24px;
    padding: 0;
}

.pagination {
    display: table;
    margin: 0 auto;
}

.pagination li {
    display: table-cell;
    vertical-align: middle;
    padding: 0 8px;
}

.pagination li a {
    display: block;
    padding: 8px;
    text-align: center;
    border-radius: 4px;
    min-width: 42px;
    color: #fcfcfc;
}

.pagination li a:hover {
    background-color: #ffcc00;
    color: #000;
}

.pagination li a.active {
    background-color: #ffcc00;
    color: #000;
}


/* 分頁_end */


/* 內容_end */


/* 社群連結_start */

.linkItem {
    padding: 4px;
    text-align: center;
}

.linkItem .linkItemIcon {
    width: 36px;
    height: 36px;
}

.linkItem a {
    display: block;
}

.socialmediaContent {
    display: table;
    width: 100%;
    table-layout: fixed;
    padding: 0;
    margin: 0;
}

.socialmediaContentInner {
    display: table-cell;
    vertical-align: middle;
    width: 20%;
}

.socialmediaContentInner .linkItem {
    margin: 0 auto;
}

.socialmediaContentInner .linkItem .linkItemIcon {
    margin: 0 auto 8px auto;
}


/* shareLink_start */

.shareLinkContentInner {
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.shareLinkContentInner .txtTitle {
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: normal;
}

.shareLinkContentInner .linkItem .linkItemIcon {
    width: 36px;
    height: 36px;
    border: 1px solid #eee;
    border-radius: 2px;
    padding: 4px;
}

.shareLinkContentInner .linkItem .linkItemIcon:hover {
    border: 1px solid #0089A7;
}

.shareLinkContentInner .linkItem {
    margin-right: 8px;
    padding: 0;
}

.shareLinkContentInner .linkItem:last-child {
    margin-right: 0;
}


/* shareLink_end */


/* 社群連結_end */


/* 頁尾_end */


/* 常駐項_start */

.floatMenuContainer {
    position: fixed;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 99;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
}

.floatMenuContainer ul li {
    margin-bottom: 8px;
}

.floatMenuContainer ul li:nth-last-child(1) {
    margin-bottom: 0px;
}

.floatMenuContainer ul li a {
    display: block;
    padding: 8px;
    font-size: 15rem;
    text-align: center;
    background-color: #030303;
    color: #ffcc00;
    /* border: 1px solid #EEE; */
    border-radius: 4px;
}

.floatMenuContainer ul li a:hover {
    background-color: #ffcc00;
    color: #FFF;
}

.floatMenuContainer ul li a span {
    display: block;
    margin-bottom: 0px;
}

.floatMenuContainer ul li a span:last-child {
    margin-bottom: 0;
    font-size: 0.875rem;
    display: none;
}

.floatShow {
    opacity: 1;
    visibility: visible;
}


/* 常駐項_end */


/* banner_start */

.bannerItem {
    position: relative;
    overflow: hidden;
}

.bannerCustContent {
    position: absolute;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
}

.bannerCustContent .col-padding {
    padding: 6px;
}

.bannerPtItem {
    /* border: 1px solid #f00; */
    border-radius: 100%;
    position: relative;
    width: 520px;
}

.bannerPtItem::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
    transform: translate(-50%, -50%)scale(1.5);
    -webkit-transform: translate(-50%, -50%)scale(1.5);
    -moz-transform: translate(-50%, -50%)scale(1.5);
    -ms-transform: translate(-50%, -50%)scale(1.5);
    -o-transform: translate(-50%, -50%)scale(1.5);
    top: 50%;
    left: 50%;
    position: absolute;
    background-color: #08192D60;
    border-radius: 100%;
    z-index: -1;
}

.bannerPtItem .ptImg {
    margin-bottom: 0;
}

.bannerPtItem .ptImg .ptImgInner {
    background-color: #08192D96;
    margin-bottom: 0;
    border-radius: 100%;
}

.bannerPtItem .ptImg .ptImgInner img {
    border-radius: 100%;
    width: 100%;
    height: 100%;
}


/* 
.bannerPtItem .ptImg {
    border-radius: 100%;
    position: relative;
} */


/* 
.bannerPtItem .ptImg::after {
    content: '';
    background-color: #ff000090;
    transform: translate(-50%, -50%)scale(1.5);
    -webkit-transform: translate(-50%, -50%)scale(1.5);
    -moz-transform: translate(-50%, -50%)scale(1.5);
    -ms-transform: translate(-50%, -50%)scale(1.5);
    -o-transform: translate(-50%, -50%)scale(1.5);
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 100%;
} */

.bannerText {
    padding: 32px;
    padding-left: 12px;
    /* background-color: #08192D95; */
    /* position: absolute;
    left: 15%;
    top: 30%; */
}

.bannerText .txtTitle {
    letter-spacing: 1px;
    margin-bottom: 8px;
    line-height: 1;
    font-weight: 300;
    color: #FFF;
}

.bannerText .txtSubtitle {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    line-height: 1;
    color: #FFF;
}

.bannerText .txtNormal {
    line-height: 1;
    color: #fcfcfc;
    letter-spacing: 1px;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 3rem;
    text-transform: uppercase;
}

.bannerText ul li {
    font-size: 2.75rem;
    letter-spacing: 2px;
    color: #ffcc00;
    margin-bottom: 16px;
    font-family: 'DM Serif Display', serif!important;
}

.bannerText ul li:last-child {
    text-transform: capitalize;
    margin-bottom: 0;
    font-size: 2.25rem;
    color: #fbfbfb;
    line-height: 1.4;
}

.bannerImg {
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #08192D;
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bannerImg::after {
    position: absolute;
    width: 100%;
    content: '';
    display: block;
    background: linear-gradient(to top, #08192D 25%, rgba(255, 255, 255, 0) 100%);
    padding-bottom: 10%;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.bannerImg .bannerImgInner {
    position: absolute;
    width: 100%;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.bannerImg .bannerImgInner img {
    max-width: unset;
    width: 100%;
}

.bannerContent {
    min-height: 90vh;
}

.bannerContent .item {
    padding: 0;
}

.bannerContent .owl-nav .owl-prev {
    position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    top: 50%;
    left: 16px;
}

.bannerContent .owl-nav .owl-next {
    position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    top: 50%;
    right: 16px;
}

.bannerContent .owl-dots {
    bottom: 8px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    left: 50%;
    position: absolute;
}

.bannerContent .owl-theme .owl-nav {
    margin-top: 0px;
}


/* banner_end */


/* 搜尋頁面_start */

.searchContent {
    display: table;
    width: auto;
    table-layout: fixed;
}

.searchContent .form-control {
    border: unset;
    border-radius: 8px 0 0 8px;
}

.searchContentInner {
    display: table-cell;
    vertical-align: middle;
    padding: 0;
    height: auto;
}

.searchContent .selectBlock {
    width: 120px;
}

.searchContent .searchBlock {
    width: 32px;
    /* border-left: 1px solid #EEE; */
    overflow: hidden;
    border-radius: 0 8px 8px 0;
}

.searchContent .searchBlock button.searchBtn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.searchContent .searchBlock button {
    letter-spacing: 1px;
    line-height: 1;
    font-size: 1.125rem;
    background-color: #08192D;
    display: block;
    color: #fcfcfc;
    border: unset;
    width: 100%;
    position: relative;
    padding-bottom: 100%;
}

.searchContentInner .bmd-form-group {
    display: block;
    margin-bottom: 0;
}

.searchContentInner .form-control {
    padding: 8px;
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    font-weight: normal;
    height: 32px;
    background-color: #00000090;
    border-right: 0;
}

.searchContentInner .is-focused .form-control {
    background-color: #fff;
    color: #000;
}

.searchContent .searchBlock button:hover {
    background-color: #ffcc00;
    color: #fcfcfc;
}

.searchContentInner input::placeholder {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 1px;
    color: #fcfcfc;
    font-weight: normal;
}

.searchInfoList {
    padding: 48px 0;
}

.searchInfoList .nav .nav-item {
    padding: 8px 12px;
    background-color: transparent;
    color: #fcfcfc;
    border: 1px solid #fcfcfc;
    border-right: 0px solid #fcfcfc;
    font-size: 1.125rem;
}

.searchInfoList .nav .nav-item:hover,
.searchInfoList .nav .active {
    background-color: #ffcc00;
    color: #030303;
}

.searchInfoList .nav-item:last-child {
    border-right: 1px solid #fcfcfc;
}

.searchInfoList .tab-content {
    padding: 18px;
    border: 1px solid #fcfcfc;
    margin-top: -1px;
}

.searchProductList .ptDesc {
    display: none;
}

.searchInfoList .addSearchPageList,
.searchInfoList .addSearchProductList {
    display: none;
}

.searchInfoList .buttonBlock {
    margin: 0 auto;
}

.searchInfoList .searchButtonContent {
    text-align: center;
    margin-top: 24px;
}

.searchInfoList .newsItemContent {
    margin-bottom: 24px;
}

.searchInfoList .newsItemContent:last-child {
    margin-bottom: 0;
}


/* 搜尋頁面_end */


/* 側選單設定_sideContnet_start */

.sideContnet {
    border-radius: 2px;
    border: 1px solid #EEE;
}

.sideContnet .txtSubtitle {
    font-size: 0.875rem;
    letter-spacing: 1px;
    line-height: 1.4;
}

.sideContnet>ul>li.sideInner>.txtSubtitle {
    border-bottom: 1px solid #EEE;
}

.sideContnet>ul>li.sideInner:last-child>.txtSubtitle {
    border: 1px solid transparent;
}

.sideContnet>ul>li.active>.txtSubtitle {
    color: #fff;
    background-color: #fcfcfc;
}

.sideContnet>ul>li>a:hover {
    color: #ffcc00;
}

.sideInner {
    display: block;
    width: 100%;
}

.sideContnet ul>li.active>span,
.sideInner a.txtSubtitle,
.sideInner .active {
    padding: 8px;
    display: block;
}

.sideInner .active {
    color: #FFF;
    background-color: transparent;
}

.sideInnerMenu {
    display: none;
    background-color: 1px solid #F7F7F7;
    padding: 8px;
}

.sideInnerMenu .active a.txtSubtitle {
    color: #ffcc00;
    padding: 0;
}

.sideInnerMenu .sideInner a.txtSubtitle {
    padding: 0;
}

.sideInnerMenu .sideInner {
    padding: 8px 0px 8px 16px;
}

.sideInnerMenu .active {
    background-color: transparent;
    color: #fcfcfc;
}

.sideInnerMenu .active a {
    color: #005CAF;
}


/* 
.sideInnerMenu .active a:hover {
    color: #005CAF;
} */

.sideActive {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-bottom: 1px solid #fff;
    padding: 8px;
    color: #fff;
}

.sideActiveInner {
    display: table-cell;
    vertical-align: middle;
}

.sideActiveInner:last-child {
    width: 24px;
}

.sideActiveInner .sideBtn {
    position: relative;
    /* padding-bottom: 100%; */
    width: 100%;
    display: block;
}

.sideActiveInner .sideBtn::before {
    font-family: 'Material Icons';
    display: block;
    content: 'keyboard_arrow_right';
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: absolute;
    font-size: 1.25rem;
    color: #fff;
}

.sideActiveInner .active {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.active .sideActive,
.sideActive:hover {
    background-color: #ffcc00;
    color: #000;
}

.sideActive:hover .sideBtn::before,
.active .sideActiveInner .sideBtn::before {
    color: #000;
}


/* 側選單設定_sideContnet_end */


/* 產品通用設定_ptItem_start */

.categoryContent .ptItem {
    box-shadow: 4px 4px 20px 4px rgba(0, 0, 0, 0.25);
}

.ptImg {
    margin-bottom: 12px;
}

.categoryContent .ptItem .ptImg {
    margin-bottom: 0px;
}

.categoryContent .ptItem {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.categoryContent .ptItem .ptName {
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    left: 50%;
    width: 100%;
}

.categoryContent .ptItem .ptName .ptNameInner {
    position: relative;
    height: 72px;
    padding: 8px;
    width: 100%;
    background: linear-gradient(to top, #08192D80 20%, rgba(255, 255, 255, 0) 100%);
}

.categoryContent .ptItem .ptName .ptNameInner .txtTitle {
    position: absolute;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
}

.categoryContent .ptItem .ptImg .ptImgInner {
    padding-bottom: 120%;
}

.categoryContent .ptItem .ptImg .ptImgInner img {
    max-height: unset;
    height: 102%;
    max-width: unset;
}


/* 
.categoryContent .ptItem:hover {
    box-shadow: unset;
} */

.categoryContent .ptItem:hover .ptImg .ptImgInner img {
    transform: translate(-50%, -50%)scale(1.05);
    -webkit-transform: translate(-50%, -50%)scale(1.05);
    -moz-transform: translate(-50%, -50%)scale(1.05);
    -ms-transform: translate(-50%, -50%)scale(1.05);
    -o-transform: translate(-50%, -50%)scale(1.05);
}

.ptImg .ptImgInner {
    position: relative;
    width: 100%;
    display: block;
    padding-bottom: 100%;
    background-color: #fbfbfb;
    overflow: hidden;
    border-radius: 4px;
}

.ptImg .ptImgInner img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    max-height: 100%;
    width: unset;
}

.ptItem:hover .ptImg .ptImgInner img {
    transform: translate(-50%, -50%)scale(1.05);
    -webkit-transform: translate(-50%, -50%)scale(1.05);
    -moz-transform: translate(-50%, -50%)scale(1.05);
    -ms-transform: translate(-50%, -50%)scale(1.05);
    -o-transform: translate(-50%, -50%)scale(1.05);
}

.ptName .txtTitle {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -ms-line-clamp: 2;
    -o-line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    white-space: normal;
    text-align: center;
    overflow: hidden;
    line-height: 1.4;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.ptName .txtSubtitle,
.ptModal .txtSubtitle {
    line-height: 1;
    letter-spacing: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0;
    display: block;
    text-align: center;
    font-weight: 300;
    font-size: 1rem;
}

.ptName .txtSubtitle {
    display: none;
}

.ptModal {
    margin-bottom: 4px;
    text-align: center;
    width: 100%;
    color: #ffcc00;
    font-size: 1rem;
}


/* 
.ptDesc {
    height: 68px;
    position: relative;
}

.ptDesc .txtNormal {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -ms-line-clamp: 3;
    -o-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    line-height: 1.6;
    letter-spacing: 1px;
} */


/* 產品通用設定_ptItem_start */


/* 產品詳細頁通用設定_bigImage_start */

.bigImage .item {
    padding: 0;
}

.bigImage .item .imgInner {
    position: relative;
    padding-bottom: 100%;
    background-color: #fbfbfb;
    overflow: hidden;
    display: block;
    border: 1px solid #EEE;
    /* margin-bottom: 8px; */
}

.bigImage .item .imgInner img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    max-height: 100%;
    width: unset;
    max-width: unset;
}

.bigImage .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0;
}

.imgControl .item .imgContent a {
    position: relative;
    padding-bottom: 100%;
    background-color: #fbfbfb;
    overflow: hidden;
    display: block;
    border: 1px solid #EEE;
}

.imgControl .item .imgContent a img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    max-height: 100%;
    max-width: unset;
    width: unset;
}

.imgControl .item a.active {
    /* border: 1px solid#1769ff; */
}

.productDtTopInfo .ptModal .txtSubtitle {
    text-align: left;
}

.productDtIntro {
    margin-top: 36px;
}

.productDtIntro .nav {
    display: table;
    width: auto;
}

.productDtIntro .nav-item {
    margin-right: 12px;
    border: 1px solid #EEE;
    padding: 12px;
    display: table-cell;
    border-right: 0px solid #EEE;
    margin-right: -1px;
    font-size: 1rem;
}

.productDtIntro .nav-item:last-child {
    border-right: 1px solid #EEE;
}

.productDtIntro .nav-item:hover,
.productDtIntro .nav .active {
    color: #000;
    background-color: #ffcc00;
}

.productDtIntro .tab-content {
    margin-top: -1px;
}

.productDtIntro .tab-content .tab-pane {
    border: 1px solid #EEE;
    padding: 8px;
}

.relatedProductContent {
    padding-top: 24px;
    padding-bottom: 24px;
}

.inquiryContent {
    padding: 24px 0;
}

.inquiryContent .buttonBlock {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #ffcc00;
    color: #000;
    padding: 8px 12px;
    border: 1px solid transparent;
}

.inquiryContent .buttonBlock:hover {
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
}

.inquiryContent .buttonBlock::after,
.inquiryContent .buttonBlock::before {
    display: none;
}

.toggleButtonContent ul {
    display: flex;
    justify-content: flex-end;
}


/* .toggleButtonContent ul li:last-child {
    border-left: 1px solid #FFF;
} */

.toggleButtonContent ul li a {
    display: block;
    padding: 4px;
    background-color: #000;
    color: #FFF;
    border-radius: 4px;
}

.toggleButtonContent ul li.active a {
    background-color: #ffcc00;
    color: #000;
}

.listActive .col-padding {
    flex: 100%;
    max-width: 100%;
}

.listActive .ptItem {
    display: table;
    width: 100%;
}

.listActive .ptName {
    height: auto;
    margin-bottom: 8px;
}

.listActive .ptName .txtSubtitle {
    line-height: 1.6;
    overflow: initial;
    text-overflow: initial;
    white-space: initial;
    padding: 0;
    display: block;
    text-align: center;
    font-weight: 300;
    font-size: 1rem;
}

.listActive .ptItemInner {
    display: table-cell;
    vertical-align: top;
}

.listActive .ptItemInner:first-child {
    width: 30%;
    padding-right: 12px;
}

.listActive .ptDesc {
    display: block;
}

.listActive .ptItem .ptName .txtTitle,
.listActive .ptItem .ptName .txtSubtitle,
.listActive .ptItem .ptModal .txtSubtitle {
    text-align: left;
}


/* 產品詳細頁通用設定_bigImage_end */


/* 最新消息通用設定_newsItem_start */

ul.newsItemContent {
    margin: 0;
    padding: 0;
    width: 100%;
}

ul.newsItemContent li.newsItem .newsItemInner {
    display: table-cell;
    vertical-align: middle;
    padding: 0 4px;
}


/* ul.newsItemContent li.newsItem .newsItemInner a:last-child {
    margin-bottom: 0;
} */

ul.newsItemContent li.newsItem .newsItemInner .imgInner {
    display: block;
    padding-bottom: 56.25%;
    width: 100%;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/company-logo.png);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

ul.newsItemContent li.newsItem .newsItemInner .imgInner img {
    position: absolute;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

ul.newsItemContent li.newsItem .newsItemInner:first-child {
    width: 240px;
    padding-right: 24px;
}

ul.newsItemContent li.newsItem {
    display: table;
    width: 100%;
    margin: 0;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
    -ms-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
    -o-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    margin-bottom: 16px;
}

ul.newsItemContent li.newsItem:last-child {
    margin-bottom: 0;
}

ul.newsItemContent li.newsItem .txtTitle {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    -ms-line-clamp: 1;
    -o-line-clamp: 1;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    white-space: normal;
    text-align: justify;
    overflow: hidden;
    margin-bottom: 8px;
    font-weight: 300;
}

ul.newsItemContent li.newsItem time {
    display: block;
    margin-bottom: 12px;
    font-size: 1rem;
}

ul.newsItemContent li.newsItem .txtNormal {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -ms-line-clamp: 2;
    -o-line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    white-space: normal;
    text-align: justify;
    overflow: hidden;
    letter-spacing: 1px;
    line-height: 1.6;
}


/* 最新消息通用設定_newsItem_end */


/* faq_start */

.collapseContent .card-header,
.collapseContent .card-body {
    padding: 12px;
}

.collapseContent .card-body .txtContent p {
    margin-bottom: 0;
}

.collapseContent button {
    border: 0px solid #FFF;
    outline: unset;
    background-color: transparent;
    padding: 0;
    margin: 0;
}


/* faq_end */


/* download_start */

.downloadContent ul {
    list-style: none;
    padding: 12px 0;
}

.downloadContent ul li {
    list-style: none;
    margin-bottom: 4px;
    padding-left: 20px;
    position: relative;
    display: block;
    line-height: 1;
}

.downloadContent ul li::after {
    position: absolute;
    font-family: 'Material Icons';
    display: block;
    content: 'description';
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    top: 50%;
    left: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #d8d8d8;
    font-size: 1.25rem;
}

.pdfContent ul li::after {
    content: 'picture_as_pdf';
}

.downloadContent ul li:hover::after {
    color: #005CAF;
}

.downloadContent ul li a {
    display: block;
    position: relative;
    padding: 8px 12px 8px 0px;
    margin-left: 12px;
    font-size: 1.125rem;
    color: #d8d8d8;
    letter-spacing: 1px;
    border-bottom: 1px dashed #d8d8d8;
}

.downloadContent ul li a:hover {
    color: unset;
}

.downloadContent ul li:hover a {
    color: #005CAF;
}


/* download_end */


/* video_start */

.videoCateTitle {
    margin-bottom: 12px;
}

.videoCateTitle .txtTitle {
    margin: 0;
}

.videoContent {
    position: relative;
    margin-left: -4px;
    margin-right: -4px;
    margin-bottom: 12px;
}

.videoContent .owl-nav .owl-next {
    position: absolute;
    top: 25%;
    right: -20px;
    margin: 0;
}

.videoContent .owl-nav .owl-prev {
    position: absolute;
    top: 25%;
    left: -20px;
    margin: 0;
}

.videoItem {
    border-radius: 4px;
    padding: 12px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
    -ms-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
    -o-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
}

.videoImg {
    margin-bottom: 12px;
}

.videoImg .videoImgInner {
    position: relative;
    width: 100%;
    display: block;
    padding-bottom: 56.25%;
    background-color: #fbfbfb;
    overflow: hidden;
}

.videoImg .videoImgInner img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    max-height: 100%;
    width: unset;
}

.videoName .txtTitle,
.videoName .txtSubtitle {
    line-height: 1;
    letter-spacing: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0;
    display: block;
    text-align: center;
    font-weight: 300;
}

.videoName {
    margin-bottom: 8px;
    height: 28px;
}

.videoDesc {
    height: 68px;
    position: relative;
}

.videoDesc .txtNormal {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -ms-line-clamp: 3;
    -o-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    white-space: normal;
    /* text-align: justify; */
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    line-height: 1.6;
    letter-spacing: 1px;
    /* 偏執設定，不要可以刪掉 */
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    left: 50%;
    font-weight: 300;
    /* 偏執設定，不要可以刪掉 */
}


/* video_end */


/* 按鈕樣式_btn_start */

.buttonBlock {
    display: inline-block;
    /* background-color: #fbfbfb; */
    color: #fcfcfc;
    text-align: center;
    padding: 12px 28px 12px 0;
    min-width: 100px;
    font-size: 1.125rem;
    border-bottom: 1px solid #d8d8d8;
    position: relative;
}

.buttonBlock::before {
    content: 'add';
    font-family: 'Material Icons';
    position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    top: 50%;
    right: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.buttonBlock::after {
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 50%;
    left: 0;
    content: '';
    background-color: #fcfcfc;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.downloadButton {
    border-bottom: 1px solid #d8d8d8;
}

.buttonBlock:hover {
    color: #fcfcfc;
}

.buttonBlock:hover::after {
    width: 100%;
}

.downloadButton::before {
    content: 'file_download';
}

.buttonBlock:hover::before {
    transform: translateY(-50%)rotate(90deg);
    -webkit-transform: translateY(-50%)rotate(90deg);
    -moz-transform: translateY(-50%)rotate(90deg);
    -ms-transform: translateY(-50%)rotate(90deg);
    -o-transform: translateY(-50%)rotate(90deg);
}

.downloadButton:hover::before {
    color: #ffcc00;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.formBtnContent {
    text-align: center;
    padding: 24px 12px;
}

.formBtnReset {
    display: inline-block;
    background-color: #030303;
    color: #fcfcfc;
    text-align: center;
    padding: 8px 12px;
    min-width: 80px;
    outline: unset;
    border: 1px solid transparent;
    font-size: 1.125rem;
    border-radius: 4px;
    margin-right: 6px;
}

.formBtnReset:hover {
    background-color: #FF0000;
    color: #FFF;
    box-shadow: unset;
    border: 1px solid transparent;
}

.formBtn {
    font-size: 1.125rem;
    display: inline-block;
    min-width: 80px;
    background-color: #ffcc00;
    color: #030303;
    text-align: center;
    padding: 8px 12px;
    outline: unset;
    border: 1px solid transparent;
    border-radius: 4px;
}

.formBtn:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}


/* 按鈕樣式_btn_end */


/* contact_start */

.addFile {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    padding: 8px;
}

.remarkText {
    line-height: 1.8;
    color: #ff0000;
    font-size: 1rem;
}

.custFormContent {
    margin-top: 36px;
    padding: 24px 12px;
    border: 1px solid #d8d8d8;
}


/* contact_end */

@media only screen and (max-width: 1679px) {
    .container1680 {
        max-width: 100%;
    }
}

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

@media only screen and (max-width: 1399px) {
    .container1400 {
        max-width: 100%;
    }
}

@media only screen and (max-width: 1279px) {
    .container1280 {
        max-width: 100%;
    }
}

@media only screen and (min-width: 1200px) {}

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

@media only screen and (min-width: 992px) {}

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

@media only screen and (min-width: 768px) {
    .listActive .ptItemInner:first-child {
        padding-right: 24px;
    }
    .listActive .ptItemInner:first-child .ptImg {
        width: 240px;
    }
    .listActive .ptItemInner ul {
        padding-left: 36px;
    }
    .listActive .ptItemInner ul li {
        list-style: initial;
        margin-bottom: 12px;
    }
    .listActive .ptItem .ptName {
        padding: 24px 0;
    }
    .listActive .ptItem .ptName .txtTitle {
        margin-bottom: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .toggleButtonContent {
        display: none;
    }
    .mb-none {
        display: none;
    }
    .owl-theme .owl-nav [class*=owl-] {
        padding: 4px;
    }
    /* logo/登入/註冊/詢價車/語系/搜尋_start */
    .topInfoInner {
        height: inherit;
    }
    .pcLogo {
        display: none;
    }
    .topInfo {
        text-align: center;
    }
    .topInfo ul li a {
        padding: 8px 8px 8px 16px;
    }
    .loginBtn::before {
        left: 0px;
    }
    .registerBtn::before {
        left: 0px;
    }
    .logoutBtn::before {
        left: 0px;
    }
    .searchBtn::before {
        left: 0px;
    }
    .inquiryBtn::before {
        left: 0px;
    }
    .arrowDown::before {
        display: none;
    }
    a.arrowRight::before {
        display: none;
    }
    .mobileShow {
        display: inherit!important;
    }
    .webShow {
        display: none !important;
    }
    /* logo/登入/註冊/詢價車/語系/搜尋_end */
    .contentTitle {
        text-align: center;
        font-size: 1.5rem;
    }
    /* 手機選單_start */
    .mbHeadContainer {
        display: block;
    }
    .mbHeadContainer .bg-faded {
        background: transparent;
    }
    .mbHeadContainerInner {
        width: 100%;
        display: table;
        table-layout: fixed;
        padding: 12px;
    }
    .mbLogo,
    .mbMenuBtn {
        display: table-cell;
        vertical-align: middle;
        text-align: center;
    }
    .mbLogo {
        text-align: center;
        padding: 0px 12px;
    }
    .mbLogo a {
        display: block;
        margin: 0 auto;
    }
    .mbLogo a img {
        height: 48px;
    }
    .mbMenuBtn {
        width: 60px;
        /* background: #FFF; */
    }
    .mbMenuBtn .navbar-toggler {
        width: 40px;
        height: 40px;
        padding: 0px;
        outline: none;
        margin: 0;
        /* border: 1px solid #FFF; */
        background-color: #ffcc00;
    }
    .mbMenuBar {
        width: 16px;
        height: 2px;
        border-radius: 2px;
        background-color: #FFF;
        display: block;
        margin: 0px auto;
        position: relative;
    }
    .mbMenuBar::before {
        content: "";
        width: 16px;
        height: 2px;
        border-radius: 2px;
        display: block;
        position: absolute;
        background-color: #FFF;
        transform: translateY(8px);
        -webkit-transform: translateY(8px);
        -moz-transform: translateY(8px);
        -ms-transform: translateY(8px);
        -o-transform: translateY(8px);
    }
    .mbMenuBar::after {
        content: "";
        width: 16px;
        height: 2px;
        border-radius: 2px;
        display: block;
        position: absolute;
        background-color: #FFF;
        transform: translateY(-8px);
        -webkit-transform: translateY(-8px);
        -moz-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        -o-transform: translateY(-8px);
    }
    #leftMenu a {
        color: #fff;
        display: block;
        padding: 12px 16px 12px 12px;
        font-size: 1rem;
    }
    #leftMenu ul li {
        display: block;
        width: 100%;
        position: relative;
        padding: 0!important;
    }
    #leftMenu .dropdownMenu {
        position: static;
        visibility: inherit;
        opacity: 1;
        display: none;
        left: inherit;
        right: inherit;
        top: inherit;
        bottom: inherit;
        border: none;
        background: rgba(0, 0, 0, 0.2);
    }
    #leftMenu .mobileDown {
        width: 40px;
        height: 40px;
        position: absolute;
        z-index: 99;
        background-color: rgba(0, 0, 0, 0.9);
        display: block;
        right: 0;
        top: 0;
        text-align: center;
        background-image: url(../images/arrow-down-white.svg);
        background-size: 12px;
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
    }
    #leftMenu a.mobileActive {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    .dropdownMenu {
        padding-left: 16px;
    }
    .mbMenu {
        background: #000;
    }
    .mbClose {
        padding: 8px;
        text-align: right;
    }
    .mbClose button {
        border: unset;
        background: unset;
        box-shadow: unset;
        color: #fff;
    }
    #mbSearch {
        padding: 12px;
    }
    #mbSearch .searchContent {
        width: 100%;
    }
    /* 手機選單_end */
    /* 主選單_start */
    .menuContainer {
        display: none;
    }
    /* 主選單_end */
    /* 頁尾_start */
    .mainNav {
        width: 100%;
        display: block;
        table-layout: inherit;
    }
    .mainNav li {
        position: relative;
    }
    .mainNav>li {
        display: block;
        vertical-align: inherit;
        margin-top: 12px;
    }
    .mainNav li a {
        border: 1px solid #eee;
        border-radius: 4px;
    }
    .mainNav li:last-child {
        margin-bottom: 12px;
    }
    /* 頁尾公司資訊_start */
    .companyInfoContent {
        display: block;
        width: 100%;
        table-layout: unset;
    }
    .companyInfoContentInner {
        display: block;
        width: 100%;
    }
    .linkItem {
        padding: 0;
    }
    .linkItem a {
        font-size: 0.75rem;
    }
    /* 版權宣告/政策/網站地圖_start  */
    .copyrightPolicySitemapContent {
        padding-bottom: 80px;
    }
    /* 版權宣告/政策/網站地圖_end */
    footer {
        padding-bottom: 60px;
    }
    .copyright .container {
        line-height: 1.6;
    }
    /* 頁尾_end */
    /* 常駐項_start */
    .floatMenuContainer {
        left: 0px;
        bottom: 0px;
        top: inherit;
        right: inherit;
        transform: inherit;
        z-index: 999;
    }
    .floatMenuContainer ul {
        width: 100%;
        display: table;
        table-layout: fixed;
        background-color: #FFF;
        border-top: 1px solid #eee;
    }
    .floatMenuContainer ul li {
        margin-bottom: 0px;
        display: table-cell;
        vertical-align: middle;
        /* border-right: #eee solid 1px; */
    }
    .floatMenuContainer ul li:nth-last-child(1) {
        border-right: none;
    }
    .floatMenuContainer ul li a {
        width: 100%;
        border: 0px;
        border-radius: 0px;
    }
    .floatMenuContainer ul li:nth-child(odd) a {
        background-color: #08192D;
    }
    /* 常駐項_end */
    /* banner_start */
    .bannerContent {
        min-height: initial;
    }
    .bannerText {
        padding: 8px 16px;
        left: 5%;
        bottom: 12.5%;
    }
    .bannerText .txtNormal {
        font-size: 1.5rem;
        display: none;
    }
    .bannerText ul li {
        margin-bottom: 8px;
        font-size: 1.5rem;
        text-align: center;
    }
    .bannerText ul li:last-child {
        font-size: 1.5rem;
    }
    .bannerText .txtTitle {
        font-size: 1.25rem;
    }
    .bannerText .txtSubtitle {
        font-size: 1rem;
    }
    .bannerContent .owl-dots {
        bottom: 5%
    }
    .bannerImg .bannerImgInner img {
        width: 250%;
    }
    .bannerPtItem {
        width: 80%;
        margin: 0 auto;
    }
    .bannerImg {
        padding-bottom: 150%;
    }
    /* banner_end */
    /* news_start */
    ul.newsItemContent {
        display: block;
        width: 100%;
    }
    ul.newsItemContent li.newsItem .newsItemInner {
        display: block;
        width: 100%;
    }
    ul.newsItemContent li.newsItem .newsItemInner:first-child {
        width: 100%;
        margin-bottom: 4px;
    }
    /* news_end */
    .videoContent .owl-nav .owl-next {
        right: -4px;
    }
    .videoContent .owl-nav .owl-prev {
        left: -4px;
    }
    .footerContent {
        padding: 64px 12px;
    }
    .companyInfo ul li .d-inline-block {
        line-height: 1.6;
    }
    .companyInfo ul li .d-inline-block:first-child {
        display: none!important;
    }
}

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

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

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