/* 購物車 */

a {
    text-decoration: none;
}

.cartWrap {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.7s ease;
}

.cartWrap.none {
    opacity: 1;
    pointer-events: initial;
    transition: 0.7s ease;
    /* z-index: 1002; */
    background-color: rgba(0, 0, 0, 0.8);
}

.cartBlk.none {
    transform: translateX(0) !important;
}

.cartBlk,
.collectionBlk {
    position: fixed;
    z-index: 1003;
    top: 0;
    right: 0;
    padding: 100px 0 40px 65px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    background-color: #fbfbfb;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    transition: all 0.7s ease;
    width: 520px;
    height: 100vh;
}

.cartBlk.active,
.collectionBlk.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.cartBlk_wrap,
.collectionBlk_wrap {
    position: relative;
    height: 100%;
    padding-top: 115px;
}

.cart_close,
.collection_close {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    cursor: pointer;
}

.cart_close span,
.collection_close span {
    display: inline-block;
    overflow: hidden;
    width: 50px;
    margin-right: 15px;
    margin-left: 15px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    text-align: center;
    background-color: #72795F;
    color: #fff;
    padding: 5px 0;
}

.cartStatus,
.collectionStatus {
    position: absolute;
    top: 0;
    right: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.cartStatus .collection,
.collectionStatus .collection {
    width: 30px;
    height: 25px;
}

.spinnerBox {
    width: 82px;
    border: 1px solid #d8d8d8;
}

.cartBlk .ui-widget {
    position: relative;
    display: block;
    height: 30px;
    text-align: center;
    border: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.cartBlk .ui-button-text-only .ui-button-text {
    padding: 0;
}

.cartBlk .ui-spinner a.ui-spinner-down {
    position: absolute;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 27px;
    height: 30px;
    cursor: pointer;
    border-right: 1px solid #d8d8d8;
    background-color: transparent;
}

.cartBlk .ui-spinner a.ui-spinner-down:after {
    display: block;
    content: '-';
    color: #080808;
}

.cartBlk .ui-spinner a.ui-spinner-down.disable:after {
    color: #d8d8d8;
}

.cartBlk .ui-spinner a.ui-spinner-up {
    position: absolute;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 27px;
    height: 30px;
    cursor: pointer;
    border-left: 1px solid #d8d8d8;
}

.cartBlk .ui-spinner a.ui-spinner-up:after {
    position: relative;
    top: 1px;
    display: block;
    content: '+';
    color: #080808;
}

.cartBlk .ui-spinner a.ui-spinner-up.disable:after {
    color: #d8d8d8;
}

.cartBlk input {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    text-align: center;
    letter-spacing: 0.05em;
    color: #2e2e2e;
    border: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
}

.cartBlk .ui-state-default .ui-icon {
    background-size: 0;
}

.cartList_wrap,
.collectionList_wrap {
    position: relative;
    overflow: auto;
    width: calc(100% - 30px);
    max-height: calc(100% - 235px);
    margin-bottom: 30px;
    padding-right: 35px;
}

.cartList_wrap .spinnerBox {
    position: absolute;
    right: 0px;
    bottom: 20px;
}

.cart_item,
.collection_item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dadada;
}

.cart_item img {
    width: 100%;
}

.cart_item.disable .item_buy,
.collection_item.disable .item_buy {
    opacity: 0.1;
    background-color: transparent;
}

.cart_item:last-child,
.collection_item:last-child {
    margin: 0;
}

.cart_item .item_img,
.collection_item .item_img {
    display: block;
    min-width: 88px;
    margin-right: 37px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 88px;
    height: 88px;
}

.cart_item .item_title,
.collection_item .item_title {
    width: 85%;
    display: block;
    color: #272727;
    font-size: 17px;
    line-height: 1.7em;
    margin-bottom: 6px;
}

.cart_item .item_title small,
.collection_item .item_title small {
    color: #808080;
    font-size: 12px;
    line-height: 19px;
    display: block;
}

.cart_item .item_info,
.collection_item .item_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cart_item .item_price,
.collection_item .item_price {
    letter-spacing: 0.05em;
    color: #808080;
    font-family: Microsoft JenHei;
    font-size: 13px;
    line-height: 1em;
}

.cart_item .item_fixPrice,
.collection_item .item_fixPrice {
    margin-bottom: 10px;
}

.cart_item .item_sellPrice,
.collection_item .item_sellPrice {
    position: relative;
    display: inline-block;
}

.cart_item .item_sellPrice:after,
.collection_item .item_sellPrice:after {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    content: '';
    background-color: #808080;
    width: 100%;
    height: 1px;
}

.cart_item .item_del,
.collection_item .item_del {
    position: absolute;
    top: 0;
    right: 0;
    padding-left: 12px;
    cursor: pointer;
    border-left: 1px solid #808080;
}

.cart_item .item_buy,
.collection_item .item_buy {
    position: absolute;
    right: 0;
    bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #1d1d1d;
    border-radius: 3px;
    background-color: #fbfbfb;
    -webkit-box-shadow: 5px 5px 20px #eee;
    box-shadow: 5px 5px 20px #eee;
    font-size: 17px;
    width: 62px;
    height: 33px;
}

.cartInfo {
    position: relative;
    width: calc(100% - 30px);
    margin-top: 50px;
    margin-bottom: 45px;
    padding-right: 35px;
    letter-spacing: 0.05em;
    font-size: 17px;
}

.cartInfo .cartTotal {
    color: #808080;
    font-size: 16px;
}

.cartInfo .cartTotalPrice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cartInfo .cartMoney {
    font-family: Arial;
    font-size: 24px;
}

.shopBtn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: 0.4em;
    color: #fff;
    background-color: #72795F;
    font-size: 17px;
    width: calc(100% - 65px);
    height: 65px;
}

.add_num {
    position: absolute;
    width: 82px;
    height: 28px;
    display: flex;
    border: 1px solid #dbdbdb;
    bottom: 20px;
    right: 0;
}

.add_num .btn {
    position: relative;
    width: 33%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.add_num .down {
    border-right: 1px solid #dbdbdb;
    background-image: url(../images/shop/num_nus.png);
}

.add_num .up {
    background-image: url(../images/shop/num_plus.png);
    border-left: 1px solid #dbdbdb;
}

.add_num .num_input {
    position: relative;
    width: 34%;
    text-align: center;
    border: 0;
    font-size: 12px;
    outline: 0;
    padding: 0;
}


/* // */


/* 會員登入 */

.alertBox {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    z-index: 1002;
    transition: 0.5s ease;
}

.alertBox.show {
    opacity: 1;
    pointer-events: initial;
    transition: 0.5s ease;
}

.jump_box_style {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 850px;
    /* height: 350px; */
}

.jump_box_style input,
.jump_box_style textarea {
    border: 1px solid #f1f1f1;
}

.jump_box_style input:focus,
.jump_box_style textarea:focus {
    transition: all 0.2s ease;
}

.jump_box_style .box {
    position: relative;
    width: 100%;
    padding: 90px 30px 50px;
    border: 2px solid black;
    border-radius: 5px;
    background-color: white;
}

.jump_box_style .box .title {
    position: relative;
    font-size: 20px;
    border-bottom: 1px solid black;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.jump_box_style .box .ajax-form {
    display: flex;
    flex-wrap: wrap;
}

.jump_box_style .box .block {
    position: relative;
    font-size: 13px;
    width: 50%;
    float: left;
}

.jump_box_style .box .block .line {
    position: relative;
    display: flex;
    line-height: 38px;
    margin-bottom: 11px;
    outline: 0;
}

.jump_box_style .box .block .line label {
    position: relative;
    width: 86px;
    font-size: 16px;
}

.jump_box_style .box .block .line .inpubox {
    position: relative;
    width: 82%;
    border: 1px solid gainsboro;
    padding: 10px;
}

.jump_box_style .box .block .line textarea {
    position: relative;
    border: 1px solid gainsboro;
    overflow-x: visible;
    overflow-y: visible;
    width: 100%;
    height: 85px;
    resize: none;
}

.jump_box_style .box .block .line:last-child {
    margin-bottom: 0;
}

.jump_box_style .box .block .line.memo_line {
    height: auto;
}

.jump_box_style .box .block .button_box {
    position: relative;
    padding-left: 61px;
    float: right;
    width: 100%;
}

.jump_box_style .box .block .button_box input {
    background-color: #1d1d1d;
    color: white;
    position: relative;
    right: 0;
    height: 38px;
    line-height: 36px;
    width: 125px;
    font-size: 13px;
    float: left;
    border: 0;
    border-radius: 4px;
    margin-left: 6px;
    outline: 0;
    cursor: pointer;
}

.jump_box_style .box .block .button_box .reset {
    background-color: #606060;
}

.jump_box_style .box .block:last-child {
    padding-left: 50px;
}

.jump_box_style .box::after {
    content: '';
    display: block;
    clear: both;
}

.alertBox .box {
    max-height: 500px;
    overflow-y: scroll;
    padding: 90px 90px 50px;
}

.closeBlk {
    position: fixed;
    z-index: 100;
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ededed;
    right: 10px;
    top: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.closeBlk:hover {
    background-color: gray;
    color: #fff;
}

.member_box {
    width: 100%;
    position: fixed;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease;
}

.member_box.show {
    opacity: 1;
    pointer-events: initial;
}

.featherlight-inner {
    display: block !important;
}

.featherlight .featherlight-content {
    padding: 0;
    background-color: transparent;
}

.featherlight-close-icon {
    position: absolute;
    background-color: #ededed;
    width: 52px;
    height: 52px;
    right: 30px;
    top: 10px;
    border-radius: 2px;
    font-size: 30px;
    color: #bdbdbd;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
    border: none;
    padding: 0;
}

.jump_box_style .box .block .button_box input:hover {
    background-color: black;
}


/*login_from*/

.login_container {
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.8);
    height: 100vh;
    position: fixed;
    z-index: 2000;
}

.login_Bigbox {
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1002;
    width: 100%;
    transition: 0.5s;
    opacity: 0;
    pointer-events: none;
}

.login_Bigbox.show {
    opacity: 1;
    pointer-events: initial;
}

#login_from {
    position: relative;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 1;
}

#login_from.show {
    opacity: 1;
    pointer-events: initial;
}

#login_from .box {
    padding: 90px 77px 50px;
}

#login_from .box .block {
    position: relative;
}

#login_from .box .block:first-child {
    padding-right: 50px;
    border-right: 1px solid #e4e4e4;
}

#login_from .box .block .forgot_link {
    position: relative;
    color: #727272;
    margin-top: 15px;
    display: inline-block;
}

#login_from .box .block .forgot_link:before {
    content: '';
    background-color: gray;
    width: 0%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -5px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#login_from .box .block .title {
    font-weight: bold;
    font-size: 18px;
    border-bottom: 0;
}

#login_from .box .block .line {
    position: relative;
    display: block;
    height: auto;
    margin-bottom: 20px;
}

#login_from .box .block .line .inputbox {
    background-color: #fff;
    border: 1px solid gainsboro;
    box-shadow: none;
    height: 30px;
    border-radius: 0px;
    -webkit-text-fill-color: #000;
    padding: 20px;
    width: 100%;
    margin-bottom: 10px;
}

#login_from .box .block .line .inpubox {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}

#login_from .box .block .button_box {
    position: relative;
    padding-left: 0;
    display: flex;
    justify-content: flex-start;
}

#login_from .box .block .button_box a:nth-child(2) {
    width: 45px;
    height: 45px;
    margin-left: 15px;
}

#login_from .box .block .button_box a:nth-child(2) .fab {
    font-size: 45px;
    color: #0e8ef2;
    font-family: "Font Awesome 5 Brands" !important;
    font-style: normal !important;
}

#login_from .box .block .button_box a:nth-child(3) {
    width: 45px;
    height: 45px;
    margin-left: 10px;
}

#login_from .box .block .button_box a:nth-child(3) .fab {
    font-size: 45px;
    color: #EB4537;
    font-family: "Font Awesome 5 Brands" !important;
    font-style: normal !important;
}

#login_from .box .block .button_box a:nth-child(4) {
    width: 45px;
    height: 45px;
    margin-left: 10px;
}

#login_from .box .block .button_box a:nth-child(4) .fab {
    font-size: 45px;
    color: #00c300;
    font-family: "Font Awesome 5 Brands" !important;
    font-style: normal !important;
}

#login_from .box .block .regis {
    bottom: -90px;
}

#login_from .box .block .button_box .link_button {
    text-align: center;
    font-size: 14px;
    display: block;
    color: white;
    border-radius: 3px;
    height: 45px;
    line-height: 42px;
    cursor: pointer;
    background-color: #1d1d1d;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
    width: 145px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#login_from .box .block .login_msg {
    position: relative;
    font-size: 13px;
    color: #727272;
    line-height: 20px;
    height: 126px;
}

.loader {
    position: fixed;
    top: 0;
    z-index: 10000000;
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
}

.loaderMore {
    width: 50px;
    height: 50px;
}

.loader.show {
    opacity: 1;
    pointer-events: initial;
}

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

.code_img span {
    cursor: pointer;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

@media only screen and (min-width: 1025px) {
    .shop_contain .shop_block .member_login .edit_link:hover,
    .shop_contain .shop_block .member_login .logout:hover,
    .shop_contain .shop_block .member_neworder .more_order:hover,
    .shop_contain .shop_block .shop_list .more_order:hover,
    .shop_contain .shop_block .trace_list .link_button.buyit:hover,
    #login_from .box .block .button_box .link_button:hover,
    .order_manage .order_search .date_zone .link_button:hover,
    .order_manage .order_now .info .line .field .button:hover,
    .jump_box_style .box .block .button_box input:hover {
        background-color: #b59339;
        color: white;
        border-color: #b59339;
    }
    .featherlight-close-icon:hover {
        background-color: gray;
        color: white;
    }
    .button_box.step_button .link_button:hover {
        word-spacing: 5px;
    }
    #login_from .box .block .forgot_link:hover:before {
        width: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    .jump_box_style {
        max-width: 850px;
        width: 100%;
    }
    .jump_box_style .box,
    #login_from .box {
        padding: 80px 25px 25px;
    }
    .jump_box_style .box .block .button_box input {
        width: 40%;
    }
    .jump_box_style .box .block .button_box input:first-child {
        margin-left: 0;
    }
    .jump_box_style .box .block .button_box input {
        width: 48%;
        margin-left: 3%;
    }
    #login_from .box .block .button_box .link_button {
        width: 49%;
    }
    #login_from .box .block:first-child {
        padding-right: 25px;
    }
    .jump_box_style .box .block:last-child {
        padding-left: 25px;
    }
    .alertBox .box {
        padding: 80px 80px 25px;
    }
}

@media only screen and (max-width: 600px) {
    .jump_box_style .box .block:last-child {
        padding-left: 0;
        margin-top: 11px;
    }
    .jump_box_style .box .block .line textarea {
        width: 82%;
    }
    .jump_box_style .box .block {
        width: 100%;
    }
    .jump_box_style .box .block .button_box {
        padding-left: 0;
        width: 100%;
    }
    .featherlight-close-icon {
        width: 40px;
        height: 40px;
        font-size: 23px;
    }
    #login_from .box .block:first-child {
        padding-right: 0;
        border-right: 0;
        border-bottom: 1px solid #e4e4e4;
        padding-bottom: 25px;
    }
    #login_from .box .block:last-child {
        padding-left: 0;
        margin-top: 30px;
    }
    #login_from .box .block .login_msg {
        height: auto;
        margin-bottom: 55px;
    }
    #login_from .box .block .regis {
        bottom: 10px;
    }
    .jump_box_style .box,
    #login_from .box {
        padding: 25px 25px 25px;
    }
    .alertBox .box {
        padding: 25px 70px 25px;
    }
}

@media only screen and (max-width: 650px) {
    .cartBlk,
    .collectionBlk {
        z-index: 1003;
        width: 100%;
        padding-top: 30px;
        padding-left: 40px;
    }
    .cartBlk_wrap,
    .collectionBlk_wrap {
        padding-top: 85px;
    }
    .cartList_wrap,
    .collectionList_wrap {
        width: 100%;
    }
    .cart_item,
    .collection_item {
        padding-bottom: 80px;
    }
    .cart_item .item_img,
    .collection_item .item_img {
        margin-right: 18px;
    }
    .spinnerBox {
        right: initial;
        bottom: 30px;
        left: 125px;
    }
    .cart_item .item_del,
    .collection_item .item_del {
        top: initial;
        right: 0;
        bottom: auto;
    }
    .collection_item .item_buy {
        right: initial;
        bottom: 30px;
        left: 125px;
    }
    .cart_item .item_title,
    .collection_item .item_title {
        font-size: 16px;
        line-height: 1.5em;
    }
    .cartStatus,
    .collectionStatus {
        top: -4px;
        right: 40px;
    }
    .cart_close span,
    .collection_close span {
        margin-right: 5px;
        margin-left: 5px;
    }
}

@media (max-width: 500px) {
    .jump_box_style .box .title {
        margin-bottom: 0px;
    }
    #login_from .box .block .login_msg {
        height: auto;
        margin-bottom: 30px;
    }
}

/* // */