/* 變數 */

:root {
    /* 主色：oneone紅 */
    --oneone-red: #d1080f;
    /* 深紅 */
    --dark-red: #b41c22;
    /* 淺紅 */
    --light-red: #e82027;
    /* 維肯灰 60% */
    --wecan-gray: #666666;
    /* 深灰 80% */
    --dark-gray: #333333;
    /* 淺灰 40% */
    --gray: #999999;
    /* 淺淺灰 15% */
    --light-gray: #dee2e6;
    --orange: #ef7d00;
    --blue: #008ecf;
}


/* 變數 */


/*var(--oneone-red)*/


/*函數*/


/* calc(730px * 0.46575)*/


/*img:hover;
transition: all .3s ease-out;
transform: scale(1.05, 1.05);*/


/*flex橫排均分*/

.flex-between {
    display: flex;
    justify-content: space-between;
}


/*flex靠左對齊*/

.flex-left {
    display: flex;
    justify-content: flex-start;
}


/*flex靠右對齊*/

.flex-right {
    display: flex;
    justify-content: flex-end;
}


/*flex靠中對齊*/

.flex-center {
    display: flex;
    justify-content: center;
}


/*flex均分對齊*/

.flex-around {
    display: flex;
    justify-content: space-around;
}


/*flex靠上對齊*/

.flex-start {
    display: flex;
    align-items: flex-start;
}


/*flex上下置中對齊*/

.flex-middle {
    display: flex;
    align-items: center;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.text-sm {
    font-size: 14px;
}

.text-xs {
    font-size: 12px;
}

.text-black {
    color: #000;
}

.text-red {
    color: var(--oneone-red);
}

.text-gray {
    color: var(--gray);
}

.text-green {
    color: #28a745;
}

.text-yellow {
    color: #fff600;
}

.bg-orange {
    background: var(--orange) !important;
}

.bg-gray {
    background: #999999b0 !important;
}

.bg-blue {
    background: var(--blue) !important;
}

.bg-red {
    background: var(--oneone-red) !important;
}

.bg-black {
    background: #000 !important;
}

.bg-gray {
    background: var(--gray) !important;
}

.bg-dark-gray {
    background: var(--dark-gray) !important;
}

.bg- .circle {
    border-radius: 1000px;
}


/*未顯示單行內容增加...*/


/*單行...*/

.reduce {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: normal;
}


/*雙行...*/

.multi-line {
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-indent: 0;
    margin: 0;
    -webkit-line-clamp: 3;
    /* height: 72px; */
    /* line-height: 24px; */
}

.display-web {
    display: block;
}

.display-mobile {
    display: none;
}

#product-name {
    font-size: 24px;
    font-weight: bolder;
    margin: 0 0 20px;
}

@media (max-width:992px) {
    .display-web {
        display: none !important;
    }
    .display-mobile {
        display: block !important;
    }
}


/*自定義樣式*/

.f10 {
    font-size: 10px
}

.f12 {
    font-size: 12px
}

.f15 {
    font-size: 15px
}

.f20 {
    font-size: 20px
}

.f24 {
    font-size: 24px;
    color: #fff;
}

.f28 {
    font-size: 28px
}

.f30 {
    font-size: 30px
}

.f10v {
    font-size: 1.0vw
}

.f32v {
    font-size: 3.2vw
}

.fl {
    float: left
}

.fr {
    float: right
}

.clear {
    clear: both
}

.w50 {
    width: 50px
}

.w70 {
    width: 70px
}

.w80 {
    width: 80px
}

.w90 {
    width: 90px
}

.w100 {
    width: 100px
}

.w120 {
    width: 120px
}

.w140 {
    width: 140px
}

.w150 {
    width: 150px
}

.w200 {
    width: 200px
}

.w220 {
    width: 220px
}

.w300 {
    width: 300px
}

.h20 {
    height: 20px;
}

.h50 {
    height: 50px;
}

.h100 {
    height: 100px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.over-flow {
    overflow: hidden;
}

.white {
    color: white
}

body {
    /* background-image: url("../images/bg1.png"); */
}

.pusher_icon {
    width: 20px;
    height: 20px;
}

a {
    color: #212529;
}

a:hover {
    color: #0d0f10;
}

.cate-nav-bg {
    background-color: #F9F7F3;
}

.title-border {
    border-left: 4px solid var(--oneone-red);
    padding-left: 10px;
}

.title-border .icon-md img,
.title-border .icon-md,
h3 .icon-md img,
h3 .icon-md {
    width: 30px;
    height: 30px;
}

.title-right-link {
    width: 50px;
    font-size: 12px;
    line-height: 20px;
    margin: 5px 0 0 0;
    display: inline-block;
    border: 0px;
    background: var(--oneone-red);
    border-radius: 100px;
    color: #fff;
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: 65px 7px;
    float: right;
    cursor: pointer;
    text-align: center;
}

.title-badge-gray {
    min-width: 70px;
    font-size: 12px;
    line-height: 20px;
    margin: 0 0 0 5px;
    display: inline-block;
    border: 0px;
    background: var(--wecan-gray);
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    text-align: center;
}

.splide__slide img {
    width: 100%;
    height: auto;
}

.content-list li {
    padding-left: 1rem;
    background-position: 0 0;
    background-size: 1.6rem 1.6rem;
    background-repeat: no-repeat;
}

.b-box-title {
    height: 4.8rem;
}

.card_mark .sellout {
    background: rgba(0, 0, 0, 0) url(../images/sellout.png) no-repeat scroll center center;
    position: absolute;
    z-index: 11;
    width: 100%;
    height: 100%;
    background-size: 90%;
    opacity: 0.9;
}

.card_mark .sellsec {
    background: rgba(0, 0, 0, 0) url(../images/sellsec.png) no-repeat scroll center center;
    position: absolute;
    z-index: 11;
    width: 100%;
    height: 100%;
    background-size: 90%;
    opacity: 0.9;
}

.card_mark .product_new {
    background: rgba(0, 0, 0, 0) url(../images/product_new.png) no-repeat scroll left top;
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: 11;
    width: 100%;
    height: 100%;
    background-size: 15%;
}

.card_mark .product_mode_1 {
    background: rgba(0, 0, 0, 0) url(../images/Label-direct.png) no-repeat scroll left top;
    position: absolute;
    left: 0px;
    top: 8px;
    z-index: 11;
    width: 100%;
    height: 100%;
    background-size: 28%;
}

#primary-slider .product_mode_1 {
    background: rgba(0, 0, 0, 0) url(../images/Label-direct.png) no-repeat scroll left top;
    position: absolute;
    left: 0px;
    top: 8px;
    z-index: 11;
    width: 100%;
    height: 100%;
    background-size: 20%;
}

.card_mark .product_mode_2 {
    background: rgba(0, 0, 0, 0) url(../images/Label-all-in.png) no-repeat scroll left top;
    position: absolute;
    left: 0px;
    top: 8px;
    z-index: 11;
    width: 100%;
    height: 100%;
    background-size: 28%;
}

#primary-slider .product_mode_2 {
    background: rgba(0, 0, 0, 0) url(../images/Label-all-in.png) no-repeat scroll left top;
    position: absolute;
    left: 0px;
    top: 8px;
    z-index: 11;
    width: 100%;
    height: 100%;
    background-size: 20%;
}

.card_mark .product_mode_3 {
    background: rgba(0, 0, 0, 0) url(../images/Label-add.png) no-repeat scroll left top;
    position: absolute;
    left: 0px;
    top: 8px;
    z-index: 11;
    width: 100%;
    height: 100%;
    background-size: 28%;
}

#primary-slider .product_mode_3 {
    background: rgba(0, 0, 0, 0) url(../images/Label-add.png) no-repeat scroll left top;
    position: absolute;
    left: 0px;
    top: 8px;
    z-index: 11;
    width: 100%;
    height: 100%;
    background-size: 20%;
}

.card_mark .product_remain {
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 11;
}

.card_mark .product_remain span {
    height: 20px;
    min-width: 20px;
    padding: 2px 4px;
    text-align: center;
}

.card_mark a {
    position: relative;
}

.dropdown-menu {
    /*background-color: #F9F7F3;
    border: none;
    */
}

.dropdown-menu>li>a {
    /*color: #fff;*/
}

.dropdown-menu a:hover {
    background-color: #ebebeb;
}

.line-through {
    text-decoration: line-through;
    text-decoration-color: red;
}

.wrapper {
    position: relative;
    /*
  display: flex;
  min-width: 50px;
  */
}

.search {
    border: 1px solid grey;
    border-radius: 5px;
    height: 25px;
    width: 100%;
    padding: 2px 1px 2px 23px;
    outline: 0;
    background-color: #f5f5f5;
}

.search-icon {
    position: absolute;
    top: 6px;
    left: 5px;
    width: 14px;
}

.rotate {
    transition: all 0.5s ease;
}

.rotate.down {
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.subcate::-webkit-scrollbar {
    display: none;
}

.subcate {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    overflow-y: scroll;
    width: 300px;
}

.navbar-brand img {
    width: 150px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .7);
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

.navbar ul.marquee {
    width: 1000px;
}

@media screen and (max-width:767px) {
    .navbar ul.marquee {
        width: 300px;
    }
}

@media screen and (min-width:768px) and (max-width:991px) {
    .navbar ul.marquee {
        width: 600px;
    }
    .nav {
        align-items: center;
    }
    .nav .nav-item {
        vertical-align: middle;
    }
}

@media (min-width:992px) and (max-width:1280px) {
    .navbar ul.marquee {
        width: 800px;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.6rem;
        padding-left: 0rem;
        font-size: 14px;
    }
    .navbar-brand img {
        max-width: 120px;
    }
}

.btn.disabled {
    color: var(--gray);
}

.btn-facebook {
    color: #fff;
    background-color: #3b5998;
    border-color: rgba(0, 0, 0, 0.2);
}

.btn-social {
    position: relative;
    padding-left: 44px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-social:hover {
    color: #eee;
}

.btn-social :first-child {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    padding: 7px;
    font-size: 1.6em;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.coin-border {
    border: 3px solid gray;
}

.btn-line-red,
.btn-line-red:hover {
    background: #fff;
    border: 1px solid var(--oneone-red);
    color: var(--oneone-red);
}

.btn-line-pay,
.btn-line-pay:hover {
    background-image: url('../images/LINE-Pay.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70%;
    height: 38px;
    border: 1px solid #5bc05c;
    color: #fff0;
}


/* max devices (landscape phones, 576px and down) */

@media screen and (max-width: 575.99px) {
    .fans-iframe {}
    .cell-btn {
        width: 100%
    }
}


/* Medium devices (tablets, 576px and 768px) */

@media screen and (min-width: 576px) and (max-width: 767.99px) {
    .fans-iframe {}
}

@media screen and (min-width: 768px) and (max-width: 991.99px) {
    .fans-iframe {}
}


/* Large devices (desktops, 992px and up) */

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .fans-iframe {}
}


/* Extra large devices (large desktops, 1200px and up) */

@media screen and (min-width: 1200px) {
    .fans-iframe {}
}

.wrapper {
    min-height: calc(100vh - 100px);
}

.nav-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    min-width: 100px;
    justify-content: space-around;
    padding-top: 15px;
}

.footer {
    width: 100%;
    background-color: #000000;
}

.footer_main_zone {
    /*background-color: #fda4ba00; */
    /*顏色區塊*/
    background: rgb(22, 43, 73);
    background: linear-gradient(90deg, rgba(22, 43, 73, 1) 0%, rgba(22, 43, 73, 1) 60%, rgba(187, 145, 74, 1) 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    height: 160px;
}

.ican_logo {
    height: auto;
    padding-top: 3px;
}

.copyright {
    height: auto;
    background-color: #25923700;
    /*顏色區塊*/
}

.copyright p {
    color: #ffffff;
}

.float_btn {
    position: fixed;
    bottom: 0;
    right: 5px;
    width: 65px;
    height: 200px;
    z-index: 999;
    display: block;
}

.navbuttons {
    display: inline-block;
    overflow: auto;
    overflow-y: hidden;
    white-space: nowrap;
    height: 30px;
}

.navbuttons li {
    display: inline-block;
    vertical-align: top;
}

.step1_memo {
    display: inline-block;
    float: none;
    font-size: 14px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f0f0f0;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #e1e1e1;
}

.table-active,
.table-active>td,
.table-active>th {
    background-color: #8d8d8d;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #fff;
}

@media (max-width:992px) {
    .subnav {
        margin: 0;
        padding: 0;
        font-size: 1.6vw;
    }
}


/*最大尺寸768*/

@media (max-width:768px) {
    .ican_logo {
        height: auto;
        padding-top: 30px;
        float: none;
        margin: 0 auto;
    }
    .copyright {
        width: 100%;
        height: auto;
        float: none;
        padding-top: 5px;
        margin: 0 auto;
    }
    .copyright p {
        text-align: center;
    }
    .float_btn {
        position: fixed;
        bottom: 0;
        right: 5px;
        width: 75px;
        height: 200px;
        z-index: 999;
        display: block;
    }
    .footer_main_zone {
        font-size: 2.5vw;
    }
    .pd-table {
        font-size: 2.7vw;
    }
    .pay-title {
        font-size: 3.2vw;
    }
    .subnav {
        margin: 0;
        padding: 0;
        font-size: 2.5vw;
        line-height: 4.4vw;
    }
}


/*最大尺寸414 iphone*/

@media (max-width:414px) {
    .navbar-brand img {
        width: 100px;
    }
    .copyright p {
        font-size: 8pt;
    }
    .resetmr:nth-child(odd) {
        padding-left: 7px;
    }
    .resetmr:nth-child(even) {
        padding-right: 7px;
    }
    .pay-title {
        font-size: 4.5vw;
    }
    .coin-tabs {
        font-size: 3.3vw;
    }
    .record-table {
        font-size: 2.5vw;
    }
    .subnav {
        margin: 0;
        padding: 0;
        font-size: 3.8vw;
        line-height: 6.4vw;
    }
}


/* 202203調整:社群按鈕移動到漢堡下拉選單內*/

.nav .btn-link,
.navbar .btn-link {
    border-radius: 100px;
    width: 30px;
    height: 30px;
    padding: 5px;
    margin: 5px 0;
    background: #fff;
    display: inline-block;
    border: none !important;
}

.nav .btn-link img,
.navbar .btn-link img {
    width: 20px;
    height: 20px;
}

@media (max-width:768px) {
    .navbar .btn-link {
        width: 40px;
        height: 40px;
        margin: 5px 10px;
    }
    .navbar .btn-link img {
        width: 24px;
        height: 24px;
    }
}

@media (min-width:992px) and (max-width:1280px) {
    .nav .btn-link,
    .navbar .btn-link {
        border-radius: 100px;
        width: 25px;
        height: 25px;
        padding: 7px 0px;
        margin: 7px 0;
        background: #fff;
        display: inline-block;
        border: none !important;
    }
}


/* 202306 navbar樣式調整*/

.subnav .nav .nav-item {
    margin: 12px 10px 0px !important;
    height: 35px;
}

@media (max-width:768px) {
    .subnav .nav .nav-item {
        margin: 0 10px 12px !important;
        height: 24px;
    }
    .subnav .collapse .nav .nav-item,
    .subnav .collapsing .nav .nav-item {
        margin: 4px 1px !important;
        height: 24px;
        min-height: 24px;
        width: 24%;
        min-width: 80px;
        text-align: center;
    }
    .subnav .collapse .nav .nav-item a,
    .subnav .collapsing .nav .nav-item a {
        display: inline-block;
        height: 24px;
        line-height: 24px;
        text-align: center;
        font-size: 12px;
        border-radius: 100px;
        width: 100%;
    }
    .subnav .collapse .nav .nav-item a:hover,
    .subnav .collapse .nav .nav-item a:active,
    .subnav .collapse .nav .nav-item a.active {
        color: #fff;
        font-weight: bold;
        text-decoration: none;
    }
    .subnav .collapse .nav,
    .subnav .collapsing .nav {
        padding: 10px 0 15px;
        border-bottom: 1px solid var(--light-gray)
    }
    .subnav .collapse .nav:last-child,
    .subnav .collapsing .nav:last-child {
        border-bottom: 0
    }
}

@media (max-width:500px) {
    .subnav .nav .nav-item {
        margin: 0 5px 15px !important;
        height: 24px;
    }
}

@media (min-width:992px) and (max-width:1280px) {
    .subnav .nav .nav-item .dropdown-menu.show .nav-item {
        margin: 0 5px 10px !important;
        height: 24px;
    }
}

.subnav .nav .nav-item a {
    margin: 0;
    padding: 0;
    line-height: 30px;
    font-size: 16px;
}

@media (max-width:768px) {
    .subnav .nav .nav-item a {
        font-size: 14px;
    }
}

.subnav .nav .nav-item.d-lg-block {
    margin: 7px 0 0 10px !important;
}

.subnav .nav .nav-item.d-xl-block {
    margin: 7px 0 0 10px !important;
}

.subnav .nav .nav-item .input-group {
    margin: 0 px !important;
}

.subnav .nav .nav-item .card {
    border: none;
}

.navbuttons {
    margin: 7px 0 5px 0;
    height: 24px;
}

#collapseCate {
    padding: 10px 0 20px;
}

#collapseCate .nav-item {
    margin: 5px 20px 5px 0 !important;
}

.nav-item.mr-1 {
    margin: 0 20px 0 0 !important;
}


/* 202203 手機板+按鈕調整*/

@media (max-width:768px) {
    .btn-plus {
        padding: 10px 0 0 0;
    }
}


/* 202203 首頁slide樣式調整*/

#carouselExampleIndicators .carousel-indicators {
    bottom: -40px;
}

#carouselExampleIndicators .carousel-item img {
    width: auto;
    height: auto;
    object-fit: cover;
}

@media (max-width:574px) {
    #carouselExampleIndicators {
        width: calc(100vw - 30px);
        height: calc((100vw - 30px) * 0.46575);
        margin: 10px auto 40px !important;
    }
    #carouselExampleIndicators .carousel-item {
        width: calc(100vw - 30px);
        height: calc((100vw - 30px) * 0.46575);
    }
    #carouselExampleIndicators .carousel-item img {
        width: calc(100vw - 30px);
        height: calc((100vw - 30px) * 0.46575);
        object-fit: cover;
    }
}

#carouselExampleIndicators .carousel-indicators li {
    background-color: #000;
    opacity: 1;
}

#carouselExampleIndicators .carousel-indicators li.active {
    background-color: var(--oneone-red);
}

@media screen and (min-width:575px) and (max-width:767px) {
    #carouselExampleIndicators {
        width: calc(100vw - 30px);
        height: calc((100vw - 30px) * 0.46575);
        margin: 10px auto 40px !important;
    }
    #carouselExampleIndicators .carousel-item {
        width: calc(100vw - 30px);
        height: calc((100vw - 30px) * 0.46575);
    }
    #carouselExampleIndicators .carousel-item img {
        width: calc(100vw - 30px);
        height: calc((100vw - 30px) * 0.46575);
        object-fit: cover;
    }
}


/* 202203 首頁右側公告Banner*/

.col-lg-4 li img {
    width: 100%;
    max-width: 330px;
    height: auto;
    margin: 10px 0 0 0;
    border-radius: 3px;
}

.col-lg-4 li:first-child img {
    margin: 0;
}


/* 202203 首頁商品內容樣式調整*/

.col-lg-3.col-md-6.col-6.mb-4.resetmr .card-body {
    padding: 15px;
}

@media (max-width: 480px) {
    .col-lg-3.col-md-6.col-6.mb-4.resetmr .card-body {
        padding: 5px;
    }
}

.col-lg-3.col-md-6.col-6.mb-4.resetmr .card-body .line-through {
    color: var(--wecan-gray);
    text-decoration-color: var(--wecan-gray);
}


/* 202203首頁新增:快捷按鈕區塊 */

.menu-hotkey {
    text-align: center;
    padding: 20px 0 0 0;
}

.menu-hotkey>div {
    text-align: center;
    display: inline-block;
    margin: 10px 5px 10px;
    width: 10%;
    vertical-align: top;
}

.menu-hotkey>div a {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    margin: 0 0 10px;
}

.menu-hotkey>div a img {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    object-fit: cover;
}

.menu-hotkey>div p {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: normal;
}

@media (max-width:767px) {
    .menu-hotkey {
        margin: 0;
        padding: 0;
    }
    .menu-hotkey>div {
        margin: 0;
        width: 20vw;
    }
    .menu-hotkey>div:nth-child(n+5) {
        display: none;
    }
    .menu-hotkey>div a {
        width: 40px;
        height: 40px;
        margin: 0 0 5px;
    }
    .menu-hotkey>div a img {
        width: 40px;
        height: 40px;
    }
}


/* 大平板 */

@media screen and (min-width:768px) and (max-width:1000px) {
    .menu-hotkey>div a {
        width: 50px;
        height: 50px;
    }
    .menu-hotkey>div a img {
        width: 50px;
        height: 50px;
    }
}


/* 202203首頁新增:暢銷排行區塊 */

.bestseller {
    position: relative;
    vertical-align: top;
    margin: 0 auto 40px;
    border-radius: 10px;
    padding: 0 4px;
}

.bestseller a {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bestseller h5 {
    font-size: 50px;
    color: #fff;
    width: 50px;
    text-align: center;
}

.bestseller img {
    width: 103px;
    height: 103px;
    object-fit: cover;
    border-radius: 10px;
}

.bestseller .card-body {
    padding: 0 20px;
    width: 220px;
}

.bestseller .card-body p {
    margin: 0;
    line-height: 24px;
    color: #fff;
    font-size: 18px;
}

.bestseller .card-body p.multi-line {
    max-height: 48px;
}

.bestseller .card-body p.reduce {
    color: #fff600;
}

.bestseller-01 {
    background: #ff0000;
}

.bestseller-02 {
    background: #ff6a00;
}

.bestseller-03 {
    background: #fea000;
}

@media (max-width:1200px) {
    .bestseller {
        padding: 0 3px;
    }

    .bestseller img {
        width: 87px;
        height: 87px;
    }
}

@media (max-width:768px) {
    .bestseller {
        padding: 10px 0;
        margin: 0 auto 10px;
    }
    .bestseller .card-body p.multi-line {
        max-height: 24px;
        -webkit-line-clamp: 1;
    }
    .bestseller h5 {
        width: 12vw;
    }
    .bestseller img {
        width: 15vw;
        height: 15vw;
    }
    .bestseller .card-body {
        padding: 0 20px;
        width: 50vw;
    }
    .bestseller-03 {
        background: #fea000;
        margin: 0 auto 25px;
    }
}


/* 202203首頁新增:新品預告區塊 */

.whatsnew {
    width: 100%;
}

.whatsnew li {
    list-style: none;
    width: 200px;
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
    height: auto;
}

.whatsnew li>div {
    padding: 1rem;
    text-align: left;
}

.whatsnew li>div p:first-child {
    margin: 0 0 5px;
}

@media (max-width:768px) {
    .whatsnew li>div {
        padding: 5px 0 0;
    }
}


/* 202203 商品列表新增影音modal */

span.multi-line {
    margin: 0 0 5px 0;
}

.btn-video {
    width: 24px;
    height: 16px;
    display: inline-block;
    padding: 0;
    margin: 5px 10px 0 0;
    vertical-align: top;
}

.btn-video img {
    vertical-align: top;
}

#videoModal .close {
    margin: -10px 0 10px 0;
}

#videoModal iframe.iframe-video {
    width: 765px;
    height: calc(765px * 0.5625);
}

.iframe-video {
    width: 765px;
    height: calc(765px * 0.5625);
}

@media (max-width:768px) {
    #videoModal iframe.iframe-video {
        width: 100vw;
        height: calc(100vw * 0.5625);
    }
    #videoModal .modal-body {
        padding: 0;
        background: transparent;
        margin: calc(50vh - (100vw * 0.5625/2)) 0 0 0;
    }
    #videoModal .modal-content {
        padding: 0;
        background: transparent;
    }
    #videoModal .modal-dialog {
        margin: 0;
    }
    #videoModal .close {
        margin: -10px 10px 10px 0;
    }
}


/* 202203公告頁調整:圖片 */

.container .d-none.d-md-block .col-4>a>div {
    background-position: center;
    background-size: contain !important;
    background-repeat: no-repeat;
}

@media (max-width:768px) {
    .container .d-md-none .row .col-12>a>div {
        width: calc(100vw - 30px) !important;
        height: calc((100vw - 30px)* 0.46575) !important;
        background-position: center;
        background-size: contain !important;
        background-repeat: no-repeat;
    }
    .container .d-md-none .row .col-12 img {
        height: auto !important;
    }
}


/* 202203 手機板footer新增logo */

.footer .footer_main_zone .container {
    margin: 10px auto 0;
}

@media (max-width:768px) {
    .footer .d-none.d-lg-block:first-child {
        display: inline-block !important;
        top: 0;
        position: static !important;
        margin: 10px auto -20px;
    }
    .footer .footer_main_zone {
        height: 150px;
    }
    .footer .footer_main_zone .container {
        text-align: center;
    }
}


/* 202203 手機板產品頁按鈕fixed */

.btn-selection {
    position: static;
}

.btn-red {
    background: var(--oneone-red);
    margin: 0 10px 10px;
    color: #fff;
}

.btn-red:hover {
    background: var(--light-red);
    color: #fff;
}

.btn-orange {
    background: #f98516;
    color: #000;
}

.btn-black {
    background: #000;
    margin: 0 10px 10px;
    color: #fff;
}

.btn-black:hover {
    background: var(--dark-gray);
    color: #fff;
}

.btn-brown,
.btn-brown:hover {
    background: #542b2c;
    color: #fff;
}

.btn-green {
    background: #000;
    margin: 0 10px 10px;
    color: #fff;
}

.btn-green:hover {
    background: var(--dark-gray);
    color: #fff;
}

.loginArea {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.btn-black:hover {
    background: var(--dark-gray);
    color: #fff;
}

.btn-green {
    background: #000;
    margin: 0 10px 10px;
    color: #fff;
}

.btn-green:hover {
    background: var(--dark-gray);
    color: #fff;
}

@media (max-width:768px) {
    .btn-selection {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        z-index: 1048;
        display: flex;
        padding: 0 !important;
        justify-content: center;
    }
    .btn-selection .btn {
        margin: 0 !important;
        width: 50vw;
        border-radius: 0;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


/* 202203 產品頁新增youtube */

.iframe-video {
    width: 765px;
    height: calc(765px * 0.5625);
}

@media (max-width:768px) {
    .iframe-video {
        width: calc(100vw - 30px);
        height: calc((100vw - 30px) * 0.5625);
    }
}


/* 202205 fix */


/* 會員中心圖片尺寸 */

.col-lg-4 li.splide__slide img {
    width: 100% !important;
    height: auto !important;
    margin: 0;
    border-radius: 0;
}


/* 202205 fix */


/* 大平板社群按鈕 */

@media screen and (min-width:768px) and (max-width:1000px) {
    .nav .col-lg-2.d-md-block {
        width: 200px !important;
        max-width: 200px !important;
        position: absolute;
        right: -20px;
    }
}


/* 202207 fix */


/* 新品預告高度 */

.lSSlideOuter .lightSlider {
    height: auto !important;
}


/* 202207 首頁新增Banner-540490: */

.row.display-web>.col-lg-12.col-md-12.col-12.mb-4.mt-4.flex-between>a>img {
    width: 540px;
}

.carouselExample54090 {
    margin: 20px auto;
    max-width: 92vw;
    width: 100%;
}

.carouselExample54090 .carousel-control-next,
.carouselExample54090 .carousel-control-prev {
    width: auto;
}

.carouselExample54090 .carousel-item {
    text-align: center;
}


/* 202207 商品頁新增公告區塊 */

.declaration {
    height: 38px;
    width: 100%;
    margin: 0 0 10px 0;
    line-height: 38px;
}

.declaration button {
    padding: .375rem 12px;
    font-size: 12px;
}

.declaration button.btn-red,
.declaration button.btn-orange {
    min-width: 100px;
}

.declaration button.btn:disabled {
    opacity: 1;
}

.declaration a {
    margin: 0;
}

.placard .placard-left {
    background: #000;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    padding: 5px 15px 5px 18px;
}

.placard .placard-right {
    background: #a0876f;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    padding: 5px 15px;
    width: 100%;
    color: #fff;
}

.placard .placard-left i {
    color: #fff
}

.placard .btn-black:hover {
    background: #000;
}

.declaration .icon-calander i {
    font-size: 16px;
}

.declaration p {
    line-height: 38px;
    margin: 0 0 0 60px !important;
    width: 360px;
    font-weight: bolder;
}

@media (max-width:540px) {
    .declaration {}
    .declaration p {
        margin: 0 0 0 7vw !important;
        width: 50vw;
        font-size: 14px;
    }
    .declaration button.btn-red {
        min-width: 100px;
        overflow: hidden;
    }
    .declaration button.btn-orange {
        min-width: 110px;
        overflow: hidden;
    }
}


/* 202207 頁碼顏色fix */

.page-item.active .page-link {
    background-color: var(--oneone-red);
    border-color: var(--oneone-red);
}

.page-link {
    color: var(--oneone-red);
}

.btn-outline-secondary:hover {
    background-color: #ced4da;
}


/* 202208 首頁modal fix */

#coverModel .modal-content,
#coverModel .close,
#coverModel span {
    background-color: transparent !important;
}


/* 202208 會員資訊頁更新，會員帳號升級流程modal */

.modal {
    padding: 0 !important;
}

.modal .close {
    position: absolute;
    width: 44px;
    height: 44px;
    right: 0;
    top: 0;
    z-index: 1024;
}

.modal .close span {
    text-shadow: none !important;
    width: 44px;
    height: 44px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    display: inline-block;
    font-size: 30px;
}

.form-group {
    text-align: left;
}

.form-group .btn-check {
    display: none;
}

.form-group .btn-check+label {
    min-width: 60px;
    background: var(--gray);
    color: #fff;
    margin-right: 5px;
}

.form-group .btn-check:checked+label {
    background: #000;
}


/*
.form-group .btn-check:checked+label::before {
    transition: all .5s ease-out;
    content: "✓";

    color: #fff;

    width: 20px;
    height: 20px;
    margin: 0 5px 0 0;
    line-height: 20px;
    font-size: 10px;

}*/

.form-group .custom-select {
    margin-right: 10px;
}

.form-group .custom-select:last-child {
    margin-right: 0px;
}

.form-group .flex-between {
    width: 100%;
}

.form-group .flex-between .btn {
    width: 160px;
    margin: 0;
    padding: 0.375rem 0;
}

.form-group .flex-between .btn img {
    vertical-align: top;
    width: 60px;
    height: auto;
    margin: 0 5px 0 0;
}

.form-group .flex-between .form-control {
    width: calc(100% - 170px);
}

.alt-line {
    margin: 30px 0;
    position: relative;
    text-align: center;
    height: 24px;
}

.alt-line p {
    color: var(--gray);
    z-index: 10;
    background: #fff;
    display: inline-block;
    margin: 0;
    position: absolute;
    width: 150px;
    left: calc(50% - 150px / 2);
}

.modal .alt-line p {
    width: 240px;
    left: calc(50% - 240px / 2);
}

.alt-line::before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: rgba(0, 0, 0, .1);
    padding: 0;
    position: absolute;
    top: 50%;
}

.modal-title {
    background: var(--oneone-red);
    margin: -1rem -1rem 1rem -1rem !important;
    padding: 10px;
    text-align: center;
}

.modal-title h5 {
    margin: 0 auto;
    color: #fff;
}

.modal .form-check-input {
    margin-top: 0;
}


/* 進度條 */

.step-progress li {
    list-style-type: none;
    width: 40px;
    text-align: center;
    font-size: 14px;
    color: var(--light-gray);
    position: relative;
    margin: 0 25px;
}

.step-progress li.active {
    color: var(--oneone-red);
}

.step-progress li::before {
    font-size: 26px;
    display: block;
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    text-align: center;
    border-radius: 100px;
    color: #fff;
    margin: 0 auto 5px;
    font-weight: bolder;
}

.step-progress li.active::before {
    background: var(--oneone-red);
}

.step-progress li.step1::before {
    content: "1";
}

.step-progress li.step2::before {
    content: "2";
}

.step-progress li.step3::before {
    content: "3";
}

.step-progress li::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 1px;
    background: var(--light-gray);
    top: 19px;
    left: -50px;
}

.step-progress li:first-child::after {
    content: none;
}

.step-progress li.active+li::after {
    background: var(--oneone-red);
}


/* 付款頁面樣式調整 */

.form-row {
    margin-bottom: 1rem;
}

.form-row>.col {
    padding: 0 10px 0 0;
}

.form-row>.col:last-child {
    padding: 0;
}

.form-row.address-zone {
    margin: 0;
}

.form-row.address-zone select {
    width: 100%;
}

.form-row.address-zone .col-4 {
    padding: 0 10px 0 0px;
}

.form-row.address-zone .col-4:last-child {
    padding: 0;
}

.form-row.address-zone .col {
    padding: 0 1px 0 0;
}


/* 我的特權(訂閱) */

.accordion-subscribe>div {
    border-bottom: 1px solid var(--light-gray);
}

.accordion-subscribe>div:last-child {
    border-bottom: 0;
}

.accordion-subscribe .card-header {
    background: none;
}

.accordion-subscribe .card-header {
    border-bottom: 0;
}

.accordion-subscribe .card-link {
    position: relative;
}


/* 展開狀態(箭頭往上) */

.accordion-subscribe .card-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 30%;
    border: solid #000;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}


/* 收起狀態(箭頭往下) */

.accordion-subscribe .card-link.collapsed::after {
    top: 15%;
    transform: rotate(45deg);
}

.tag {
    background: #000;
    margin: 0 5px 10px 0;
    color: #fff;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    user-select: none;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    font-weight: 400;
    position: relative;
    min-width: 60px;
    border-radius: 500px;
}

.tag .btn-remove {
    transition: all .2s ease-out;
    margin: 0 0 0 10px;
    opacity: 0.5;
}

.tag .btn-remove:hover {
    opacity: 1;
}

.tag .btn-remove img {
    vertical-align: top;
    width: 20px;
    height: 20px;
}


/* 我的特權-訂閱商品 */

.subscribe-product {
    border: 1px solid rgba(0, 0, 0, .125);
    padding: 0;
    margin: 0 0 15px;
}

@media (max-width:414px) {
    .subscribe-product p {
        margin: 15px 15px 15px 0;
    }
    .subscribe-product img {
        margin: 15px 0 15px 15px;
    }
}

@media (max-width:992px) {
    .subscribe-product p {
        margin: 15px 15px 15px 0;
    }
    .subscribe-product img {
        margin: 15px 0 15px 15px;
    }
}


/* modal-訂閱條件設定 */

#setup-products-modal .input-group,
#subscribe-products-modal .input-group {
    max-width: 160px;
}

#setup-products-modal .input-group-prepend,
#subscribe-products-modal .input-group-prepend,
#setup-products-modal .input-group-prepend .btn,
#subscribe-products-modal .input-group-prepend .btn {
    border-radius: 0;
    width: 38px;
    height: 38px;
}

#setup-products-modal .input-group-prepend .btn,
#subscribe-products-modal .input-group-prepend .btn {
    border: 1px solid var(--wecan-gray);
}

#setup-products-modal .input-group-prepend .btn:hover,
#subscribe-products-modal .input-group-prepend .btn:hover {
    background: var(--wecan-gray);
}

#setup-products-modal .alt-line p,
#subscribe-products-modal .alt-line p {
    width: 50px;
    left: calc(50% - 50px / 2);
}

.sub-content {
    background: var(--light-gray);
    padding: 20px 10px;
    border-radius: 5px;
    margin: 20px auto;
}

.sub-content .form-group div:first-child {
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.sub-content .form-group {
    margin-top: 1rem;
    margin-bottom: 0;
}

.btn-icon,
.btn-icon img {
    width: 38px;
    height: 38px;
    max-width: 38px;
    opacity: 1;
    transition: all .3s ease-out;
}

.btn-icon:hover img {
    opacity: 0.5;
}

@media (max-width:414px) {
    #setup-products-modal .modal-body,
    #subscribe-products-modal .modal-body {
        padding: 0
    }
}


/* 會員註冊流程-另開頁面 */

.card-process {
    width: 460px;
    max-width: 100%;
    margin: 30px auto;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
    padding: 15px;
}

.card-process .alt-line {
    margin: 20px 0 10px;
}

.card-process .alt-line p {
    width: 200px;
    left: calc(50% - 200px / 2);
}

.alt-line p.w-sm {
    width: 40px;
    left: calc(50% - 40px / 2);
}

@media (max-width:414px) {
    .card-process .modal-body {
        padding: 1rem 0;
    }
}

a.btn-subscribe img {
    transition: all .3s ease-out;
}

a.btn-subscribe img:hover {
    transform: scale(1.05, 1.05);
}


/* 訂閱:方案選擇 */

.option {
    background: #f8f8f8;
    height: 100%;
}

.option .card-header,
.option .modal-title {
    padding: 15px 0 5px;
}

.option .card-header p {
    margin: 0;
}

.option .modal-title p {
    margin: 5px 0;
}

.option .card-header .text-yellow {
    font-size: 24px;
    font-weight: bolder;
}

.option .card-body {
    min-height: auto;
}

.option .card-body p {
    margin: 0 0 10px 0;
}

.option .card-body p img {
    width: 25px;
    height: auto;
    margin: 0 10px 0 0;
}

.option-lite .card-header,
.option-lite .modal-title {
    background: var(--wecan-gray);
}

.option-normal .card-header,
.option-normal .modal-title {
    background: var(--oneone-red);
}

.option-plus .card-header,
.option-plus .modal-title {
    background: #000;
}

@media (min-width: 992px) {
    .option .card-body {
        min-height: 220px;
    }
}


/* 固定式秒數倒數UI顯示 */

.countdown-fixed {
    background: var(--oneone-red);
    position: fixed;
    bottom: 0;
    right: 0px;
    z-index: 1048;
    width: 100%;
    padding: 10px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.countdown-fixed>div {
    width: 100%;
}

.countdown-fixed img {
    width: 36px;
    height: 36px;
    margin: 0 5px 0 0;
}

.countdown-fixed p {
    font-size: 18px;
    color: #fff;
    margin: 0;
    line-height: 18px;
}

.countdown-fixed span {
    font-size: 13px;
}


/* 一番賞獎勵表UI優化 */

.table-gifts {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.table-gifts th,
.table-gifts td {
    text-align: center;
}

.table-gifts th,
.table-gifts td:first-child {
    text-align: left;
    padding-left: 30px;
    border: none;
}

.table-gifts td {
    border: none;
}

.table-gifts tr {
    /* border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6; */
    border: none;
}

.table-gifts tr:last-child td {
    border: none;
}

.table-gifts tr:nth-child(odd) {
    background: #f2f2f1;
}

.table-gifts tr:nth-child(even) {
    background: #fbfbfb;
}

.table-gifts tr:first-child {
    /* border-left: 1px solid var(--oneone-red);
    border-right: 1px solid var(--oneone-red); */
    background: var(--oneone-red);
    color: #fff;
}

.table-gifts tr:last-child {
    background: #fbe3e8;
    border: 0;
}

.table-gifts tr:last-child td:last-child {
    border-bottom-right-radius: 20px;
    font-weight: bold;
}

.table-gifts tr:last-child td:first-child {
    border-bottom-left-radius: 20px;
    font-weight: bold;
}

.table-gifts .soldout,
.table-gifts .soldout td {
    color: #bcbcbc;
    text-decoration: line-through;
}


/* 抽取商品頁倒數樣式手機版破版fix */


/*
@media (max-width: 480px) {
    .product_draw_info>.flex-center.flex-middle:first-child {
        display: inline-block;
    }
}
*/


/* 購物車手機版樣式fix */

.cart-items {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

@media (max-width: 480px) {
    .cart-items {
        display: inline-block;
    }
}


/* 202306 navbar分類列調整*/

.subnav .nav .nav-item.dropdown {
    padding: 3px 15px 0 !important;
    border-radius: 200px;
    border: 1px solid #ced4da;
    height: 38px;
    margin: 7px 10px 7px 5px !important;
}

.dropdown-toggle::after {
    color: #dc3545 !important;
    border-top: 0.4em solid;
    border-right: 0.4em solid transparent;
    border-bottom: 0;
    border-left: 0.4em solid transparent;
    margin: 4px 0px 0 8px;
}

.subnav .dropdown-menu {
    top: 12px !important;
    left: -18px !important;
    border: none;
    box-shadow: 10px 10px 60px -5px rgba(0, 0, 0, 0.2);
}

.subnav .dropdown-menu .nav {
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
    border-bottom: 1px solid var(--light-gray)
}

.subnav .dropdown-menu .nav:last-child {
    border-bottom: 0;
    padding: 0;
    margin: 0;
}

.subnav .dropdown-menu .nav .nav-item {
    margin: 5px !important;
    height: 30px;
    min-height: 30px;
    min-width: 85px;
}

@media screen and (min-width:1001px) and (max-width:1199px) {
    .subnav .dropdown-menu {
        /* top: 140px !important; */
    }
}

@media screen and (min-width:768px) and (max-width:1000px) {
    .subnav .dropdown-menu {
        /* top: 140px !important; */
    }
    .subnav .dropdown-menu .nav .nav-item {
        /* width: 23%; */
    }
}

.subnav .dropdown-menu .card-body {
    padding: 10px 20px;
}

.menu-yellow a {
    background: #ffeebc;
}

.menu-yellow a:hover,
.menu-yellow a:active,
.menu-yellow a.active {
    background: #ffa800;
    color: #fff;
}

.menu-orange a {
    background: #fde3d5;
}

.menu-orange a:hover,
.menu-orange a:active,
.menu-orange a.active {
    background: #ff7a19;
}

.menu-pink a {
    background: #fbe0e9;
}

.menu-pink a:hover,
.menu-pink a:active,
.menu-pink a.active {
    background: #ff588f;
}

.menu-gray a {
    background: #e5e5e5;
}

.menu-gray a:hover,
.menu-gray a:active,
.menu-gray a.active {
    background: #7f7f7f;
}

.subnav .dropdown-menu .nav .nav-item a {
    text-align: center;
    font-size: 14px;
    padding: 0 10px;
    border-radius: 200px;
    color: #000;
}

.subnav .dropdown-menu .nav .nav-item a:hover,
.subnav .dropdown-menu .nav .nav-item a:active,
.subnav .dropdown-menu .nav .nav-item a.active {
    color: #fff;
    font-weight: bold;
}


/* 202212switch開關*/

.switch {
    position: relative;
    width: 60px;
    height: 30px;
    line-height: 30px;
}

.switch-checkbox {
    position: absolute;
    display: none;
}

.switch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
    width: 70px;
}

.switch-txt {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.switch-txt::before,
.switch-txt::after {
    display: block;
    float: right;
    width: 50%;
    font-size: 16px;
    color: #fff;
    box-sizing: border-box;
}


/*==開關鈕底色(開啟時)==*/

.switch-txt::after {
    content: attr(turnOn);
    padding-left: 10px;
    background: #e57c00;
    color: #fff;
}


/*開關鈕底色(關閉時)*/

.switch-txt::before {
    content: attr(turnOff);
    padding-right: 10px;
    background: #a5a5a5;
    color: #fff;
    text-align: right;
}


/*==開關鈕的顏色與大小==*/

.switch-Round-btn {
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    margin: 3px;
    background: #fff;
    top: 0;
    bottom: 0;
    right: 30px;
    border-radius: 13px;
    transition: all 0.3s ease-in 0s;
}

.switch-checkbox:checked+.switch-label .switch-txt {
    margin-left: 0;
}

.switch-checkbox:checked+.switch-label .switch-Round-btn {
    right: -10px;
}

.nav-item {
    min-height: 40px;
}

.nav-item.flex-middle.mr-2 img {
    margin: 0 10px
}

@media (max-width: 820px) {
    .nav-item {
        min-height: 0px;
    }
    .nav-item.flex-middle.mr-2 {
        margin-top: 10px
    }
    .nav-item.flex-middle.mr-2 img {
        margin: 0 0 5px 0
    }
}


/* 待出貨商品樣式調整 */

@media (max-width: 480px) {
    .table td,
    .table th {
        padding: 0.5rem;
        font-size: 14px;
    }
}

#marque-notify-box {
    height: 34px;
    overflow: hidden;
}

.marque-notify-content {
    /* padding: 2px 0px; */
    height: 34px;
    max-height: 34px;
    overflow: hidden;
    line-height: 28px;
}

.marque-notify-content>a {
    color: white;
    max-height: 34px;
    overflow: hidden;
}


/* 357抽折扣 */

.discount {
    font-size: 14px;
    display: flex;
    justify-content: flex-end;
    margin: 0;
}

.discount li {
    border: 1px solid var(--wecan-gray);
    color: var(--wecan-gray);
    list-style: none;
    padding: 0 5px 0 0;
    margin: 0 0 0 5px;
}

.discount li:first-child {
    margin: 0;
}

.discount li span:first-child::before {
    content: "‧";
    margin: 0 5px;
}

.discount-product {
    margin: 10px 0 0 0;
}

.discount-product .badge {
    padding: 3px 10px 0;
}

@media (max-width: 480px) {
    .discount {
        justify-content: flex-start;
    }
    .discount-product {
        margin: 10px 0 0;
    }
}

.badge {
    background: var(--oneone-red);
    color: #fff;
    line-height: 16px;
    display: inline-block;
    height: 23px;
    min-width: 23px;
    vertical-align: top;
}

.badge-seller {
    margin: 0;
}

@media (max-width: 480px) {
    .badge-seller {
        margin: 0 0 5px;
    }
    .card .badge {
        font-size: 10px
    }
}

.modal li {
    text-align: left;
}

.modal li li {
    margin-left: 24px;
}

.modal ol>li {
    margin-bottom: 10px
}

.icon-sm {
    width: 16px;
    height: 16px;
    margin: 0 0 0 3px;
}

.icon-sm img {
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    /* vertical-align: top; */
}

.icon-md {
    width: 19px;
    height: 19px;
    margin: 0 0 0 5px;
}

.icon-md img {
    width: 22px;
    height: 22px;
    /* vertical-align: top; */
}


/* 商品篩選及排序 */

.list-arrange {
    display: flex;
    justify-content: space-between;
    margin: 0 0 20px;
}

.list-arrange .btn {
    margin: 0 0 0 20px;
    min-width: 120px;
}

.card .discount .icon-md img {
    width: 25px;
    height: 25px;
}

@media (max-width: 480px) {
    .card .badge.circle {
        width: 20px;
        height: 20px;
        min-width: 20px;
        line-height: 20px;
        padding: 0;
        text-align: center
    }
    .card .discount .icon-md img {
        width: 20px;
        height: 20px;
    }
}

.dropdown-member .btn-none::after {
    color: #fff !important;
    margin: 10px 0px 0 4px;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-member .btn-none {
    padding: 7px 5px;
}

.dropdown-member .dropdown-menu {
    border: none;
    box-shadow: 10px 10px 60px -5px rgba(0, 0, 0, 0.2);
    right: 0;
    left: auto;
    top: 45px;
    padding: 12px;
}


/* 表格樣式 */

.table {
    margin: 0 auto;
}

.table>div {
    width: 100%;
    font-size: 14px;
    padding: 10px 0;
}

.table .row {
    --bs-gutter-x: 0;
    margin: 0;
}

.table a {
    color: #007bff;
    text-decoration: underline;
}

.table,
.table div {
    border: none;
}


/*第一欄第一列：左上*/

.table>div:first-child,
tr:first-child th:first-child {
    border-top-left-radius: 5px;
}


/*第一欄最後列：左下*/

.table>div:last-child,
tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
}


/*最後欄第一列：右上*/

.table>div:first-child,
tr:first-child th:last-child {
    border-top-right-radius: 5px;
}


/*最後欄第一列：右下*/

.table>div:last-child,
tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
}


/*欄位顏色*/

.table>div:nth-child(odd) {
    background: #e1e1e1;
}

.table>div:nth-child(even) {
    background: #f0f0f0;
}

.table>div.title {
    background: #4c4c4c;
    color: #fff;
    font-weight: bold;
    padding: 10px 0;
}

.modal .table-product img {
    width: 50px;
    height: auto;
    margin: 0 5px 5px 0;
}

.modal .table-product img:last-child {
    margin: 0 0 5px 0;
}

.table-product img {
    width: 58px;
    height: auto;
    margin: 5px 6px 10px 0;
}

.table-product img:last-child {
    margin: 5px 0 10px 0;
}

.table-product .col-2 {
    padding: 0;
}

.table-product .border-bottom {
    border-bottom: 1px solid #fff !important;
}

.table-product a {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.modal-backdrop {
    z-index: 1049;
}

.text-muted {
    font-size: 14px;
}

.tab-content .card {
    padding: 10px 15px;
    font-size: 14px;
    margin: 0 auto 20px
}

h4 {
    font-size: 24px;
    font-weight: bolder;
    margin: 0 0 20px;
}

h4.title-border {
    margin: 0;
}

@media screen and (max-width:767px) {
    .nav-profile .nav-link {
        font-size: 14px;
        padding: 0.5rem;
    }
}

.splide__slide,
.fancybox-content {
    position: relative;
}

.product-img,
.product-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.product-img .pruduct-text {
    width: 80%;
    height: 20%;
    position: absolute;
    bottom: 0;
    right: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img .pruduct-text span {
    font-weight: bold;
    z-index: 11;
    white-space: nowrap;
}

.pruduct-text .text-lg {
    font-size: 52px;
}

.pruduct-text .text-sm {
    font-size: 8px;
}

@media screen and (max-width:500px) {
    .pruduct-text .text-lg {
        font-size: 42px;
    }
    .pruduct-text .text-sm {
        font-size: 6px;
    }
}


/*202308 倒數*/

.count-down-block {
    font-size: 13px;
    margin: 0 auto 10px;
    max-width: 315px;
}

.count-down-block .count-down {
    color: #fff !important;
}

.count-down-block div {
    width: 100%;
}

.count-down-block .bg-red {
    padding: 6px 10px;
    color: #fff;
}

.count-down-block .bg-black {
    text-align: center;
    padding: 5px 10px;
    color: #fff;
}

.count-down-block .product_draw_info div:first-child {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.count-down-block .product_draw_info div:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.w-30 {
    width: 30% !important;
}

.badge-group {
    display: inline-block;
    font-size: 10px;
}

.count-down-block .badge-group .bg-black,
.count-down-block .badge-group .bg-gray {
    padding: 0 3px;
    margin: 0;
    color: #fff;
    display: inline-block;
}

.badge-group {
    width: auto !important;
}

.badge-group span:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.badge-group span:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}


/*202308 排隊提醒modal*/

.modal-red .close {
    top: -40px;
}

.modal-red .close span {
    color: #fff;
}

.modal-red .modal-content {
    background-color: var(--oneone-red);
    padding: 0;
    width: 357px;
    color: #fff;
    margin: auto auto;
}

.w-60 {
    width: 60% !important;
}

.modal-red .btn-black {
    padding: 0.25rem 1rem;
}

.table .btn-sm {
    margin: -5px 0;
}

.table .col-2 {
    /*padding: 0;*/
}

.table .row div {
    line-height: 18px;
}

.text-money {
    color: #ffc107 !important;
    font-weight: 700 !important;
    margin-left: 5px;
}

.btngroup-cart {
    float: right;
}

.btngroup-cart .btn:last-child {
    margin-right: 0;
}

@media screen and (max-width:819px) {
    .btngroup-cart {
        float: left;
        margin: 15px 0 0 0;
    }
}


/*202403 商城推薦 樣式調整*/

.bg-recommend .title-border {
    border-left: 4px solid #fff;
    color: #fff;
}

.recommend li {
    border-radius: 5px;
    border: 1px solid #fff;
    background: #fff;
}

.recommend li img {
    border-radius: 5px;
}

.recommend li p,
.recommend li p a {
    text-align: left;
    font-size: 14px;
}

.bg-recommend .lSSlideOuter .lSPager.lSpg>li.active a {
    background-color: #fff;
}

@media screen and (max-width:767px) {
    .bg-recommend {
        margin: 0 0 30px
    }
}

.ads-container {
    max-width: 100%;
    max-height: 200px;
    overflow: hidden;
}

.adsbygoogle {
    width: 100% !important;
    height: 100% !important;
    min-width: 150px;

}
