/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ 綠界提供 ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓   */
.apple-pay-button {
    display: inline-block;
    background-size: 100% 60%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-radius: 5px;
    padding: 0px;
    box-sizing: border-box;
    min-width: 200px;
    min-height: 32px;
    max-height: 64px;
}
.apple-pay-button-black {
    background-image: -webkit-named-image(apple-pay-logo-white);
    background-color: black;
}
.apple-pay-button-white {
    background-image: -webkit-named-image(apple-pay-logo-black);
    background-color: white;
}
.apple-pay-button-white-with-line {
    background-image: -webkit-named-image(apple-pay-logo-black);
    background-color: white;
    border: .5px solid black;
}
/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ 綠界提供 ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/
.shopping-step {
    background: #eee;
    text-align: center;
    border-radius: 14px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #999;
}
.shopping-step li {
    position: relative;
    padding: 10px 40px;
}
.shopping-step li+li:before {
    content: "";
    background: url('../../images/common/cart/step_arrow.png') 0 50% no-repeat;
    display: inline-block;
    vertical-align: middle;
    width: 45px;
    height: 90px;
    position: absolute;
    left: -30px;
    top: 50%;
    margin-top: -45px;
}
.shopping-step li.current {
    color: #197292;
}
.shopping-step li,
.shopping-step li > * {
    display: inline-block;
    vertical-align: middle;
}
.shopping-step li .num {
    background: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #bbb;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    border-radius: 15px;
}
.shopping-step li.current .num {
    color: #197292;
}
.shopping-step li .icon {
    background-image: url('../../images/common/cart/step_ic.png');
    width: 35px;
    height: 35px;
    margin: 0 10px;
}
.shopping-step li.step1 .icon {
    background-position: 0 0;
}
.shopping-step li.step2 .icon {
    background-position: 50% 0;
}
.shopping-step li.step3 .icon {
    background-position: 100% 0;
}
.shopping-step li.step1.current .icon {
    background-position: 0 100%;
}
.shopping-step li.step2.current .icon {
    background-position: 50% 100%;
}
.shopping-step li.step3.current .icon {
    background-position: 100% 100%;
}
.delivery-list {
    border: solid #bbb;
    border-width: 1px 0 1px;
    margin-bottom: 30px;
}
.delivery-list .item {
    overflow: hidden;
}
.delivery-list .item + .item {
    border-top: 1px dashed #bbb;
}
.delivery-list .form-group {
    display: table;
    width: 100%;
}
.delivery-list .delivery-radio {
    display: table-cell;
    vertical-align: middle;
    width: 30%;
    background: #F7F7F7;
    color: #1A7292;
    font-size: 15px;
    font-weight: bold;
    padding: 15px 10px 15px 50px;
    position: relative;
    box-sizing: border-box;
}
.delivery-list .delivery-radio.checked {
    background: #fdebe8;
}
.delivery-list .delivery-radio:before {
    position: absolute;
    top: 50%;
    left: 15px;
    margin: -8px 0 0;
}
.delivery-list .delivery-radio input {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6px 0 0 -6px;
}
.delivery-list .txt {
    display: table-cell;
    vertical-align: middle;
    padding: 15px;
}
.delivery-list .txt b {
    color: #F2856C;
    text-decoration: underline;
}
.no-item {
    padding: 20px 0 40px;
    text-align: center;
    border-bottom: 1px dashed #bbb;
    margin: 0;
}
.cart-table .indent {
    border-top: hidden;
}
.cart-table .indent td {
    padding-top: 0;
}
.cart-table .pd-id {
    color: #666;
    font-size: 13px;
}
.cart-table .pd-name {
    color: #1B7292;
    font-size: 15px;
    font-weight: bold;
}
.cart-table .cart_activity {
    color: #F2856C;
}
.cart-table .plus-tag {
    display: inline-block;
    color: #FF2626;
    margin-top: 4px;
}
.cart-table a:hover .pd-name {
    text-decoration: underline;
}
.cart-table .img {
    width: 60px;
    padding: 5px;
}
.cart-table a.pic {
    position: relative;
    overflow: hidden;
}
.cart-table a.pic:before {
    content: ' ';
    background: url('../../images/common/cart/hover.png') 50% 50% no-repeat rgba(251, 207, 199, 0.80);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.3s;
}
.cart-table a.pic:hover:before {
    opacity: 1;
}
.cart-table .indent .img .pic {
    position: relative;
    left: 30px;
}
.cart-table .indent .info {
    padding-left: 35px;
}
.cart-table .ibtn.delete {
    background-image: url('../../images/common/cart/btn_delete.png');
    width: 30px;
    height: 30px;
    margin: auto;
}
.cart-table .tag {
    background: #FF2626;
    color: #fff;
    font-size: 13px;
    display: inline-block;
    vertical-align: text-bottom;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 6px;
}
.cart-table b {
    font-weight: normal;
    display: block;
}
.cart-table del {
    color: #bdbdbd;
}
.sum-table tr {
    background: #FDEBE8;
    color: #555;
}
.sum-table tr+tr {
    border-top: 1px solid #fff;
}
.sum-table .sum-box-color {
    color: #f00;
}
.sum-table td {
    text-align: right;
    padding: 12px 30px;
}
.sum-table td:last-child {
    width: 15%;
}
.sum-table tr:last-child td {
    color: #2D7791;
    font-size: 16px;
}
.sum-table tr:last-child td:last-child {
    font-size: 16px;
    font-weight: bold;
}
.sum-table td .form-control {
    display: inline-block;
    width: auto;
    margin: 0;
}
.payment-box {
    background: #eee;
    border: 1px solid #DCDCDC;
    border-width: 1px 0;
    font-size: 15px;
    margin-top: 20px;
    padding: 5px 0;
}
.payment-box .shopping-title {
    float: left;
    margin: 10px 15px;
}
.payment {
    margin: 10px 15px 0;
    text-align: right;
}
.payment label,
.invoice-info label {
    display: inline-block;
    text-align: center;
    background: #fff;
    line-height: 1.5;
    padding: 5px 15px;
    margin: 0 5px 10px;
    min-width: 100px;
    border-radius: 15px;
    box-sizing: border-box;
}
.payment label.checked,
.invoice-info label.checked {
    color: #fff;
    background: #2D7791;
}
.plus-content {
    border: 5px solid #E8E8E8;
}
.plus-txt {
    background: #F6F6F6;
    text-align: center;
    color: #2C7791;
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
}
.plus-txt.active {
    background: #dadada;
}
.plus-txt:after {
    content: '▼';
    font-size: 15px;
    color: #2c7791;
    position: absolute;
    margin-left: 5px;
}
.plus-txt.active:after {
    color: #42b2d8;
}
.plus-txt b {
    color: #EB4624;
}
.plus-list-box {
    padding: 30px 30px 0;
}
.plus-list {
    margin: 0 -10px;
}
.plus-list .item {
    width: 20%;
    padding: 0 10px;
}
.plus-list .item:nth-child(5n+1) {
    clear: left;
}
.plus-list .box {
    max-width: 270px;
    margin: 0 auto 40px;
}
.plus-list .pic-box {
    position: relative;
    overflow: hidden;
}
.plus-list .pic {
    display: block;
    position: relative;
    overflow: hidden;
}
.plus-list .pic:before {
    content: "";
    background: url('../../images/common/products/hover.png') 50% 60% no-repeat rgba(251, 207, 199, 0.80);
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.3s;
}
.plus-list .box:hover .pic:before {
    background-position: 50% 50%;
    opacity: 1;
}
.plus-list .name {
    color: #666;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 27px;
}
.plus-list .box:hover .name {
    color: #1B7292;
}
.plus-list .btn-group {
    overflow: hidden;
}
.plus-list .txt {
    text-align: center;
    font-size: 13px;
    margin-bottom: 8px;
}
.plus-list .member-price {
    text-decoration: line-through;
    height: 23px;
}
.plus-list .price {
    color: #F2856C;
    height: 36px;
}
.plus-list .price b {
    font-size: 20px;
}
.plus-list .pd-info {
    margin: 12px 0 6px;
    min-height: 30px;
}
.plus-list .pd-info select.form-control {
    max-width: none;
    border-radius: 0;
}
.plus-list .qty-box {
    float: left;
}
.plus-list .btn.addcart {
    height: 30px;
    background: #1B7292;
    border: 1px solid #1B7292;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 30px;
    width: calc(100% - 110px);
    float: right;
}
.plus-list .btn.addcart:hover {
    background: #DEE834;
    color: #1B7292;
}
.plus-list .btn.addcart .icon {
    width: 20px;
    height: 20px;
    margin: 0 6px 5px 0;
    background-position: -80px -87px;
}
.plus-list .btn.addcart:hover .icon {
    background-position: -80px -107px;
}
.shopping-form {
    padding-top: 70px;
    margin: 0 -34px;
}
.shopping-form .shopping-title {
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
}
.shopping-form .row {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 34px 0;
}
.shopping-form .row:after {
    display: none;
}
.shopping-form .col {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    position: relative;
    background: #F4F4F4;
    border: 3px solid #ddd;
    border-radius: 12px;
}
.shopping-form .tips {
    min-height: 0;
}
.shopping-form .btn.select-store {
    border: 1px solid #ddd;
    width: 145px;
    height: 30px;
    line-height: 28px;
    color: #999;
    font-size: 15px;
    border-radius: 5px;
    background: #fff;
}
.shopping-form .btn.select-store:hover {
    background: #2D7791;
    color: #fff;
}
.shopping-form .btn.select-unable {
    color: #2D7791;
    text-decoration: underline;
    vertical-align: baseline;
}
.shopping-form .btn.select-unable:hover {
    color: #F3856D;
    text-decoration: none;
}
.shopping-form .same-check {
    padding: 30px 30px 0;
}
.shopping-form .same-check label {
    display: block;
    background: #2D7791;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    padding: 4px 10px;
}
.invoice-info-box {
    border: 3px solid #DDD;
    text-align: center;
}
.invoice-info {
    background: #eee;
    padding: 15px 15px 5px;
}
.invoice-form .form-box {
    padding: 25px 15px 0;
}
.invoice-form .row {
    margin: 0 -8px;
}
.invoice-form .col {
    padding: 0 8px;
}
.invoice-form .control-label {
    display: none;
}
.invoice-txt {
    padding: 25px 15px;
}
.invoice-txt span {
    color: #E55957;
}
.invoice-txt a {
    color: #2C7791;
}
.invoice-txt a:hover {
    text-decoration: underline;
}
.success-wrap .notice-box {
    background: #F8F8F8;
    max-width: 1000px;
    margin: 10px auto 10px;
    padding: 10px 20px;
    color: #333;
    font-size: 16px;
    line-height: 2;
    box-sizing: border-box;
}
.success-wrap .notice-box span {
    color: #D80000;
}
.success-wrap .notice-img {
    max-width: 330px;
    width: 60%;
}
.success-wrap .notice-msg {
    color: #000;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0.2em 0 1em;
}
.success-wrap .notice-title {
    color: #000;
    font-size: 23px;
}
.success-box .order-id {
    background: #1B7292;
    font-size: 15px;
    font-weight: bold;
    border-radius: 8px;
    line-height: 1.5;
    padding: 8px 16px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    max-width: 570px;
    margin: 1.6em auto;
}
.success-box .order-id a{
    color: #fff;
}
.alert-fancybox .fancybox-skin {
    background: #000;
    margin: 0;
}
#alert-fancybox {
    display: none;
    padding: 40px 70px 20px;
    max-width: 800px;
    max-height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#alert-fancybox .title {
    background: url('../../images/common/cart/alert_title_ic.png') 15px 0 no-repeat;
    color: #000;
    font-size: 24px;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #ddd;
    padding: 0 15px 5px 65px;
    margin: 0 -15px;
    line-height: 40px;
}
#alert-fancybox .editor {
    padding: 20px 0;
    font-size: 16px;
    line-height: 1.7;
}
#alert-fancybox .btn.close-alert {
    background: #999;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 45px;
    width: 260px;
    border-radius: 8px;
    pointer-events: none;
    margin-bottom: 20px;
}
#alert-fancybox .btn.close-alert.active {
    background: #3C81D5;
    pointer-events: visible;
}
#alert-fancybox .btn.close-alert.active .count {
    display: none;
}
/************* 新版運送方式 *************/
.item.cold .delivery-list .delivery-radio {
    color: #29880f;
}
.item.cold .delivery-list .delivery-radio.checked {
    background: #edffe0;
}
.item.freezing .delivery-list .delivery-radio {
    color: #0086b3;
}
.item.freezing .delivery-list .delivery-radio.checked {
    background: #e2f6fb;
}
.shopping-new-way {
    margin-bottom: 50px;
}
.delivery-list .item .table-h tbody tr:last-child {
    border: none;
}
.shopping-new-way li {
    list-style-type: none;
}
.shopping-new-way .new-way.item.general,
.shopping-new-way .new-way.item.cold,
.shopping-new-way .new-way.item.freezing {
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-width: 0 1px 1px;
}
.delivery-list .btn-box {
    padding: 0px;
}
.shopping-new-way .new-way.freezing {
    padding: 10px 0;
    background: rgba(156, 210, 228, 0.94);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.shopping-new-way .new-way.general {
    padding: 10px 0;
    background: #b7b7b7;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.shopping-new-way .new-way.cold {
    padding: 10px 0;
    background: rgb(140, 216, 119);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.shopping-new-way .new-way.cold span,
.shopping-new-way .new-way.general span,
.shopping-new-way .new-way.freezing span {
    left: 10px;
    position: relative;
}
.shopping-new-way .freezing .ic {
    margin-left: 10px;
    background: #fff;
    padding: 0px 5px;
    color: #9cd2e4;
    border-radius: 100%;
    font-weight: 600;
}
.shopping-new-way .general .ic {
    margin-left: 10px;
    background: #fff;
    padding: 0px 5px;
    color: #b7b7b7;
    border-radius: 100%;
    font-weight: 600;
}
.shopping-new-way .cold .ic {
    margin-left: 10px;
    background: #fff;
    padding: 0px 5px;
    color: rgb(165, 222, 166);
    border-radius: 100%;
    font-weight: 600;
}
.shopping-new-way .freezing .cart-table .pd-name {
    color: #258dda;
    font-size: 15px;
}
.shopping-new-way .cold .cart-table .pd-name {
    color: #0db310;
    font-size: 15px;
}
.shopping-new-way .general .cart-table .pd-name {
    color: #2d7791;
    font-size: 15px;
}
.item.cold .sum-table tr {
    background: #daf3da;
    color: #555;
}
.item.cold .sum-table tr:last-child td {
    color: #3f802d;
}
.item.freezing .sum-table tr {
    background: #e2f6fb;
    color: #555;
}
.item.freezing .sum-table tr:last-child td {
    color: #008f9a;
}
/************* 新版運送方式 *************/
.shopping_way span+span {
    margin: 0 2px;
}
.shopping_way span {
    line-height: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    background: #fbab9b;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 8px;
    width: 32%;
    letter-spacing: 1px;
}
.shopping_way .cold {
    background: #80dc9c;
}
.shopping_way .freezing {
    background: #63c7f5;
}
.notice_Offer a {
    color: #6dbbef;
}
.notice_Offer {
    color: #ff4646;
}
.notice_Offer a:hover {
    text-decoration: underline;
}
/************* 新版加購方式 *************/
/*---------  運送方式新增下拉 -------------*/
.delivery-list.mobile,
.payment.mobile,
.invoice-info.mobile,
.qty.form-control.mobile {
    display: none;
}
.cart-down {
    border-top: 1px dashed #c5c5c5;
}
/*---- 購物車step.3  購物新按鈕 ----*/
.btn.normal.other_order {
    background: #ffffff;
    color: #bbc503;
    border-color: #e0b155;
    font-size: 17px;
    border-radius: 10px;
    letter-spacing: 0.1em;
    margin: 8px 0 15px;
    padding: 4px 8px;
    animation-name: activity-ani2;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes activity-ani2 {
    from {
        border-color: #f6c13d;
        color: #f6c13d;
    }
    to {
        border-color: #dee834;
        color: #bbc503;
    }
}
.success-wrap .btn-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}
.success-txt .btn-box a {
    text-decoration: none;
}
.btn-box.cart-notice-txt {
    font-size: 16px;
    animation-name: activity-ani;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    display: block;
    color: #da7934;
    line-height: 1;
}
@keyframes activity-ani {
    from {
        color: #da7934;
    }
    to {
        color: #daaa34;
    }
}
/*---- 購物車step.3  購物新按鈕 ----*/
/*-- 新拆出來 --*/
.cart-input-icon {
    background: #6d6d6d;
    padding: 5px 7px;
    color: #fff;
    margin-left: 5px;
}
.cart-input-icon:hover {
    background: #000;
}
.cart-new-top {
    margin-bottom: 20px;
}
.qty-box .form-control {
    background-color: #ffffff;
    border: 1px solid #b5b5b5;
}
.qty-box .btn {
    border: 1px solid #b5b5b5;
    color: #777;
}
.qty-box .btn:hover {
    color: #fff;
    background: #4e4e4e;
}
.table td span {
    color: #545454;
    font-weight: bold;
}
.cart-new-top .sum-table tr:last-child td {
    color: #6d6d6d;
    font-size: 14px;
}
.table td .red_sale {
    display: block;
    color: #8e8e8e;
    font-weight: normal;
}
.cart-new-top .sum-table tr:last-child td:last-child {
    color: #6d6d6d;
    font-size: 14px;
    font-weight: normal;
}
.cart-new-top .sum-table tr {
    background: #eeeeee;
    color: #555;
}
#addcart {
    margin-top: 10px;
}
@media screen and (max-width: 1200px) {
    .plus-list .item {
        width: 25%;
    }
    .plus-list .item:nth-child(5n+1) {
        clear: none;
    }
    .plus-list .item:nth-child(4n+1) {
        clear: left;
    }
}
@media screen and (max-width: 1000px) {
    .plus-list .item {
        width: 33.33%;
    }
    .plus-list .item:nth-child(4n+1) {
        clear: none;
    }
    .plus-list .item:nth-child(3n+1) {
        clear: left;
    }
    /** 優化 **/
    .shopping-step,
    .breadcrumb {
        display: none;
    }
    .delivery-list.mobile,
    .payment.mobile,
    .invoice-info.mobile,
    .qty.form-control.mobile {
        display: block;
    }
    .delivery-list .form-control {
        border-radius: 0px;
    }
    .delivery-list .item ul {
        padding: 5px 0;
        border: 1px solid #ddd;
        margin-bottom: 6px;
    }
    .payment-box {
        background: #f3f3f3;
    }
    .delivery-list .input-box {
        padding: 5px 5px 0;
        font-size: 15px;
    }
    .sum-box {
        padding-top: 0px;
        border: 1px solid #ddd;
        border-width: 0 1px 1px;
    }
    .cart-table {
        border: 1px solid #ddd;
        border-width: 1px 1px 0px;
    }
    .payment.mobile {
        padding: 0px;
    }
    .delivery-list.pc,
    .payment.pc,
    .invoice-info.pc,
    .qty.form-control.pc {
        display: none;
    }
    .delivery-list .new-way.general,
    .delivery-list .new-way.cold,
    .delivery-list .new-way.freezing {
        padding: 2px 0;
        font-size: 14px;
        font-weight: normal;
    }
    .delivery-list .ic {
        margin-left: 5px;
        padding: 0px 3.5px;
    }
    .delivery-list.mobile.new-way select .form-control {
        border-radius: 0px;
        margin-bottom: 0px;
    }
    .delivery-list .item + .item {
        border-top: none;
    }
    .delivery-list .txt {
        padding: 0px 5px 5px;
        font-size: 14px;
    }
    .cart-table tbody tr {
        padding-left: 94px;
        margin: 0px 0;
        font-size: 14px;
    }
}
@media screen and (max-width: 1000px) {
    .shopping-step li {
        padding: 10px 25px;
    }
    .shopping-form,
    .shopping-form .row,
    .shopping-form .col {
        display: block;
        width: auto;
        margin: 0;
        padding: 0;
        border: 0;
        background: none;
    }
    .shopping-form .col + .col {
        margin-top: 1em;
    }
    .shopping-form .shopping-title {
        position: static;
    }
    .shopping-form .form-box {
        max-width: none;
        background: #F4F4F4;
        border: 3px solid #ddd;
        border-radius: 12px;
    }
    .shopping-form .same-check {
        padding: 0 0 10px;
    }
    .plus-txt {
        font-size: 14px;
        padding: 5px;
    }
    .plus-list-box {
        padding: 10px 30px 0;
    }
    .payment-box .shopping-title {
        margin: 5px 10px;
    }
    .sum-table td .form-control {
        max-width: 110px;
        padding:0px 1px;
        background-image: none;
    }
    .cart-input-icon {
        padding: 5px 2px;
        margin-left: 0px;
    }
    .sum-table tr {
        padding: 10px 5px;
        height: auto;
    }
    .shopping-new-way {
        margin-bottom: 20px;
    }
    .shopping-new-way .item.general,
    .shopping-new-way .item.cold,
    .shopping-new-way .item.freezing {
        padding-bottom: 20px;
        border-bottom: 1px dotted #f39f8d;
    }
    .delivery-list {
        margin-bottom: 15px;
        border-width: 1px;
    }
    .cart-new-top {
        margin-bottom: 15px;
    }
    .delivery-list .item.general,
    .delivery-list .item.cold,
    .delivery-list .item.freezing {
        margin-bottom: 10px;
        border: none;
    }
    .plus-txt:after {
        font-size: 14px;
        margin-left: 5px;
    }
    .no-item {
        padding: 0px 0 5px;
    }
    .shopping-form .same-check {
        padding: 0px 0px 0;
    }
    .shopping-form .same-check label {
        padding: 4px 10px;
    }
    .payment label,
    .invoice-info label {
        font-size: 14px;
        padding: 3px 15px;
    }
    .invoice-form .form-box {
        padding: 5px 15px 0;
    }
    .shopping-form .same-check label {
        font-size: 14px;
        padding: 2px;
        background: #fff;
        color: #2D7791;
        text-align: left;
    }
    /* step.2 購物清單點擊出現icon */
    .cart-2-up .delivery-list {
        display: none;
    }
    .cart-2-up .shopping-title {
        cursor: pointer;
        color: #147698;
    }
    .cart-2-up .shopping-title:hover {
        color: #23b3e4;
    }
    .cart-2-up .shopping-title.active {
        color: #23b3e4;
    }
    .cart-2-up .shopping-title:after {
        content: '';
        display: inline-block;
        position: absolute;
        border-style: solid;
        border-width: 8px 5px 0 5px;
        margin: 11px 8px;
        border-color: #147698 transparent transparent transparent;
    }
    .cart-2-up:hover .shopping-title:after {
        border-color: #23b3e4 transparent transparent transparent;
    }
    .cart-2-up .shopping-title.active:after {
        border-width: 0px 5px 8px 5px;
        margin: 11px 8px;
        border-color: transparent transparent #23b3e4 transparent;
    }
    .cart-2-up .payment-box .shopping-title {
        cursor: inherit;
        color: #333;
    }
    .cart-2-up .payment-box .shopping-title:after {
        display: none;
    }
    /* step.2 購物清單點擊出現icon end */
    .sum-table tr:last-child td:last-child {
        font-size: 17px;
    }
    .success-wrap .notice-box {
        font-size: 14px;
        margin-top: 0.5em;
        padding: 5px 20px;
    }
    .payment-box .shopping-title,
    .payment {
        float: none;
    }
}
@media screen and (max-width: 767px) {
    .shopping-step li {
        font-size: 15px;
    }
    .shopping-step li .num {
        width: 22px;
        height: 22px;
        line-height: 22px;
    }
    .shopping-step li .icon {
        width: 30px;
        height: 30px;
        background-size: 90px auto;
        margin: 0 4px;
    }
    .delivery-list .form-group,
    .delivery-list .delivery-radio,
    .delivery-list .txt {
        display: block;
    }
    .delivery-list .delivery-radio {
        width: auto;
    }
    .delivery-list .txt {
        border-width: 1px 0 0;
    }
    .cart-table .img {
        position: absolute;
        left: 5px;
        top: 10px;
    }
    .cart-table .indent .img .pic {
        left: 0;
    }
    .cart-table .indent .info {
        padding-left: 0;
    }
    .cart-table td .ibtn.delete {
        position: absolute;
        right: 0;
        top: 5px;
    }
    .sum-table td,
    .cart-table .indent .info {
        padding: 0;
    }
    .sum-table td:first-child {
        text-align: left;
        float: left;
        font-weight: bold;
        width:50%;
    }
    .sum-table .sum-box-color span {
        display: block;
    }
    .sum-table td:last-child {
        width: 50%;
    }
    .plus-list-box {
        padding: 5px 8px 0;
    }
    .plus-list {
        margin: 0 -7px;
    }
    .plus-list .item {
        padding: 0 7px;
        width: 50%;
    }
    .plus-list .item:nth-child(3n+1) {
        clear: none;
    }
    .plus-list .item:nth-child(2n+1) {
        clear: left;
    }
    .plus-list .box {
        margin-bottom: 30px;
    }
    .success-wrap .notice-msg {
        font-size: 14px;
    }
    .success-wrap .notice-title {
        font-size: 14px;
    }
    #alert-fancybox {
        padding: 20px 30px;
    }
    #alert-fancybox .title {
        font-size: 14px;
    }
    #alert-fancybox .editor {
        font-size: 14px;
    }
    /****  優化****/
    .plus-list .pd-info {
        margin: 5px 0;
        min-height: 15px;
    }
    .plus-list .pd-info select.form-control {
        margin-bottom: 1px;
    }
    .shopping_way span {
        line-height: 20px;
        font-size: 14px;
        width: 50%;
        margin-bottom: 2px;
    }
    .plus-list .shopping_way.general {
        text-align: left;
    }
    .plus-list .name {
        font-size: 14px;
        height: 20px;
    }
    .plus-list .price {
        height: auto;
    }
    .plus-list .price b {
        font-size: 14px;
    }
    .plus-list .txt {
        margin-bottom: 2px;
    }
    .plus-list .qty-box .btn.less,
    .plus-list .qty-box .btn.add {
        display: none;
    }
    .plus-list .qty-box {
        width: 30px;
        padding: 0 0px;
    }
    .plus-list .btn.addcart {
        height: 25px;
        font-size: 14px;
        line-height: 25px;
        width: calc(100% - 40px);
    }
    .payment-box .shopping-title {
        margin: 0 5px;
    }
    .payment {
        margin: 5px 5px 0;
    }
    .payment label,
    .invoice-info label {
        margin: 0 0 5px;
    }
    .btn.normal.other_order {
        font-size: 14px;
    }
    .sum-box .sum-box-color-con {
        min-height: 36px;
        clear: both;
    }
    .plus-list-box .qty-box .form-control {
        color: #000;
        background-color: #ffffff;
        border: 1px solid #a7a7a7;
    }
    .delivery-list .general .ic {
        padding: 0 3.5px;
    }
    .cart-table b {
        display: inline-block;
        margin-left: -3px;
    }
    .cart-table del {
        margin-left: 5px;
    }
    .cart-table .money-big {
        text-align: right;
        position: absolute;
        padding: 0 5px;
        bottom: 10px;
        font-size: 14px;
        color: #555;
        right: 0%;
    }
    .delivery-list.mobile .form-control,
    .payment.mobile .form-control {
        font-size: 15px;
        height: 29px;
        line-height: 23px;
        color: #4c4c4c;
    }
    .sum-table tr {
        padding: 10px 5px;
        height: auto;
        display: flex;
    }
    .shopping-new-way .new-way.general,
    .shopping-new-way .new-way.cold,
    .shopping-new-way .new-way.freezing {
        padding: 5px 0;
        font-size: 14px;
    }
}
@media screen and (max-width: 630px) {
    .shopping-step li {
        display: block;
    }
    .shopping-step li+li:before {
        width: 12px;
        height: 24px;
        background-size: contain;
        top: 0;
        left: 50%;
        margin: -12px 0 0 -6px;
        transform: rotate(90deg);
    }
    .shopping-step li .num {
        margin-right: 5px;
    }
}
@media screen and (max-width: 500px) {
    .plus-list .btn.addcart .icon {
        display: none;
    }
}
@media screen and (max-width: 400px) {
    #alert-fancybox {
        padding: 20px;
    }
    #alert-fancybox .btn-box {
        padding-top: 10px;
    }
    #alert-fancybox .btn.close-alert {
        width: 100%;
        font-size: 15px;
        line-height: 40px;
    }
}
