@charset "UTF-8";

/**
 * 应用通用样式 - 手机和PC共用
 *
 * 放置原则：
 * 1. 框架未定义的通用样式
 * 2. 应用级别的通用变量（如 --p-color 等）
 * 3. 应用通用组件样式
 * 4. 跨页面的通用布局样式
 *
 * 如需PC特定覆盖，请使用 myapp-pc.css
 */
html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre,
    code, form, fieldset, legend, input, textarea, p, blockquote, th, td,
    header, hgroup, nav, section, article, aside, footer, figure,
    figcaption, menu, button {
    margin: 0;
    padding: 0;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

li {
    list-style: none;
}

em, i {
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: 400;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
    margin-top: .5em;
}

table tr {
    width: 100%;
    height: 2em;
    line-height: 2em;
    cursor: pointer;
}

table tr:hover {
    background: #baddec;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

fieldset, img {
    border: 0;
}

a {
    text-decoration: none;
}

button, input[type="submit"], input[type="button"] {
    min-width: 4em;
    height: 1.75em;
    line-height: 1.75em;
    border-radius: .4em;
    -webkit-border-radius: .4em;
    background: var(--p-color);
    color: #FFFFFF;
    text-align: center;
    padding: 0 1em;
    border: none;
    outline: none;
    cursor: pointer;
}

input[type="text"], input[type="number"], input[type="tel"], input[type="email"],
    select, input[type="password"] {
    width: 10em;
    height: 1.75em;
    line-height: 1.75em;
    border-radius: .4em;
    -webkit-border-radius: .4em;
    border: none;
    outline: none;
    border: 1px solid #e6e6e6;
    padding-left: .6em;
    color: #333;
}

select {
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background: url("../images/pack_down.png") no-repeat right center;
    background-size: 0.75rem;
    padding-right: 1.2rem;
    width: 100%;
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 0.95rem;
    color: #333;
}
button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background: var(--p-color);
}

button[disabled="disabled"], button:disabled {
    background: var(--p-color);
    -webkit-appearance: none;
    color: #fff;
}

/*清除浮动样式*/
.clear:after {
    content: "";
    display: block;
    clear: both;
}

/*系统内所有链接的样式*/
a:link {
    text-decoration: none;
    color: var(--p-color);
}

a:visited {
    text-decoration: none;
    color: var(--p-color);
}

a:hover {
    /* text-decoration: none;
    color: var(--p-color); */
}

a:active {
/*     text-decoration: none;
    color: var(--p-color); */
}

html {
    background: #fff;
    height: 100%;
}

body {
    font-family: "PingFang SC";
    width: 100%;
    overflow-x: hidden;
    line-height: 1.75em;
    clear: both;
    font-size: 0.9em;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(3rem + var(--a-safeAreaTop));
    background: white;
    z-index: 102;
    padding-top: var(--a-safeAreaTop);
}

header>nav {
    display: block;
    position: relative;
    height: 3rem;
}

header>nav>.previous {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}
header>nav>.previous a{
    display: flex;
    justify-content: center;
    align-items: center;
}

header>nav>.previous a img{
    margin-top:0.05rem;
}
header>nav>.left-panel {
    display: none;
}

header>nav>.right-panel {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}
header>nav>.previous span{
    color: black;
    font-size: 1.07rem;
    cursor: pointer;
    white-space: nowrap;
}
header>nav>.right-panel img {
    width: .83rem;
    height: .97rem;
}

header>nav>.right-panel a {
    color: #fff;
    font-size: .86rem;
}

header>nav>a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-size: 1.11rem;
    font-weight: 600
}

/*主体部分*/
article[role="document"] {
    position: relative;
    height: 0;
    flex: 1;
    overflow: auto;
}

footer[role="footer"] {
    background: #fff;
    height: 3.5em;
    line-height: 3.5em;
    box-shadow: 0px 0px 4px 1px #e6e6e6;
    position: relative;
    z-index: 10;
}

footer[role="footer"] section[role="footerButtons"] {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding-top: 0.2rem;
    background: var(--p-color);
}

section[role="footerButtons"] .bottomBotton {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
}

section[role="footerButtons"] a {
    display: inline-block;
    width: 100%;
    height: 3.5em;
    line-height: 3.5em;
    text-align: center;
    border: 0;
    color: #fff;
    position: relative;
    font-size: 1em;
    background: none;
    line-height: 3.5em;
}

section[role="footerButtons"] a:last-child:after {
    background: var(--p-color);
}

section[role="footerButtons"] a .shopNums {
    height: 1.2em;
    line-height: 1.2em;
    padding: 0 0.35em;
    background: red;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: .25rem;
    left: 50%;
    transform: translate(0.5em, -50%);
    z-index: 10;
}

footer.mainFooter section[role="footerButtons"] {
    background-color: transparent;;
}

footer.mainFooter section[role="footerButtons"] .mainFooterBtn a {
    height: 4.1em;
    color: #333;
    font-size: 0.8em;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.25em;
}

footer.mainFooter section[role="footerButtons"] .mainFooterBtn a img {
    width: 1.25rem;
    margin-bottom: .25rem;
    margin-top: .25rem;
}

footer.mainFooter section[role="footerButtons"] div.active a {
    color: var(--p-color);
}

footer.mainFooter section[role="footerButtons"] div.active a img {
    width: 2.25rem;
    margin-top: -0.75rem;
    padding: .125rem;
    background-color: #fff;
    border-radius: 50%;
}

section[role="footerButtons"] div.active a .shopNums {
    top: -.25rem;
}

.shopNums.hidden {
    display: none;
}

/* 商品列表 */
.supPartList {
    width: 100%;
    height: auto;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.salesStatusList .block401{
    box-shadow: none;
    border:none
}

.salesStatusList .block401:nth-child(2n+1) {
    margin-right: 1.1rem;
}

.noData-block {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 100%;
    height: auto;
}

.noData-block .block_Img_Div {
    width: 100%;
    height: auto;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: 0;
}

.noData-block .block_Img_Div img {
    width: 10em;
    height: auto;
    margin-bottom: 1em;
}

.noData-block .blockRight {
    width: 100%;
    height: auto;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.noData-block .blockRight span {
    display: block;
    width: 100%;
    text-align: center;
    height: 2em;
    line-height: 2em;
    color: #999;
}

.noData-block .blockRight span:first-child {
    color: #333;
    font-size: 1.1em;
}

.noData-block .blockRight span:last-child {
    display: inline-block;
    width: 10em;
    text-align: center;
    height: 2.4em;
    line-height: 2.4em;
    color: var(--p-color);
    border: 1px solid;
    margin: 1em auto 0;
}

/* 我的订单nav头 */
.order_nav {
    width: 100%;
    height: 2.78rem;
    position: fixed;
    top: calc(3rem + var(--a-safeAreaTop));
    left: 0;
    z-index: 99;
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    align-items: center;
    background: #fff;
    border-bottom: 0.03rem solid #eee;
}

.order_nav>div>a {
    color: #999999;
}

.order_nav>div.active>a {
    font-size: 1.05rem;
    font-weight: bold;
    position: relative;
    color: var(--p-color);
}

.order_nav>div.active>a:after {
    position: absolute;
    bottom: -0.5em;
    left: 50%;
    display: inline-block;
    width: 3em;
    height: 2px;
    background: var(--p-color);
    content: "";
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

/*内容区样式（手机版段落式排版）*/
ol.context li {
    padding: 0.5em 0.75em;
    border-bottom: 1px solid #8c8c8c;
}

ol.context {
    list-style-type: none;
    padding: 0.25em;
    margin-top: 0;
    background: #fff;
}

ol.context li table {
    width: 100%;
    border-collapse: collapse;
}

ol.context li table tr th {
    text-align: right;
    font-weight: normal;
    padding: 0.25em;
}

ol.context li table tr td {
    text-align: left;
}

ol.context li table tr input {
    width: 50%;
}

/* ol.context li table tbody tr:nth-child(odd) {
        background: #eee;
    } */
ol.context li table tbody tr:hover {
    background: #b0d8ff;
}

ol.context li section span {
    margin-right: 0.5em;
}

ol.context li section span.right {
    float: right;
}

ol.context li section span img {
    vertical-align: middle;
}

/* 关于应用间距 */
.personal_list.about {
    margin: 0;
    padding: 0 1rem;
}

.blockImgBlock101 {
    width: 100%;
    height: 3.54rem;
    line-height: 3.54rem;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.03rem solid #EEEEEE;
}

.blockImgBlock101:last-child {
    border-bottom: 0;
}

.blockImgBlock101>img {
    width: 1.39rem;
    height: 1.39rem;
    margin-right: 0.9rem;
}

.blockImgBlock101 .block101 {
    width: 100%;
    height: 3.4em;
    line-height: 3.4em;
    position: relative;
    border-bottom: 0;
}

.blockImgBlock101 .block101 div[role='title'] {
    padding: 0;
    font-size: 0.97rem;
    color: #333333;
}

.blockImgBlock101 .block101 div[role='title'] i {
    float: right;
    padding-right: 1.7em;
    font-size: 0.85em;
    color: #999;
}

.blockImgBlock101 .block101>a {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 100%;
    height: inherit;
    text-align: right;
    line-height: inherit;
    margin-top: 0;
    z-index: 2;
}

.blockImgBlock101 .block101>a>img {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    height: 0.8rem;
    width: auto;
    margin: 0;
}

/*操作提示信息*/
section[role="message"] {
    min-height: 2.5em;
    max-height: 7em;
    line-height: 1.5em;
    position: fixed;
    left: 0;
    bottom: 0;
    display: none;
    color: red;
    padding: 5px 5px 0;
    z-index: 9999;
}

.no-content {
    text-align: center;
    padding-top: 30%;
}

.no-content>img {
    display: block;
    width: 8em;
    height: auto;
    margin: 0 auto;
}
/*
UIPartSearch_phone 样式 start
*/
.UIPartSearch {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: 1.75em;
    height: 2.4rem;
    border: 0;
    outline: none;
    border-radius: 8px;
    padding-left: 2.5rem;
    background: #F5F6FA;
    background-size: 0.97rem;
    background-position-x: 0.8rem;
}

.UIPartSearch {
    position: relative !important;
}

.UIPartSearch-search-input+p {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 0.8rem !important;
    left: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.07em !important;
    cursor: pointer !important;
    color: #999999 !important;
    width: 1.2em !important;
    height: 1.2em !important;
    text-align: center !important;
    border-radius: 50% !important;
    background: transparent !important;
}

/* 移动端输入框：全屏宽度 + 标准触摸高度 */
.UIPartSearch>input {
    width: 100%;
    height: 100%;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 0.97rem;
    box-sizing: border-box;
    background: transparent;
    color: #999;
}
.UIPartSearch>img:nth-of-type(1){
	width:1.07rem;
	height:1.14rem;
	left:0.86rem;
	top:0;
	transform:translateY(50%);
	position:absolute;
}

.UIPartSearch>input::placeholder {
    color: #999;
    opacity: 1;
}

/* 下拉面板：手机端全屏悬浮 */
.UIPartSearch>div.search-dropdown {
    width: 100%;
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 0.12rem 0.6rem rgba(0, 0, 0, 0.08);
    z-index: 999;
    max-height: 24.2rem;
    overflow-y: auto;
    display: none;
}

.UIPartSearch>div.search-dropdown>div {
    display: flex;
    background-color: var(--p-color);
    flex-wrap: wrap;
    background-color: #FF9933;
}

.UIPartSearch .search-dropdown .history-text {
    background-color: #FFB366;
    padding: 0 0.3rem;
    margin: 0.3rem;
    border-radius: 0.3rem;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.UIPartSearch .search-dropdown .history-text:hover {
    background: #f38d27;
}

/* 分区标题 */
.search-section-title {
    padding: 0.2rem 0.3rem;
    font-size: 0.73rem;
    background: #fafafa;
}

/*
UIPartSearch_phone 样式 end
*/

/* Alert弹窗样式 */
.alert-shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1001;
}

.alert-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 21.5em;
    min-height: 10rem;
    background: #fff;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    border-radius: .5rem;
}

.alert-box .alert-title {
    width: 100%;
    height: 4.625rem;
    line-height: 4.625rem;
    text-align: center;
    font-size: 1.375rem;
    color: #333
}

.alert-box .alert-con {
    width: 100%;
    line-height: 1.5rem;
    text-align: center;
    font-size: 1.0625rem;
    color: #666;
    padding: 0 .9375rem;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin-bottom: .9375rem;
    word-break: break-word;
}

.alert-box .alert-con a {
    color: #2F8BF7;
    text-decoration: underline
}

.alert-box>ul {
    width: 100%;
    height: 2.875rem;
    border-top: .0625rem solid #e6e6e6;
    display: flex;
}

.alert-box>ul li {
    list-style: none;
    flex: 1;
    border-right: .0625rem solid #e6e6e6;
    height: 2.8125rem;
    line-height: 2.8125rem;
    text-align: center;
    float: left;
    color: #2F8BF7;
    font-size: 1.125rem;
    cursor: pointer;
}

.alert-box>ul li.alert-cancel {
    color: #666666;
}

.alert-box>ul li:last-of-type {
    border-right: 0;
}

/* Alert弹窗样式 end */

/*选择弹窗的样式*/
.selectDialog {
    border-radius: 0.5em;
    display: none;
    position: fixed;
    z-index: 101;
    width: 100%;
    cursor: move;
}

.dialogClose span {
    float: right;
}

.dialogClose a {
    color: white !important;
    padding: 0.15em 0.5em;
}

.back-top, .back-bottom {
    width: 2.5em;
    height: 2.5em;
    text-align: center;
    line-height: 2.5em;
    position: fixed;
    bottom: 7em;
    right: 1em;
    z-index: 99999;
}

.back-bottom {
    bottom: 4rem;
}

.copy-btn {
    font-size: .92rem;
    color: black;
    transform: scale(.8);
    min-width: 0;
    border-left: 1px solid #8990AE;
    padding-left: 0.5rem;
    margin-left: 0.5rem;
}
.block_Img_Div {
    width: 100%;
    height: auto;
    padding: 0.5em 0;
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-items: center;
}

.block_Img_Div div[role=image] {
    width: 6em;
    height: 6em;
    margin-right: 0.7em;
    display: inline-block;
    overflow: hidden;
}

.block_Img_Div div[role=image]>img {
    max-width:100%;
    max-height: 6em;
    margin: 0 auto
}

.block_Img_Div .blockRight {
    flex: 1;
    height: 6em;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.block_Img_Div .blockRight>span {
    font-size: 0.85em;
    color: #666;
}

.block_Img_Div .blockRight>span:first-child {
    min-height: 2em;
    max-height: 2.2em;
    line-height: 1.1em;
    overflow: hidden;
    color: #000;
    font-size: 1.05em;
    word-break: break-all;
}

.blockImgBlock101 {
    width: 100%;
    height: 3.54rem;
    line-height: 3.54rem;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.03rem solid #EEEEEE;
}

.blockImgBlock101:last-child {
    border-bottom: 0;
}

.blockImgBlock101>img {
    width: 1.39rem;
    height: 1.39rem;
    margin-right: 0.9rem;
}

.blockImgBlock101 .block101 {
    width: 100%;
    height: 3.4em;
    line-height: 3.4em;
    position: relative;
    border-bottom: 0;
}

.blockImgBlock101 .block101 div[role='title'] {
    padding: 0;
    font-size: 0.97rem;
    color: #333333;
}

.blockImgBlock101 .block101 div[role='title'] i {
    float: right;
    padding-right: 1.7em;
    font-size: 0.85em;
    color: #999;
}

.blockImgBlock101 .block101>a {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 100%;
    height: inherit;
    text-align: right;
    line-height: inherit;
    margin-top: 0;
    z-index: 2;
}

.blockImgBlock101 .block101>a>img {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    height: 0.8rem;
    width: auto;
    margin: 0;
}

/* UIMobilePop弹层start */
div[role='UIMobilePop'] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    /* 高于商品详情底栏 .footer-box(102)，遮罩才能盖住底栏 */
    z-index: 200;
    display: none;
    flex-direction: column;
    justify-content: flex-end;
}

div[role='UIMobilePop']>div:first-of-type {
    height: 0;
    flex: 1;
}

div[role='UIMobilePop']>div:nth-of-type(2) {
    background-color: #fff;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    overflow: hidden;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 商品详情：数量弹层盖住底栏，使用弹层自带确认按钮 */
body.has-product-footer div#addShopPop[role='UIMobilePop']>div:nth-of-type(2) {
    max-height: 90vh;
}

body.has-product-footer div#addShopPop[role='UIMobilePop'] .content {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
}

body.has-product-footer div#addShopPop[role='UIMobilePop'] .footer button {
    background: var(--p-buttonBgc, #ff8004);
    color: #fff;
    border: 0;
    border-radius: 0.5rem;
    font-size: 1rem;
}

div[role='UIMobilePop'].show>div:nth-of-type(2) {
    animation: showPopup linear .1s;
}

@keyframes showPopup {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

div[role='UIMobilePop'].close>div:nth-of-type(2) {
    animation: closePopup linear .1s;
    transform: translateY(100%);
}

.closePopup {
    animation: closePopup linear .1s;
    transform: translateY(100%);
}

@keyframes closePopup {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}

div[role='UIMobilePop'] .title {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    font-size: 1rem;
}

div[role='UIMobilePop'] .title img {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
}

div[role='UIMobilePop'] .content {
    max-height: calc(100% - 6.25rem);
    overflow: auto;
    padding: 0 .75rem .75rem;
}

div[role='UIMobilePop'] .footer {
    height: 3.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 .75rem .75rem;
}

div[role='UIMobilePop'] .footer button {
    width: 100%;
    height: 2.5rem;
}
/* UIMobilePop弹层end */

/* addShopPop 数量选择（首页/搜索/商品详情共用） */
.mobile-qty-selector .qty-box {
    display: flex;
    justify-content: space-between;
}

.mobile-qty-selector .qty-box div:nth-of-type(1) {
    display: inline-flex;
}

.mobile-qty-selector .qty-box div:nth-of-type(1) span {
    font-size: 1.07rem;
    color: #333;
}

.mobile-qty-selector .qty-box div:nth-of-type(2) {
    display: flex;
    align-items: center;
}

.mobile-qty-selector .qty-box .qty-btn {
    min-width: auto;
    width: 2rem;
    height: 2rem;
    line-height: 1.75rem;
    background: #F0F4F7;
    font-size: 2rem;
    color: #999999;
    border-radius: 0;
    text-align: center;
    padding: 0;
}

.mobile-qty-selector .qty-box input {
    width: 6rem;
    height: 2rem;
    background: #F0F4F7;
    font-size: 1rem;
    color: #999999;
    margin: 0 .2rem;
    text-align: center;
    border-radius: 0;
    border: 0;
    outline: none;
    padding: 0;
}

.mobile-qty-selector ul {
    display: flex;
    margin-bottom: 0.86rem;
}

.mobile-qty-selector ul li {
    background: #F0F4F7;
    margin-right: 0.71rem;
    width: 3.21rem;
    height: 2.36rem;
    text-align: center;
    line-height: 2.36rem;
    border-radius: 0.57rem;
    color: #999999;
}

/* 列表区仅购物车图标（首页/搜索/收藏等） */
.block401 .info button.listCartIconBtn,
.block401 .info .listCartIconBtn {
    position: relative;
    width: 1.69rem;
    height: 1.69rem;
    min-width: auto;
    border: 0;
    outline: none;
    padding: 0;
    margin-right: 0.3rem;
    background: url(../images/newShopping/shopping_car_icon.png) no-repeat center center;
    background-size: contain;
    color: transparent;
    font-size: 0;
    line-height: 0;
}

.block401 .info button.listCartIconBtn[data-cart-num]::after,
.block401 .info .listCartIconBtn[data-cart-num]::after {
    content: attr(data-cart-num);
    position: absolute;
    right: -0.15rem;
    top: -0.15rem;
    min-width: 1rem;
    height: 1rem;
    line-height: 1rem;
    padding: 0 0.2rem;
    font-size: 0.65rem;
    font-style: normal;
    text-align: center;
    background: #ff3b30;
    color: #fff;
    border-radius: 0.5rem;
    box-sizing: border-box;
    pointer-events: none;
}

/* 分类导航样式 */
.nav-box{

}

.nav-box>li {
    height:48px;
    line-height:48px;
    font-size: 15px;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.nav-box>li.actived {
    background: white;
    color: #333;
    font-weight: bold;
}
.nav-box>li>a{
	width:100%;
	height:100%;
	display:block;
    color:#666;
}
/* 用伪元素或额外元素实现左边框效果，只作用于文字宽度 */
.nav-box>.actived::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1.14em;          /* 高度和文字行高一致 */
    background-color: #FF8004;
    border-radius: 2px;
}
/* 商品信息展示样式 */
.product-card{
	width:100%;
	display:flex;
	height:7.43rem;
	border-bottom:1px solid #F5F6FA;
	align-items:center;
}
.product-card>.product-img>img{
	width:4.86rem;
	height:4.86rem;
}
.product-info{
	margin-left:0.86rem;
	flex:1;
}
.product-info>div:nth-of-type(1){
	font-size:1.07rem;
	color:#333;
	width:11.79rem;
	line-height: 1.3;
    min-height: 2.6em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin-bottom:0.36rem;
}
.product-price{
	display:flex;
	justify-content:space-between;
}
.product-price>div:nth-of-type(1){
	font-size:0.86rem;
	color:#FA4F0D;
}
.product-price>div:nth-of-type(1)>span{
	font-size:0.86rem;
	color:#999999;
	margin-left:1px;
}
.product-info .product-action{
	position:relative;
	display:flex;
	align-items:center;
}
.product-info .cart-icon{
	position:relative;
	display:inline-block;
}
.product-info .cart-icon>img{
	width:1.71rem;
	height:1.71rem;
    cursor: pointer;
}
.product-info .cart-icon[data-cart-num]::after{
	content:attr(data-cart-num);
	position:absolute;
	right:-0.15rem;
	top:-0.15rem;
	min-width:1rem;
	height:1rem;
	line-height:1rem;
	padding:0 0.2rem;
	font-size:0.65rem;
	font-style:normal;
	text-align:center;
	background:#ff3b30;
	color:#fff;
	border-radius:0.5rem;
	box-sizing:border-box;
	pointer-events:none;
}
.product-action>img{
	width:2.86rem;
}

