:root {
    --var-page-max-width: 600px;
}

body {
    background-color: #f3f3f3;
    font-size: 14px;
    max-width: var(--var-page-max-width);
    margin: 0 auto;
    color: #3c3c3c;
    font-family:
        Helvetica Neue,
        Tahoma,
        Arial,
        PingFangSC-Regular,
        Hiragino Sans GB,
        Microsoft Yahei,
        sans-serif;
    -webkit-font-smoothing: antialiased;
}
.common-grid {
    display: flex;
    flex-direction: row;
}
.common-grid-fixed {
}
.common-grid-flex1 {
    flex: 1;
}
.common-txt {
    margin: 3vw;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: #fff;
}
.common-txt-full-width {
    margin: 3vw 0px !important;
}

.common-txt-title {
    font-size: 16px;
    font-weight: bold;
    padding: 8px 10px;
    background-color: #fff;
    margin-bottom: 1px;
    color: #444;
    border-bottom: 1px solid #f1f1f1;
}

.common-txt-content {
    color: #555;
    font-size: 16px;
    padding: 10px;
    background-color: #fff;
    word-break: break-all;
}
.common-txt-content img {
    max-width: 100%;
}
.common-color-standout {
    color: #e22;
}

.common-item-wrapper {
    background-color: #fff;
    overflow: hidden;
    margin-top: 10px;
}

.common-card {
    padding: 20px;
    background-color: #fff;
    box-sizing: border-box;
    border-bottom: #ccc 1px solid;
}

.common-flex {
    display: flex;
    flex-direction: row;
}

.common-flex-column {
    flex-direction: column;
}

.left {
    float: left;
}

.right {
    float: right;
}

a {
    text-decoration: none;
    color: #333;
}

*:focus {
    outline-style: none;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000000;
    display: flex;
    justify-content: center;
    background-color: #fff;
}
.op-loading {
    background-color: transparent;
}
.loading-inner {
    background-color: #fff;
    width: 36vw;
    height: 36vw;
    margin-top: 20vh;
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loading-txt {
    margin: 0 auto;
    color: #333;
    font-size: 16px;
}

.loading-bar {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 10px;
}

.loading-bar > div {
    background-color: #67cf22;
    height: 100%;
    width: 6px;
    display: inline-block;

    -webkit-animation: stretchDelay 1.2s infinite ease-in-out;
    animation: stretchDelay 1.2s infinite ease-in-out;
}

.loading-bar .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.loading-bar .rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.loading-bar .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.loading-bar .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes stretchDelay {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
    }
}

@keyframes stretchDelay {
    0%,
    40%,
    100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}

/**
* 公用的组件
*/
.list_title {
    padding: 12px 14px;
    color: #111;
    /*border-top: 1px solid #d9d9d9;*/
    border-bottom: 1px solid #ededed;
    background-color: #fff;
    font-size: 1em;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.list_title i {
    display: inline-block;
    font-size: 20px;
    color: #444;
    margin-right: 5px;
}

.list_content {
    background-color: #fff;
    word-break: break-all;
    padding-top: 10px;
}
.list_content > div {
    text-align: left;

    display: flex;
    align-items: center;
}
.list_content > div > span:first-child {
    display: inline-block;
    width: 110px;
    padding: 8px 20px;
    color: #222;
}
.list_content > div > span:last-child {
    flex: 1;
    padding-right: 30px;
    text-align: right;
}

.list-content-fapiao {
    padding: 10px;
    overflow: auto;
}

.list_content_express_item {
    font-size: 14px;
    padding: 0 20px;
}

.list_content img {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 5px auto;
    display: block;
    max-width: 100%;
}

.list_btn {
    background-color: #fff;
    padding: 10px 10px;
    font-size: 14px;
    margin-bottom: 1px;
    color: #ff0f23;
}

.express-list-content div {
    vertical-align: top;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 8px 20px;
}
.express-list-content div span:first-child {
    color: #999;
    margin-bottom: 5px;
}

.header_bar {
    background-color: #f7f7f7;
    height: 40px;
    display: flex;
    position: fixed;
    width: 100%;
    max-width: var(--var-page-max-width);
    z-index: 2;
    border-bottom: 1px solid #f1f1f1;
    display: none;
}

.header_bar_placeholder {
    height: 40px;
    display: none;
}

.header_bar div {
    color: #333;
    text-align: center;
}

.header_bar .lb,
.header_bar .rb {
    width: 40px;
}

.common-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff5722;
    color: #fff !important;
    padding: 5px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 20px;
}

.header_bar .tlt {
    flex: 1;
    color: #333;
    line-height: 40px;
    font-size: 16px;
    overflow: hidden;
}

.header_bar div a {
    font-size: 18px;
    padding: 7px;
    border-radius: 2px;
    width: 40px;
    height: 40px;
    line-height: 50px;
}

.header_bar div a i {
    font-size: 26px;
}

.number_cart {
    background-color: red;
    color: #fff;
    border-radius: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    position: absolute;
    right: 25px;
    top: 18px;
    font-size: 14px;
}

/**
* 首页
*/

.shop_bullutin {
    font-size: 12px;
    padding: 5px;
    background-color: #83c44e;
    margin-bottom: 1px;
    color: #fff;
}

.index_slider {
    position: relative;
    overflow: hidden;
    height: 180px;
    background-color: #fff;
}

.index_slider ul {
    list-style: none;
    position: relative;
    height: 100%;
}

.index_slider ul li {
    display: block;
    height: 100%;
    float: left;
    padding: 0;
    margin: 0;
}

.index_slider .p {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background-color: #ccc;
}

.list_item {
    background-color: #fff;
    margin-bottom: 1px;
    /* box-shadow:4px 4px 6px #ccc;*/
    padding: 5px;
    overflow: auto;
    display: flex;

    position: relative;
}

.list_no_more {
    background-color: #fff;
    padding: 10px;
    font-size: 12px;
    text-align: center;
    color: #ccc;
    margin-top: 1px;
}

.no_goods {
    font-size: 14px;
    padding: 20px 0;
    text-align: center;
    display: block;
}

.list_item .goods_img {
    width: 90px;
    overflow: hidden;
    display: flex;
}

.list_item .goods_img img {
    width: 100%;
}

.list_item .goods_info {
    flex: 1;
    margin-left: 10px;
}

.list_item .goods_title {
    font-size: 14px;
    margin-bottom: 10px;
}

.list_item .goods_title a {
    text-decoration: none;
    color: #333;
}

.list_item .goods_desc {
    color: #969696;
    font-size: 12px;
    margin-bottom: 10px;
}

.list_item .goods_price {
    color: #fe4900;
}

.list_item .goods_price_old {
    color: #969696;
    font-size: 12px;
    text-decoration: line-through;
}

.list_item .goods_close_buy {
    color: #969696;
    font-size: 12px;
}

.list_item .add2CartBtn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    border: 1px solid #fe4900;
    border-radius: 4px;
    font-size: 14px;
    padding: 1px 4px;
    color: #fe4900;
    background-color: #fff;
}

#bottom_bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 800px;
    border-top: 1px solid #cccccc;
    display: flex;

    background-color: #c3252c;
    box-shadow: 0px -2px 5px #ddd;
}

#bottom_bar .barbtn {
    display: block;
    text-align: center;

    flex: 1;
    position: relative;
    padding: 4px 0;
}

#bottom_bar .icon {
    font-family: "mobileicon";
    font-size: 24px;
    color: #fff;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /*    background: url('/img/bottom_bar.png');
    background-size: 20px; */
}

#bottom_bar p {
    display: block;
    margin: 0px;
    padding: 0;
    text-align: center;
    color: #fff;
    font-size: 12px;
}

/****login **/

.front-login-box {
    text-align: center;
    padding-bottom: 20px;
}

.login_title {
    text-align: center;
    padding: 20px 0;
    font-size: 20px;
}

.front-login-box-link {
    font-size: 16px;
    padding: 4px 20px;
}

/**
* 用户页，个人中心首页
*/

.agent_num {
    display: flex;
    background-color: #fff;
}

.agent_num a {
    display: block;
    flex: 1;
    text-align: center;
    padding: 10px;
    color: #777;
}

.agent_num .number {
    height: 30px;
    line-height: 30px;
}

/** 老用户结构 */

.my-grid-box {
    display: flex;
    background-color: #fff;
    border-radius: 5px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 0;
    margin-top: 10px;
}

.my-grid-box:after {
    content: "";
    width: 23%;
}

.my-grid-box-item {
    box-sizing: border-box;
    padding: 10px 10px;
    width: 25%;
    text-align: center;
    position: relative;
    margin-bottom: 10px;
}

.my-grid-box-item i {
    display: block;
    text-align: center;
    font-size: 28px;
    color: #666;
}

.my-grid-box-item span {
    text-align: center;
}

.my-grid-box-item-title {
    margin-top: 4px;
    color: #666;
}

.my-grid-box-item-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: #e22;
    color: #fff;
    text-align: center;
    width: 18px;
    height: 18px;
    font-size: 12px;
    line-height: 18px;
    border-radius: 18px;
}

.my_index_logobox {
    background-color: #fe5455;
    overflow: hidden;
    display: flex;
    padding-top: 40px;
}

.my_index_logobox div {
    flex: 1;
    height: 80px;
    text-align: center;
    font-size: 18px;
    color: #fff;
}

.my_index_logobox div span {
    display: block;
    font-size: 14px;
    color: #fef31f;
}

.my_index_logobox div .charge_btn {
    border: 1px solid #fff;
    color: #fff;
    padding: 2px 6px;
    font-size: 14px;
}

.my_index_logobox .logo {
    flex: none;
    overflow: auto;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    border: 2px solid #fff;
}

.my_index_logobox .logo img {
    width: 100%;
    height: 100%;
}

.my_index_namebox {
    text-align: center;
    padding: 10px 0;
    vertical-align: middle;
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid #eee;

    background-color: #fe5455;
}

.my_index_usernum {
    display: flex;

    color: #aaa;
}

.my_index_usernum a {
    width: 25%;
    text-decoration: none;
    display: block;
    background-color: #fff;
    padding: 10px 0;
    text-align: center;
    color: #333;
}

.my_index_usernum span {
    display: block;
    margin: 4px auto;
    width: 40px;
    height: 40px;
    font-size: 28px;
    line-height: 40px;
    color: #444;
    position: relative;
}

.my_index_usernum span em {
    position: absolute;
    right: 0px;
    top: 0px;
    border-radius: 50%;
    background-color: #e22;
    color: #fff;
    text-align: center;
    width: 18px;
    height: 18px;
    font-size: 12px;
    line-height: 16px;
}

.shouru {
    overflow: auto;
    margin-bottom: 1px;
    background-color: #fff;
    width: 100%;
    padding: 20px;
}

.shouru div {
    float: left;
    width: 50%;
    color: #5b9fe2;
}

.showru p.a {
    font-size: 14px;
}

.shouru p.b {
    font-size: 40px;
    font-weight: 100;
}

/**
* 购物车
*/

.cart_bar {
    background-color: #fff;
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
}

.cart_bar div {
    text-align: center;
    flex: 1;
}

.cart_bar div a {
    display: block;
    padding: 10px 0;
    color: #666;
    border-bottom: 3px solid #eee;
}

.cart_bar div a.s {
    border-bottom: 3px solid #e22;
    color: #e22;
    font-weight: bold;
}

.cart_empty {
    text-align: center;
}

.cart_empty .tip {
    margin-top: 80px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 20px;
}

.cart_empty a {
    padding: 10px 20px;

    margin: 0px auto;
    font-size: 20px;
    background-color: #ff5722;
    border-radius: 5px;
    color: #fff;
    text-align: center;
}

.cart_item {
    background-color: #fff;
    margin-bottom: 1px;
    padding: 5px;
    overflow: auto;
    display: flex;
    align-items: center;
}
.cart_item_check {
    width: 20px;
    height: 20px;
    display: flex;
    justify-self: center;
    align-items: center;
    font-size: 14px;
    font-weight: bolder !important;
    border-radius: 20px;
    border: 1px solid #ff0f23;
    margin: 0 10px;
}
.cart_item_checked {
    width: 20px;
    height: 20px;
    display: flex;
    justify-self: center;
    align-items: center;
    font-size: 14px;
    font-weight: bolder !important;
    border-radius: 20px;
    background-color: #ff0f23;
    margin: 0 10px;
    color: #fff;
}
.cart_item_checked::before {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.cart_item .goods_op {
    font-size: 12px;
    color: #ccc;
}

.cart_item .goods_img {
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: flex;
    text-align: center;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    overflow: hidden;
}

.cart_item .goods_title {
    color: #222;
}
.cart_item .goods_spec {
    color: #999;
}

.cart_item .goods_price {
    color: #ff0f23;
    margin-top: 5px;
}
.cart_item .goods_price::before {
    content: "￥";
    font-size: 0.7em;
}

.cart_item .goods_img img {
    /*width:100%;
    height:100%;*/
    max-width: 100%;
    max-height: 100%;
}

.cart_item .goods_info {
    flex: 1;
    padding: 8px;
    position: relative;
}

.cart_op_bar {
    width: 100%;
    margin-top: 10px;
}

.cart_op_bar .num {
    border: 1px solid #eee;
    float: left;
    overflow: auto;
    text-align: center;
}

.cart_op_bar .num div {
    width: 25px;
    height: 25px;
    background: #f4f4f4;
    float: left;
    line-height: 25px;
}

.cart_op_bar .del {
    border: 1px solid #ff0f23;
    background-color: #ff0f23;
    color: #fff;
    padding: 0px 5px;
    float: right;
    height: 27px;
    line-height: 27px;
    border-radius: 3px;
}

.cart_bottom_bar {
    position: fixed;
    bottom: 4em;
    width: 100%;
    border-top: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0px -2px 5px #ddd;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.cart_bottom_bar .je {
    text-align: left;
    font-size: 12px;
    line-height: 22px;
    margin: 10px;
    flex: 1;
}

.cart_bottom_bar .je span {
    display: block;
    font-size: 20px;
}

.cart_bottom_bar .je em {
    font-style: normal;
    padding: 0 5px;
    color: #ff0f23;
}

.cart_bottom_bar .js {
    float: right;
    border: 1px solid red;
    margin: 10px;
    padding: 10px 30px;
    background-color: #ff0f23;
    color: #fff;
    font-size: 18px;
    border-radius: 4px;
}

.action_sheet_coupon_item {
    text-align: center;
    background-color: #fff;
}

.action_sheet_coupon_item .n {
    font-size: 14px;
    color: #888;
    padding: 10px;
}

.action_sheet_coupon_item .v {
    margin: 0 10px;
    background-color: #44b549;
    color: #fff;
    font-size: 30px;
    line-height: 60px;
    height: 60px;
    border-radius: 4px;
}

.action_sheet_coupon_item .d {
    font-size: 12px;
    color: #888;
    padding-top: 10px;
}

.select-coupon {
    background-color: #fff;
    display: flex;
    margin-bottom: 1px;
    padding: 10px;
}

.select-coupon div:first-child {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
}

.select-coupon .val {
    text-align: right;
    color: #ff5722;
    font-weight: bold;
}

/**
* 收银台
*/
.cashier-address-wrapper {
    display: flex;
    background-color: #fff;
    flex-wrap: wrap;
}

.cashier-address-left,
.cashier-address-right {
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cashier-address-left:before,
.cashier-address-right:before {
    font-size: 28px;
}

.cashier-address-bottom-border {
    width: 100%;
    height: 3px;
    background: linear-gradient(
        45deg,
        #f25953 5%,
        #fbfaf5 5%,
        #fbfaf5 10%,
        #5590d6 10%,
        #5590d6 15%,
        #fbfaf5 15%,
        #fbfaf5 20%,
        #f25953 20%,
        #f25953 25%,
        #fbfaf5 25%,
        #fbfaf5 30%,
        #5590d6 30%,
        #5590d6 35%,
        #fbfaf5 35%,
        #fbfaf5 40%,
        #f25953 40%,
        #f25953 45%,
        #fbfaf5 45%,
        #fbfaf5 50%,
        #5590d6 50%,
        #5590d6 55%,
        #fbfaf5 55%,
        #fbfaf5 60%,
        #f25953 60%,
        #f25953 65%,
        #fbfaf5 65%,
        #fbfaf5 70%,
        #5590d6 70%,
        #5590d6 75%,
        #fbfaf5 75%,
        #fbfaf5 80%,
        #f25953 80%,
        #f25953 85%,
        #fbfaf5 85%,
        #fbfaf5 90%,
        #5590d6 90%,
        #5590d6 95%,
        #fbfaf5 95%,
        #fbfaf5 100%,
        #f25953 190%
    );
}

.cashier-address-center {
    flex: 1;
    padding: 4px;
}

.cashier-goods-wrapper {
    margin-top: 10px;
    background: #fff;
}

.cashier-goods-item-header {
    color: #888 !important;
    padding: 8px 4px !important;
}

.cashier-goods-item {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #f1f1f1;
    padding: 10px;
}

.cashier-goods-item-left {
}

.cashier-goods-item-right {
    flex: 1;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
}

.cashier-goods-item .goods-img {
    border-radius: 2px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: flex;
    text-align: center;
}

.cashier-goods-item .goods-img img {
    border: 1px solid #ccc;
    max-width: 100%;
    max-height: 100%;
}

.cashier-goods-item-right .goods-title {
    color: #444;
    font-size: 1.1em;
}
.cashier-goods-item-right .goods-spec {
    color: #aaa;
    margin-top: 5px;
}
.cashier-goods-item-right .goods-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cashier-coupon-wrapper {
    margin-top: 10px;
}

.cashier-action-sheet-coupon-item {
}

.coupon-item {
    display: flex;
    margin: 20px;
    border-radius: 6px;
    overflow: hidden;
}

.coupon-item-left {
    position: relative;
    font-size: 20px;
    width: 20vw;
    padding: 0 6px;
    text-align: center;
    color: #fff;
    background-color: #eb5000;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 24px;
}

.coupon-item-left-round {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 10px;
    background-color: #fff;
    z-index: 1;
}

.coupon-item-left-round-up {
    right: -7px;
    top: -7px;
}

.coupon-item-left-round-bottom {
    right: -7px;
    bottom: -7px;
}

.coupon-item-left > span {
    display: block;
}

.coupon-item-right {
    flex: 1;
    padding: 10px;
    color: #fff;
    line-height: 20px;
    background-color: #ff5722;
    white-space: nowrap;
    overflow: hidden;
    font-size: 12px;
}

.coupon-item-right span {
    display: inline-block;
    width: 40px;
    text-align: right;
}

.coupon-item-right span:after {
    content: ":";
    padding: 0 5px;
}

/*****address ****/
.my-address-selector {
    display: flex;
}

.my-address-selector input {
    flex: 1;
}

.address-item-wrapper {
    margin-top: 10px;
}

.address-item-bar {
    display: flex;
    justify-content: flex-end;
    background-color: #fff;
    border-top: 1px solid #f1f1f1;
}

.address-item-bar .edit_btn {
    color: #777;
    font-size: 16px;
    padding: 8px 20px;
}

.address-item-bar .set-default-btn {
    padding-left: 10px;
}

.address_item {
    background-color: #fff;
    position: relative;
}
.address_item_nodata {
    padding: 20px;
    text-align: center;
}

.address_item_select_btn {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -20px;
    color: #888;
    border: 1px solid #f1f1f1;
    padding: 3px 8px;
}

.address_item .add {
    display: block;
    background-color: #fff;
    padding: 10px;
}

.address_item .name {
    font-size: 18px;
    padding-top: 10px;
    padding-left: 10px;
}

.address_item .address {
    font-size: 12px;
    padding-left: 10px;
    padding-bottom: 10px;
}

/**
* 订单列表
*/

.order_title {
    padding: 12px 2px;
    display: flex;
    color: #444;
    font-size: 14px;
    /* border-bottom: 1px solid #eee; */
}

.order_item {
    background-color: #fff;
    overflow: hidden;
    padding-left: 10px;
    padding-right: 10px;
}
.order_goods_item {
    padding: 8px 0;
    display: flex;
    line-height: 25px;
    border-top: 1px solid #f1f1f1;
}
.order_goods_item:first-child {
    border-top: none;
}

.order_goods_item .img img {
    width: 70px;
    height: 70px;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
}
.order_goods_item .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}
.order_goods_item .info .tit {
    line-height: 25px;
    font-size: 1.05em;
    flex: 1;
}
.order_goods_item .info .spec {
    color: #aaa;
}

.order_goods_item .info .num {
    margin-top: 5px;
    color: #aaa;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.order-item-info {
    display: flex;
    padding: 10px 2px;
    border-top:1px solid #f1f1f1;
    font-size:14px;
}
.order-item-info > .order-item-info-key {
    color: #999;
    width: 5em;
}
.order-item-info > .order-item-info-val {
    flex: 1;
    text-align: right;
}
.order-btn {
    border-top:1px solid #f1f1f1;
    overflow: auto;
    padding: 10px 2px;
}

.bt {
    display: block;
    float: left;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    margin-right: 5px;
    background-color: #ff0f23;
}

.order-btn-wait-confirm {
    background-color: #fff;
    color: #ff0f23;
}

.order-btn-express {
    border: 1px solid #ff0f23;
    background-color: #fff;
    color: #ff0f23;
}

.order-btn-right {
    float: right;
}

/*支付详情*/
.pay_item {
    background-color: #fff;
    padding: 10px;
}

.pay_item div {
    line-height: 25px;
}

/**
* category
* 
*/
.category-page {
    display: flex;
    flex-direction: row;
    min-height: 80%;
    background-color: #fff;
}

.category-menu {
    border-right: 1px solid #f1f1f1;
    width: 6em;
    margin-right: 5px;
}
.category-menu-list {
    position: sticky;
    top: 40px;
}

.category-menu-item {
    padding: 10px 10px;
    font-size: 1rem;
    border-bottom: #f1f1f1;
}

.category-box {
    flex: 1;
    overflow: hidden;
}

.category-box-item:after {
    content: " ";
    width: 22vw !important;
}

.category-goods-list {
    border: 1px solid red;
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    background-color: #fff;
}
.category-box-item {
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    background-color: #fff;
}
.category-goods-item {
    width: calc((100% - 10px) / 3);
}

.category-box-item h3 {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    padding: 20px 10px;
    color: #666;
}

.category-box-item h3:before,
.category-box-item h3:after {
    content: "";
    border-top: 1px solid #ccc;
    width: 10vw;
    display: inline-block;
    margin: 0 15px;
    height: 5px;
}

.category-goods-item {
    width: 32%;
    margin-bottom: 10px;
}

.category-goods-item .img {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    border: 1px solid #f1f2f3;
}

.category-goods-item .img img {
    width: 100%;
}

.category-goods-item .name {
    overflow: hidden;
    color: #888;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 1em;
    font-size: 0.8em;
}

.pageGoodsList-goods-list {
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    background-color: #f7f8f9;
}
.pageGoodsList-goods-item {
    width: calc((100% - 5px) / 2);
    background-color: #fff;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
}

.pageGoodsList-goods-item .img {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}

.pageGoodsList-goods-item .img img {
    width: 100%;
}

.pageGoodsList-goods-item .title {
    overflow: hidden;
    color: #888;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 1em;
    font-size: 1em;
    padding: 0 10px;
}
.pageGoodsList-goods-item .price {
    padding: 10px 10px;
    color: #ff0f23;
}
.pageGoodsList-goods-item .add2CartBtn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #ff0f23;
    border: 1px solid #ff0f23;
    border-radius: 3px;
    padding: 5px 5px 4px 4px;
}

/**
* goods_detail
*/

.goods-detail-comment {
}
.goods-detail-comment-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 10px;
}
.goods-detail-comment-top-logo {
}
.goods-detail-comment-top-logo > img {
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
}
.goods-detail-comment-top-nick {
    flex: 1;
    margin-left: 20px;
}
.goods-detail-comment-star {
    color: gold;
    padding-bottom: 10px;
}
.goods-detail-comment-txt {
    padding-bottom: 10px;
}
.goods-detail-comment-images {
    justify-content: space-between;
    flex-wrap: wrap;
}
.goods-detail-comment-images > img {
    height: 140px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
}

.scroll-imgs {
    position: relative;
    overflow: hidden;
    height: 320px;
    background-color: #fff;
}

.scroll-imgs ul {
    list-style: none;
    position: relative;
    height: 100%;
}

.scroll-imgs ul li {
    display: block;
    height: 100%;
    float: left;
    padding: 0;
    margin: 0;
}

.scroll-imgs .p {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background-color: #ccc;
}

.b2 {
    background-color: #fff;
    border-top: 1px solid #f6f6f6;
    border-bottom: 1px solid #f6f6f6;
    padding: 15px 15px;
    margin-top: 1px;
}

.b2 .t {
    color: #111;
    font-size: 20px;
    line-height: 24px;
}

.b2 .p {
    color: #ff0f23;
    font-weight: bold;
    font-size: 20px;
    margin-top: 15px;
}

.b2 .p span {
    color: #969696;
    font-size: 12px;
    margin-left: 20px;
}

.b2 .p span.op {
    text-decoration: line-through;
    font-weight: normal;
    color: #999;
}

.b2 .p span.stock {
    float: right;
    margin-left: 20px;
}

.b2 .d {
    color: #777;
    margin-top: 20px;
}

.b2 .d2 {
    color: #777;
    margin: 10px 0;
    margin-top: 20px;
}

.b2 .d2 span {
    margin-right: 15px;
}

.b9 {
    margin: 10px 0;
    background-color: #fff;
    padding: 12px;
    font-size: 14px;
    display: flex;
}

.b9 img {
    width: 80px;
    height: 80px;
    border-radius: 90px;
    border: 1px solid #ccc;
}

.b9 .i {
    flex: 1;
    margin-left: 10px;
}

.b9 .i h4 {
    font-weight: normal;
    margin-top: -5px;
}

.b9 .i h4 span {
    font-size: 20px;
}

.b9 .i p {
    color: #888;
    margin-top: 5px;
    font-size: 12px;
}

.b3 {
    background-color: #fff;
    font-size: 14px;
    line-height: 30px;
    min-height: 290px;
    max-width: 100%;
    overflow: hidden;
}

.b3 p,
.b3 span {
    font-size: 14px;
    line-height: 25px !important;
    max-width: 100%;
    overflow: hidden;
}

.b3 p img,
.b3 span img {
    display: block;
    margin: 5px auto;
    width: 100%;
    max-width: 100%;
    height: auto !important;
}

.b3-table {
    width: 100%;
    border-collapse: collapse;
}

.b3-table td {
    padding: 10px;
    border: 1px solid #f1f1f1;
}
/****goods_dialog  start */
.goods_dialog_mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
    z-index: 99;
    top: 0;
    left: 0;
}

.goods_dialog {
    width: 100%;
    position: fixed;
    background-color: #fff;
    bottom: 0;
    z-index: 100;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
}
.goods-dialog-header {
    display: flex;
}
.goods-dialog-header-left,
.goods-dialog-header-right {
    width: 12vw;
    text-align: center;
    font-size: 26px;
    padding: 12px;
}
.goods-dialog-header-center {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-weight: bold;
}
.buy-dailog-middle {
    height: 25vh;
    overflow-y: scroll;
}
.buy-diaolog-remark {
    margin: 0 15px;
}
.buy-diaolog-remark textarea {
    width: 100%;
    height: 5em;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    background-color: #efefef;
    padding: 10px;
}
.buy-dailog-button {
    margin: 10px;
    border-radius: 10px;
    background-color: #fd5552;
    height: 50px;
    line-height: 50px;
    font-size: 1.2em;
    color: #fff;
    text-align: center;
}
.stock-not-enough {
    background-color: #989899;
}
.spec-list {
    padding: 0 20px;
}
.spec-item {
    margin-top: 10px;
}
.spec-item-title {
    font-size: 1.2em;
    font-weight: bold;
}
.spec-item-body {
    display: flex;
    gap: 20px;
    margin-top: 3px;
}
.spec-item-body-item {
    background-color: #f1f1f1;
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 1em;
}
.spec-item-body-item.s {
    background-color: #e22;
    color: #fff;
}
.buy-diaolog-header {
    padding: 1em;
    overflow: hidden;
    display: flex;
    gap: 1em;
    justify-content: flex-start;
    position: relative;
}
.buy-diaolog-header img {
    width: 80px;
    height: 80px;

    display: inline-block;
    border: 3px solid #ccc;
    background-color: #fff;
}
.buy-diaolog-header-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.buy-diaolog-header-center-txt {
    color: #e22;
    font-size: 1.3em;
    font-weight: bold;
}
.buy-diaolog-header-center-num {
    text-align: center;
}

.buy-diaolog-header-center-num div {
    border: 1px solid #f4f4f4;
    color: #000;
    width: 30px;
    height: 30px;
    background: #f4f4f4;
    float: left;
    line-height: 30px;
}

.ac1_1 {
    padding: 1em;
    overflow: hidden;
    display: flex;
    gap: 1em;
    justify-content: flex-start;
    position: relative;
}
.ac1_close {
}
.ac1_1 span {
    display: block;
    color: #e22;
    font-size: 1.2em;
    line-height: auto;
    font-weight: bold;
}

.ac1_1 img {
    width: 80px;
    height: 80px;

    display: inline-block;
    border: 3px solid #ccc;
    background-color: #fff;
}

.ac1_2 {
    font-size: 16px;
    padding: 10px 20px;
}

.ac1_2 .num {
    border: 1px solid #eee;
    float: left;
    overflow: auto;
    text-align: center;
    margin-top: -5px;
}

.ac1_2 .num div {
    width: 30px;
    height: 30px;
    background: #f4f4f4;
    float: left;
    line-height: 30px;
}

.ac1_btn {
    background-color: #fd5552;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    color: #fff;
    text-align: center;
}
.goods_dialog_buy_now_address {
    margin: 0px 15px;
    background-color: #f1f1f1;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
}
.goods_dialog_buy_now_address > .goods_dialog-address-item {
    background-color: transparent;
}
.goods_dialog-address {
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 70vh;
}
.goods_dialog-address-title {
    padding: 0.75em;
    font-size: 1em;
    text-align: center;
    position: relative;
}
.goods_dialog-address-close-btn {
    float: right;
    font-size: 26px;
}
.goods_dialog-address-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    padding: 10px;
    min-height: 30vh;
    max-height: 70vh;
}
.goods_dialog-address-item {
    background-color: #fff;
    border-radius: 4px;
    padding: 4px 10px;
    margin-bottom: 10px;
}
.goods_dialog-address-list > .goods_dialog-address-item {
    padding: 14px;
}
.goods_dialog-address-item:last-child {
    margin-bottom: 0;
}
.goods_dialog-address-item-name {
    font-weight: bold;
}
.goods_dialog-address-item-addr {
    font-size: 0.85em;
}
.goods_dialog-address-item-ops {
    display: flex;
    flex-direction: row;
    font-size: 0.5em;
    flex-wrap: nowrap;
}
.goods_dialog-address-item-default {
    flex: 1;
    justify-content: flex-start;
}
.goods_dialog-address-item-btn {
    background-color: #e8e8e8;
    padding: 0px 5px;
    border-radius: 2px;
    margin-left: 10px;
}
.goods_dialog-address-btn-new {
    background-color: red;
    margin: 1em;
    text-align: center;
    padding: 0.75em;
    border-radius: 10px;
    color: #fff;
}
.goods-address {
    margin-top: 5px;
    background-color: #fff;
    margin-bottom: 1px;
    border-bottom: 1px solid #f6f6f6;
}
/**按钮**/
.b4 {
    display: flex;
    flex-flow: row;
    margin-top: 5px;
    background-color: #fff;
    margin-bottom: 1px;
    border-bottom: 1px solid #f6f6f6;
    font-size: 14px;
}

.b4 div {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
}

.b4 div.s {
    color: #ff5722;
    border-bottom: 1px solid #e22;
}

#bottom_bar_gd {
    position: fixed;
    bottom: 0;
    display: flex;
    display: -webkit-flex;
    width: 100%;
    max-width: var(--var-page-max-width);
    border-top: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0px -2px 5px #ddd;
    padding: 5px 0;
    padding-bottom: 1em;
}

#bottom_bar_gd a {
    display: block;
    text-align: center;
    height: 40px;
    line-height: 40px;
    font-size: 1em;
    margin: 0 5px;
    border-radius: 3px;
}

#bottom_bar_gd a.home {
    font-size: 24px;
    width: 36px;
    border: 1px solid #eee;
}

#bottom_bar_gd a.buy,
#bottom_bar_gd a.addtocart {
    flex: 1;

    font-size: 1.2em;
    background-color: #e22;
    color: #fff;
    font-family: "微软雅黑";
}

#bottom_bar_gd a.addtocart {
    background-color: #ff5722;
}

#wrap {
    position: relative;
    margin: 0px auto;
    border-bottom: 1px solid #e6e6e6;
    background-color: #fff;
    overflow: hidden;
}

#slider {
    width: 300%;
    font: 100px/400px Microsoft Yahei;
    text-align: center;
    color: #fff;
    margin-left: 0;
    background-color: red;
}

#slider li {
    float: left;
    width: 33.33333%;
}

#slider li img {
    display: block;
    padding: 10px;
    height: 200px;
    border: 1px solid red;
    margin: 30px auto;
}

#opts {
    width: 600px;
    height: 40px;
    margin: auto;
    color: #fff;
    text-align: center;
    font: 20px/40px Microsoft Yahei;
}

#opts label {
    float: left;
    width: 100px;
    height: 40px;
    margin-right: 4px;
    background: #01254a;
    cursor: pointer;
}

#opts label:hover {
    background: #405871;
}

/* 隐藏Input按钮*/
#l01,
#l02,
#l03 {
    display: none;
}

.fx_oli {
    display: flex;

    font-size: 14px;
    padding-bottom: 1px;
}

.fx_oli div {
    flex: 1;
    padding: 5px;
    background-color: #fff;
}

/** order_list_item*/
.fx_oli div:nth-child(1) {
    width: 40px;
    text-align: center;
}

.fx_oli div:nth-child(2) {
    width: 70px;
}

.fx_oli div:nth-child(3) {
    width: 90px;
}

.fx_oli div:nth-child(4) {
    width: 50px;
}

.fx_oli div:nth-child(5) {
    width: 50px;
}

/**
* sar 页面
*/

.list_item .sar_person {
    width: 100px;
    overflow: hidden;
    display: flex;
    font-size: 12px;
    color: #888;
}

.sar_info {
    flex: 1;
    margin-left: 10px;
}

.sar_title {
    font-size: 16px;
    margin-bottom: 10px;
}

.sar_title span {
    border-radius: 4px;
    font-size: 14px;
    padding: 4px;
    color: #fff;
}

.sar_title span.b {
    background-color: #99cfff;
}

.sar_title span.s {
    background-color: #58b957;
}

.sar_title a {
    text-decoration: none;
    color: #333;
}

.list_item .sar_desc {
    color: #969696;
    font-size: 14px;
    margin-bottom: 10px;
}

.list_item .sar_address {
    color: #969696;
    font-size: 14px;
}

.sar_list_end {
    background-color: #fff;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    color: #ccc;
    margin-top: 1px;
}

/**
* sar detail
*/
.s1_title {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #fff;
}

.s1_title span {
    border-radius: 4px;
    font-size: 14px;
    padding: 4px;
    color: #fff;
}

.s1_title span.b {
    background-color: #99cfff;
}

.s1_title span.s {
    background-color: #58b957;
}

.s1_title p.p {
    color: #888;
    margin-top: 10px;
}

/** 优惠劵 **/

.coupon_item {
    border: 1px solid red;
    margin-bottom: 1px;
    margin: 15px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0px 3px 3px #ccc;
    background-size: cover;
    background-color: #fff;
}

.coupon_item p {
    display: block;
    padding-left: 20px;
    font-size: 10px;
    color: #000;
}

.coupon_item p.val {
    text-align: center;
    color: #fff;
    border-radius: 4px 4px 0 0;
    font-size: 50px;
    padding: 40px 8px;
    font-weight: bolder;
    background-color: #ff5722;
}

.coupon_item p.ky {
    background-color: #ff5722;
}

.coupon_item p.yy {
    background-color: #44b549;
}

.coupon_item p.gq {
    background-color: #ccc;
}

.coupon_item p.name {
    padding-top: 10px;
}

.coupon_item p.desc {
    padding-bottom: 10px;
}

.cash_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.cash_table tr:first-child {
    border-top: 1px solid #e5e5e5;
}

.cash_table tr {
    border-bottom: 1px solid #e5e5e5;
}

.cash_table td {
    padding: 4px;
}

/**message **/

.message_item {
    display: flex;
    padding: 5px;
    background-color: #fff;
    margin-bottom: 1px;
    position: relative;
}

.message_item .ic {
    height: 70px;
    width: 70px;
}

.message_item .ic .img {
    margin: 10px;
    width: 50px;
    height: 50px;
    /*
    width:100%;
    height:100%;
    */
}

.message_item .bd {
    flex: 1;
    padding-left: 5px;
    padding-right: 5px;
    position: relative;
}

.message_item .bd .tit {
    font-size: 16px;
    color: #454545;
}

.message_item .bd .text {
    font-size: 12px;
    color: #787878;
    padding: 0px 0;
    margin-bottom: 30px;
}

.message_item .bd .ts {
    font-size: 12px;
    color: #ccc;
    position: absolute;
    bottom: 0;
    left: 5px;
}

/** my_agent */

.agent_box {
    background-color: #fff;

    padding: 5px;
    overflow: auto;
}

.agent {
    float: left;
    margin-right: 4px;
    margin-bottom: 4px;
    border: 1px solid #e5e5e5;
    text-align: center;
    position: relative;
}

.agent img {
    width: 60px;
    height: 60px;
    padding: 2px;
    margin: 1px;
    border-radius: 50px;
}

.agent p {
    text-align: center;
    word-wrap: break-word;
    word-break: break-all;
}

/**顶部求关注链接 */

.please_follow {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    height: 40px;
}

.pfbg {
    background-color: #000;
    opacity: 0.5;
    width: 100%;
    height: 100%;
}

.pffe {
    position: absolute;
    top: 0;
    width: 100%;

    display: flex;
}

.pffe .t {
    flex: 1;
    color: #fff;
    margin: 10px;
}

.pffe .b {
    font-size: 14px;
    background-color: #04be02;
    display: block;
    float: left;
    color: #fff;
    padding: 4px 30px;
    margin: 5px 20px;
    border-radius: 4px;
}

/** 新用户中心页面 */

.list_str {
    background-color: #fff;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    margin-top: 10px;
    padding-left: 10px;
}

/** div标签 **/
.list_str div.list_str_item:first-child {
    border-top: none;
}

.list_str div.list_str_item {
    display: block;
    padding: 8px 5px;
    border-top: 1px solid #eee;
    color: #333;
    font-size: 16px;
}

.list_str div.list_str_item label {
    margin-right: 20px;
}

.list_str div.list_str_item input[type="text"] {
    color: #888;
    padding: 2px;
    border: none;
}

.list_str_btn1 {
    width: 100%;
    border-radius: 5px;
}

/**a*/

.list_str a.list_str_item:first-child {
    border-top: none;
}

.list_str a.list_str_item {
    display: block;
    padding: 8px 5px;
    border-top: 1px solid #eee;
    color: #333;
    font-size: 16px;
}

.list_str .list_str_r {
    float: right;
    font-size: 12px;
    color: #888;
    margin-top: 3px;
    margin-right: 15px;
}

.list_str .list_str_r em {
    width: 10px;
    height: 10px;
    border: 1px solid #c8c8cd;
    border-bottom: none;
    border-left: none;
    display: inline-block;
    transform: rotate(45deg);
    margin-left: 10px;
}

/**** comment ****/
.comment-order-wrapper {
    padding: 10px 10px;
}

.comment-order-wrapper > .order_item {
    background-color: #f8f8f8;
    margin-top: 10px;
    border-radius: 4px;
}

.comment-item {
    display: flex;
    flex-direction: column;
    color: #222;
}
.comment-label {
    padding: 6px 10px;
    border-top: 1px solid #f1f1f1;
    margin-top: 10px;
    color: #888;
}
.comment-star,
.comment-txt,
.comment-img,
.comment-public {
    margin-bottom: 10px;
    padding: 0 10px;
}

.comment-star {
    display: flex;
    flex-direction: row;
    color: gold;
}

.comment-star > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.4em;
    height: 1.4em;
    font-size: 2em;
    vertical-align: baseline;
}

.comment-txt textarea {
    border: none;
    background-color: #fafafa;
    width: 100%;
    padding: 10px;
    min-height: 80px;
}

.comment-img {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.comment-img-item,
.comment-img-upload-btn {
    background-color: #f8f8f8;
    border: 1px solid #f1f1f1;
    height: 25vw;
    width: 25vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}
.comment-img-item {
    position: relative;
}
.comment-img-item > .mobile-cross {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: #04be02;
    font-size: 1.5em;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comment-img-item img {
    max-width: 100%;
    max-height: 100%;
}

.comment-img-upload-btn {
    border: 1px dashed #ccc;
    border-radius: 4px;
    flex-direction: column;
    color: #777;
}

.comment-img-upload-btn .icon {
    display: block;
    font-size: 10vw;
    font-weight: lighter;
}

.comment-public {
    display: flex;
    align-items: center;
}

.comment-public > .common-radio {
    font-size: 1.5em;
    color: #0bb20c;
}

.comment-public-txt {
    color: #777;
    text-align: right;
    margin-left: 20px;
    flex: 1;
}

/**** comment ****/
/******fx ******/
.fx-result-txt {
    text-align: center;
    background-color: #fff;
    color: red;
    line-height: 25px;
    padding: 10px;
    margin: 1px 0;
}

.fx-reg-form {
    background-color: #fff;
    padding-bottom: 16px;
}

.fx-user-info {
    display: flex;
    align-items: center;
    padding: 10px;
}

.fx-user-info-logo {
    width: 16vw;
    height: 16vw;
    border-radius: 16vw;
    overflow: hidden;
}

.fx-user-info-logo img {
    width: 100%;
    height: 100%;
}

.fx-user-info-name {
    margin-left: 20px;
    font-size: 18px;
    flex: 1;
}
.fx-user-info-qr {
    font-size: 14px;
    color: #666;
    line-height: 20px;
}

.fx-user-info2 {
    display: flex;
}

.fx-card {
    display: flex;
}

.fx-card > div {
    flex: 1;
    text-align: center;
}

.fx-card > div > .a {
    color: orangered;
    font-size: 20px;
    font-weight: bold;
}

.fx-card2 {
    display: flex;
}

.fx-card2 > div {
    flex: 1;
    color: #666;
    text-align: center;
    padding: 4px;
}

.fx-card2-header > div {
    font-weight: bold;
    color: #444;
}

.fx-grid-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.fx-grid-card:after {
    content: "";
    width: 25vw;
}

.fx-grid-card a {
    width: 25vw;
    height: 25vw;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    flex-direction: column;
    padding: 5px;
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 10px;
}
.fx-grid-card a span.icon {
    color: #666;
    font-size: 28px;
}
.fx-grid-card a span {
    font-size: 14px;
    width: 100%;
    white-space: nowrap;
}
.fx-friend-item {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #f1f1f1;
}
.fx-friend-item-logo {
}
.fx-friend-item-logo img {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}
.fx-friend-item-info {
    margin-left: 10px;
    font-size: 14px;
    line-height: 20px;
}
.fx-order-item {
    font-size: 14px;
    background-color: #fff;
    margin-bottom: 10px;
    padding: 10px 4vw;
}
.fx-order-item-goods-list {
}
.fx-order-item-goods-list-item {
}
.fx-order-item-goods-list-item-logo {
    width: 40px;
}
.fx-order-item-goods-list-item-logo img {
    max-width: 40px;
    max-height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.fx-order-item-goods-list-info {
    line-height: 20px;
    margin-left: 10px;
}
.fx-yongjin-apply-item {
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    text-align: left;
    padding: 3px 10px;
}
.fx-yongjin-apply-item > div {
    text-align: left;
}
.goods-slide-box {
    box-sizing: border-box;
    width: 100%;
    aspect-ratio: 1;
    margin: 0 auto;
    overflow: hidden;
}

/**fapiao*/

.fapiao-btns-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.fapiao-btns-list > .dk-btn {
    width: 48%;
}

.front-dialog_mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
    z-index: 99;
    top: 0;
    left: 0;
}

.front-dialog {
    width: 100%;
    position: fixed;
    background-color: #fff;
    bottom: 0;
    z-index: 100;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.front-form-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
}

.front-form-check {
    flex: 1;
    display: flex;
}
.front-form-check > div {
    padding: 8px 12px;
    border: 1px solid #04be02;
    border-right: none;
}
.front-form-check > div.s {
    color: #fff;
    background-color: #04be02;
}
.front-form-check > div:last-child {
    border-right: 1px solid #04be02;
}
.front-form {
    padding: 20px 20px;
    padding-top: 0;
}
.front-form-title {
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

.front-form > .front-form-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
    padding: 10px;
}
.front-form > .front-form-item > label {
    width: 20%;
    white-space: nowrap;
    overflow: hidden;
    text-align: right;
    margin-right: 10px;
}
.front-form > .front-form-item > label.require::before {
    content: "*";
    color: red;
    margin-right: 3px;
}
.front-form > .front-form-item > input {
    flex: 1;
    padding: 10px;
    border: none;
}
.front-form-btns {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    padding: 10px 20px;
}
.fapiao-btn-load-wx {
    width: auto !important;
    padding: 4px !important;
}

.order-detail-status {
    background: #8e2de2; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #4a00e0, #8e2de2); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
        to right,
        #4a00e0,
        #8e2de2
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    color: #fff;
    margin-top: 0;
    padding-top: 2em;
    padding-bottom: 2em;
    text-align: center;
}
.order-detail-status-title {
    font-size: 2em;
}
.order-detail-status-body {
    font-size: 0.9em;
    margin-top: 10px;
}
.order-detail-address_item {
    padding: 20px;
}
.order-detail-address_item > .name {
    font-size: 1.3em;
    margin-bottom: 4px;
    font-weight: bold;
}
.order-detail-address_item > .address {
}

.order-detail-express-query-btn {
    padding: 20px;
}
