@charset "utf-8";

body {
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', 'sans-serif';
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
}

ul {
    padding-left: 0;
    list-style-type: none;
}

/*清除*/
:focus {
    outline: none !important;
    box-shadow: none !important;
}

/***************網頁選取顏色***************/
::selection {
    background-color: #999;
    color: #fff;
}

::-moz-selection {
    background-color: #999;
    color: #fff;
}

/**************捲軸樣式**************/
/* 整個捲軸 */
::-webkit-scrollbar {
    width: 6px;
}

/* 捲軸的軌道 */
::-webkit-scrollbar-track {
    background: #666;
}

/*捲軸尚未滑到的軌道*/
::-webkit-scrollbar-track-piece {
    background: #666;
}

/* 滑動的區塊 */
::-webkit-scrollbar-thumb {
    background: #999;
}

/* 滑鼠移到滑動的區塊上 */
::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/*網頁選取顏色*/
::selection {
    background-color: #999;
    color: #fff;
}

::-moz-selection {
    background-color: #999;
    color: #fff;
}

/*--------------------------------------------------------------
共用
--------------------------------------------------------------*/
.page {
    margin: 65px 0 40px 0;
    min-height: 70vh;
}

.d-flex-center {
    display: flex;
    align-items: center;
}

.red {
    color: #EE3B54;
}

.green {
    color: #4ccc4e;
}

.btn.small {
    font-size: 0.9rem;
    padding: 0 .5rem;
}

/***標題***/
.all-title {
    text-align: center;
    margin-bottom: 30px;
}

.all-title span {
    display: inline-block;
    border-bottom: 3px solid #FDD000;
    font-size: 1.3rem;
    padding: 0 15px;
    font-weight: 500;
    color: #212529;
}

/**麵包屑**/
.breadcrumb {
    background: -webkit-linear-gradient(left top, #2DC1D8, #9AECF9);
    background: linear-gradient(left top, #2DC1D8, #9AECF9);
    border-radius: 0;
    color: #fff;
    padding: 10px 0;
    margin-bottom: 30px;
}

.breadcrumb a {
    margin: 0 5px;
}

.breadcrumb .breadcrumb-title {
    margin: auto;
}

/**輸入框**/
.form-control::-webkit-input-placeholder {
    color: #999;
}

.form-control::-moz-input-placeholder {
    color: #999;
}

.form-control::-ms-input-placeholder {
    color: #999;
}

.form-control,
.form-control:focus {
    border: 1px solid #ced4da;
    background-color: #fff;
}

/*提示文字*/
.error {
    font-size: 0.9rem !important;
    color: #ff1c1c !important;
    font-weight: 400 !important;
    margin: 0;
}

/*加入收藏/加入購物車(彈跳視窗-樣式1)*/

.modal-add {
    text-align: center;
}

.modal-add .modal-header {
    border: 0;
}

.modal-add .modal-body {
    padding-top: 0;
}

.modal-add ion-icon,
.modal-add svg {
    font-size: 3rem;
    color: #2EC1D8;
    margin: auto;
    display: block;
}

.modal-add .heart ion-icon,
.modal-add .heart svg {
    color: #ff6161;
}

.modal-add p {
    font-size: 1.1rem;
}

/*加入收藏/加入購物車(底部出現-樣式2 + jquery)*/
.message-model {
    position: fixed;
    bottom: 10px;
    left: 15px;
    right: 15px;
    z-index: 999;
    margin: auto;
    display: none;
    max-width: 800px;
}

.message-model.show {
    opacity: 1;
    display: flex;
}

.message-model .con {
    min-width: 300px;
    text-align: center;
    padding: .5rem;
    border-radius: calc(.3rem - 1px);
    font-size: 1.1rem;
    color: #053a46;
    border: 1px solid #5AC8FA;
    background-color: #EEF9FE;
}

.message-model .close {
    font-size: 1.5rem;
    opacity: 1;
    text-shadow: none;
    color: #666;
}

.message-model .box {
    padding: 0;
    display: flex;
    justify-items: center;
    justify-content: center;
}

.message-model .con p {
    margin-bottom: 0;
    display: inline-block;
}

.message-model ion-icon,
.message-model svg {
    font-size: 1.5rem;
}

/*********輪播左右+點點*****************/
/*上一頁下一頁*/
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: -35px;
    bottom: 0;
    margin: auto;
    color: #333;
    width: 35px;
    height: 35px;
    line-height: 25px;
    font-weight: bold;
    font-size: 35px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -35px;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -35px;
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
    margin-bottom: 5px;
    display: block;
}

/*輪播點點*/
.owl-dots {
    display: block;
    text-align: center;
    margin-top: .5rem;
}

.owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0px 3px;
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #999;
}

.owl-dot.active span {
    opacity: 1;
}

/***彈跳視窗***/
.modal {
    background: rgba(0, 0, 0, .6);
    z-index: 99;
}

.modal-backdrop.show {
    display: none;
}

.modal-footer {
    flex-wrap: nowrap;
}

.modal-dialog .btn-ok,
.modal-dialog .btn-ok:hover {
    background-color: #333;
    color: #fff;
}

.modal-dialog .btn-cancel,
.modal-dialog .btn-cancel:hover {
    background-color: #999;
    color: #fff;
}

/*--------------------------------------------------------------
Header 選單
--------------------------------------------------------------*/

.header-sec-box {
    position: fixed;
    top: 0px;
    right: 0;
    left: 0;
    z-index: 50;
    transition: .3s;
    border-top: 4px solid #2EC1D8;
    background-color: #fff;
}

.head-top a {
    text-decoration: underline;
    color: #444;
}

.head-top img {
    width: 25px;
    margin-right: 5px;
    animation-iteration-count: infinite;
}

/*head*/
.header {
    transition: all 0.2s;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*logo*/

.header .logo a {
    display: flex;
    align-items: center;
    margin: 5px 0;
    font-size: 18px;
}

.header .logo a img {
    width: auto;
    height: 50px;
    margin-right: 10px;
}

/*nav*/

.header .menu ul,
.header .menu {
    display: flex;
    align-items: center;
    margin: 0;
}

/*icon*/

.header .main-icon li a,
.header .main-icon li button {
    font-size: 24px;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    position: relative;

}

.header .main-icon li {
    border-left: 1px solid #ccc;
}

.header .main-icon li:first-child {
    border-left: 0;
}

.header .cart-quantity {
    background-color: #FDD000;
    min-height: 15px;
    line-height: 14px;
    min-width: 15px;
    text-align: center;
    border-radius: 100%;
    color: #fff;
    font-size: 12px;
    z-index: 1;
    font-weight: bold;
}

/*下拉*/
.main-nav .drop-down a.all-pro {
    cursor: inherit;
}

.main-nav .drop-down ul {
    display: flex;
    flex-direction: column;
}

.main-nav>ul>li {
    position: relative;
    white-space: nowrap;
}

.main-nav a {
    display: block;
    position: relative;
    padding: 20px 15px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.main-nav a:hover,
.main-nav .active>a,
.main-nav li:hover>a {
    text-decoration: none;
}

.main-nav .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: ease all 0.3s;
    padding: 10px;
}

.main-nav .drop-down:hover>ul {
    opacity: 0.95;
    top: 100%;
    visibility: visible;
}

.main-nav .drop-down li {
    min-width: 170px;
}

.main-nav .drop-down ul li a {
    padding: 10px 5px;
    font-size: 16px;
    margin: 0;
    color: #333;
}

.main-nav .drop-down ul li {
    border-bottom: 1px solid #ddd;
}

.main-nav .drop-down ul li:last-child {
    border-bottom: 0;
}

.main-nav .drop-down>a svg,
.main-nav .drop-down>a ion-icon {
    padding-left: 5px;
    font-size: 12px;
}

.main-nav .drop-down .drop-down ul {
    top: 0;
    left: 100%;
}

.main-nav .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.main-nav .drop-down .drop-down.one:hover>a,
.main-nav .drop-down .drop-down.two:hover>a,
.main-nav .drop-down .drop-down.one .drop-down.two li:hover>a {
    color: #0d9aaf;
}

.main-nav .drop-down .drop-down>a svg,
.main-nav .drop-down .drop-down>a ion-icon {
    position: absolute;
    right: 10px;
}

/* Mobile Navigation */

/*關閉按鈕*/
.mobile-close,
.mobile-close:hover {
    color: #fff;
    position: fixed;
    right: 20px;
    font-size: 35px;
    top: 0;
    padding: 0;
}

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.4s;
    background: #fff;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    position: relative;
    color: #333;
    padding: 10px 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #2EC1D8;
    text-decoration: none;
}

/**點選下拉變換**/

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down a span {
    margin-right: 5px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down.one a {
    padding-left: 40px;
    border-bottom: 0;
}

.mobile-nav .drop-down.two a {
    padding-left: 60px;
    border-bottom: 0;
}

.mobile-nav-toggle i {
    color: #004289;
    font-size: 35px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

/*******搜尋*******/

.modal-search {
    background-color: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
}

.modal-search .close {
    font-size: 60px;
    color: #fff;
    opacity: 1;
    right: 20px;
    top: 20px;
    position: absolute;
    z-index: 999;
}

.modal-search .search-group {
    display: flex;
    width: 70%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10%;
    right: 10%;
    margin: auto;
    align-items: center;
}

.modal-search .search-group input {
    border: 0;
    border-bottom: 2px solid #fff;
    background-color: initial;
    border-radius: 0;
    font-size: 1.5rem;
    color: #fff;
}

.modal-search .search-group button {
    color: #fff;
    font-size: 30px;
}

/*--------------------------------------------------------------
footer
--------------------------------------------------------------*/
.footer {
    position: relative;
    margin-top: 20px;
    background-color: #fff;
    background: #F5F5F5;
}

/*footer*/
.footer-menu {
    padding: 15px 15px 10px;
    border-bottom: 1px solid #ccc;
    font-size: 15px;
}

.footer-menu ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
}

.footer-menu ul a {
    display: block;
}

.footer-menu ul a:after {
    content: "|";
    color: #ccc;
    padding: 0 5px;
}

.footer-menu ul li:last-child a:after {
    display: none;
}

.footer .footer-con .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    font-size: 21px;
    color: #212529;
    font-weight: 500;
}

.footer .footer-con .footer-logo img {
    width: 60px;
    margin-right: 10px;
}

.footer .footer-info .d-flex {
    justify-content: space-between;
    align-items: center;
}

.footer .footer-info h4 {
    font-size: 25px;
    color: #333;
    padding-bottom: 10px;
}

/*條款*/
.footer .footer-info .privacy {
    text-align: center;
    color: #999;
    font-size: 15px;
}

/*copyright*/
.footer .copyright {
    background: linear-gradient(90deg, rgba(80, 88, 88, 0), rgba(80, 88, 88, 0.6), rgba(80, 88, 88, 0));
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    color: #fff;
}

/*--------------------------------------------------------------
index 首頁
--------------------------------------------------------------*/
/********** banner 輪播圖 **********/
.banner {
    margin-top: 65px;
}

/*************** 項目分類 **************/
.index-item {
    padding: 20px 50px 5px 50px;
    background-color: #F6F6F6;
}

@media (min-width: 1200px) {
    .index-item .container {
        max-width: 1600px;
    }
}

/*輪播*/

.index-item .item {
    display: flex;
    background-color: #FDD000;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 10px 0;
}

.index-item .item img {
    width: 40px;
    margin-right: 10px;
}

.index-item .item span {
    color: #400909;
    font-size: 1.2rem;
}

/*************** 商品分類 **************/

@media (min-width: 1200px) {
    .index-pro .container {
        max-width: 1400px;
    }
}

/*在不同裝置大小 數量變化 start*/
.product {
    width: calc(16.6% - 10px);
    margin: 0 5px;
    padding: 0 10px;
}

@media screen and (max-width: 1199px) {
    .product {
        width: calc(20% - 10px);
    }

    .index-pro .row .product:nth-child(6) {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .product {
        width: calc(25% - 10px);
    }

    .index-pro .row .product:nth-child(5) {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .product {
        width: calc(33.3% - 10px);
    }

    .index-pro .row .product:nth-child(4) {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .product {
        width: calc(50% - 10px);;
    }

    .index-pro .row .product:nth-child(3) {
        display: none;
    }
}

/*在不同裝置大小 數量變化 end*/

.index-pro {
    padding: 40px 0 10px 0;
}

.index-pro .container {
    position: relative;
}

.index-pro .product {
    margin-bottom: 0;
}

/*產品樣式通用*/

.product .product-img-box {
    width: 100%;
    padding-bottom: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    transition: all .5s ease;
    background-repeat: no-repeat;
    background-size: 100%;
}

.product .product-img:hover .product-img-box {
    background-size: 110%;
    transition: all .5s ease;
}

.product .product-img {
    position: relative;
    margin-bottom: 10px;
}

/*購物車/收藏*/
.product {
    margin-bottom: 30px;
    display: block;
}

.product .product-img .link {
    position: absolute;
    z-index: 1;
    right: 10px;
    bottom: 10px;
}

.product .product-img .link button {
    padding: 0;
    background-color: rgba(0, 0, 0, 0.6);
    width: 33px;
    height: 33px;
    font-size: 18px;
    line-height: 36px;
    text-align: center;
    border-radius: 100%;
    color: #fff;
    display: inline-block;
    margin-left: 3px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/*產品文字*/

.product .product-text .text {
    margin-top: 10px;
    line-height: 22px;
    border-bottom: 1px solid #ddd;
    min-height: 50px;

}

.product .product-text .title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product .product-text .price {
    font-family: 'Century Gothic', 'Noto Sans TC', 'Microsoft JhengHei', 'sans-serif';
    font-size: 1.5rem;
    color: #ff1c1c;
    font-weight: bold;
    line-height: 1.2;
}

.product .product-text del {
    font-size: 1rem;
    color: #999;
    font-weight: 300;
    margin-left: 5px;
}

.product .product-text .shop-text {
    font-size: 13px;
    color: #a13636;
}

.product .product-text .shop-text a {
    text-decoration: underline;
}

/*看更多*/
.pro-more {
    border: 1px solid #a7a7a7;
    border-radius: 30px;
    padding: 2px 15px;
    position: absolute;
    right: 15px;
    top: 0;
}

.pro-more:hover {
    background-color: #333;
    border-color: #333;
    color: #fff;
}

/*************** banner廣告橫幅(小) **************/
.banner-small .container {
    margin-top: 30px;
}

@media (min-width: 1200px) {
    .banner-small .container {
        max-width: 1400px;
    }
}

/*--------------------------------------------------------------
側邊選單 側邊內容 架構 (關於我們+..+聯絡我們)
--------------------------------------------------------------*/
/*側邊選單*/
.two-columns-list {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .two-columns-list {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
}

.two-columns-nav {
    display: flex;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.two-columns-nav-title {
    font-weight: 500;
    font-size: 1.3rem;
}

.two-columns-nav .navbar-brand {
    display: none;
}

.two-columns-nav .menu {
    width: 100%;
}

.two-columns-nav .menu li.title {
    border-bottom: 1px solid #ccc;
    padding: 5px 0;
}

.two-columns-nav .menu li.title a {
    display: block;
}

.two-columns-nav .menu li:hover {
    color: #2EC1D8;
}

.two-columns-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.2em;
    height: 1.2em;
}

/*側邊內容*/
.two-columns-con {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .two-columns-con {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
}

.two-columns-con {
    color: #666;
    margin-bottom: 1rem;
    font-family: 'Century Gothic', 'Noto Sans TC', 'Microsoft JhengHei', 'sans-serif' !important;
}

.two-columns-con img {
    color: #666;
    margin-bottom: 1rem;
}

.list-box {
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
}

.list-title {
    color: #212529;
    font-size: 1.2rem;
}

/*為了能用編輯器*/
.information,
.information .text-con {
    font-family: 'Century Gothic', 'Noto Sans TC', 'Microsoft JhengHei', 'sans-serif' !important;
}

.information img {
    width: 100% !important;
}

/*--------------------------------------------------------------
聯絡我們
--------------------------------------------------------------*/
/*聯絡資訊*/
.contact-con {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.contact-con {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.contact-list {
    margin-bottom: 30px;
}

.contact-list li {
    margin-bottom: 10px;
    display: flex;
    font-size: 1.2rem;
    align-items: center;
    color: #444;
}

.contact-con .contact-list img {
    width: 30px;
    margin: 0 10px 0 0;
}

.contact-con .contact-list li span {
    word-break: break-all
}

.contact-con .contact-list li span.tell {
    font-size: 1.6rem;
}

/*與我們聯絡*/
.contact-form {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.contact-form {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.contact-form .btn,
.contact-form .btn:hover {
    background-color: #1869B8;
    color: #fff;
}

/*--------------------------------------------------------------
商品介紹
--------------------------------------------------------------*/
/*篩選/排序*/

.product-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-top span {
    width: 80px;
}

.btn-filter,
.btn-filter:hover {
    background-color: #1869B8;
    color: #fff;
}

/*產品列表*/
@media (min-width: 1200px) {
    .product-list .container {
        max-width: 1400px;
    }
}

/*頁數*/

.page-number {
    margin-top: 30px;
    text-align: center;
}

.page-number .btn {
    font-size: 17px;
    line-height: 14px;
    color: #333;
    min-width: 30px;
    height: 30px;
    text-align: center;
    padding: 8px 5px;
    border: 0;
    margin: 0 5px;
    background-color: #fff;
    width: auto;
}

.page-number img {
    width: 15px;
    height: 15px;
    margin: auto;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle {
    color: #fff;
    background-color: #1869B8;
    border-color: #1869B8;
}

.btn.disabled,
.btn:disabled,
.btn.disabled:hover,
.btn:disabled:hover {
    opacity: .3;
    cursor: context-menu;
}

/*--------------------------------------------------------------
篩選視窗
--------------------------------------------------------------*/
/*背景*/
.filter-box {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: all 500ms ease;
    opacity: 0;
}

.filter-box.position {
    transition: all 500ms ease;
    z-index: 999;
    opacity: 1;
}


/*白色區塊*/

.filter-box .box {
    position: absolute;
    height: 100%;
    right: -385px;
    width: 385px;
    background-color: #fff;
    overflow: auto;
    transition: all 500ms ease;
}

.filter-box.position .box {
    right: 0;
    background-color: #F2F2F2;
}


/*關閉*/
.filter-box .box .close {
    position: absolute;
    left: 10px;
    top: 5px;
    font-size: 35px;
    cursor: pointer;
}


/*最上方標題*/
.filter-box .box .filter-title {
    text-align: center;
    padding: 8px 0;
    color: #537E8C;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid #ccc;
}


/*項目*/
.filter-box .box .item {
    padding: 10px 30px;
}

.filter-box .box .item .item-title {
    border-bottom: 1px solid #ccc;
    margin: 25px 0 10px 0;
    width: 100%;
    display: block;
    color: #333 !important;
    font-size: 1.1rem;
    font-weight: 500
}

/*篩選條件-價位*/
.range-slider {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.range-slider input.form-control {
    border: 1px solid #999;
}

.range-slider span {
    font-size: 19px;
}


/**篩選條件-摺疊**/
/*勾選*/
input[type=checkbox],
input[type=radio] {
    zoom: 1.5;
}

.form-check-input {
    margin-top: 0.15rem;
    margin-right: 5px;
    margin-left: -1rem;
}

.form-check {
    padding-left: 25px;
    display: flex;
}

.form-check input,
.form-check label {
    cursor: pointer;
    position: initial;
}


/*摺疊*/
body.overflow {
    overflow: hidden;
}

.filter-list {
    font-size: 1rem;
}

.filter-list .item-title {
    position: relative;
}

.filter-list .item-title ion-icon,
.filter-list .item-title svg {
    font-size: 1.2rem;
    position: absolute;
    right: 0;
    top: 3px;
}

.filter-list ul {
    margin: 10px 0 0 0;
}

.filter-list ul li {
    padding-bottom: 7px;
    margin-bottom: 7px;
    border-bottom: 1px solid #ddd;
}

.filter-list ul li:last-child {
    margin: 0;
    border-bottom: 0;
}


/*依顏色*/
.filter-color li {
    position: relative;
    /*padding-left: 25px;*/
}

.filter-color li span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    border: 1px solid #ccc;
    top: 5px;
    right: 0;
}

/*輸入框*/
.filter-box .form-control {
    margin-bottom: 10px;
}

/*按鈕*/
.filter-box .box .btn,
.filter-box .box .btn:hover {
    background-color: #333;
    color: #fff;
    margin-top: 1.5rem;
    width: 100%;
}

/*--------------------------------------------------------------
product-info 商品內頁
--------------------------------------------------------------*/
.product-info {
    color: #46484D;
}

/*標題*/
.pro-title {
    font-weight: 500;
    font-size: 1.4rem;
    color: #333;
}


/*評價*/
.pro-evaluation {
    display: block;
    margin-bottom: 25px;
}

.pro-evaluation ion-icon,
.pro-evaluation svg {
    color: #FEC62B;
    font-size: 1.2rem;
}

.pro-evaluation .evaluation-link {
    color: #83B5BC;
    margin-left: 10px;
    text-decoration: underline;
}

/*國際條碼*/
.shop-barcode {
    margin-bottom: 1rem;
}


/*規格*/
.pro-specification {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.pro-specification lable {
    margin-right: 10px;
    width: 50px;
}

.pro-specification select {
    cursor: pointer;
    height: 40px;
    width: 200px;
}

/*數量 input*/

.pro-options {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    height: 40px;
    background-color: #fff;
}

.pro-options lable {
    margin-right: 10px;
    width: 50px;
}

.quantity-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 20px;
    width: 200px;
}

.quantity-input .form-control {
    width: calc(100% - 80px);
    border: 0;
    border-radius: 0;
    border-right: 1px solid #ced4da;
    border-left: 1px solid #ced4da;
    padding: 10px;
    text-align: center;
    background-color: initial;
}

.quantity-input span {
    cursor: pointer;
    padding-top: 5px;
    width: 40px;
    text-align: center;
}

/*庫存備註*/
.no-stock {
    margin-left: 10px;
    font-size: 1rem;
    color: #999;
}

/*價格*/
.pro-price {
    font-family: 'Century Gothic', 'Noto Sans TC', 'Microsoft JhengHei', 'sans-serif';
    font-size: 1.8rem;
    color: #ff1c1c;
    font-weight: bold;
}

.pro-price del {
    font-size: 1.2rem;
    color: #999;
    font-weight: 300;
    margin-left: 5px;
}

/*購物車/收藏*/
.pro-btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.pro-btn-group .btn-cart,
.pro-btn-group .btn-cart:hover {
    width: calc(100% - 100px);
    background-color: #FFC107;
    color: #fff;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 50%);
}

.pro-btn-group .btn-heart {
    width: 100px;
    font-size: 2rem;
    padding: 0;
    color: #666;
}

.pro-btn-group .btn-heart ion-icon,
.pro-btn-group .btn-heart svg {
    margin-top: 10px;
}

/*分享*/
.pro-share {
    margin-top: 10px;
}

.pro-share span {
    width: 50px;
    margin-right: 10px;
}

.pro-share a {
    margin-right: 5px;
}

/*運送/付款*/
.pro-transport,
.pro-payment {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.pro-transport .title,
.pro-payment .title {
    width: 50px;
    margin-right: 10px;
}

.pro-transport ul {
    width: calc(100% - 60px);
    padding-left: 20px;
    list-style-type: disc;
    margin: 0;
}

.pro-transport ul span {
    color: #888;
    font-family: 'Century Gothic', 'Noto Sans TC', 'Microsoft JhengHei', 'sans-serif';
}

.pro-payment ul {
    width: calc(100% - 60px);
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.pro-payment ul li:after {
    content: "/";
    padding: 0 3px;
}

.pro-payment ul li:last-child:after {
    display: none;
}

/*商品內容標題(頁籤)*/

.pro-content {
    padding-top: 50px;
    padding-bottom: 30px;
}

.pro-content .nav-tabs {
    margin-bottom: 70px;
}

.pro-content .nav-tabs,
.pro-content .nav-tabs .nav-link {
    border: 0;
}

.pro-content .nav-tabs .nav-item {
    width: 50%;
    text-align: center;
    border: 1px solid #333;
}

.pro-content .nav-tabs .nav-item .nav-link {
    color: #333;
    font-size: 1.3rem;
    padding: .2rem 1rem;
    border-radius: 0;
}

.pro-content .nav-tabs .nav-link.active {
    display: block;
    color: #fff;
    background-color: #333;
}

.pro-content-cart {
    width: 50%;
    margin-top: 20px;
}

/*商品內容(商品介紹)*/
.pro-content .tab-content .tab-pane {
    /* line-height: 28px; */
    font-family: 'Century Gothic', 'Noto Sans TC', 'Microsoft JhengHei', 'sans-serif' !important;
}

.pro-content .tab-content img {
    width: 100% !important;
}

/*評價欄位*/
.evaluation-box .item {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
    margin: 10px 0;
    border-bottom: 1px solid #ddd;
}

.evaluation-box .item:last-child {
    border-bottom: 0;
}

.evaluation-box .item .user {
    width: 20%;
}

.evaluation-box .item .text {
    width: 80%;
}

.evaluation-box .item .text .star {
    color: #FEC62B;
    font-size: 1.3rem;
}

.evaluation-box .item .user .name {
    font-size: 1.2rem;
    color: #333;
}

.evaluation-box .item .user .date {
    color: #999;
}

/*相關商品*/
@media (min-width: 1200px) {
    .pro-related .container {
        max-width: 1400px;
    }
}

.pro-related {
    margin-top: 3rem;
    padding:0 30px;
}

.pro-related .product {
    width: 100%;
}

/*--------------------------------------------------------------
會員登入
--------------------------------------------------------------*/
.login .btn,
.login .btn:hover {
    background-color: #333;
    color: #fff;
    width: 100%;
    margin-top: 20px;
}

/*選項卡*/

.login .nav-tabs {
    margin-bottom: 40px;
}

.login .nav-tabs,
.login .nav-tabs .nav-link {
    border: 0;
    background-color: inherit;
}

.login .nav-tabs .nav-item {
    width: 48%;
    margin: 0 1%;
    text-align: center;
}

.login .nav-tabs .nav-item .nav-link {
    color: #888;
    font-size: 1.2rem;
    padding: .5rem 1rem;
    border-bottom: 2px solid #ccc;
}

.login .nav-tabs .nav-link.active {
    display: block;
    color: #333;
    border-bottom: 2px solid #FDD000;
}

/*忘記密碼*/

.login .forget-pasd {
    text-align: right;
    display: block;
    margin-bottom: 5px;
}

.login {
    margin-bottom: 9rem;
}

.forget-pasd-mess {
    padding: 120px 0 50px;
}

/*註冊*/

.registered-title {
    color: #333;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 500;
    margin-top: 30px;
}

.terms-link,
.terms-link:hover {
    margin: 0 5px;
    text-decoration: underline
}

.login .g-recaptcha {
    margin-bottom: 30px;
}

/*條款*/
.terms-box {
    margin: 10px 0 30px 0;
}

/*******社群登入*********/

.modal-login .modal-header {
    border: 0;
}

.login-box {
    width: 95%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    color: #fff;
    margin: 0 auto 10px auto;
}

.login-box:hover {
    color: #fff;
}

.login-box .login-icon img {
    width: 50px;
    margin: auto;
    padding: 10px;
    border-right: 1px solid #fff;
}

.login-box .login-text {
    margin: auto;
}

/*fb*/

.login-box.fb {
    background-color: #3B5998;
}

/*line*/

.login-box.line {
    background-color: #07B53B;
}

/*google*/

.login-box.google {
    background-color: #DD4B39;
}

/*******忘記密碼*********/

.modal-forget-pasd .modal-header span {
    display: flex;
    align-items: center;
}

.modal-forget-pasd .modal-header span ion-icon,
.modal-forget-pasd .modal-header span svg {
    font-size: 1.6rem;
    color: #0d9aaf;
    margin-right: 5px;
}

/*--------------------------------------------------------------
購物車-購物清單
--------------------------------------------------------------*/

.order-sec .order-sec-box {
    margin-bottom: 25px;
    background-color: #fff;
}

/*無購物車資訊*/
.no-order {
    padding: 150px 0;
}

.no-order .btn,
.no-order .btn:hover {
    background-color: #333;
    color: #fff;
}

/*訂單金額框*/
.order-box {
    padding: 20px 0px;
    border-radius: 10px;
    background-color: #F5F5F5;
    margin-bottom: 20px;
}

.order-box.fixed {
    position: fixed;
    z-index: 999;
    top: 85px;
    right: inherit;
    width: 33.333333%;
}

.order-box h3 {
    color: #333;
    text-align: center;
    padding: 20px 0 10px;
}

.order-box .order-box-line {
    background-color: #fff;
    height: 3px;
}

.order-box .order-detail {
    max-width: 250px;
    margin: auto;
    margin-bottom: 10px;
}

.order-box .order-detail .d-flex {
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}

.order-box .order-detail .d-flex span:first-child {
    color: #818181;
}

.order-box .order-detail .text-left {
    color: #999;
}

.order-box .order-money {
    font-weight: bold;
    color: #ff1c1c;
    text-align: center;
    font-size: 2rem;
    font-family: 'Oxygen', 'Noto Sans TC', 'Microsoft JhengHei', 'sans-serif';
}

.order-box .order-money span {
    font-size: 1.3rem;
}

.order-box .d-flex-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.order-box-btn {
    margin-bottom: 10px;
    justify-content: center;
    display: flex;
}

.order-box-btn .btn {
    width: 25%;
}

.order-box-btn .btn-ok,
.order-box-btn .btn-ok:hover {
    background-color: #333;
    color: #fff;
}

.order-box-btn .btn-cancel,
.order-box-btn .btn-cancel:hover {
    border: 1px solid #666;
    color: #666;
}

/*主標題*/

.order-title {
    font-weight: 500;
    border-bottom: 2px solid #0D788A;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-end;
    color: #0D788A;
    padding: 0 10px;
}

.order-title img {
    margin-right: 5px;
    width: 20px;
}

.order-title .order-step {
    transform: skewX(-15deg);
    line-height: 45px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #0D788A;
}

/*******購物清單*******/
.order-list-box {
    margin-bottom: 20px;
}

.order-pro-list {
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.order-pro-list .order-list:last-child {
    border-bottom: 0;
}

/* .order-pro-list .list-delete .btn {
    font-size: 25px;
    padding: 0;
    line-height: 1;
} */

/*清單列表*/
.order-list {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 10px;
    border-bottom: 1px solid #ccc;
}

.order-list li {
    padding: 0 5px;
}

/*圖片*/

.order-list li:nth-child(1) {
    width: 90px;
}

.order-list li.list-img a {
    overflow: hidden;
    display: block;
}

.order-list li.list-img img {
    overflow: hidden;
    transition: all .5s ease;
}

.order-list li.list-img img:hover {
    transform: scale(1.1);
    transition: all .5s ease;
}

/*產品*/

.order-list li:nth-child(2) {
    width: calc(85% - 350px)
}

.order-list li.list-detail .title {
    color: #333;
}

.order-list li.list-detail .options {
    color: #A1A1A1;
    font-size: 15px;
}

.order-list li.list-detail .price {
    margin-top: 10px;
    color: #e48100;
    font-size: 1.2rem;
}

.order-list li.list-detail .price span {
    margin-left: 5px;
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 1rem;
}

/*數量*/

.order-list li:nth-child(3) {
    width: 220px;
    text-align: center;
}

.order-list li.list-quantity .quantity-input {
    margin: auto;
    width: 150px;
}

.order-list .quantity-input .form-control {
    width: calc(100% - 70px);
}

.order-list .quantity-input span {
    width: 40px;
}

/*小計*/

.order-list li:nth-child(4) {
    font-family: 'Oxygen', 'Noto Sans TC', 'Microsoft JhengHei', 'sans-serif';
    width: 15%;
    font-size:1.3rem;
    text-align: center;
    color: #ff1c1c;
    font-weight: 500;
}

/*刪除*/

.order-list li:nth-child(5) {
    width: 40px;
    text-align: right;
}

.order-list li.list-delete button {
    border: 0;
    padding: 0;
    font-size: 25px;
    color: #666;
}

/*購物清單-標題*/
.order-list-title li {
    color: #333;
    text-align: center;
}

/* .order-list-title li ion-icon.icon,
.order-list-title li svg.icon {
    font-size: 20px;
    margin-right: 5px;
} */

.order-list-title {
    padding: 5px 15px;
    font-weight: 500;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}

.order-list-title.all {
    border-bottom: 0;
    background-color: #fff;
}

/*******購物清單-底下備註*******/

.order-remarks {
    color: #ff1c1c;
}

/*******選擇打勾清單*******/

.select-box .select-list li {
    display: flex;
    align-items: self-start;
    color: #333;
    cursor: pointer;
    margin-bottom: 15px;
    text-align: left;
}

.select-box .select-list li img {
    width: 22px;
    margin-right: 5px;
    border-radius: 50%;
    border: 1px solid #999;
    color: #fff;
    padding: 3px;
    margin-top: 2px;
}

.select-box .select-list li.active img {
    color: #fff;
    background-color: #333;
    border: 1px solid #333;
}

/********折價券******/
.discount-box .btn-ok,
.discount-box .btn-ok:hover {
    background-color: #999;
    color: #fff;
}

.discount-box .btn-cancel,
.discount-box .btn-cancel:hover {
    border: 1px solid #ccc;
    color: #999;
}

/*******送達/取貨地址*******/

.order-address .floor span {
    margin-left: 5px;
}

.order-address .address-edit {
    display: none;
}

.order-address .select-box {
    margin-bottom: 0;
}

.address {
    margin-bottom: 25px;
}

.btn-address,
.btn-address:hover {
    border: 1px solid #ccc;
    color: #999;
    width: 100%;
}

/**********使用折價券-視窗*********/
.modal-discount .member-content .discount-keyin {
    margin-bottom: 0;
}

.modal-discount .member-content {
    margin-bottom: 1rem;
}

.modal-discount .member-content .green,
.modal-discount .member-content .red {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* .modal-discount .member-content ion-icon,
.modal-discount .member-content svg {
    font-size: 18px;
} */

.modal-discount .select-box .select-list li {
    align-items: center;
    flex-wrap: wrap;
    border-radius: 5px;
    border: 1px solid #ccc;
    position: relative;
}

.modal-discount .select-box .select-list li .title {
    padding: 0px 40px 0 10px;
    border-left: 1px solid #ccc;
    min-height: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 70px);
}

.modal-discount .select-box .select-list li .date {
    color: #999;
    font-size: 0.9rem;
}

.modal-discount .select-box .select-list li .d-item {
    position: relative;
    width: 70px;
    height: 30px;
}

.modal-discount .select-box .select-list li .d-item span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    margin: auto;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
}

.modal-discount .select-box .select-list li img {
    margin-top: 0px;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}

/*--------------------------------------------------------------
購物車-填寫資料
--------------------------------------------------------------*/
/*通用*/
.transport-box {
    background-color: #F5F5F5;
    padding: 20px;
    min-height: 400px;
}

.transport-box .form-control {
    height: calc(1.5em + .75rem);
    padding: .25rem .75rem;
    color: #888;
}

/*******付款資料*******/

.order .form-group label {
    color: #333;
    font-weight: 500;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.order .form-group label span {
    color: #ff1c1c;
    margin-left: 0.2rem;
}

.order .form-group .btn {
    margin-left: 0.5rem;
}

.order .form-group p {
    color: #888;
}

.transport-box .form-group {
    margin-bottom: 10px;
}

.transport-box .form-group .form-group {
    margin-bottom: 5px;
}

.transport-box .btn,
.transport-box .btn:hover {
    background-color: #333;
    color: #fff;
}

/*--------------------------------------------------------------
購物車-訂單確認
--------------------------------------------------------------*/
.order .order-ok {
    text-align: center;
    padding: 80px 10%;
}

.order .order-ok img {
    width: 80px;
    margin: 0 auto 20px auto;
}

.order .order-ok p a {
    text-decoration: underline;
    margin: 0 5px;
}

.order .order-ok p.text {
    color: #666;
}

.order .order-ok p.number {
    color: #666;
}

/*--------------------------------------------------------------
會員中心
--------------------------------------------------------------*/

/*通用-按鈕*/
.member-content button {
    width: 50%;
}

/*通用-無資訊顯示*/
.no-member {
    padding: 50px 0;
}

/*通用版面*/
.member-box {
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 20px;
}

.member-content {
    padding: 0 40px;
}

.member-title {
    font-weight: 500;
    margin-bottom: 1rem;
}

/************************基本資料************************/
/*會員資訊框*/

/* .member-box .m-title {
    text-align: center;
    font-size: 23px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.member-box .m-img {
    max-width: 150px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
}

.member-box .m-text {
    margin-bottom: 10px;
    color: #999;
}

.member-box .m-name {
    color: #666;
} */

/* .member-box .btn-loginout {
    display: block;
    border-radius: 50px;
    padding: 0px;
    width: 50%;
    margin: 15px auto 0 auto;
} */

/**會員選單**/
.member-menu {
    padding: 20px 25px;
    background-color: #F1F1F1;
    border-radius: 10px;
}

.member-menu-nav {
    display: flex;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.member-menu nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.2em;
    height: 1.2em;
}

.member-menu ul {
    width: 100%;
}

.member-menu ul li {
    display: block;
}

.member-menu .member-menu-title {
    color: #222;
    padding: 0 10px;
    font-size: 17px;
    font-weight: 500;
}

.member-menu ul {
    margin-top: 10px;
}

/*標題*/
.member-menu ul li .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
    padding: 0 10px 5px;
    cursor: pointer;
}

.member-menu ul li .title a {
    width: 100%;
    display: block;
}

.member-menu ul li .title ion-icon,
.member-menu ul li .title svg {
    font-size: 12px;
}

.member-menu ul li .title span {
    display: flex;
    align-items: center;
}

.member-menu ul li .title img {
    width: 20px;
    margin-right: 10px;
}

.member-menu ul li:last-child .title {
    border-bottom: 0;
}

/*內容*/
.member-menu ul li .menu-list-con {
    padding: 0px 10px 10px 40px;
    color: #444;
    font-weight: 300;
}

.member-menu ul li .menu-list-con a {
    display: block;
    margin-bottom: 5px;
}

/*登出*/
.logout {
    border-radius: 20px;
    padding: 3px 0;
    font-size: 0.9rem;
    width: 80%;
    margin-left: 10%;
    border: 1px solid #666;
    color: #333;
    background-color: #fff;
}

/*基本資料*/
.member-profile {
    position: relative;
}

.member-profile .form-group {
    margin-bottom: 15px;
}

.member-profile .form-group label {
    font-weight: 500;
}

/*按鈕*/
.member-profile .btn-ok {
    background-color: #333;
    color: #fff;
}

/************************常用地址************************/
/*列表*/
.member-profile .m-add li {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    position: relative;
}

.member-profile .m-add li .btn-delete {
    font-size: 14px;
    padding: 0 10px;
    width: 50px;
    position: absolute;
    right: 0;
}

.member-profile .m-add li .btn-delete,
.member-profile .m-add li .btn-delete:hover {
    border: 1px solid #666;
    color: #666;
}

.member-profile .m-add li span {
    width: calc(100% - 60px);
}

/************************折價券************************/
.discount-keyin {
    border-radius: 5px;
    padding: .5rem 1rem;
    margin-bottom: .5rem;
    background-color: #ECECEC;
}

.discount-keyin .form-control {
    margin: 0 .5rem;
    border: 0;
}

.discount-keyin button {
    width: 85px !important;
    white-space: nowrap;
}

.discount-keyin .btn-ok,
.discount-keyin .btn-ok:hover {
    background-color: #333;
    color: #fff;
}

.discount-keyin span {
    white-space: nowrap;
}

.discount-order-list-box .member-order-list li:nth-child(1) {
    width: 60%;
}

.discount-order-list-box .member-order-list li:nth-child(2) {
    width: 20%;
}

.discount-order-list-box .member-order-list li:nth-child(3) {
    width: 20%;
}

.discount-prompt {
    margin-bottom: 1rem;
}

/************************我的收藏************************/
/*******收藏清單*******/

.favorite-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
}

.favorite-list li {
    padding: 0 10px;
}

/*圖片*/

.favorite-list li:nth-child(1) {
    width: 100px;
}

.favorite-list li.list-img a {
    overflow: hidden;
    display: block;
}

.favorite-list li.list-img img {
    overflow: hidden;
    transition: all .5s ease;
}

.favorite-list li.list-img img:hover {
    transform: scale(1.1);
    transition: all .5s ease;
}

/*產品*/

.favorite-list li:nth-child(2) {
    width: calc(83% - 320px);
}

.favorite-list li.list-detail .title {
    color: #333;
}

.favorite-list li.list-detail .price span {
    margin-left: 5px;
    text-decoration: line-through;
    opacity: 0.5;
}

/*單價*/
.favorite-list li:nth-child(3) {
    font-family: 'Oxygen', 'Noto Sans TC', 'Microsoft JhengHei', 'sans-serif';
    width: 17%;
    color: #ff1c1c;
    font-size: 1.1rem;
    text-align: center;
}

.favorite-list li:nth-child(3) span {
    margin-left: 5px;
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 1rem;
}

/*加入購物車*/
.favorite-list li:nth-child(4) {
    width: 160px;
    text-align: center;
}

.favorite-list li.list-cart .btn,
.favorite-list li.list-cart .btn:hover {
    background-color: #333;
    color: #fff;
}

/*刪除*/

.favorite-list li.list-delete {
    width: 60px;
}

.favorite-list li.list-delete button {
    line-height: 0;
    font-size: 1.4rem;
}

/*****商家收藏********/
.member-favorite.store .favorite-list li:nth-child(1) {
    width: 100px;
}

.member-favorite.store .favorite-list li:nth-child(1) a {
    border: 1px solid #d2d2d2;
}

.member-favorite.store .favorite-list li:nth-child(2) {
    width: calc(100% - 320px);
}

.member-favorite.store .favorite-list li:nth-child(3) {
    width: 160px;
}

.member-favorite.store .favorite-list li:nth-child(4) {
    width: 60px;
}

/************************購買清單************************/

/*******訂單清單*******/
.member-order-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #DCDCDC;
    margin: 0;
}

.member-order-list li {
    padding: 0 10px;
}

/*訂單日期*/
.member-order-list li:nth-child(1) {
    width: 25%;
}

/*訂單編號*/
.member-order-list li:nth-child(2) {
    width: 25%;
}

.member-order-list li.list-number a {
    text-decoration: underline;
}

/*訂單金額*/
.member-order-list li:nth-child(3) {
    width: 25%;
}

/*狀態*/
.member-order-list li:nth-child(4) {
    width: 25%;

}

/*訂單清單-標題*/
.member-order-list-title {
    border-bottom: 1px solid #666;
    margin-bottom: 15px;
}

.member-order-list-title li {
    color: #333 !important;
}

/************************購買清單-內頁************************/

/*通用-按鈕*/

.ntb-box {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.ntb-box button.btn {
    width: auto;
    margin: 0 5px 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ntb-box button img {
    width: 20px;
    margin-right: 5px;
}

.ntb-box button.btn-black-border,
.ntb-box button.btn-black-border:hover {
    border: 1px solid #666;
    color: #666;
}

.ntb-box button.btn-gray,
.ntb-box button.btn-gray:hover {
    background-color: #999;
    color: #fff;
}

.ntb-box button.btn.btn-add,
.ntb-box button.btn.btn-add:hover {
    background-color: #333;
    color: #fff;
}

/*通用-標題框*/
.member-content .titile-box {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

/*通用-標題*/
.member-content h6.title {
    margin-bottom: 5px;
    color: #222;
}

.member-content h6.title span {
    color: #ff1c1c;
}

.member-content h6.title .btn {
    width: auto;
    margin-left: 5px;
}

/*******訂單明細清單*******/
.member-order-info-box {
    padding: 10px;
    border-radius: 10px;
    background-color: #F8F8F8;
    margin-top: 10px;
}

.member-order-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #DCDCDC;
}

.member-order-info li {
    padding: 0 10px;
    color: #666;
}

/*商品*/
.member-order-info li:nth-child(1) {
    width: 50%;
}

.member-order-info li.list-pro .list-name {
    color: #333;
}

.member-order-info li.list-pro .list-pptions {
    color: #999;
    font-size: 0.95rem;
}

/*單價*/
.member-order-info li:nth-child(2) {
    width: 20%;
    text-align: center;
}

.member-order-info li:nth-child(2) span {
    margin-left: 5px;
    text-decoration: line-through;
    opacity: 0.5;
}

/*數量*/
.member-order-info li:nth-child(3) {
    width: 15%;
    text-align: center;
}

/*小計*/
.member-order-info li:nth-child(4) {
    font-family: 'Oxygen', 'Noto Sans TC', 'Microsoft JhengHei', 'sans-serif';
    width: 15%;
    text-align: right;
    color: #ff1c1c;
}

/*訂單明細清單-標題*/
.member-order-info-title {
    border-bottom: 1px solid #ff8800;
    margin-bottom: 10px;
}

.member-order-info-title li {
    color: #333 !important;
    font-size: 17px !important;
}

/*費用列表*/
.member-order-info-cost {
    display: flex;
    padding: 5px 0;
    border-bottom: 1px solid #DCDCDC;
}

.member-order-info-cost li {
    padding: 0 10px;
}

.member-order-info-cost li:nth-child(1) {
    width: 50%;
}

.member-order-info-cost li:nth-child(2) {
    font-family: 'Oxygen', 'Noto Sans TC', 'Microsoft JhengHei', 'sans-serif';
    width: 50%;
    text-align: right;
    color: #ff1c1c;
}

/*訂單金額*/
.order-money {
    text-align: right;
    color: #ff1c1c;
    padding-right: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.order-money span {
    color: #333;
    padding-right: 10px;
    font-weight: 500;
}

/*******訂單明細資訊*******/

.member-order-detail {
    margin-top: 40px;
    padding-top: 0px;
}

.member-order-detail .detail-ul {
    margin-bottom: 25px;
}

.member-order-detail .detail-ul li {
    display: flex;
    flex-wrap: wrap;
    color: #777;
}

.member-order-detail .detail-ul li span:nth-child(1) {
    width: 90px;
}

.member-order-detail .detail-ul li span:nth-child(2) {
    width: calc(100% - 90px);
}

/*******訂單問與答*******/
.member-message {
    margin-top: 20px;
}

.member-message .dialogue {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
}

.member-message .dialogue .user img {
    width: 60px;
    margin-right: 20px;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.member-message .dialogue .mess {
    width: calc(100% - 80px);
    padding: 10px 0;
}

.member-message .dialogue .mess .text {
    color: #666;
}

.member-message .dialogue .mess .date {
    color: #999;
}

.member-message textarea {
    margin-top: 20px;
}

.member-message .btn,
.member-message .btn:hover {
    margin-top: 15px;
    background-color: #333;
    color: #fff;
}

/************************商品評價************************/

/*通用-標題框*/
.evaluation-titile-box {
    color: #666;
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 5px;
}

/***清單***/
.member-evaluation .member-order-list .btn,
.member-evaluation .member-order-list .btn:hover {
    border: 1px solid #666;
    color: #666;
}

/************************商品評價-內頁************************/
/*********評價框*********/
.evaluation-item {
    margin-bottom: 20px;
}

.evaluation-item .evaluation-pro {
    display: flex;
    flex-wrap: wrap;
}

.evaluation-item .evaluation-pro .pro {
    width: 150px;
    margin-right: 20px;
}

.evaluation-item .evaluation-pro .text {
    width: calc(100% - 170px)
}

.evaluation-item .evaluation-pro .text .name {
    font-size: 1.1rem;
}

.evaluation-item .evaluation-pro .text .options {
    color: #999;
}

.evaluation-item .evaluation-pro .text .star {
    color: #FEC62B;
    font-size: 1.2rem;
    margin-top: 20px;
}

.evaluation-item .evaluation-pro .text .star ion-icon,
.evaluation-item .evaluation-pro .text .star svg {
    cursor: pointer;
}

/*按鈕*/
.member-evaluation .btn-ok,
.member-evaluation .btn-ok:hover {
    background-color: #333;
    color: #fff;
}

/************************申請退/換貨************************/

/*******退換貨清單*******/
.pro-change-box {
    padding: 10px;
    border-radius: 10px;
    background-color: #F8F8F8;
    margin-top: 10px;
}

.pro-change {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #DCDCDC;
}

.pro-change li {
    padding: 0 10px;
    color: #666;
}

/*商品*/
.pro-change li:nth-child(1) {
    width: calc(100% - 400px);
}

.pro-change li.list-pro .list-name {
    color: #333;
}

.pro-change li.list-pro .list-pptions {
    color: #999;
    font-size: 0.95rem;
}

/*數量*/
.pro-change li:nth-child(2) {
    width: 200px;
    text-align: center;
}

/*退貨*/
.pro-change li:nth-child(3) {
    width: 100px;
    text-align: center;
}

.pro-change li:nth-child(3) .form-check {
    justify-content: center;
}

/*換貨*/
.pro-change li:nth-child(4) {
    width: 100px;
    text-align: center;
}

.pro-change li:nth-child(4) .form-check {
    justify-content: center;
}

/*訂單明細清單-標題*/
.pro-change-title {
    border-bottom: 1px solid #FCB242;
    margin-bottom: 30px;
}

.pro-change-title li {
    color: #333 !important;
    font-size: 17px !important;
}

/*******填寫原因*******/

.change-reason {
    margin-top: 40px;
}

/*******上傳照片*******/
.change-img {
    margin-top: 40px;
}

.change-img .img-group {
    flex-wrap: wrap;
    display: flex;
    align-items: flex-start;
}

.change-img .img-group .img-item {
    margin: 0 10px 10px 0;
    position: relative;
}

.change-img .img-group .img-item img {
    width: auto;
    height: 120px;
}

.change-img .img-group .img-item .close {
    background-color: #666;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    opacity: 1;
    cursor: pointer;
}

.change-img .btn,
.change-img .btn:hover {
    margin-top: 15px;
    border: 1px solid #666;
    color: #666;
}

/*******取貨地點*******/
.change-location {
    margin-top: 40px;
}

.change-location .select-box {
    margin-bottom: 10px;
}

.change-location .title .btn,
.change-location .title .btn:hover {
    background-color: #333;
    color: #fff;
}

.change-location .btn-extract,
.change-location .btn-extract:hover {
    background-color: #333;
    color: #fff;
    margin-top: 20px;
}

.change-location .title {
    display: flex;
    align-items: center;
}

.select-box .select-list {
    font-size: 1.1rem;
}

