body {
    background: #F1F2F5;
}
.layout {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}
.notScroll {
    height: 100%;
    overflow: hidden;
}
.goods_layout {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    height: 100%;
    overflow: hidden;
}
.white_layout {
    background: #fff;
}
.header {
    width: 100%;
    height: 75px;
    flex-shrink: 0;
}
.fixed_header .header_content {
    position: fixed;
    z-index: 10;
    background-color: #fff;
}
.boxshadow_header {
    box-shadow: 0px 0px 10px rgba(98, 98, 98, 0.1);
}
.header_content {
    width: 100%;
    max-width: 640px;
    height: 75px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 20px;
}
.header_back {
    width: 30px;
    height: 30px;
    background: url(../images/icon_back.png) no-repeat center center / contain;
    cursor: pointer;
}
.header_back_two {
    width: 30px;
    height: 30px;
    background: url(../images/icon_back.png) no-repeat center center / contain;
    cursor: pointer;
}
.header_content .header_title {
    position: absolute;
    width: calc(100% - 140px);
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    font-size: 22px;
    color: #2A2B50;
    display: flex;
    justify-content: center;
    align-items: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.main {
    flex: 1;
    height: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}
.classify_main {
    // position: absolute;
    width: 100%;
    height: calc(100% - 66px);
    display: flex;
    flex-direction: column;
}
.login_main {
    padding: 30px 0;
    align-items: center;
    justify-content: space-between;
}
.login_main .login_content {
    width: 100%;
}
.login_main .logo {
    width: 158px;
    height: 158px;
    margin: 0 auto;
    background: url(../images/logo.png) no-repeat center center / contain;
    margin-bottom: 17px;
}
.login_main .login_title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #3F414E;
}
.form {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    padding: 20px 18px;
}
.form .input_item {
    width: 100%;
    height: 60px;
    border-radius: 16px;
    background: #F2F3F7;
    display: flex;
    align-items: center;
    padding: 0 18px;
    margin-bottom: 22px;
}
.form .input_item input {
    flex: 1;
    background: none;
    border: none;
}
.form .input_item .eye_icon {
    display: flex;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    cursor: pointer;
}
.form .input_item input[type=text]+.eye_icon {
    background-image: url(../images/icon_eye_close.png);
}
.form .input_item input[type=password]+.eye_icon {
    background-image: url(../images/icon_eye_open.png);
}
.form .input_item .send_sms {
    width: 80px;
    font-size: 14px;
    color: #BE883C;
    text-align: center;
    cursor: pointer;
}
.form .form_item .form_item_title {
    font-size: 14px;
    color: #999999;
    margin-bottom: 4px;
}
.form .checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.form .checkbox input {
    display: none;
}
.form .checkbox input+label {
    margin: 0;
    display: flex;
    font-size: 16px;
    color: #3F414E;
}
.form .checkbox input+label::before {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #DDDDDD;
    box-sizing: border-box;
}
.form .checkbox.checkbox_round input+label::before {
    background: #F2F3F7;
    border-radius: 12px;
    border: 0;
}
.form .checkbox input:checked+label::before {
    border: 0;
    background: #BE883C url(../images/icon_checked.png) no-repeat 5px 7px/13px 9px;
}
.form .checkbox .checkbox_text {
    font-weight: 500;
    font-size: 16px;
    color: #A1A4B2;
}
.form .checkbox .checkbox_text .terms_text {
    color: #9FC777;
}

.form .radio_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.form .radio_list .radio_item {
    display: flex;
    align-items: center;
    margin-right: 30px;
}
.form .radio_list .radio_item input {
    display: none;
}
.form .radio_list .radio_item label {
    display: flex;
}
.form .radio_list .radio_item label::before {
    content: '';
    display: block;
    margin: 0;
    margin-right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background: #F2F3F7;
}
.form .radio_list .radio_item input:checked+label::before {
    background: #BE883C url(../images/icon_checked.png) no-repeat 5px 7px/13px 9px;
}

.form .btn {
    width: 100%;
    height: 60px;
    border-radius: 30px;
    background: #4B382A;
    color: #F6F1FB;
    font-size: 16px;
    font-weight: 500;
}
.login_main .forget_pwd {
    display: flex;
    justify-content: center;
}
.login_main .forget_pwd a {
    color: #3F414E;
    font-size: 14px;
    font-weight: 500;
}
.login_main .login_tips {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 500;
    font-size: 16px;
}
.login_main .login_tips .tips_text {
    color: #A1A4B2;
}
.login_main .login_tips a {
    color: #91BF63;
}

.home_logo {
    display: block;
    width: 68px;
    height: 68px;
}

.menu {
    width: 100%;
    height: 60px;
    padding: 0 17px;
}
.menu .menu_content {
    position: fixed;
    bottom: 0;
    width: calc(100% - 34px);
    max-width: 606px;
    height: 60px;
    border-radius: 30px;
    background-color: #fff;
    z-index: 10;
    padding: 0 10px;
    box-shadow: 0px 0px 12px rgba(98, 98, 98, 0.1);
}
.menu .menu_content .menu_list {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.menu .menu_content .menu_list .menu_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.menu .menu_content .menu_list .menu_item .menu_i {
    display: block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.menu .menu_content .menu_list .menu_item .menu_i1 {
    background-image: url(../images/menu_icon_1.png);
}
.menu .menu_content .menu_list .menu_item .menu_i2 {
    background-image: url(../images/menu_icon_2.png);
}
.menu .menu_content .menu_list .menu_item .menu_i3 {
    background-image: url(../images/menu_icon_3.png);
}
.menu .menu_content .menu_list .menu_item .menu_i4 {
    background-image: url(../images/menu_icon_4.png);
}
.menu .menu_content .menu_list .menu_item.active .menu_i1 {
    background-image: url(../images/menu_active_icon_1.png);
}
.menu .menu_content .menu_list .menu_item.active .menu_i2 {
    background-image: url(../images/menu_active_icon_2.png);
}
.menu .menu_content .menu_list .menu_item.active .menu_i3 {
    background-image: url(../images/menu_active_icon_3.png);
}
.menu .menu_content .menu_list .menu_item.active .menu_i4 {
    background-image: url(../images/menu_active_icon_4.png);
}
.menu .menu_content .menu_list .menu_item .menu_text {
    font-weight: 500;
    font-size: 14px;
    color: #868686;
}
.menu .menu_content .menu_list .menu_item.active .menu_text {
    color: #BE883C;
}

.home_card_list {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}
.home_card {
    width: 100%;
    background: #d4e9e2;
    box-shadow: 0px 0px 12px rgba(98, 98, 98, 0.1);
    margin-bottom: 22px;
    overflow: hidden;
}
.home_card:last-of-type {
    margin-bottom: 0;
}
.home_card .image {
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    position: relative;
}
.home_card .image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home_card .home_card_content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.home_card .home_card_content .text {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #384144;
    margin-bottom: 18px;
}
.home_card .home_card_content .detail_btn {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    height: 30px;
    border-radius: 15px;
    color: rgba(0,0,0,.87);;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,.87);;
}
.classify_card_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 20px;
    grid-column-gap: 15px;
    padding: 20px 17px;
}
.classify_card {
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0px 0px 12px rgba(98, 98, 98, 0.1);
    overflow: hidden;
}
.classify_card .image {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}
.classify_card .image img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.classify_card .classify_card_content {
    padding: 15px;
}
.classify_card .classify_card_content .text {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #384144;
}

.me_content {
    padding: 20px 17px;
}
.me_content .user_info {
    display: flex;
    align-items: center;
    margin-bottom: 27px;
}
.me_content .user_info .avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 0px 12px rgba(98, 98, 98, 0.1);
    margin-right: 20px;
}
.me_content .user_info .avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.me_content .user_info .name {
    font-size: 22px;
    color: #000000;
}
.cell_list .cell {
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    box-shadow: 0px 0px 12px rgba(98, 98, 98, 0.1);
    margin-bottom: 14px;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    border-radius: 16px;
    overflow: hidden;
}
.cell_list .cell a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 20px;
    color: #333333;
}
.cell_list .cell:last-of-type {
    margin-bottom: 0;
}
.cell_list .cell.has_arrow a::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: url(../images/icon_arrow_right.png) no-repeat center center/contain;
}

.orderList_content {
    padding: 20px 14px;
}
.order_list .order_card {
    width: 100%;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0px 0px 12px rgba(98, 98, 98, 0.1);
    overflow: hidden;
    margin-bottom: 16px;
}
.order_list .order_card:last-of-type {
    margin-bottom: 0;
}
.order_list .order_card .card_content {
    padding: 20px;
}
.order_list .order_card .card_content .card_header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
}
.order_list .order_card .card_content .card_header .card_header_l .name {
    font-size: 14px;
    color: #333333;
}
.order_list .order_card .card_content .card_header .card_header_l .order_time {
    font-size: 12px;
    color: #999999;
}
.order_list .order_card .card_content .card_header .status {
    font-size: 14px;
    color: #333333
}
.order_list .order_card .card_content .card_body {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.order_list .order_card .card_content .card_body .product_list {
    display: flex;
    flex-wrap: wrap;
    width: 180px;
    flex-shrink: 0;
    margin-right: 10px;
}
.order_list .order_card .card_content .card_body .product_list .product_image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-right: 9px;
    margin-bottom: 5px;
    overflow: hidden;
}
.order_list .order_card .card_content .card_body .product_list .product_image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.order_list .order_card .card_content .card_body .order_info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.order_list .order_card .card_content .card_body .order_info .order_amount {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333333;
}
.order_list .order_card .card_content .card_body .order_info .order_num {
    font-size: 12px;
    color: #999999;
}
.order_list .order_card .card_content .card_footer {
    display: flex;
    justify-content: flex-end;
}
.order_list .order_card .card_content .card_footer .again_btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    border: 0;
    background: #4B382A;
}

.order_list .order_card .card_content .card_footer .order_status_btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    border: 0;
    background: #EB5757;
    margin-right: 10px;
}

.classify_list {
    width: 100%;
    height: 85px;
    padding: 14px 0;
    overflow-x: auto;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
}
.classify_list li {
    flex-shrink: 0;
}
.classify_list .classify_item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0 8px;
    height: 40px;
    border-radius: 20px;
    padding: 0 17px;
    font-size: 14px;
    color: #4B4E4C;
    background: #fff;
}
.classify_list .classify_item.active {
    color: #fff;
    background: #4B382A;
    border-color: #4B382A;
}
.productPage_main {
    display: flex;
    flex-direction: column;
}
.productPage_block {
    position: relative;
    flex: 1;
    height: 0;
}
.productPage_content {
    overflow-y: auto;
    position: absolute;
    width: 100%;
    height: 100%;
}
.productPage_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 20px;
    grid-column-gap: 15px;
    padding: 10px 17px;
}
.productPage_list_title {
    padding: 10px 17px;
    font-weight: 500;
    font-size: 16px;
    color: #384144;
}
.product_card {
    width: 100%;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0px 0px 12px rgba(98, 98, 98, 0.1);
    overflow: hidden;
}
.product_card .image {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}
.product_card .image img {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_card .product_card_content {
    padding: 10px;
}
.product_card .product_card_content .product_name {
    font-size: 14px;
    font-weight: 500;
    color: #384144;
    margin-bottom: 4px;
}
.product_card .product_card_content .product_classify {
    font-size: 12px;
    font-weight: 500;
    color: #384144;
}

.login_tips {
    width: 100%;
    height: 80px;
}
.login_tips .login_tips_content {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 640px;
    height: 80px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #2D2926;
    z-index: 10;
}
.login_tips.has_menu .login_tips_content {
    bottom: 80px;
}
.login_tips .login_tips_content .text {
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    margin-right: 20px;
}
.login_tips .login_tips_content .login_btn {
    display: flex;
    align-items: center;
    height: 50px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    padding: 0 30px;
    background: #EB5757;
}

.detailPage_content .product_image {
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    position: relative;
}
.detailPage_content .product_image img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detailPage_content .product_info {
    padding: 20px;
    background-color: #fff;
}
.detailPage_content .product_info .product_name {
    font-size: 18px;
    font-weight: 500;
    color: #384144;
    margin-bottom: 10px;
}
.detailPage_content .product_info .product_num {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.detailPage_content .product_info .product_num .num_text {
    font-size: 14px;
    color: #333333;
}
.detailPage_content .product_info .product_num .price{
    color:red;
}


.specification_list .specification_item .specification_title {
    font-size: 14px;
    color: #999999;
    margin-bottom: 8px;
}
.specification_list .specification_item .specification_radio_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.specification_list .specification_item .specification_radio_list .specification_radio_item {
    margin-bottom: 10px;
    margin-right: 10px;
}

.specification_list .specification_item .specification_radio_list .specification_radio_item input {
    display: none;
}
.specification_list .specification_item .specification_radio_list .specification_radio_item input+label {
    display: flex;
    align-items: center;
    height: 30px;
    padding: 0 10px;
    border-radius: 4px;
    border: 1px solid #DCDFE6;
    font-weight: 500;
    font-size: 12px;
    color: #606266;
}
.specification_list .specification_item .specification_radio_list .specification_radio_item input:checked+label {
    color: #fff;
    border-color: #4B382A;
    background: #4B382A;
}
.detailPage_content .explain {
    padding: 20px;
    background: #d4e9e2;
}
.detailPage_content .explain  .explain_title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}
.productDetail_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.productDetail_footer .add_btn {
    width: 260px;
    height: 50px;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 25px;
    background: #4B382A;
    margin:0 5px;
}
.productDetail_footer .buy_now {
    width: 260px;
    height: 50px;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 25px;
    background: #EB5757;
    margin:0 5px;
}


.footer {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    height: 80px;
}
.footer .footer_content {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 640px;
    height: 80px;
    background: #fff;
    box-shadow: 0px -4px 10px rgba(98, 98, 98, 0.1);
    z-index: 10;
}

/* 数量加减框 */
.input_number,
.input_number2 {
    display: flex;
    align-items: center;
}
.input_number .num_btn,
.input_number2 .num_btn {
    text-align: center;
    line-height: 26px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    overflow: hidden;
    font-size: 16px;
    box-sizing: content-box;
}
.input_number input,
.input_number2 input {
    border: 0;
    width: 40px;
    background: transparent;
    text-align: center;
}

.shoppingCart_list {
    padding: 20px 17px;
}
.shoppingCart_card {
    display: flex;
    padding: 18px;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0px 0px 12px rgba(98, 98, 98, 0.1);
    overflow: hidden;
    margin-bottom: 17px;
}
.shoppingCart_card:last-of-type {
    margin-bottom: 0;
}
.shoppingCart_card .image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 16px;
    background: #F1F2F5;
    margin-right: 10px;
    overflow: hidden;
}
.shoppingCart_card .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shoppingCart_card .shoppingCart_card_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
.shoppingCart_card .shoppingCart_card_content .product_name {
    font-weight: 600;
    font-size: 16px;
    color: #000000;
}
.shoppingCart_card .shoppingCart_card_content .product_specification {
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    margin-bottom: 10px;
}
.shoppingCart_card .shoppingCart_card_content .content_footer {
    display: flex;
    justify-content: space-between;
}
.shoppingCart_card .shoppingCart_card_content .content_footer .price {
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    margin-right: 10px;
}
.shoppingCart_footer {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.shoppingCart_footer .total {
    display: flex;
    align-items: flex-end;
    font-size: 14px;
    color: #333333;
    line-height: 1;
    margin-left: 10px;
}
.shoppingCart_footer .total .total_num {
    font-size: 22px;
    font-weight: 500;
}
.shoppingCart_footer .submit_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 50px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #4B382A;
}

.address_list {
    padding: 20px 17px;
}
.address_card {
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(98, 98, 98, 0.1);
    margin-bottom: 17px;
    overflow: hidden;
}
.address_card:last-of-type {
    margin-bottom: 0;
}
.address_card .address_card_content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
}
.address_card .address_card_content .address_text {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 3px;
}
.address_card .address_card_content .user_info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.address_card .address_card_content .user_info .name {
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    margin-right: 10px;
}
.address_card .address_card_content .user_info .phone {
    font-size: 14px;
    font-weight: 500;
    color: #999999;
}
.address_card .address_card_content .delete_i {
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: url(../images/icon_del.png) no-repeat center center/contain;
    cursor: pointer;
}
.address_card .address_card_content .edit_i {
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: url(../images/icon_setting.png) no-repeat center center/contain;
    cursor: pointer;
}
.address_footer {
    width: 100%;
    padding: 10px 50px;
}
.address_footer .add_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    background: #4B382A;
}


.personal_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 25px;
}
.personal_content .avatar {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: #C4C4C4;
    overflow: hidden;
    margin-bottom: 15px;
}
.personal_content .avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.personal_content .username {
    font-weight: 700;
    font-size: 24px;
    color: #3C4469;
}
.personal_content .email {
    font-size: 14px;
    color: #808080;
    margin-bottom: 28px;
}
.personal_content .changePwd_cell {
    width: 100%;
    border-radius: 10px;
    background: #FFFFFF;
    border: 1px solid #E5E9F4;
    margin-bottom: 20px;
}
.personal_content .changePwd_cell .cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
}
.personal_content .changePwd_cell .cell .cell_label {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #3C4469;
}
.personal_content .changePwd_cell .cell::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: url(../images/icon_arrow_right.png) no-repeat center center/contain;
}
.personal_content .changePwd_cell .cell .cell_label .setting_i {
    display: flex;
    width: 24px;
    height: 24px;
    background: url(../images/icon_setting.png) no-repeat center center/contain;
    margin-right: 10px;
}
.personal_content .logout_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 50px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #4B382A;
    margin-bottom: 20px;
}
.personal_content .cell_list {
    width: 100%;
}


.confirmOrder_content {
    padding: 20px 17px;
}
.confirmOrder_address_card {
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(98, 98, 98, 0.1);
    overflow: hidden;
    margin-bottom: 8px;
}
.confirmOrder_address_card .address_card_a {
    padding: 10px 15px;
    display: flex;
    align-items: center;
}
.confirmOrder_address_card .address_card_a::after {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: url(../images/icon_arrow_right.png) no-repeat center center/contain;
}
.confirmOrder_address_card .address_card_content {
    flex: 1;
    margin-right: 20px;
}
.confirmOrder_address_card .address_card_content .title {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
}
.confirmOrder_address_card .address_card_content .address {
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    margin-bottom: 3px;
}
.confirmOrder_address_card .address_card_content .address_info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.confirmOrder_address_card .address_card_content .address_info .name {
    margin-right: 10px;
    font-size: 14px;
    color: #999999;
}
.confirmOrder_address_card .address_card_content .address_info .phone {
    font-size: 14px;
    color: #999999;
}
.confirmOrder_product_card {
    padding: 10px 15px;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(98, 98, 98, 0.1);
    overflow: hidden;
    margin-bottom: 8px;
}
.confirmOrder_product_card .product {
    display: flex;
    padding: 10px 0;
}
.confirmOrder_product_card .product .image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #F1F2F5;
    overflow: hidden;
    margin-right: 9px;
}
.confirmOrder_product_card .product .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.confirmOrder_product_card .product .product_info {
    flex: 1;
    margin-right: 10px;
}
.confirmOrder_product_card .product .product_info .product_name {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}
.confirmOrder_product_card .product .product_info .product_specification {
    font-size: 14px;
    color: #999999;
}
.confirmOrder_product_card .product .product_r {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 80px;
}
.confirmOrder_product_card .product .product_r .price {
    font-size: 16px;
    font-weight: 500;
    color: #EB5757;
}
.confirmOrder_product_card .product .product_r .num {
    font-size: 14px;
    color: #999999;
}
.confirmOrder_cell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0px 0px 12px rgba(98, 98, 98, 0.1);
    margin-bottom: 8px;
    cursor: pointer;
}
.confirmOrder_cell.has_arrow::after {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background: url(../images/icon_arrow_right.png) no-repeat center center/contain;
    margin-left: 6px;
}
.confirmOrder_cell .cell_content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    
}
.confirmOrder_cell .cell_content .cell_label {
    width: 100px;
    font-size: 16px;
    color: #333333;
}
.confirmOrder_cell .cell_content .cell_value {
    flex: 1;
    font-size: 16px;
    color: #333333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.confirmOrder_cell .cell_content .cell_value img {
    display: block;
    height: 19px;
    max-width: 100%;
    object-fit: contain;
}
.confirmOrder_footer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.confirmOrder_footer .pay_amount {
    display: flex;
    align-items: flex-end;
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.confirmOrder_footer .pay_amount .amount {
    font-size: 22px;
}
.confirmOrder_footer .pay_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 50px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #4B382A;
}

.paymentResults_content {
    padding: 50px 17px;
}
.paymentResults_content .results_card {
    width: 100%;
    padding: 36px 30px;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(98, 98, 98, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.paymentResults_content .results_card .status {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.paymentResults_content .results_card .status.status_success {
    background-image: url(../images/status_success.png);
}
.paymentResults_content .results_card .status.status_error {
    background-image: url(../images/status_error.png);
}
.paymentResults_content .results_card .status.status_warning {
    background-image: url(../images/status_warning.png);
}
.paymentResults_content .results_card .status.status_info {
    background-image: url(../images/status_info.png);
}
.paymentResults_content .results_card .title {
    font-weight: 500;
    font-size: 20px;
    color: #000000;
}
.paymentResults_content .results_card .amount {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333333;
}
.paymentResults_content .results_card .complete_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 50px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #4B382A;
}

.orderDetail_content {
    padding: 20px 17px;
}
.orderDetail_content .orderDetail_card {
    margin-bottom: 12px;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(98, 98, 98, 0.1);
}
.orderDetail_content .orderDetail_card:last-of-type {
    margin-bottom: 0;
}
.orderDetail_status_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
}
.orderDetail_status_card .status_title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 4px;
}
.orderDetail_status_card .status_text {
    font-size: 14px;
    color: #999999;
}
.orderDetail_address_card {
    padding: 10px 20px;
}
.orderDetail_address_card .address {
    margin-bottom: 3px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}
.orderDetail_address_card .address_info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.orderDetail_address_card .address_info .name {
    margin-right: 10px;
    font-size: 14px;
    color: #999999;
}
.orderDetail_address_card .address_info .phone {
    font-size: 14px;
    color: #999999;
}
.orderDetail_product_card .product_list {
    padding: 10px;
    padding-bottom: 0;
    border-bottom: 1px solid #DDDDDD;
}
.orderDetail_product_card .product_list .product {
    display: flex;
    padding: 10px 0;
}
.orderDetail_product_card .product_list .product .image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #F1F2F5;
    overflow: hidden;
    margin-right: 9px;
}
.orderDetail_product_card .product_list .product .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.orderDetail_product_card .product_list .product .product_info {
    flex: 1;
    margin-right: 10px;
}
.orderDetail_product_card .product_list .product .product_info .product_name {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}
.orderDetail_product_card .product_list .product .product_info .product_specification {
    font-size: 14px;
    color: #999999;
}
.orderDetail_product_card .product_list .product .product_r {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 80px;
}
.orderDetail_product_card .product_list .product .product_r .price {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}
.orderDetail_product_card .product_list .product .product_r .num {
    font-size: 14px;
    color: #999999;
}
.orderDetail_product_card .fee_list {
    padding: 10px;
    border-bottom: 1px solid #DDDDDD;
}
.orderDetail_product_card .fee_list .fee_item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.orderDetail_product_card .fee_list .fee_item .item_label {
    width: 80px;
    flex-shrink: 0;
    margin-right: 20px;
    font-size: 14px;
    color: #999999;
}
.orderDetail_product_card .fee_list .fee_item .item_value {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}
.orderDetail_product_card .product_total {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 15px;
}
.orderDetail_product_card .product_total .total {
    font-size: 14px;
    color: #999999;
}
.orderDetail_product_card .product_total .total .amount {
    font-weight: 500;
    font-size: 16px;
    color: #EB5757;
}
.orderDetail_detail_card {
    padding: 10px 15px;
}
.orderDetail_detail_card .title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 12px;
}
.orderDetail_detail_card .detail_cell {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.orderDetail_detail_card .detail_cell .cell_label {
    width: 60px;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 14px;
    color: #999999;
}
.orderDetail_detail_card .detail_cell .cell_value {
    font-size: 14px;
    color: #333333;
}


.modal .modal-dialog {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.modal .modal-dialog .modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    max-width: 320px;
    max-height: 90%;
    padding: 27px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(98, 98, 98, 0.1);
    border-radius: 16px;
    overflow: hidden;
}
.modal .modal-dialog .modal-content .title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
}

.modal .modal-dialog .modal-content .modal_footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.modal .modal-dialog .modal-content .modal_footer .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 40px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0 5px;
}
.modal .modal-dialog .modal-content .modal_footer .btn.confirm_btn {
    background: #4B382A;
}
.modal .modal-dialog .modal-content .modal_footer .btn.cancel_btn {
    background: #BDBDBD;
}

.call_modal .call_text {
    font-size: 14px;
    color: #333333;
    margin-bottom: 17px;
}
.call_modal .modal_footer .btn.call_btn {
    background: #4B382A;
}


.terms_modal .terms_text {
    width: 100%;
    flex: 1;
    height: 0;
    overflow-y: auto;
    font-size: 14px;
    color: #333333;
    margin-bottom: 17px;
}


.delete_modal .delete_text {
    font-size: 14px;
    color: #333333;
    margin-bottom: 17px;
}

.remark_modal .modal-dialog .modal-content,
.pay_type_modal .modal-dialog .modal-content {
    padding: 20px;
}
.remark_modal .title {
    width: 100%;
}
.remark_modal .input {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    border: 1px solid #dddddd;
    padding: 5px;
    margin-bottom: 17px;
    resize: none;
}
.pay_type_modal .title {
    width: 100%;
}
.pay_type_modal .type_list {
    margin-bottom: 17px;
    margin: 10px;
    width: 100%;
}
.pay_type_modal .type_list .type_item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.pay_type_modal .type_list .type_item input[type="radio"] {
    display: none;
}
.pay_type_modal .type_list .type_item label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    margin-left: 10px;
}

.pay_type_modal .type_list .type_item label img {
    display: block;
    width: 80px;
    height: 20px;
    object-fit: contain;
}
.pay_type_modal .type_list .type_item label::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #F2F3F7;
}
.pay_type_modal .type_list .type_item input:checked+label::after {
    background: #BE883C url(../images/icon_checked.png) no-repeat 5px 7px/13px 9px;
}


.header_block {
    height: 66px;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    flex-shrink: 0;
}
.header_block .header {
    position: fixed;
    /*top: 0;*/
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    height: 66px;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    background: #fff;
    box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 2px 2px rgb(0 0 0 / 6%), 0 0 2px rgb(0 0 0 / 7%);
}
.header_block .header .logo {
    width: 48px;
    height: 48px;
}
.header_block .header .logo img {
    display: block;
    width: 100%;
    height: 100%;

}
.nav_content--bg {
    position: absolute;
    top: 0;
    right: -100%;
    height: 100vh;
    z-index: 8998;
    background: rgba(0,0,0,0.33);
}
.navbar--burger {
    position: relative;
    z-index: 9000;
    width: 40px;
    height: 50px;
    cursor: pointer;
}
.navbar--burger div {
    background: #000;
    width: 20px;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: 1s cubic-bezier(.19,1,.22,1);
}
.navbar--burger div:nth-child(1) {
    transition-delay: .2s;
    transform: translateY(-8px) scaleX(1);
}
.navbar--burger div:nth-child(2) {
    transition-delay: .25s;
    transform: scaleX(1);
}
.navbar--burger div:nth-child(3) {
    transition-delay: .3s;
    transform: translateY(8px) scaleX(1);
}
.navbar--burger div:nth-child(4) {
    transition-delay: 0s;
    transform: rotate(-45deg) scaleX(0);
}
.navbar--burger div:nth-child(5) {
    transition-delay: 0s;
    transform: rotate(45deg) scaleX(0);
}
.nav_content {
    position: absolute;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 80%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 96px;
    pointer-events: none;
    transition: right 0.4s;
    z-index: 8999;
}
.nav_content .nav_content--menu {
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}
.nav_content .nav_content--menu .header_menu .menu_login {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ddd;
}
.nav_content .nav_content--menu .header_menu .menu_login a {
    padding: 0 20px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    border-radius: 15px;
    margin: 20px 10px;
    border: 1px solid #000;
    font-size: 14px;
    color: #000;
}
.nav_content .nav_content--menu .header_menu .menu_login a.black {
    background: #000;
    color: #fff;
}
.nav_content .nav_content--menu .header_menu li {
    text-align: center;
    overflow: hidden
}
.nav_content .nav_content--menu .header_menu a {
    display: inline-block;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 20px;
    margin: 16px 0;
    position: relative;
    padding: 6px;
}

.deployed_nav .navbar--burger div:nth-child(1) {
    transition-delay: 0s;
    transform: translateY(-8px) scaleX(0);
}
.deployed_nav .navbar--burger div:nth-child(2) {
    transition-delay: .05s;
    transform: scaleX(0);
}
.deployed_nav .navbar--burger div:nth-child(3) {
    transition-delay: .1s;
    transform: translateY(8px) scaleX(0);
}
.deployed_nav .navbar--burger div:nth-child(4) {
    transition-delay: 0.25s;
    transform: rotate(-45deg) scaleX(1);
}
.deployed_nav .navbar--burger div:nth-child(5) {
    transition-delay: 0.2s;
    transform: rotate(45deg) scaleX(1);
}
.deployed_nav .nav_content--bg {
    pointer-events: auto;
    left: 0;
    right: 0;
}
.deployed_nav .nav_content {
    pointer-events: auto;
    right: 0;
}
.deployed_nav {
    overflow: hidden;
}



.default_footer {
    padding: 32px 16px;
    // margin-top: 32px;
    border-top: 1px solid #ddd;
    background: #fff;
}
.default_footer .list .li a {
    display: inline-block;
    padding:  8px 0;
    color: #000;
}
.default_footer .copyright {
    padding: 16px 0;
    margin-bottom: 0;
    color: rgba(0,0,0,0.58);
}


.specification_list_item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 40%);
    display: flex;
    padding: 12px 16px;
    position: relative;
    transition: border .2s linear .2s;
    margin: 16px 0;
}
.specification_list_item .specification_text {
    flex: 1;
}
.specification_list_item .specification_text span {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
}
.specification_list_item .edit {
    flex-shrink: 0;
    font-size: 16px;
    margin-left: 16px;
}
.specification_list_item .label {
    background-color: #fff;
    color: rgba(0,0,0,.87);
    cursor: text;
    font-size: 16px;
    left: 12px;
    opacity: 1;
    padding-left: 4px;
    padding-right: 4px;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    -webkit-user-select: none;
    user-select: none;
    z-index: 2;
}

.specification {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 40%);
    display: block;
    padding: 0 16px;
    margin: 16px;
    position: relative;
    transition: border .2s linear .2s;
}
.specification .select__input {
    appearance: none;
    -moz-appearance:none;
    -webkit-appearance: none;
    cursor: pointer;
    font-size: 16px;
    height: 100%;
    left: 0;
    padding: 12px 0;
    border: 0;
    width: 100%;
    z-index: 1;
    background: none;
    color: #000;
}
select::-ms-expand { display: none; }
.specification .specification_label {
    background-color: #fff;
    color: rgba(0,0,0,.87);
    cursor: text;
    font-size: 16px;
    left: 12px;
    opacity: 1;
    padding-left: 4px;
    padding-right: 4px;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    -webkit-user-select: none;
    user-select: none;
    z-index: 2;
}

.specification_modal {
    display: none;
    position: fixed;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    transition-timing-function: ease;
    z-index: 99999;
    background-color: #fff;
}
.specification_modal.show {
    display: block;
}
.specification_modal .modal_header {
    padding: 16px;
    display: flex;
    justify-content: flex-end;
}
.specification_modal .modal_header .close {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.specification_modal .modal_header .close div {
    background: #000;
    width: 20px;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: 1s cubic-bezier(.19,1,.22,1);
}
.specification_modal .modal_header .close div:nth-child(1) {
    transition-delay: 0s;
    transform: rotate(-45deg) scaleX(1);
}
.specification_modal .modal_header .close div:nth-child(2) {
    transition-delay: 0s;
    transform: rotate(45deg) scaleX(1);
}
.specification_modal .modal_footer {
    margin: 16px;
    display: flex;
    justify-content: center;
}
.specification_modal .modal_footer .done_btn {
    width: 280px;
    height: 50px;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 25px;
    background: #4B382A;
}
.specification_modal .specification_title {
    padding-left: 16px;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}
.specification_modal .modal_specification_li .li_title {
    background-color: rgba(0,0,0,.1);
    border-bottom: none;
    border-top: 1px solid rgba(0,0,0,.2);
    color: rgba(0,0,0,.58);
    font-size: 12px;
    font-weight: 700;
    margin: 18px 0 10px;
    padding: 6px 0 6px 16px;
    text-transform: uppercase;
    width: 100%;
}
.specification_modal .modal_specification_li_item {
    padding: 5px 16px;
}
.specification_input {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 12%);
    display: flex;
    justify-content: space-between;
    padding: 8px 16px;
    position: relative;
    transition: border .2s linear .2s;
}

.specification_input .input_number2 .num_minus,
.specification_input .input_number2 input {
    opacity: 0;
}
.specification_input.active .input_number2 .num_minus,
.specification_input.active .input_number2 input {
    opacity: 1;
}
.specification_input .input_number21{
    display: none;
}
.modal_specification_li_item .active{
    box-shadow:0 0 0 1px rgb(255 0 0 / 12%);
    color: #EB5757;
}
.modal_specification_li_item .active .input_number21{
    display: block;
}
.modal_specification_li_item .disable{
    box-shadow:0 0 0 1px rgb(102 102 102 / 12%);
    color: #ccc;
}
.modal_specification_li_item .disable .input_number21{
    display: none;
}

.policy_content {
    padding: 20px;
}
.policy_title {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    margin-bottom: 20px;
}
.policy_content .content p {
    margin-bottom: 20px;
    word-wrap: break-word;
    font-size: 16px;
    color: #333;
}

