
.empty[data-v-d5ea9138] {
  padding-top: 140px;
}

@charset "UTF-8";

html {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
    /*解决chrome浏览器下字体不能小于12px*/
}

/* 全局灰色滚动条美化 */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: #bfbfbf;
    border-radius: 6px;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: #a6a6a6;
}

::-webkit-scrollbar-corner {
    background: #f0f0f0;
}

body {
    min-width: 1200px;
    overflow-x: hidden;
    font-size: 12px;
    color: #000;
    font-family: -apple-system, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

@media (max-width: 1200px) {
    body {
        overflow-x: auto;
    }
}

a {
    outline: none;
    -webkit-text-decoration: none;
    text-decoration: none;
    color: #000;
}

a:hover {
    -webkit-text-decoration: none;
    text-decoration: none;
}

html {
    zoom: 1;
}

html * {
    outline: 0;
    zoom: 1;
}

html button::-moz-focus-inner {
    border-color: transparent !important;
}

/* 级联选择器面板高度调整 */

.el-cascader-panel {
    height: 400px !important;
}

.el-cascader__dropdown {
    height: 400px !important;
}

.el-cascader__dropdown .el-cascader-panel {
    height: 400px !important;
}

.el-cascader__dropdown .el-cascader-panel .el-cascader-menu {
    height: 400px !important;
}

/*设置margin和padding为0*/

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 {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
a img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var,
i {
    font-style: normal;
    font-weight: normal;
}

li {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before,
q:after {
    content: '';
}

em,
i {
    font-style: normal;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
input[type=date],
button,
select,
input[type=text] {
    /*去掉苹果的默认UI来渲染按钮 、解决部分手机浏览器对border：none无效办法*/
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
}

input:disabled {
    background-color: #fff;
    -webkit-text-fill-color: #ccc;
    -webkit-opacity: 1;
    color: #ccc;
    opacity: 1;
}

input::-webkit-input-placeholder {
    color: #aaa;
}

.price {
    font-family: arial;
    font-size: 12px;
    color: #e1251b;
    display: flex;
    align-items: baseline;
}

.price .big {
    font-size: 16px;
}

.price .small {
    font-size: 12px;
}

.content {
    width: 70%;
    min-width: 1200px;
    margin: auto;
    margin-bottom: 20px;
}

.content-en {
    width: 1380px;
    margin: auto;
}

input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder {
    color: #999;
}

input[type="text"]::-moz-placeholder, input[type="password"]::-moz-placeholder {
    color: #999;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder {
    color: #999;
}

/* 复选框 */

.checkbox {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    outline: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: none;
}

.checkbox::before {
    position: absolute;
    top: 0;
    left: 0;
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.checkbox.default::before {
    border: 1px solid #ddd;
    background: #fff;
    z-index: 1;
}

.checkbox.checked::before {
    border: 0;
    background: url(/_nuxt/assets/images/icons.png) no-repeat 0 -367px;
    z-index: 1;
}

.checkbox.disabled::before {
    background: #eee;
    cursor: not-allowed;
    border: 1px solid #ddd;
}

/* 复选框 end */

/* 单选框 */

/* .radio {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    outline: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: none;
}

.radio::before {
    position: absolute;
    top: 0;
    left: 0;
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.radio.default::before {
    border: 1px solid #ddd;
    background: #fff;
    z-index: 1;
}

.radio.checked::before {
    border: 1px solid #e1251b;
    z-index: 1;
}

.radio.checked::after {
    position: absolute;
    top: 2px;
    left: 2px;
    content: " ";
    display: block;
    width: 8px;
    height: 8px;
}

.radio.disabled::before {
    background: #eee;
    cursor: not-allowed;
    border: 1px solid #ddd;
} */

/* 单选框 end */

/* 顶部 */

.top {
    width: 100%;
    height: 36px;
    line-height: 36px;
    color: #999;
    background-color: #f7f7f7;
}

.top .con {
    width: 1200px;
    height: 36px;
    display: flex;
    margin: auto;
}

.top .con .left {
    position: relative;
    padding-left: 22px;
    flex: 1;
    overflow: hidden;
}

.top .con .left::before {
    position: absolute;
    left: 0;
    top: 11px;
    display: block;
    content: ' ';
    width: 12px;
    height: 14px;
    background: url(/_nuxt/assets/images/icons.png) no-repeat;
}

.top .con .left .item {
    -webkit-text-decoration: underline;
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.2s;
}

.top .con .left .item:hover {
    color: #e1251b;
}

.top .con .right {
    display: flex;
}

.top .con .right .item {
    position: relative;
}

.top .con .right .item .text {
    color: #999;
}

.top .con .right .item .link {
    margin-right: 10px;
    position: relative;
    display: inline-block;
}

.top .con .right .item .link,
.top .con .right .item .link .link-a {
    color: #e1251b;
    display: inline-block;
    vertical-align: top;
}

.top .con .right .item .link .link-a:hover {
    font-weight: 600;
}

.top .con .right .item .link .link-name {
    color: #999;
    position: relative;
    padding-right: 18px;
    padding-left: 2px;
    display: inline-block;
    max-width: 70px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.top .con .right .item .link:hover .link-name {
    color: #e1251b;
}

.top .con .right .item .link .link-name::before,
.top .con .right .item .link .link-name::after {
    position: absolute;
    right: 3px;
    display: block;
    width: 0;
    height: 0;
    content: " ";
    border: 5px solid transparent;
    border-radius: 2px;
}

.top .con .right .item .link .link-name::before {
    top: 16px;
    border-top: 5px solid #888;
}

.top .con .right .item .link:hover .link-name::before {
    top: 16px;
    border-top: 5px solid #e1251b;
}

.top .con .right .item .link .link-name::after {
    top: 15px;
    border-top: 5px solid #f7f7f7;
}

.top .con .right .item .link .link-select {
    position: absolute;
    width: 70px;
    padding: 5px 3px;
    left: 50%;
    transform: translateX(-50%);
    top: 36px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .15);
    z-index: 91;
    display: none;
}

.top .con .right .item .link:hover .link-select {
    display: block;
}

.top .con .right .item .link .link-select::before,
.top .con .right .item .link .link-select::after {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    display: block;
    content: " ";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-bottom: 6px solid #dedede;
}

.top .con .right .item .link .link-select::after {
    top: -10px;
    border-bottom: 6px solid #fff;
}

.top .con .right .item .link .link-select .link-item {
    display: block;
    text-align: center;
    color: #999;
    line-height: 12px;
    padding: 8px 0;
}

.top .con .right .item .link .link-select .link-item:hover {
    color: #e1251b;
}

.top .con .right .item .link {
    margin-right: 10px;
}

.top .con .right .item .link,
.top .con .right .item .link .link-a {
    color: #e1251b;
    cursor: pointer;
}

.top .con .right .item .link .link-a:hover {
    font-weight: 600;
}

.top .con .right .item .item-a,
.top .con .right .item .item-b {
    padding: 0 10px 0 11px;
    position: relative;
    z-index: 90;
    display: block;
    color: #999;
}

.top .con .right .item .item-a::after,
.top .con .right .item .item-b::after {
    position: absolute;
    top: 10px;
    left: 0;
    display: block;
    content: ' ';
    width: 1px;
    height: 16px;
    background: #ccc;
}

.top .con .right .item:hover .item-a,
.top .con .right .item:hover .item-b {
    color: #e1251b;
}

.top .con .right .item.mobile .item-a {
    padding-left: 24px;
}

.top .con .right .item.mobile .item-a::before {
    position: absolute;
    left: 10px;
    top: 11px;
    display: block;
    content: ' ';
    width: 12px;
    height: 14px;
    background: url(/_nuxt/assets/images/icons.png) no-repeat 0 -19px;
}

.top .con .right .item.mobile:hover .item-a::before {
    background-position: -14px -19px;
}

.top .con .right .item.mobile .mobile-select.option {
    width: 75px;
    height: auto;
    text-align: center;
    line-height: 1.5em;
    padding: 10px 0;
}

.top .con .right .item.mobile .mobile-select.option .option-text {
    margin: 0;
    cursor: pointer;
    color: #999;
    line-height: 1.5em;
}

.top .con .right .item.mobile .mobile-select {
    position: absolute;
    display: none;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transition: height .3s;
    -webkit-transition: height .3s;
    width: 130px;
    height: 145px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    z-index: 91;
}

.top .con .right .item.mobile .mobile-select .code {
    width: 100px;
    height: 100px;
    font-size: 0;
    margin: 10px auto 0;
}

.top .con .right .item.mobile .mobile-select .code img {
    width: 100%;
    height: 100%;
}

.top .con .right .item.mobile .mobile-select .text {
    width: 100%;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: #000;
    margin-top: 7px;
}

.top .con .right .item.mobile .mobile-select::before,
.top .con .right .item.mobile .mobile-select::after {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    display: block;
    content: ' ';
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-bottom: 6px solid #dedede;
}

.top .con .right .item.mobile .mobile-select::after {
    top: -10px;
    border-bottom: 6px solid #fff;
}

.top .con .right .item.mobile:hover .mobile-select {
    display: block;
}

.top .con .right .item.top-cart .item-a {
    padding-left: 32px;
}

.top .con .right .item.top-cart .item-a::before {
    position: absolute;
    left: 10px;
    top: 10px;
    display: block;
    content: ' ';
    width: 17px;
    height: 15px;
    background: url(/_nuxt/assets/images/icons.png) no-repeat 0 -38px;
}

.top .con .right .item.top-cart:hover .item-a::before {
    background-position: -22px -38px;
}

.top .con .right .item.top-cart .item-a .number {
    font-family: arial;
}

.top .con .right .item.top-cart.top-cart-empty:hover .item-a {
    background: #fff;
}

.top .con .right .item.top-cart.top-cart-empty .no-goods {
    position: absolute;
    right: 0;
    top: 36px;
    z-index: 89;
    width: 316px;
    height: 0;
    text-align: center;
    color: #000;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    transition: height .3s;
    overflow: hidden;
}

.top .con .right .item.top-cart.top-cart-empty:hover .no-goods {
    height: 94px;
    line-height: 94px;
}

.top .con .right .item.top-cart.top-cart-on .item-a {
    background: #e1251b;
}

.top .con .right .item.top-cart.top-cart-empty:hover .item-a::after,
.top .con .right .item.top-cart.top-cart-on .item-a::after {
    width: 0;
}

.top .con .right .item.top-cart.top-cart-on .item-a {
    color: #fff;
    height: 36px;
}

.top .con .right .item.top-cart.top-cart-on .item-a::before {
    background-position: -44px -38px;
}

.top .con .right .item.top-cart .cart-select {
    position: absolute;
    right: 0;
    top: 36px;
    z-index: 89;
    width: 316px;
    height: auto;
    max-height: 0;
    color: #000;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    transition: max-height .3s;
    -webkit-transition: max-height .3s;
    overflow: hidden;
}

.top .con .right .item.top-cart .cart-select .cart-list {
    padding: 0 20px;
    max-height: 324px;
    overflow-y: auto;
}

.top .con .right .item.top-cart .cart-select .cart-list .list-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.top .con .right .item.top-cart .cart-select .cart-list .list-item:last-child {
    border: 0;
}

.top .con .right .item.top-cart .cart-select .cart-list .list-item .goods-img {
    width: 60px;
    height: 60px;
    font-size: 0;
    cursor: pointer;
}

.top .con .right .item.top-cart .cart-select .cart-list .list-item .goods-img img {
    width: 100%;
    height: 100%;
}

.top .con .right .item.top-cart .cart-select .cart-list .list-item .goods-msg {
    margin-left: 10px;
    line-height: 30px;
    flex: 1;
}

.top .con .right .item.top-cart .cart-select .cart-list .list-item .goods-msg .name {
    max-width: 175px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
}

.top .con .right .item.top-cart .cart-select .cart-list .list-item:hover .goods-msg .name {
    color: #e1251b;
}

.top .con .right .item.top-cart .cart-select .cart-list .list-item .goods-msg .info {
    display: flex;
}

.top .con .right .item.top-cart .cart-select .cart-list .list-item .goods-msg .info .price {
    color: #000;
}

.top .con .right .item.top-cart .cart-select .cart-list .list-item .goods-msg .info .number {
    margin-left: 10px;
    color: #999;
    font-family: arial;
}

.top .con .right .item.top-cart .cart-select .cart-list .list-item .del {
    width: 14px;
    height: 14px;
    background: url(/_nuxt/assets/images/icons.png) no-repeat;
    background-position: 0 -415px;
    margin-top: 23px;
    cursor: pointer;
}

.top .con .right .item.top-cart .cart-select .list-total {
    padding: 15px 20px;
    background: #fafafa;
    display: flex;
}

.top .con .right .item.top-cart .cart-select .list-total .total-msg {
    flex: 1;
}

.top .con .right .item.top-cart .cart-select .list-total .total-msg .total-number {
    height: 16px;
    line-height: 16px;
}

.top .con .right .item.top-cart .cart-select .list-total .total-msg .price {
    height: 20px;
    line-height: 20px;
    margin-top: 4px;
}

.top .con .right .item.top-cart .cart-select .list-total .total-btn {
    width: 130px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    color: #f5f5f5;
    background: #e1251b;
    cursor: pointer;
}

.top .con .right .item.top-cart.top-cart-on:hover .item-a {
    background: #fff;
    color: #e1251b;
}

.top .con .right .item.top-cart.top-cart-on:hover .item-a::before {
    background-position: -22px -38px;
}

.top .con .right .item.top-cart.top-cart-on:hover .cart-select {
    max-height: 393px;
}

/* 顶部 end  */

/* 头部 */

.head {
    background: #fff;
    width: 100%;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .05);
}

.head .content {
    height: 94px;
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    padding-top: 20px;
    box-sizing: border-box;
}

.head .logo {
    height: 54px;
    display: flex;
    cursor: pointer;
}

.head .logo .logo-img {
    display: block;
    width: 190px;
    height: 48px;
    /*background: url(../images/logo.png) no-repeat;*/
    background-size: 100%;
}

.head .logo .name {
    margin-left: 10px;
}

.head .logo .name .cn {
    font-size: 16px;
    font-weight: 700;
    display: block;
    line-height: 20px;
    margin-top: 7px;
}

.head .logo .name .en {
    font-size: 12px;
    color: #ccc;
    display: block;
    line-height: 16px;
    margin-top: 5px;
}

.head .menu {
    display: flex;
}

.head .menu .item {
    position: relative;
    display: block;
    line-height: 52px;
    height: 52px;
    padding: 0 20px;
    font-size: 14px;
}

.head .menu-en .item {
    padding: 0 15px;
}

.head .menu .item.item-on,
.head .menu .item:hover {
    color: #e1251b;
}

.head .search {
    position: relative;
    width: 320px;
    height: 38px;
    margin-top: 8px;
}

.head .search .search-input-box {
    height: 38px;
    border: 2px solid #e1251b;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}

.head .search .search-input-box .search-input {
    display: inline-block;
    border: 0;
    width: 51%;
    height: 99%;
    line-height: 34px;
    padding: 0 10px;
}

.head .search .search-input-box .select-search {
    display: inline-block;
    width: 12%;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
    color: #e1251b;
}

.head .search .search-input-box .select-list {
    position: absolute;
    right: 89px;
    top: 34px;
    border: 2px solid #e1251b;
    background-color: #fff;
}

.head .search .search-input-box .select-list .select-item {
    padding: 0 8px;
    line-height: 2.5em;
}

.head .search .search-btn {
    width: 93px;
    height: 38px;
    padding-left: 7px;
    font-size: 14px;
    letter-spacing: 5px;
    position: absolute;
    right: 0;
    top: 0;
    background: #e1251b;
    border: 0;
    color: #fff;
    cursor: pointer;
    z-index: 11;
}

.head .search .search-btn:hover {
    opacity: 0.9;
}

/* 头部 end */

/* 底部 */

.foot {
    /* height: 230px; */
    min-height: 230px;
    width: 100%;
    background: #222;
    color: #666;
}

.foot .foot-box {
    width: 1200px;
    margin: auto;
    display: flex;
    padding: 40px 0 30px;
    background-color: #222;
}

.foot .foot-box .company-msg {
    padding: 0 60px;
    border-right: 1px solid #333;
}

.foot .foot-box .company-msg .img {
    display: block;
    margin: auto;
    /* width: 54px; */
    height: 54px;
    /*background: url(../images/logo.png) no-repeat;*/
    -o-object-fit: contain;
       object-fit: contain;
    background-size: 100%;
}

.foot .foot-box .company-msg .name {
    color: #00a0e9;
    font-size: 14px;
    margin: 5px 0 10px;
    text-align: center;
}

.foot .foot-box .company-msg .web {
    line-height: 20px;
}

.foot .foot-box .right {
    display: flex;
    margin-left: 60px;
    padding-top: 5px;
}

.foot .foot-box .right .item {
    width: 100px;
    margin-right: 80px;
}

.foot .foot-box .right .item:last-child {
    margin-right: 0;
}

.foot .foot-box .right .item.official-code {
    text-align: center;
}

.foot .foot-box .right .item.official-code .img {
    width: 100px;
    height: 100px;
    font-size: 0;
}

.foot .foot-box .right .item.official-code .img img {
    width: 100%;
    height: 100%;
}

.foot .foot-box .right .item.official-code .text {
    margin-top: 5px
}

.foot .foot-box .right .item.service .tit {
    font-size: 14px;
    margin-top: 3px;
    margin-bottom: 20px;
}

.foot .foot-box .right .item.service .con {
    /* margin-top: 10px;
    line-height: 30px; */
}

.foot .foot-box .right .item.service .con .text {
    margin-top: 16px;
    /* line-height: 30px; */
}

.foot .copyright {
    width: 100%;
    /* background: #1b1b1b; */
    padding: 10px 0;
    text-align: center;
}

/* 底部 end */

/* 分类 */

.categroy {
    width: 110px;
    left: 50%;
    top: 660px;
    margin-left: -732px;
    z-index: 98;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    display: block;
    opacity: 1;
    will-change: transform;
    transform: translateZ(0);
    border: 1px solid #eee;
}

.categroy.shorttop {
    top: 182px;
}

@media (max-width: 1440px) {
    .categroy {
        left: 0;
        margin-left: 0;
    }
}

.categroy .tit {
    height: 40px;
    line-height: 40px;
    background: #f9f9f9;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

.categroy .con {
    text-align: center;
    padding-bottom: 15px;
    position: relative;
}

/* .categroy .con::after {
    display: block;
    content: ' ';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: 1px;
    margin: 0 15px;
    background: #eee;
} */

.categroy .con .item {
    line-height: 24px;
    padding-top: 15px;
    cursor: pointer;
    transition: all .2s;
    -webkit-transition: all .2s;
}

.categroy .con .item:hover .name {
    color: #e1251b;
}

.categroy .con .item .icon {
    display: inline-block;
    vertical-align: top;
    width: 24px;
    height: 24px;
    font-size: 0;
}

.categroy .con .item .icon img {
    width: 100%;
    height: 100%;
}

.categroy .con .item .name {
    display: inline-block;
    width: 50%;
    height: 24px;
    vertical-align: top;
    margin-left: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.categroy .con .item .select {
    position: absolute;
    left: 130px;
    top: -44px;
    z-index: 24;
    min-height: 510px;
    border: 1px solid #eee;
    background: #ffffff;
    opacity: 0.94;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    flex-wrap: wrap;
    width: 1202px;
    align-items: flex-start;
    align-content: flex-start;
    display: flex;
    visibility: hidden;
    box-sizing: border-box;
    border-radius: 3px;
}

.categroy .con .item .select .select-title {
    display: block;
    font-size: 14px;
    text-align: left;
    padding: 20px 20px 0;
    font-weight: 600;
}

.categroy .con .item .select::before {
    position: absolute;
    left: -20px;
    top: 0;
    width: 20px;
    height: 100%;
    display: block;
    content: ' ';
    background: transparent;
}

.categroy .con .item:hover .select {
    visibility: visible;
}

.categroy .con .item .select-item-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 1202px;
}

.categroy .con .item .select .select-item {
    padding: 10px 20px;
    text-align: left;
    height: 60px;
    display: flex;
}

.categroy .con .item .select .select-item .item-img {
    display: inline-block;
    width: 60px;
    height: 60px;
    font-size: 0;
    margin-right: 10px;
    vertical-align: top;
}

.categroy .con .item .select .select-item .item-img img {
    width: 100%;
    height: 100%;
    vertical-align: top;
}

.categroy .con .item .select .select-item .item-name {
    display: inline-block;
    height: 60px;
    line-height: 60px;
    width: 90px;
    transition: color .2s;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.categroy .con .item .select .select-item:hover .item-name {
    color: #e1251b;
}

.categroy .phone-code {
    padding: 15px 0;
    text-align: center;
}

.categroy .phone-code .code {
    width: 100px;
    height: 100px;
    font-size: 0;
    margin: auto;
}

.categroy .phone-code .code img {
    width: 100%;
    height: 100%;
}

.categroy .phone-code .text {
    margin-top: 5px;
    line-height: 15px;
}

/* 分类 end */

/* 滑动时的头部 */

.head-scroll {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    animation: hdnav2-show .3s;
    -webkit-animation: hdnav2-show .3s;
    -moz-animation: hdnav2-show .3s;
    -o-animation: hdnav2-show .3s;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
}

.head-scroll .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.head-scroll .logo {
    height: 40px;
    display: flex;
    margin-top: -8px;
    cursor: pointer;
}

.head-scroll .logo .logo-img {
    display: block;
    width: 190px;
    height: 48px;
    font-size: 0;
    /*background: url(../images/logo.png) no-repeat;*/
    background-size: 100%;
}

.head-scroll .logo .name {
    line-height: 15px;
    margin-left: 10px;
    margin-top: 5px;
}

.head-scroll .logo .name .cn {
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
}

.head-scroll .logo .name .en {
    color: #ccc;
    margin-top: 3px;
    display: block;
}

.head-scroll .menu {
    display: flex;
}

.head-scroll .menu .item {
    padding: 0 25px;
    font-size: 14px;
}

.head-scroll .menu-en .item {
    padding: 0 10px;
    font-size: 12px;
}

.head-scroll .menu .item:hover,
.head-scroll .menu .item.item-on {
    color: #e1251b;
}

.head-scroll .left {
    display: flex;
    align-items: center;
}

.head-scroll .right {
    display: flex;
    align-items: center;
}

.head-scroll .search {
    position: relative;
    height: 38px;
}

.head-scroll .search .search-input {
    width: 220px;
    height: 38px;
    border: 0;
    border-bottom: 1px solid #e1251b;
    padding: 0 48px 0 10px;
    box-sizing: border-box;
}

.head-scroll .search .search-btn {
    width: 36px;
    height: 36px;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    cursor: pointer;
    z-index: 11;
    font-size: 0;
    background: url(/_nuxt/assets/images/icons.png) no-repeat -19px -58px rgba(255,255,255,1);
    transition: all 0.2s;
    border: 11px solid #fff;
}

.head-scroll .search .search-btn:hover {
    opacity: 0.9;
}

.head-scroll .scroll-cart {
    position: relative;
    margin-left: 30px;
    margin-right: 15px;
    width: 17px;
    height: 15px;
    background: url(/_nuxt/assets/images/icons.png) no-repeat -22px -38px;
    cursor: pointer;
    border-top: 8px solid #fff;
    border-bottom: 7px solid #fff;
    border-left: 6px solid #fff;
    border-right: 7px solid #fff;
}

.head-scroll .scroll-cart .number {
    position: absolute;
    top: -9px;
    left: 5px;
    font-size: 12px;
    font-family: arial;
    padding: 0 5px;
    background: #e1251b;
    color: #fff;
    height: 16px;
    line-height: 16px;
    min-width: 16px;
    border-radius: 30px;
    margin-left: 10px;
    text-align: center;
    box-sizing: border-box;
}

/* 滑动时的头部 */

/* 产品列表 */

.goods-list {
    background: #fff;
}

.goods-list .list-tit {
    height: 30px;
    line-height: 30px;
    display: flex;
}

.goods-list .list-tit .text {
    flex: 1;
}

.goods-list .list-tit .text .tit {
    font-size: 24px;
}

.goods-list .list-tit .text .description {
    font-size: 12px;
    margin-left: 10px;
    color: #999;
}

.goods-list .list-tit .view-more {
    position: relative;
    color: #999;
    font-size: 12px;
    height: 19px;
    line-height: 19px;
    margin-top: 9px;
}

.goods-list .list-tit .view-more .arrow {
    display: inline-block;
    font-family: Consolas;
    margin-left: 3px;
}

.goods-list .list-tit .view-more:hover {
    color: #e1251b;
}

.goods-list .list-con {
    display: flex;
    flex-wrap: wrap;
}

.goods-list .list-con .item {
    position: relative;
    width: 285px;
    margin-top: 20px;
    margin-right: 20px;
    transition: all 0.2s;
    cursor: pointer;
}

.goods-list .list-con .item:hover {
    opacity: 0.8;
}

.goods-list .list-con .item:nth-child(4n) {
    /* margin-right: 0; */
}

.goods-list .list-con .item .goods-img {
    width: 285px;
    height: 285px;
    line-height: 285px;
    text-align: center;
    font-size: 0;
}

.goods-list .list-con .item .goods-img img {
    max-width: 80%;
    max-height: 80%;
    vertical-align: middle;
    -o-object-fit: scale-down;
       object-fit: scale-down;
}

.goods-list .list-con .item .goods-msg {
    text-align: center;
    padding: 0 10px 15px;
}

.goods-list .list-con .item .goods-msg .goods-name {
    height: 16px;
    line-height: 16px;
    font-size: 14px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.goods-list .list-con .item .goods-msg .goods-price {
    display: flex;
    justify-content: center;
    height: 16px;
    line-height: 16px;
    margin-top: 10px;
    overflow: hidden;
}

.goods-list .list-con .item .goods-msg .goods-price .old-price {
    margin-left: 10px;
    color: #999;
    font-family: arial;
    -webkit-text-decoration: line-through;
    text-decoration: line-through;
    height: 12px;
    line-height: 12px;
    margin-top: 3px;
}

/* 产品列表 end */

/* 优惠团购 */

.group-list .group-number {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 12px;
    background: #e1251b;
    color: #fff;
    border-radius: 30px;
    line-height: 1;
}

/* 优惠团购 end */

/* 优选好店 */

.shop-list .list-con .item {
    display: flex;
    padding: 15px;
    width: 253px;
    height: 122px;
    border: 1px solid #eee;
    cursor: auto;
}

.shop-list .list-con .item .shop-img {
    width: 120px;
    height: 120px;
    line-height: 120px;
    font-size: 0;
    text-align: center;
}

.shop-list .list-con .item .shop-img img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}

.shop-list .list-con .item .shop-msg {
    margin-left: 10px;
    margin-top: 15px;
}

.shop-list .list-con .item .shop-msg .shop-name {
    max-width: 120px;
    height: 20px;
    line-height: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.shop-list .list-con .item .shop-msg .focus-number {
    height: 12px;
    line-height: 12px;
    margin-top: 10px;
    color: #999;
}

.shop-list .list-con .item .shop-msg .go-shop {
    display: block;
    margin-top: 30px;
    background: #e1251b;
    width: 80px;
    height: 24px;
    line-height: 24px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    padding-left: 3px;
    cursor: pointer;
}

.shop-list .list-con .item .shop-msg .go-shop .arrow {
    display: inline-block;
    font-family: Consolas;
    margin-left: 3px;
}

/* 优选好店 end */

/* 面包屑 */

.crumbs {
    font-size: 12px;
    line-height: 1;
    padding: 23px 0 20px;
}

.crumbs .item-a:hover {
    -webkit-text-decoration: underline;
    text-decoration: underline;
}

.crumbs .arrow {
    font-family: Consolas;
    margin: 0 2px;
}

.crumbs .item-span {
    color: #999;
}

/* 面包屑 end */

/* 页码 */

.pages {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    text-align: center;
}

.pages .item {
    margin-left: 5px;
    display: block;
    padding: 3px 7px;
    min-width: 18px;
    height: 24px;
    line-height: 24px;
    word-break: keep-all;
    border: 1px solid #eee;
    font-size: 12px;
    font-family: arial;
    transition: all 0.2s;
    background: #fff;
}

.pages .item:hover {
    color: #e1251b;
}

.pages .cur,
.pages .cur:hover {
    color: #fff;
    background: #e1251b;
    border-color: #e1251b;
}

.pages .ellipsis {
    display: block;
    width: 30px;
    height: 32px;
    line-height: 24px;
    text-align: center;
    margin-right: -5px;
}

.pages .go-page {
    height: 32px;
    line-height: 30px;
    margin-left: 10px;
}

.pages .go-page .page-input {
    width: 28px;
    height: 24px;
    padding: 3px 5px;
    margin: 0 5px;
    text-align: center;
    border: 0;
    border: 1px solid #eee;
    vertical-align: top;
}

.pages .go-page .page-btn {
    margin-left: 5px;
    display: inline-block;
    padding: 3px 5px;
    border: 1px solid #eee;
    min-width: 28px;
    height: 24px;
    line-height: 24px;
    word-break: keep-all;
    font-size: 12px;
    font-family: arial;
    vertical-align: top;
    transition: all 0.1s;
    background: #fff;
}

.pages .go-page .page-btn:hover {
    color: #e1251b;
}

.pages .item.prev,
.pages .item.next {
    padding: 3px 13px;
}

.pages .total-num {
    height: 32px;
    line-height: 30px;
    margin-left: 10px;
}

.pages .total-num .num {
    margin: 0 3px;
    font-family: arial;
}

.pages .item.default,
.pages .item.default:hover {
    color: #d2d2d2;
    cursor: not-allowed;
    background: #fff;
    border-color: #eee;
}

/* 页码 end */

/* 弹窗 */

.popup-mask {
    position: fixed;
    left: 0px;
    top: 0px;
    /* z-index: 1998; */
    z-index: 1997;
    background-color: rgb(0, 0, 0, .15);
    width: 100%;
    height: 100%;
}

.popup-box {
    position: fixed;
    /* z-index: 10000; */
    z-index: 1998;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid rgba(0, 0, 0, .05);
}

.logisticsCompany {
    top: 200px;
}

.popup-box {
    position: fixed;
    /* z-index: 10000; */
    z-index: 1998;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid rgba(0, 0, 0, .05);
}

.popup-box .tit {
    background: #f9f9f9;
    padding: 10px;
    display: flex;
    height: 14px;
    line-height: 14px;
}

.popup-box .tit .text {
    color: #999;
    font-size: 14px;
    flex: 1;
}

.popup-box .tit .close {
    width: 12px;
    height: 12px;
    margin-top: 1px;
    background: url(/_nuxt/assets/images/icons.png) no-repeat;
    background-position: 0 -232px;
    cursor: pointer;
}

.popup-box .con {
    padding: 20px;
    background: #fff;
    min-width: 450px;
    min-height: 100px;
}

/* 提示性弹窗 */

.popup-box .con .tip {
    padding: 10px 20px;
    text-align: center;
}

.popup-box .con .tip .tip-icon {
    display: inline-block;
    vertical-align: top;
    width: 32px;
    height: 32px;
    background: url(/_nuxt/assets/images/icons.png) no-repeat;
}

.popup-box .con .tip .tip-icon.success {
    background-position: 0 -476px;
}

.popup-box .con .tip .tip-icon.fail {
    background-position: -37px -476px;
}

.popup-box .con .tip .tip-icon.warning {
    background-position: -74px -476px;
}

.popup-box .con .tip .tip-info {
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
    text-align: left;
}

.popup-box .con .tip .tip-info .result {
    font-size: 14px;
    height: 14px;
    line-height: 14px;
}

.popup-box .con .tip .tip-info .result .number {
    color: #e1251b;
    font-family: Verdana;
}

.popup-box .con .tip .tip-info .date {
    font-family: arial;
    color: #999;
    margin-top: 10px;
}

.popup-box .con .tip .tip-info .btns {
    margin-top: 10px;
    color: #999;
    display: flex;
}

.popup-box .con .tip .tip-info .btns .btn {
    color: #005ea7;
}

.popup-box .con .tip .tip-info .btns .btn .arrow {
    font-family: Consolas;
    margin-left: 3px;
}

.popup-box .con .tip .tip-info .btns .btn-r,
.popup-box .con .tip .tip-info .btns .btn-g {
    min-width: 72px;
    text-align: center;
    height: 26px;
    line-height: 26px;
    border-radius: 26px;
    border: 1px solid #e1251b;
    background: #e1251b;
    color: #fff;
    box-sizing: border-box;
    padding: 0 8px;
    margin-top: 10px;
}

.popup-box .con .tip .tip-info .btns .btn-r:hover {
    opacity: 0.9;
}

.popup-box .con .tip .tip-info .btns .btn-g {
    background: #f9f9f9;
    border-color: #ddd;
    color: #000;
    margin-left: 15px;
}

.popup-box .con .tip .tip-info .btns .btn-g:hover {
    background: #fff;
}

/* 提示性弹窗 */

/* 编辑性弹窗 */

.popup-box .con .edit {
    padding: 10px 10px 10px 10px;
}

.popup-box .con .edit .item {
    display: flex;
    margin-top: 20px;
    position: relative;
}

.popup-box .con .edit .item:first-child {
    margin-top: 0;
}

.popup-box .con .edit .item .label {
    width: 80px;
    height: 32px;
    line-height: 32px;
}

.popup-box .con .edit .item .text-box .input {
    border: 1px solid #eee;
    padding: 5px;
    height: 20px;
    width: 300px;
}

.popup-box .con .edit .item .text-box .area-box {
    display: flex;
}

.popup-box .con .edit .item .text-box .area-box .area {
    border: 1px solid #eee;
    padding: 5px;
    height: 20px;
    line-height: 20px;
    width: 85px;
    margin-right: 10px;
    position: relative;
}

.popup-box .con .edit .item .text-box .area-box .area:last-child {
    margin-right: 0;
}

.popup-box .con .edit .item .text-box .area-box .area::before {
    position: absolute;
    right: 10px;
    top: 12px;
    display: block;
    width: 0;
    height: 0;
    content: " ";
    font-size: 0;
    border: 5px solid transparent;
    border-top: 5px solid #bcbcbc;
}

.popup-box .con .edit .item .label-btn {
    width: 80px;
}

.popup-box .con .edit .item .btn-r {
    padding: 5px 15px;
    background: #e1251b;
    color: #fff;
    border-radius: 2px;
}

.popup-box .con .edit .item .text-box .btn-r:hover {
    opacity: 0.9;
}

.popup-box .con .edit .item .btn-g {
    padding: 4px 14px;
    background: #f9f9f9;
    border-radius: 2px;
    margin-left: 12px;
    border: 1px solid #ddd;
}

.popup-box .con .edit .item .btn-g:hover {
    background: #fff;
}

.popup-box .con .edit .item .text-box .error-text {
    color: #e1251b;
    padding-left: 19px;
    position: relative;
    height: 14px;
    line-height: 14px;
    margin-top: 5px;
    margin-left: 5px;
    display: block;
}

.popup-box .con .edit .item .text-box .error-text::before {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 14px;
    height: 14px;
    content: " ";
    font-size: 0;
    background: url(/_nuxt/assets/images/icons.png) no-repeat -77px -517px;
}

.popup-box .con .edit .item.error .text-box .error-text {
    display: block;
}

/* 修改退款金额 */

.popup-box .con.modify-amount {
    position: relative;
    max-width: 260px;
}

.popup-box .con.modify-amount .int-box {
    display: block;
    width: 90%;
    margin: 0 auto;
}

.popup-box .con.modify-amount .int-box .int {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    line-height: 1em;
    padding: 10px;
    box-sizing: border-box;
}

.popup-box .con.modify-amount .max-amount {
    margin-top: 5px;
    color: #888;
}

.popup-box .con.modify-amount .foot-btn {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.popup-box .con.modify-amount .foot-btn .confirm {
    display: inline-block;
    padding: 8px 20px;
    background: #e1251b;
    color: #fff;
    border-radius: 2px;
    cursor: pointer;
}

.popup-box .con.modify-amount .error {
    margin-top: 5px;
    color: #e1251b;
}

/* 编辑性弹窗 end */

/* 弹窗 end */

/* 步骤 */

.step-box {
    display: flex;
    height: 70px;
    padding: 0 20px 7px;
    margin-top: 10px;
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .05);
    margin-bottom: 30px;
    border-bottom: 2px solid #e1251b;
}

.step-box .left {
    flex: 1;
    margin-top: 16px;
}

.step-box .left .img {
    display: inline-block;
    vertical-align: top;
    width: 38px;
    height: 38px;
}

.step-box .left .text {
    display: inline-block;
    vertical-align: top;
    height: 38px;
    line-height: 38px;
    font-size: 15px;
    font-weight: 600;
}

.step-box .steps {
    display: flex;
}

.step-box .steps .item {
    padding-left: 90px;
    margin-left: 40px;
    position: relative;
    background: url(/_nuxt/assets/images/icons.png) no-repeat 0 -292px;
}

.step-box .steps .item:first-child {
    background: none;
}

.step-box .steps .item .number {
    height: 20px;
    line-height: 20px;
    margin-top: 12px;
    color: #999;
    font-family: arial;
}

.step-box .steps .item .text {
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    color: #999;
}

.step-box .steps .item.active .number,
.step-box .steps .item.active .text {
    color: #000;
}

/* 步骤 end */

/* 猜你喜欢 */

.guess-like {
    margin-top: 20px;
}

.guess-like .guess-like-tit {
    padding-left: 22px;
    height: 44px;
    line-height: 44px;
    display: flex;
}

.guess-like .text {
    font-size: 16px;
    flex: 1;
}

.guess-like .swiper-controls {
    display: flex;
    margin-right: 5px;
}

.guess-like .swiper-controls .arrow {
    font-family: Consolas;
    font-size: 20px;
    text-align: center;
    display: inline-block;
    width: 30px;
    margin-left: -1px;
    transition: all 0.2s;
    cursor: pointer;
    color: #666;
}

.guess-like .swiper-controls .arrow:hover {
    color: #e1251b;
}

.guess-like .swiper-controls .arrow.limit {
    color: #ccc;
}

.guess-like .list-con .item {
    margin-top: 0;
}

/* 猜你喜欢 end */

.fade-enter {
    opacity: 0;
}

.fade-enter-active {
    transition: opacity .5s;
}

.fade-leave-to {
    opacity: 0;
}

.fade-leave-active {
    transition: opacity .5s;
}

/* 空页面 */

.empty {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    width: 100%;
}

.empty .img {
    width: 250px;
    height: 200px;
    font-size: 0;
}

.empty .img img {
    width: 100%;
    height: 100%;
}

.empty .action {
    margin-left: 10px;
}

.empty .action .text {
    color: #999;
    font-size: 14px;
    margin-top: 40px;
}

.empty .action .btn {
    display: inline-block;
    padding: 7px 20px;
    background: #e1251b;
    border-radius: 30px;
    color: #fff;
    margin-top: 20px;
}

.empty .action .btn-r {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 30px;
    margin-top: 20px;
    margin-left: 10px;
    color: #666;
}

.empty .action .btn-r:hover {
    background: #fff;
}

/* 空页面 end */

/* 隐私条款与服务协议 */

.terms-container .r-header {
    background: #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
}

.terms-container .r-header .content {
    display: flex;
    padding: 20px 0;
    align-items: center;
}

.terms-container .r-header .logo {
    cursor: pointer;
    /* flex: 1; */
    display: flex;
    margin-right: 70%;
}

.terms-container .r-header .logo .img {
    display: inline-block;
    vertical-align: top;
    width: 190px;
    height: 48px;
    background: url(/_nuxt/assets/images/register-logo.png) no-repeat;
    background-size: 100%;
}

.terms-container .r-header .logo .text {
    font-size: 0;
    display: inline-block;
    vertical-align: top;
    line-height: 48px;
    margin-left: 5px;
}

.terms-container .r-header .go-login {
    font-size: 14px;
}

.terms-container .r-header .go-login .login-btn {
    font-size: 13px;
    display: inline-block;
    padding: 6px 22px;
    background: #146ef7;
    color: #fff;
    border-radius: 30px;
    margin-left: 7px;
}

/*删除文本框中的叉号*/

input::-ms-clear {
    display: none;
}

/*删除密码框中的小眼睛*/

input::-ms-reveal {
    display: none;
}
/* 登录 */
.login[data-v-a1b2f146] {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login .login-box[data-v-a1b2f146] {
    position: relative;
    z-index: 10000;
    background: #fff;
    padding: 10px 10px 50px;
}
.login .login-box .close[data-v-a1b2f146] {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: url(/_nuxt/assets/images/icons.png) no-repeat;
    background-position: 4px -228px;
    cursor: pointer;
}
.login .login-box .login-header[data-v-a1b2f146] {
    margin-top: 20px;
    padding: 0 20px;
    display: flex;
    width: 316px;
}
.login .login-box .login-header .item[data-v-a1b2f146] {
    flex: 1;
    text-align: center;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    position: relative;
}
.login .login-box .login-header .item[data-v-a1b2f146]:first-child {
    padding: 10px 10px 10px 10px;
}
.login .login-box .login-header .item[data-v-a1b2f146]:last-child {
    padding: 10px 10px 10px 10px;
}
.login .login-box .login-header .item[data-v-a1b2f146]:first-child::after {
    position: absolute;
    right: 0;
    top: 12px;
    bottom: 12px;
    width: 1px;
    height: auto;
    display: block;
    content: " ";
    font-size: 0;
    background: #eee;
}
.login .login-box .login-header .item.active[data-v-a1b2f146] {
    color: #e1251b;
}
.login .login-box .login-con[data-v-a1b2f146] {
    padding: 40px 30px;
}
.login .login-box .login-con .item[data-v-a1b2f146] {
    position: relative;
    margin-top: 15px;
    border-radius: 2px;
}
.login .login-box .login-con .item[data-v-a1b2f146]:first-child {
    margin-top: 0;
}
.login .login-box .login-con .item .icon[data-v-a1b2f146] {
    position: absolute;
    left: 0;
    top: 1px;
    width: 44px;
    text-align: center;
    height: 34px;
}
.login .login-box .login-con .item .icon[data-v-a1b2f146]::before {
    position: absolute;
    top: 8px;
    left: 15px;
    display: block;
    width: 14px;
    height: 18px;
    content: " ";
    background: url(/_nuxt/assets/images/icons.png) no-repeat;
}
.login .login-box .login-con .item.phone .icon[data-v-a1b2f146]::before {
    background-position: -38px -513px;
}
.login .login-box .login-con .item.account .icon[data-v-a1b2f146]::before {
    background-position: 0 -513px;
}
.login .login-box .login-con .item.code .icon[data-v-a1b2f146]::before,
.login .login-box .login-con .item.password .icon[data-v-a1b2f146]::before {
    background-position: -19px -513px;
}
.login .login-box .login-con .item .input[data-v-a1b2f146] {
    border: 1px solid #e8e8e8;
    width: 206px;
    height: 34px;
    padding: 0 44px;
}
.login .login-box .login-con .cancel[data-v-a1b2f146] {
    position: absolute;
    right: 0;
    top: 1px;
    width: 44px;
    height: 34px;
    cursor: pointer;
}
.login .login-box .login-con .cancel[data-v-a1b2f146]::before {
    position: absolute;
    top: 9px;
    left: 14px;
    display: block;
    width: 16px;
    height: 16px;
    content: " ";
    background: url(/_nuxt/assets/images/icons.png) no-repeat -56px -515px;
}
.login .login-box .login-con .item.code .input[data-v-a1b2f146] {
    padding-right: 10px;
    width: 150px;
}
.login .login-box .login-con .send-code[data-v-a1b2f146] {
    position: absolute;
    right: 0;
    top: 0;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-left: 0;
    width: 89px;
    height: 34px;
    line-height: 34px;
    text-align: center;
}
.login .login-box .login-con .send-code[data-v-a1b2f146]:hover {
    color: #e1251b;
}
.login .login-box .login-con .msg-error .input[data-v-a1b2f146] {
    border-color: #e1251b;
}
.login .login-box .login-con .item.img-code .input[data-v-a1b2f146] {
    padding-left: 10px;
    padding-right: 10px;
    width: 183px;
}
.login .login-box .login-con .item.img-code .code-img[data-v-a1b2f146] {
    position: absolute;
    right: 0;
    top: 0;
    width: 91px;
    height: 36px;
    font-size: 0;
}
.login .login-box .login-con .item.img-code .code-img img[data-v-a1b2f146] {
    width: 100%;
    height: 100%;
}
.login .login-box .login-con .error[data-v-a1b2f146] {
    margin-top: 10px;
    padding-left: 23px;
    position: relative;
    color: #e1251b;
    height: 16px;
    line-height: 16px;
}
.login .login-box .login-con .error[data-v-a1b2f146]::before {
    position: absolute;
    left: 2px;
    top: 1px;
    display: block;
    width: 14px;
    height: 14px;
    content: " ";
    background: url(/_nuxt/assets/images/icons.png) no-repeat -77px -517px;
}
.login .login-box .login-con .login-button[data-v-a1b2f146] {
    display: block;
    margin-top: 35px;
    background: #e1251b;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    letter-spacing: 5px;
}
.login .login-box .login-con .login-button[data-v-a1b2f146]:hover {
    opacity: 0.9;
}
.login .login-box .login-con .agree-box[data-v-a1b2f146] {
    margin-top: 11px;
    height: 14px;
    line-height: 14px;
    color: #999;
    padding-left: 2px;
}
.login .login-box .login-con .agree-box-en[data-v-a1b2f146] {
    width: 290px !important;
    line-height: 20px !important;
}
.login .login-box .login-con .agree-box .text[data-v-a1b2f146] {
    margin-left: 5px;
    display: inline-block;
    vertical-align: top;
}
.login .login-box .login-con .agree-box .text .agreement[data-v-a1b2f146] {
    color: #000;
}
.login .login-box .login-con .agree-box .text .agreement[data-v-a1b2f146]:hover {
    -webkit-text-decoration: underline;
    text-decoration: underline;
}
.login .login-box .login-footer[data-v-a1b2f146] {
    height: 51px;
    background: #fcfcfc;
    border-top: 1px solid #eee;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 0 32px;
    box-sizing: border-box;
}
.login .login-box .login-footer .other-login[data-v-a1b2f146] {
    flex: 1;
    display: flex;
    align-items: center;
}
.login .login-box .login-footer .other-login .item[data-v-a1b2f146] {
    display: block;
    height: 18px;
    line-height: 18px;
    margin-left: 25px;
    padding-left: 24px;
    position: relative;
    color: #999;
}
.login .login-box .login-footer .other-login .item[data-v-a1b2f146]:hover {
    color: #000;
}
.login .login-box .login-footer .other-login .item[data-v-a1b2f146]:first-child {
    margin-left: 10px;
}
.login .login-box .login-footer .other-login .item[data-v-a1b2f146]::before {
    position: absolute;
    top: 0;
    left: 0;
    content: " ";
    font-size: 0;
    display: block;
    width: 18px;
    height: 18px;
    background: url(/_nuxt/assets/images/icons.png) no-repeat;
}
.login .login-box .login-footer .other-login .item.qq-login[data-v-a1b2f146]::before {
    background-position: 0 -536px;
}
.login .login-box .login-footer .other-login .item.weixin-login[data-v-a1b2f146]::before {
    background-position: -23px -536px;
}
.login .login-box .login-footer .other-login .item[data-v-a1b2f146]::after {
    position: absolute;
    top: 3px;
    right: -13px;
    content: " ";
    font-size: 0;
    display: block;
    width: 1px;
    height: 14px;
    background: #ddd;
}
.login .login-box .login-footer .other-login .item[data-v-a1b2f146]:last-child::after {
    width: 0;
}
.login .login-box .login-footer .footer-a[data-v-a1b2f146] {
    display: block;
    line-height: 50px;
    margin-right: 10px;
    color: #999;
}
.login .login-box .login-footer .footer-a[data-v-a1b2f146]:hover {
    color: #000;
}

/* 登录 end */

/* 页面登录 */
.login-page .l-header[data-v-a1b2f146] {
    background: #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
}
.login-page .l-header .content[data-v-a1b2f146] {
    display: flex;
    padding: 20px 0;
    align-items: center;
}
.login-page .l-header .logo[data-v-a1b2f146] {
    cursor: pointer;
    flex: 1;
    display: flex;
    margin-right: 60%;
}
.login-page .l-header .logo .img[data-v-a1b2f146] {
    display: inline-block;
    vertical-align: top;
    width: 190px;
    height: 48px;
    /*background: url(../images/register-logo.png) no-repeat;*/
    background-size: 100%;
}
.login-page .l-header .logo .text[data-v-a1b2f146] {
    font-size: 0;
    display: inline-block;
    vertical-align: top;
    line-height: 48px;
    margin-left: 5px;
}
.login-page .l-header .go-register[data-v-a1b2f146] {
    font-size: 14px;
}
.login-page .l-header .go-register .register-btn[data-v-a1b2f146] {
    font-size: 13px;
    display: inline-block;
    padding: 6px 22px;
    background: #e1251b;
    color: #fff;
    border-radius: 30px;
    margin-left: 7px;
}
.login-page .l-content[data-v-a1b2f146] {
    width: 100%;
    height: 600px;
    /*background: url(../images/login-bg.jpg) no-repeat center center;*/
    position: relative;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.login-page .l-content .login[data-v-a1b2f146] {
    width: 1200px;
    height: 100%;
    margin: auto;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.login-page .l-content .login .login-box .login-con[data-v-a1b2f146] {
    padding: 30px 30px 40px;
}
.login-page .l-footer[data-v-a1b2f146] {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    color: #999;
    padding-bottom: 30px;
    margin-top: 30px;
}
.login-page .l-footer .links[data-v-a1b2f146] {
    height: 20px;
    line-height: 20px;
    margin-bottom: 10px;
}
.login-page .l-footer .links .item[data-v-a1b2f146] {
    display: inline-block;
    vertical-align: top;
    padding: 0 11px 0 10px;
    position: relative;
}
.login-page .l-footer .links .item[data-v-a1b2f146]::after {
    position: absolute;
    right: -1px;
    top: 4px;
    bottom: 4px;
    display: block;
    width: 1px;
    height: auto;
    content: " ";
    background: #ddd;
}
.login-page .l-footer .links .item[data-v-a1b2f146]:last-child::after {
    width: 0;
}
.login-page .l-footer .links .item[data-v-a1b2f146]:hover {
    -webkit-text-decoration: underline;
    text-decoration: underline;
}
.login-page .l-footer .copyright[data-v-a1b2f146] {
    font-family: arial;
}
.content[data-v-a1b2f146] {
    margin-bottom: 0px;
}

/* 页面登录 end */


.top .con .hide-sgin.left::before {
  display: none;
}
.left .el-carousel__indicators--vertical {
  display: none;
}
.left .swiper-slide {
  display: block !important;
  width: auto !important;
  text-align: left !important;
  font-weight: normal;
  background: inherit;
}
.swiper-slide .item {
  font-size: 12px;

  display: inline-block !important;
  height: 36px;
  width: 368px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.right-container.right .item .text {
  display: inline-block;
  height: 36px;
  max-width: 214px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.itemtitle {
  color: blue;
}
.link-a,
.item-a {
  cursor: pointer;
}
/* 购物车数量角标 */
.total-cart-count {
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: auto;
  height: auto;
  line-height: 1em;
  text-align: center;
  top: 6px;
  left: 75px;
  font-size: 12px;
  color: #fff;
  background: #e43130;
  z-index: 91;
  padding: 2px 4px;
  border-radius: 5px;
}
.total-cart-count::after {
  position: absolute;
  top: 2px;
  left: -5px;
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #e43130;
}
.title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  word-break: break-word;
  width: 187px;
}
.top .con .left .item {
  border-bottom: 1px solid;
  -webkit-text-decoration: none;
  text-decoration: none;
  display: inline;
}
.lang-box .lang-list {
  width: auto !important;
  height: auto !important;
  padding: 8px 0;
}
.lang-box .item-name {
  cursor: pointer;
  max-width: 145px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lang-box .lang-list .lang-item {
  max-width: 145px;
  min-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 0;
  cursor: pointer;
  padding: 16px 12px;
  box-sizing: border-box;
}
.lang-box .lang-list .lang-item:hover {
  color: #e1251b;
  background-color: #fde1e1;
}
/* 商户后台高亮样式 - 新增 */
.merchant-highlight .merchant-btn {
  font-weight: 600;
  color: #e1251b !important;
  border-radius: 3px;
  padding: 0 12px 0 26px !important;
  position: relative;
}
.merchant-highlight .merchant-btn::before {
  content: '★';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-51%);
  color: #e1251b;
  font-size: 14px;
}
.merchant-highlight .mobile-select.option .option-text {
  transition: color 0.2s ease;
  font-size: 14px;
}
.merchant-highlight .mobile-select.option .option-text:hover {
  color: #e1251b !important;
  font-weight: 600;
}
/* 脉搏动画 */
@keyframes merchant-pulse {
0%,
  100% {
    box-shadow: 0 0 0 0 rgba(225, 37, 27, 0.2);
}
50% {
    box-shadow: 0 0 0 4px rgba(225, 37, 27, 0);
}
}
/* 星星闪烁动画 */
@keyframes star-twinkle {
0%,
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}
50% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1.2);
}
}


.foot[data-v-fad11dd4] {
  min-height: 230px;
  width: 100%;
  background: #eee;
  color: #666;
}
.titling[data-v-fad11dd4] {
  color: #666;
}
.service[data-v-fad11dd4] {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding-bottom: 20px;
}
.l-footer[data-v-fad11dd4] {
  width: 70%;
  text-align: center;
  color: #999;
  padding: 30px 0;
  margin: 30px auto 0 auto;
  background: #eee;
}
.footer-info[data-v-fad11dd4] {
  color: #555;
  font-size: 14px;
  text-align: left;
  line-height: 22px;
}
.l-footer .links[data-v-fad11dd4] {
  margin-bottom: 16px;
}
.l-footer .links .item[data-v-fad11dd4] {
  display: inline-block;
  vertical-align: top;
  padding: 0 24px;
  position: relative;
  height: 40px;
  line-height: 40px;
  background: #fff;
  color: #555;
  font-size: 12px;
  margin-left: 12px;
}
.l-footer .links .item.otherlink[data-v-fad11dd4] {
  /* background: url(/_nuxt/img/link.67305ee.png) no-repeat 0; */
  background-size: 18px 18px;
  font-size: 18px;
  font-weight: 500;
  color: #0051a4;
  padding-left: 25px;
}
.l-footer .links .item[data-v-fad11dd4]:last-child:after {
  width: 0;
}
.l-footer .links .item[data-v-fad11dd4]:not(:first-child):hover {
  background: #0051a4;
  color: #fff;
}
.footer-img[data-v-fad11dd4] {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.footer-img-left[data-v-fad11dd4] {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 100px;
}
.footer-img-left img[data-v-fad11dd4] {
  width: 60px;
  height: 60px;
}
.f-m-l-phone[data-v-fad11dd4] {
  font-size: 20px;
  margin: 7px 0 5px;
}
.f-m-l-time[data-v-fad11dd4] {
  font-size: 12px;
}
.footer-img-right img[data-v-fad11dd4] {
  width: 88px;
  height: 88px;
  margin-bottom: 12px;
}
.l-footer .copyright[data-v-fad11dd4] {
  font-family: arial;
  padding-left: 25px;
  margin: 26px auto 0;
  font-size: 12px;
  color: #555;
  /* background: url(/_nuxt/img/pl.cef80ec.jpg) no-repeat 0; */
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 3px;
}
.partners-section[data-v-fad11dd4] {
  margin-bottom: 30px;
  padding: 20px 0;
}
.partners-title[data-v-fad11dd4] {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.partners-images[data-v-fad11dd4] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.partners-images img[data-v-fad11dd4] {
  max-width: 150px;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
  opacity: 0.8;
  filter: grayscale(20%);
  border-radius: 4px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.partners-images img[data-v-fad11dd4]:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* 首页头部 */
.home[data-v-219577f8] {
    padding-bottom: 10px;
}
.home .up[data-v-219577f8] {
    margin-top: 10px !important;
}
.home .head[data-v-219577f8] {
    box-shadow: none;
}
.home .head .menu .item[data-v-219577f8] {
    padding: 0 30px;
}
.home .head .menu-en .item[data-v-219577f8] {
    padding: 0 20px;
}
.home .head .search[data-v-219577f8] {
    display: none;
}
.head .content[data-v-219577f8] {
    margin-bottom: 0;
}

/* 首页头部 end */

/* 首页轮播 */
.banner .el-carousel.el-carousel--horizontal ul.el-carousel__indicators--horizontal .el-carousel__button[data-v-219577f8] {
    background: #e1251b !important;
}
.el-carousel[data-v-219577f8],
.el-carousel-item[data-v-219577f8],
.el-carousel__container[data-v-219577f8] {
    width: 100%;
    /* height: 100%; */
}
.banner .el-carousel.el-carousel--horizontal ul.el-carousel__indicators--horizontal[data-v-219577f8] {
    bottom: 45px !important;
}

/* 首页搜索 */
.home .home-search[data-v-219577f8] {
    width: 1140px;
    height: 40px;
    padding: 20px 30px;
    margin: -40px auto 0;
    background: #fff;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    display: flex;
    z-index: 2;
}
.home .home-search .hot-word[data-v-219577f8] {
    flex: 1;
    display: flex;
    line-height: 40px;
    margin-left: auto;
}
.home .home-search .hot-word .tit[data-v-219577f8] {
    font-size: 14px;
    width: 95px;
    word-break: keep-all;
}
.home .home-search .hot-word .con[data-v-219577f8] {
    flex: 1;
    overflow: hidden;
    color: #999;
    max-width: 430px;
}
.home .home-search .hot-word .con-en[data-v-219577f8] {
    width: 340px;
}
.home .home-search .hot-word .con .item[data-v-219577f8] {
    display: inline-block;
    padding: 0 10px;
    max-width: 20%;
    text-align: center;
    transition: all .2s;
    -webkit-transition: all .2s;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.home .home-search .hot-word .con .item[data-v-219577f8]:hover {
    color: #e1251b;
}
.home .home-search .search-msg[data-v-219577f8] {
    position: relative;
    height: 40px;
}
.home .home-search .search-msg .search-input-box[data-v-219577f8] {
    display: inline-block;
    border: 2px solid #e1251b;
    width: 450px;
    height: 36px;
}
.home .home-search .search-msg .search-input-box .search-input[data-v-219577f8] {
    display: inline-block;
    width: 60%;
    border: 0;
    height: 35px;
    padding: 0 10px;
}
.home .home-search .search-msg .search-input-box .select-search[data-v-219577f8] {
    display: inline-block;
    width: 10%;
    line-height: 37px;
    text-align: center;
    cursor: pointer;
    color: #e1251b;
    position: relative;
}
.home .home-search .search-msg .search-input-box .select-search .select-box[data-v-219577f8] {
    position: absolute;
    top: -22px;
    left: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.home .home-search .search-msg .search-input-box .select-search .switch-icon[data-v-219577f8] {
    width: auto;
    height: auto;
    max-width: 10px;
    max-height: 12px;
    margin-left: 3px;
}
.search-msg .search-input-box .select-list[data-v-219577f8] {
    display: inline-block;
    width: 45px;
    position: absolute;
    top: 38px;
    right: 95px;
    background: #ffffff;
    border: 2px solid #e1251b;
    padding: 5px 0;
}
.select-list .select-item[data-v-219577f8] {
    line-height: 1.5em;
    text-align: center;
    padding: 5px 0;
    cursor: pointer;
}
.home .home-search .search-msg .search-btn[data-v-219577f8] {
    border: 0;
    background: #e1251b;
    color: #fff;
    height: 40px;
    width: 90px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    cursor: pointer;
}
.home .home-search .cart-btn[data-v-219577f8] {
    position: relative;
    margin-left: 20px;
    padding: 0 20px 0 47px;
    background-color: #e1251b;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
    -webkit-transition: all .2s;
    position: relative;
}
.home .home-search .cart-btn[data-v-219577f8]::before {
    position: absolute;
    left: 17px;
    top: 12px;
    display: block;
    width: 17px;
    height: 15px;
    content: " ";
    background: url(/_nuxt/assets/images/icons.png) no-repeat -44px -38px;
}
.home .home-search .cart-btn .number[data-v-219577f8] {
    font-size: 12px;
    font-family: arial;
    display: inline-block;
    padding: 0 5px;
    background: #fff;
    color: #e1251b;
    height: 16px;
    line-height: 16px;
    min-width: 16px;
    border-radius: 20px;
    vertical-align: top;
    margin-top: 12px;
    margin-left: 10px;
    text-align: center;
    box-sizing: border-box;
}
.home .home-search .search-msg .search-btn[data-v-219577f8]:hover,
.home .home-search .cart-btn[data-v-219577f8]:hover {
    opacity: 0.9;
}

/* 首页搜索 end */
.categoryPart[data-v-219577f8] {
    display: flex;
    margin: 0 auto;
    justify-content: flex-start;
    width: 70%;
    min-width: 1200px;
    margin: 0 auto;
}

/* banner */
.banner[data-v-219577f8] {
    /* width: 70%; */
    flex: 1;

    height: 556px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.banner-item[data-v-219577f8] {
    width: 100%;
    /*图片宽度*/
    position: absolute;
    left: 50%;
    margin-left: -50%;
    /*图片宽度的一半*/
}

/* .banner .item {
    position: relative;
    max-width: 100%;
    height: 100%;
    font-size: 0;
} */
.banner img[data-v-219577f8] {
    background-color: #fff;
}
.banner .el-carousel__item[data-v-219577f8] {
    display: flex;
}
.banner .el-carousel__item a[data-v-219577f8] {
    display: inline-block;
    width: 33%;
    height: 100%;
    margin: 5px auto 0 auto;
}
.banner .el-carousel__item a img[data-v-219577f8] {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

/* banner end  */

/* banner right start*/
#banner_right[data-v-219577f8] {
    height: 100%;
    display: block;
    position: relative;
    right: 0;
    z-index: 1;
    width: 230px;
    height: 556px;
}
#banner-active[data-v-219577f8] {
    width: 100%;
    height: 556px;
    background: #fff;
    overflow: hidden;
}
#banner-active #myTab[data-v-219577f8] {
    border-bottom: 1px solid #e5e5e5;
    background: #006ecd;
    height: 50px;
}
#banner-active #myTab li[data-v-219577f8] {
    width: 49%;
    float: left;
    margin: 15px 0;
    text-align: center;
    font-size: 16px;
}
#banner-active #myTab li a[data-v-219577f8],
#banner-active #myTab li a[data-v-219577f8]:visited {
    font-size: 16px;
    color: #fff;
    padding: 2px 4px;
}
#banner-active #myTab li a[data-v-219577f8]:hover,
#banner-active #myTab li a[data-v-219577f8]:visited:hover {
    color: #fff;
}
#banner-active #myTab li.active a[data-v-219577f8] {
    color: #fff;
}
#myTabContent[data-v-219577f8] {
    width: 100%;
    height: 505px;
    /* border-right: 2px solid #ededed;
    border-bottom: 2px solid #ededed; */
}
#myTabContent.tab-content>.tab-pane[data-v-219577f8] {
    display: none;
    height: 503px;
    border-right: 2px solid #ededed;
    border-bottom: 2px solid #ededed;
}
#myTabContent .fade[data-v-219577f8] {
    opacity: 0;
    filter: alpha(opacity=0);
    transition: opacity .15s linear;
}
#myTabContent.tab-content>.active[data-v-219577f8] {
    display: block;
}
#myTabContent .fade.in[data-v-219577f8] {
    opacity: 1;
    filter: alpha(opacity=1);
}
.clearfix[data-v-219577f8] {
    clear: both;
}
#myTabContent ul[data-v-219577f8] {
    padding: 0 10px;
    height: 465px;
    overflow: hidden;
}
#myTabContent li[data-v-219577f8],
#myTabContent li[data-v-219577f8]:visited {
    margin: 15px 0 0;
    font-size: 14px;
    padding: 0;
    width: 100%;
    line-height: 14px;
    height: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
    list-style: none;
    color: #666;
}
#myTabContent li span[data-v-219577f8],
#myTabContent li:visited span[data-v-219577f8] {
    float: left;
    width: 4%;
    top: 0;
}
#myTabContent li a[data-v-219577f8],
#myTabContent li:visited a[data-v-219577f8] {
    font-size: 12px;
    line-height: 14px;
    color: #333;
    white-space: normal;
    display: inline-block;
    float: left;
    max-width: 96%;
}
#myTabContent li[data-v-219577f8]:hover,
#myTabContent li[data-v-219577f8]:visited:hover {
    color: #f90;
}
#myTabContent li:hover a[data-v-219577f8],
#myTabContent li:visited:hover a[data-v-219577f8] {
    color: #f90;
}
#myTabContent a.look_more[data-v-219577f8] {
    font-size: 12px;
    text-align: center;
    display: block;
    width: 80px;
    height: 20px;
    color: #f60;
    line-height: 17px;
    border-radius: 8px;
    border: 1px solid #f60;
    margin: 4px auto 0;
}

/* banner right end */

/* banner right_fx start */
.HomeUserContainer[data-v-219577f8] {
    width: 233px;
    box-sizing: border-box;
}
.user-wrapper .info_alert[data-v-219577f8] {
    height: 18px;
    padding: 0 4px;
    background: linear-gradient(142deg, #fffbea, #ffecba);
    border-radius: 9px;
    font-size: 12px;
    font-weight: 400;
    color: #e50012
}
.user-gradient-bg[data-v-219577f8] {
    background: linear-gradient(0deg, #eee, #fae6e8);
    height: 556px;
    box-sizing: border-box;
}
.logo-list[data-v-219577f8] {
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 2px 2px 0 hsla(0, 0%, 91%, .35)
}
.logo-list>a[data-v-219577f8] {
    width: 116px;
    height: 82px;
    background-size: contain
}
.fs16[data-v-219577f8] {
    font-size: 16px
}
.bold[data-v-219577f8],
.fwb[data-v-219577f8] {
    font-weight: 700
}
.ce50012[data-v-219577f8],
.h-ce50012[data-v-219577f8]:hover {
    color: #e50012
}
.items-center[data-v-219577f8] {
    align-items: center
}
.flex[data-v-219577f8] {
    display: flex
}
.pt20[data-v-219577f8] {
    padding-top: 20px;
}
.pt40[data-v-219577f8] {
    padding-top: 40px;
}
.mb14[data-v-219577f8] {
    margin-bottom: 14px;
}
.pb14[data-v-219577f8] {
    padding-bottom: 14px;
}
.px10[data-v-219577f8] {
    padding-left: 10px;
    padding-right: 10px;
}
.mt18[data-v-219577f8] {
    margin-top: 18px
}
.mt38[data-v-219577f8] {
    margin-top: 38px
}
.mt48[data-v-219577f8] {
    margin-top: 48px
}
.pb16[data-v-219577f8] {
    padding-bottom: 16px
}
.pb42[data-v-219577f8] {
    padding-bottom: 42px;
}
.user-order-summary[data-v-219577f8] {
    padding: 20px 5px;
    margin-top: 40px;
}
.pt12[data-v-219577f8] {
    padding-top: 12px;
}
.pt62[data-v-219577f8] {
    padding-top: 62px;
}
.px8[data-v-219577f8] {
    padding-left: 8px;
    padding-right: 8px;
}
.justify-evenly[data-v-219577f8] {
    justify-content: space-evenly;
}
.bgc-fff[data-v-219577f8] {
    background-color: #fff;
}
.summary-item[data-v-219577f8] {
    cursor: pointer;
}
.HomeUserContainer a[data-v-219577f8] {
    /* background: transparent; */
    -webkit-text-decoration: none;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    color: #415058;
    font-family: PingFang SC, Microsoft YaHei, Arial, sans-serif
}
.HomeUserContainer a[data-v-219577f8]:active {
    color: #b4282d;
    outline: 0
}
.link-item-custom[data-v-219577f8],
.link-item-inquiry[data-v-219577f8] {
    position: relative;
    width: 100px;
    height: 52px;
    cursor: pointer
}
.link-item-custom .label[data-v-219577f8],
.link-item-inquiry .label[data-v-219577f8] {
    width: 100%;
    position: absolute;
    bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 700;
    color: #333
}
.link-item-custom[data-v-219577f8] {
    background: url(data:image/png;base64,UklGRn4CAABXRUJQVlA4WAoAAAAQAAAAYwAAMwAAQUxQSDkAAAABJ0CQbTOpMc73AteIiOAzKGgkqaEo+GKAIuDBweNf2QogEf2fgNgCz74Ef5yXyvvJHM5L491w2usAVlA4IB4CAADwDACdASpkADQAPpFGm0olpCIhpdZrILASCUAZkZahvvnokBtpeel50DrL/QA8sr2Yi8ANX9z3Dmazb5X3Fotl8vzvX/mJy9d54ytFayiMSaCupgTOGFuCU04JwOU2cft7q79UbFDeIIDtnBRiwNgAAP7zanXHUleCQ6WQ42ZyF//n5n3taBN/gZ9+Dj0cjp/yRJTAV04IgsuSpqKBfEHCp5B8hCOU2vh8tgM6LggDkv3/8Mpy+jdW0GhLKU3mBdW0/0L3FKu/lQAIAO9YCIAEZ8f+z9wZpckCs2YkS2SZ7F2+LP5Kuqho6Ccs3zW/3dPjFCLCv8/BHH/yry7gRSSxefo3IO1VCPlE2U/dChAwBcr8zvYqGS2JI+7FRYUQadIauhGFLFRCiahd+/yVtA/+Hh0vCYpwllwmhPA9v5zJj4CdWhgiZhYNbWFaiBhtG0OHnbiKdt6Dud0KyllAb0g/HxtoGSVrwGq3HYcEDh7UHx2r7IplnpwBH/J3Ym7un9/81wwOkey5AVeaH3bkA13qweJz/zOrrpyP8pD7un8PuYM4WX64SnYN7aIYsr4Z9uVWayI6QW3TD0C/b345gHonXlDs//asKnlnMBJdao73hDTX/bjFeTMmvAQedYNkskwxP5Vrs24FeAEYtP99yOWlwQhyCVUh18Lqxh4NAwR8Vx0LSswwaY6uRqBBfoAtI554KTAYRitQGJbqGAAAAA==)
}
.link-item-inquiry[data-v-219577f8] {
    background: url(data:image/png;base64,UklGRrACAABXRUJQVlA4WAoAAAAQAAAAYwAAMwAAQUxQSHYAAAABL0AgaTNW5k1fezUiIqh5OI4kSU4kgQPdETKgO6Q/JhweLP67wx7NzSui/xNw2hF+O2yIv655hXnCB6owAgABKEaoZIprnMIahaiOIah+I1znDNbpv8d1zlCVmAHWGKHiPZEhsE3atvDHywdY88qWdznvaeUIVlA4IBQCAACQDQCdASpkADQAPpFAm0sloyIhqBJJ6LASCWIAzq3Vvw/xmEmdA23F2V7y/+4GU3OY7PIQTWbRwuNG1YYt20ZGL8vdOrj0gu/hYoqKk34jhsRkC5nbdSIeirNVWAhma/gqcHr7YjbttCJhNtEub7+LgZWuCEAA/vnR2+mERDz/nvG/uFHr/+5AP9kA/2QD5xf1fnM5/6WT4/8Q5oc0OOqQp9WwhsS/595GPMDbpo6l8phffo426j3skvR0Fji2xtIOKux3Zm1sryCPpvqVlt59C9TZXAOpdSAZOCO3wLq7q25shuX0VCA/wty64n9/iuoHF3dSjoavxVk2kftcuF25MFVmarn/azACjwq62Dt+JcFnCsL5ybop25mfpEmOWMeq/rhme1Kxvokr2v2JiCVUbiQgDKZlBfPByenhsumDlVVMzD+9QZycHsd8kVb4HSzrN4vL66yweTpVVcV46EUcNDgjmgHWJoMTNlUtSRaL5sRCo7cM8v0eLezbun9J8CIRge8DpVo/s9klJMYX3sG2n/ruDwn6D8x/1Loq2PSEKdv9+BcJH61srFYb7qfA4uEbnOqN+3LWhkTf/K4YbbMy6oO/5SSAQ/jyM253+j8TslLX3XcVP/4Mgx6Pwj3RuIW7rYclt2LFZ9IRa7P/H2qxtAI+Q75n+bEiar9OBplGZImf432+AAsjPGDyEP7nIQ9AAAAA)
}
.link-item[data-v-219577f8] {
    cursor: pointer
}
.link-item .hover-img[data-v-219577f8],
.link-item .normal-img[data-v-219577f8] {
    margin: auto;
    width: 30px;
    height: 30px
}
.link-item .normal-img[data-v-219577f8] {
    display: block
}
.link-item .hover-img[data-v-219577f8],
.link-item:hover .normal-img[data-v-219577f8] {
    display: none
}
.link-item:hover .hover-img[data-v-219577f8] {
    display: block
}
.justify-between[data-v-219577f8] {
    justify-content: space-between
}

/* banner right_fx end */

/* 快捷导航 */
#quick_nav[data-v-219577f8] {
    margin-bottom: 20px;
    background-color: #fff;
    height: 90px;
}
#quick_nav li[data-v-219577f8] {
    float: left;
    width: 20%;
    border-right: 1px solid #EEEEF0;
    border-bottom: 1px solid #EEEEF0;
    background: #fff;
    position: relative;
    box-sizing: border-box;
    height: 90px;
}
#quick_nav li.secure[data-v-219577f8] {
    border-right: none;
}
#quick_nav li div[data-v-219577f8] {
    height: 90px;
    line-height: 60px;
    font-size: 18px;
    color: #666;
    padding: 15px 40px;
    white-space: nowrap;
}
#quick_nav li div img[data-v-219577f8] {
    vertical-align: middle;
    margin-right: 18px;
}
#quick_nav li .text-hover[data-v-219577f8] {
    position: absolute;
    z-index: 10;
    width: 100%;
    padding: 0;
    top: 0;
    left: 0;
    height: 100%;
    line-height: 16px;
    font-size: 12px;
    white-space: normal;
    opacity: 0;
}
#quick_nav li .text-hover p[data-v-219577f8] {
    color: #fff;
    height: 100%;
    padding: 10px;
    cursor: default;
}
#quick_nav li .text-hover.vip_text[data-v-219577f8] {
    padding: 11px 10px;
}
#quick_nav li .text-hover.order_text[data-v-219577f8] {
    padding: 28px 8px;
}
#quick_nav li .text-hover.order_text p[data-v-219577f8] {
    padding: 0;
}
#quick_nav li .text-hover.org_text[data-v-219577f8] {
    padding: 19px 18px;
}
#quick_nav li .text-hover.money_text[data-v-219577f8] {
    padding: 22px 11px;
}
#quick_nav li .text-hover.secure_text[data-v-219577f8] {
    padding: 22px 8px;
}
#quick_nav li .text-hover.secure_text p[data-v-219577f8] {
    padding: 0;
}
#quick_nav li .icon-hover[data-v-219577f8] {
    position: absolute;
    z-index: 10;
    width: 100%;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    top: 0;
    left: 0;
}
#quick_nav li .icon-hover .dot[data-v-219577f8] {
    float: left;
    height: 100%;
    width: 33.33333333%;
    border-radius: 50%;
    transform: scale(0.4);
    -moz-transform: scale(0.4);
    -o-transform: scale(0.4);
    transition: transform .3s;
    transition: transform 0.3s;
}
#quick_nav li .icon-hover.quick_vip .dot[data-v-219577f8] {
    background: #ffa01a;
}
#quick_nav li .icon-hover.quick_order .dot[data-v-219577f8] {
    background: #44b9f6;
}
#quick_nav li .icon-hover.quick_org .dot[data-v-219577f8] {
    background: #ff6600;
}
#quick_nav li .icon-hover.quick_money .dot[data-v-219577f8] {
    background: #d3b378;
}
#quick_nav li .icon-hover.quick_secure .dot[data-v-219577f8] {
    background: #48c68c;
}
#quick_nav li:hover .icon-hover[data-v-219577f8] {
    opacity: 1;
    filter: alpha(opacity=1);
}
#quick_nav li:hover .icon-hover .dot[data-v-219577f8] {
    transform: scale(1.6);
}
#quick_nav li:hover .text-hover[data-v-219577f8] {
    opacity: 1;
    filter: alpha(opacity=1);
}

/* 快捷入口 */
.home .shortcut[data-v-219577f8] {
    display: flex;
    margin-top: 40px;
}
.home .shortcut .item[data-v-219577f8] {
    width: 20%;
    box-sizing: border-box;
    height: 224px;
    cursor: pointer;
    border-right: 1px solid #EEEEF0;
}
.home .shortcut .item[data-v-219577f8]:last-child {
    margin-right: 0;
}
.home .shortcut .item.item01[data-v-219577f8] {
    background: #f7f7f9;
}
.home .shortcut .item.item02[data-v-219577f8] {
    background: #f8f7f9;
}
.home .shortcut .item.item03[data-v-219577f8] {
    background: #f7f9f8;
}
.home .shortcut .item.item04[data-v-219577f8] {
    background: #f7f8f9;
}
.home .shortcut .item.item05[data-v-219577f8] {
    background: #f8f7f9;
    border-right: none;
}
.home .shortcut .item .text[data-v-219577f8] {
    margin: 20px 20px 0;
}
.home .shortcut .item .text .cn[data-v-219577f8] {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}
.home .shortcut .item .text .en[data-v-219577f8] {
    font-size: 12px;
    line-height: 15px;
    color: #999;
    margin-top: 5px;
}
.home .shortcut .item .img[data-v-219577f8] {
    display: flex;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    align-items: flex-end;
    -webkit-align-items: flex-end;
    height: 144px;
    padding: 0 20px 20px 0;
    font-size: 0;
}
.home .shortcut .item .img img[data-v-219577f8] {
    max-width: 140px;
    max-height: 140px;
    transition: all .2s;
    -webkit-transition: all .2s;
}
.home .shortcut .item:hover .img img[data-v-219577f8] {
    opacity: 0.8;
}

/* 快捷入口 end */

/* 长条广告 */
.home .adv[data-v-219577f8] {
    margin-top: 40px;
    cursor: pointer;
    font-size: 0;
    max-height: 300px;
    display: block;
}
.home .adv img[data-v-219577f8] {
    width: 100%;
    height: 100%;
}

/* 长条广告 end */

/* 首页列表 */
.goods-list[data-v-219577f8] {
    margin-top: 40px;
}

/* 首页列表 end */

/* 首页电梯导航 start */

/*首页电梯导航*/
.elevator[data-v-219577f8] {
    position: fixed;
    top: 100px;
    left: 9%;
    margin-left: 0px;
    width: 90px;
    height: 369px;
    background: #FAFAFA;
    overflow: visible;
    font-family: "microsoft yahei";
    color: #fff;
    z-index: 30;
}
.elevator .item-s[data-v-219577f8] {
    width: 100%;
    height: 36px;
    border-top: 1px solid #0d75d0;
    background: #f60;
    color: #fff;
    margin-bottom: 0px;
}
.elevator .btnone[data-v-219577f8] {
    border-top: none;
    width: 80px;
}
.elevator .item-s .product-elevator[data-v-219577f8] {
    position: absolute;
    z-index: 999;
    width: 80px;
}
.elevator .item-s .product-elevator h3[data-v-219577f8] {
    width: 80px;
    height: 34px;
    padding-left: 5px;
    border-width: 1px 0;
    font-weight: normal;
    line-height: 36px;
    box-sizing: border-box;
    cursor: pointer;
}
.elevator .item-s .product-elevator h3 a[data-v-219577f8] {
    width: 80px;
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 4px;
    display: block;
}
.elevator .item-s .product-elevator h3 a[data-v-219577f8]:hover {
    -webkit-text-decoration: none;
    text-decoration: none;
}
.elevator .item-s .product-elevator s[data-v-219577f8] {
    display: block;
    position: absolute;
    top: 13px;
    left: 60px;
    width: 6px;
    height: 9px;
}
.elevator .active .product-elevator h3[data-v-219577f8] {
    line-height: 32px;
    background-color: #ffffff;
    border: 1px solid #f60;
    border-width: 1px 0px 1px 1px;
    width: 70px;
}
.elevator .active .product-elevator h3 a[data-v-219577f8] {
    color: #f60;
}
.elevator .product-wrap[data-v-219577f8] {
    position: absolute;
    width: 208px;
    height: 412px;
    ;
    border: 1px solid #f60;
    background: #fff;
    padding: 8px 10px 10px 10px;
    display: none;
}
.elevator .product-wrap p[data-v-219577f8] {
    color: #999999;
}
.elevator .pos01[data-v-219577f8] {
    left: 80px;
    top: 0px;
}
.elevator .product-wrap h2[data-v-219577f8] {
    font-size: 14px;
    color: #006ECD;
    font-weight: bold;
}
.elevator .product-wrap h2 a[data-v-219577f8] {
    height: auto;
    line-height: 16px;
    color: #f60;
    padding-left: 0;
}
.elevator .product-wrap ul li[data-v-219577f8] {
    margin-right: 15px;
    margin-top: 8px;
    white-space: nowrap;
}
.elevator .product-wrap ul li a[data-v-219577f8] {
    color: #666666;
    display: inline-block;
    line-height: 18px;
    -webkit-text-decoration: none;
    text-decoration: none;
}
.elevator .product-wrap ul li a[data-v-219577f8]:hover {
    -webkit-text-decoration: none;
    text-decoration: none;
    color: #ff6600;
}
.elevator .product-wrap div dd[data-v-219577f8],
.elevator .product-wrap div dl a[data-v-219577f8] {
    display: block;
    width: 185px;
    height: 120px;
    overflow: hidden;
}
@media screen and (max-width: 1370px) {
.elevator[data-v-219577f8] {
        position: fixed;
        top: 133px;
        left: 0%;
        margin-left: 0;
}
}

/* 首页电梯导航 end */

/* 首页分类展示 start */
.pro-promotion[data-v-219577f8] {
    width: 70%;
    margin: 0px auto 0px;
    position: relative;
}
.pro-promotion ul[data-v-219577f8] {
    /* display: block; */
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.pro-promotion li[data-v-219577f8] {
    width: 18%;
    height: 238px;
    float: left;
    display: block;
}
.pro-promotion li a[data-v-219577f8] {
    width: 100%;
    height: 228px;
    display: block;
    margin: 5px;
    position: relative;
}
.pro-promotion li img[data-v-219577f8] {
    width: 226px;
    height: 226px;
    border: 1px solid #f7f7f7;
}
.pro-promotion li a[data-v-219577f8]:hover {
    box-shadow: 2px 2px 2px #eeeeee;
}
.divide-img[data-v-219577f8] {
    border-top: 1px solid #999;
    font-size: 45px;
    text-align: center;
    padding: 40px;
    font-family: "微软雅黑", "Microsoft YaHei", "SimHei"
}
.divide-title[data-v-219577f8] {
    font-family: "Microsoft YaHei", "SimHei";
    height: auto;
    padding: 25px 0px 10px 0px
}
.divide-title .title-a[data-v-219577f8] {
    width: 350px;
    font-size: 20px;
    float: left;
    font-weight: 700;
    margin-right: 10px;
    text-align: left;
}
.divide-title .title-b[data-v-219577f8] {
    width: 820px;
    float: right;
    font-size: 12px;
    text-align: right;
    line-height: 18px;
    padding: 4px 0px;
}
.divide-title .title-b a[data-v-219577f8]:hover {
    color: #ff0000;
}
.divide-title label[data-v-219577f8] {
    padding: 0px 8px;
    border-right: 1px solid #bbb;
    display: inline-block;
}
.divide-title .line[data-v-219577f8] {
    border-bottom: 2px solid #f60;
    height: 1px;
}
.divide-cbname-box[data-v-219577f8] {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 48px;
    text-align: center;
    background: rgb(247, 247, 247);
    margin-left: 1px;
    opacity: 0.9;
    filter: alpha(opacity=90);
}
.divide-cbname-f[data-v-219577f8] {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    height: 40px;
    width: 228px;
}
.divide-cbname[data-v-219577f8] {
    position: relative;
    vertical-align: middle;
    padding: 0px 20px;
    line-height: 18px;
    overflow: hidden;
    margin-top: 6px;
    height: auto;
    max-height: 36px;
    font-size: 14px;
    color: #444444;
}
.divide-cbname-icon[data-v-219577f8] {
    position: absolute;
    right: 10px;
    top: 10px;
}

/* 首页分类展示 end */

.store-signate-page-container[data-v-61ab06e5] {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.store-signate-page-container .store-singate-content[data-v-61ab06e5] {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  max-width: 1200px;
  flex-direction: column;
  box-sizing: border-box;
}
/* 头部上部分样式 start */
.store-singate-content .store-top[data-v-61ab06e5] {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding-bottom: 26px;
}
.store-top .top-logo[data-v-61ab06e5] {
  height: 80px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.top-logo img[data-v-61ab06e5] {
  width: 150px;
  height: 88px;
}
.top-logo .logo-text .chinese-name[data-v-61ab06e5] {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: #000;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
}
.top-logo .logo-text .english-name[data-v-61ab06e5] {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  line-height: 19px;
  margin-top: 6px;
  color: #cccccc;
  white-space: nowrap;
  overflow: hidden;
}
.top-search[data-v-61ab06e5] {
  display: flex;
}
.top-search .search-input[data-v-61ab06e5] {
  width: 600px;
  height: 40px;
  border: 2px solid #e1251b;
  position: relative;
  margin-right: 50px;
  box-sizing: border-box;
}
.top-search .search-input input[data-v-61ab06e5] {
  width: 472px;
  height: 36px;
  border: none;
  background: none;
  padding: 0 0 0 10px;
  font-size: 14px;
  color: #000;
}
.top-search .search-input input[data-v-61ab06e5]::-moz-placeholder {
  font-size: 13px;
  line-height: 16px;
}
.top-search .search-input input[data-v-61ab06e5]::placeholder {
  font-size: 13px;
  line-height: 16px;
}
.top-search .search-input .search-types[data-v-61ab06e5] {
  position: absolute;
  top: 10px;
  right: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.top-search .search-input .search-types .types-name[data-v-61ab06e5] {
  display: block;
  font-size: 14px;
  color: #e1251b;
  margin-right: 3px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.top-search .search-input .search-types img[data-v-61ab06e5] {
  width: 10px;
  height: 12px;
}
.top-search .search-input .search-btns[data-v-61ab06e5] {
  width: 109px;
  height: 38px;
  background: #e1251b;
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  font-size: 14px;
  font-family: Microsoft YaHei;
  z-index: 5;
  line-height: 38px;
  letter-spacing: 4px;
  text-align: center;
  cursor: pointer;
}
.top-search .top-cart[data-v-61ab06e5] {
  width: 160px;
  height: 40px;
  background: #e1251b;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.top-search .top-cart[data-v-61ab06e5]::before {
  content: '';
  position: absolute;
  background: url(/_nuxt/assets/images/icons.png) no-repeat -44px -36px;
  width: 19px;
  height: 18px;
  left: 25px;
  top: 11px;
}
.top-search .top-cart span[data-v-61ab06e5] {
  margin-left: 4px;
  font-size: 14px;
  font-family: Microsoft YaHei;
}
/* 头部上部分样式 end */
/* 头部下部分样式 start */
.store-singate-content .store-bottom[data-v-61ab06e5] {
  width: 100%;
  height: 40px;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
.store-singate-content .store-bottom .all-category[data-v-61ab06e5] {
  width: 187px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  line-height: 1;
  font-size: 15px;
}
.store-bottom .all-category img[data-v-61ab06e5] {
  width: 17px;
  height: 13px;
  margin-left: 22px;
}
.store-bottom .menu-content[data-v-61ab06e5] {
  width: calc(100% - 187px);
  display: flex;
  align-items: center;
}
.store-bottom .menu-content .menu-items[data-v-61ab06e5] {
  overflow: hidden;
  padding: 0 30px;
  font-size: 15px;
  color: #000;
  white-space: nowrap;
  cursor: pointer;
}
.store-bottom .menu-content .menu-items.active[data-v-61ab06e5] {
  color: #e1251b;
}
.store-bottom .menu-content .menu-items[data-v-61ab06e5]:first-child {
  padding-left: 60px;
}
.store-bottom .menu-content.isPadding .menu-items[data-v-61ab06e5]:first-child {
  padding-left: 0px;
}
.store-bottom .menu-content .menu-items[data-v-61ab06e5]:hover {
  color: #e1251b;
}
/* 详情下拉菜单的样式 */
.menu-container[data-v-61ab06e5] {
  width: 187px;
  height: 500px;
  position: absolute;
  background: #e1251b;
  top: 40px;
  left: 0px;
  z-index: 9999;
  overflow-x: hidden;
  overflow-y: auto;
}
.menu-container .menu-item[data-v-61ab06e5] {
  height: 55px;
  line-height: 55px;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.menu-container .menu-item.active[data-v-61ab06e5] {
  color: #e1251b;
  background: #fff;
}
.menu-container .menu-item .menu-item-img[data-v-61ab06e5] {
  width: 13px;
  height: 13px;
  margin-left: 0;
  margin-right: 8px;
}
.menu-container .menu-item .right_icon[data-v-61ab06e5] {
  width: 6px;
  height: 11px;
  position: absolute;
  right: 30px;
}
.menu-container .menu-item span[data-v-61ab06e5] {
  height: 100%;
  display: block;
  padding-right: 20px;
}
.menu-container .menu-item[data-v-61ab06e5]:hover {
  background: rgba(255, 255, 255, 0.2);
}
.menu-container .menu-item.active[data-v-61ab06e5]:hover {
  color: #e1251b;
  background: #fff;
}
.menu-detail[data-v-61ab06e5] {
  width: 1013px;
  height: 500px;
  background: #fff;
  position: absolute;
  top: 40px;
  left: 187px;
  box-sizing: border-box;
  border: 1px solid #e1251b;
  border-left: 0;
  padding: 10px 0;
  z-index: 9999;
  overflow-x: hidden;
  overflow-y: auto;
}
.menu-detail .detail-items[data-v-61ab06e5] {
  width: 100%;
  padding: 6px 20px;
  display: flex;
}
.menu-detail .detail-items .detail_title[data-v-61ab06e5] {
  font-size: 16px;
  width: 90px;
  display: flex;
  color: #333;
  line-height: 22px;
  position: relative;
}
.menu-detail .detail-items .detail_title span[data-v-61ab06e5] {
  max-width: 76px;
  width: 90px;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: break-spaces;
  max-height: 42px;
  line-height: 1.5em;
}
.menu-detail .detail-items .detail_title .detail_right_icon[data-v-61ab06e5] {
  padding-top: 3px;
  margin-left: 10px;
  color: #000;
}
.menu-detail .detail-items .detail_title:hover span[data-v-61ab06e5] {
  color: #e1251b;
}
.menu-detail .detail-items .detail_title:hover .detail_right_icon[data-v-61ab06e5] {
  color: #e1251b;
}
.menu-detail .detail-items .goods-content[data-v-61ab06e5] {
  display: flex;
  flex-wrap: wrap;
  color: #999;
  font-size: 12px;
  width: 80%;
  margin-left: 30px;
  margin-right: 40px;
  padding-bottom: 10px;
  line-height: 1em;
  border-bottom: 1px solid #eaeaea;
}
.menu-detail .detail-items .goods-content .goods-items[data-v-61ab06e5] {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 10px;
  margin-top: 4px;
  color: #666;
  font-size: 12px;
  line-height: 1em;
}
.menu-detail .detail-items .goods-content .goods-items[data-v-61ab06e5]:hover {
  color: #e1251b;
}
/* 头部下部分样式  end*/
[data-v-61ab06e5]::-webkit-scrollbar {
  width: 0px;
}
/* 滚动槽 */
[data-v-61ab06e5]::-webkit-scrollbar-track {
  -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
/* 滚动条滑块 */
[data-v-61ab06e5]::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5);
}
[data-v-61ab06e5]::-webkit-scrollbar-thumb:window-inactive {
  /* background: #e1251b; */
}

.classifieds-container[data-v-23b2b2d5] {
  z-index: 10;
}
.classifieds-box[data-v-23b2b2d5] {
  display: flex;
  /* align-items: center; */
  justify-content: flex-start;
  /* width: 1200px; */
  height: 450px;
  background: #fff;
}
.classifieds-box.in-shop[data-v-23b2b2d5] {
  height: 300px;
  width: 930px;
}
.c-left[data-v-23b2b2d5] {
  position: relative;
  display: block;
  width: 230px;
  height: 556px;
  background: #ffefe4;

  font-size: 12px;
  color: #666;
  /* border-bottom: 1px solid #e1251b; */
  /* border-bottom: 1px solid #f60; */
}
.c-left .list[data-v-23b2b2d5] {
  max-height: 556px;
  overflow: auto;
}

/* 滚动条样式 */
.c-left .list[data-v-23b2b2d5]::-webkit-scrollbar {
  display: none;
}

/* .c-left .list::-webkit-scrollbar {
  display: block;
  width: 3px;
} */

/*滚动条里面小方块*/

/* .c-left .list::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 5px #fff;
  background: #fff;
} */

/*滚动条里面轨道*/

/* .c-left .list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
  border-radius: 0;
  background: rgba(0,0,0,0.1);
} */

/* 上下箭头 */
.c-left .up-arrow[data-v-23b2b2d5],
.c-left .down-arrow[data-v-23b2b2d5] {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  cursor: pointer;
}
.c-left .up-arrow img[data-v-23b2b2d5],
.down-arrow img[data-v-23b2b2d5] {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  opacity: .9;
}
.c-left .up-arrow img[data-v-23b2b2d5] {
  right: 15px;
}
.c-left .down-arrow img[data-v-23b2b2d5] {
  right: 20px;
}

/* .c-left .up-arrow:hover,
.c-left .down-arrow:hover {
  display: none;
} */
.c-left .up-arrow[data-v-23b2b2d5] {
  top: 0;
  /* padding-top: 6px; */
  padding-bottom: 12px;
  /* left: 50%;
  transform: translateX(-50%); */
  /* Safari、Chrome */
  /* Opera */
  /* Firefox */
  background: linear-gradient(to bottom, rgba(68, 68, 68, 0.2)0%, rgba(68, 68, 68, 0.1)75%, rgba(68, 68, 68, 0)98%);
  /* 标准的语法（必须放在最后） */
}
.c-left .down-arrow[data-v-23b2b2d5] {
  bottom: 0;
  padding-top: 12px;
  /* padding-bottom: 6px; */
  /* left: 50%;
  transform: translateX(-50%); */
  /* Safari、Chrome */
  /* Opera */
  /* Firefox */
  background: linear-gradient(to top, rgba(68, 68, 68, 0.2)0%, rgba(68, 68, 68, 0.1)75%, rgba(68, 68, 68, 0)98%);
  /* 标准的语法（必须放在最后） */
}

/* 上下箭头 end */
.c-left .c-item[data-v-23b2b2d5] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  height: 55px;
  line-height: 55px;
  cursor: pointer;
  box-sizing: border-box;
}
.c-left .c-item[data-v-23b2b2d5]:hover {
  background: rgb(243, 74, 2);
  color: #fff;
}
.c-left .c-item.active[data-v-23b2b2d5] {
  background: #fff;
  color: #f60;
}
.c-left .c-item .category[data-v-23b2b2d5] {
  display: flex;
  align-items: center;
  height: 55px;
  line-height: 1em;
}
.c-left .c-item .category .c-icon[data-v-23b2b2d5] {
  display: block;
  width: 16px;
  height: 15px;
  margin-right: 8px;
}

/* ie 全部商品分类li去掉小黑点 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.c-left .c-item .category .c-icon[data-v-23b2b2d5] {
    display: none;
}
}
.c-name[data-v-23b2b2d5] {
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 175px;
  margin-left: 20px;

  /* font-weight: 600; */
}
.c-name>b[data-v-23b2b2d5] {
  position: absolute;
  width: 30px;
  height: 30px;
  /* top:10px; */
  background: url(/_nuxt/assets/images/sorts.png) no-repeat 0 0;
  filter: grayscale(100%);
  left: 12px;
}
.c-arrow-icon[data-v-23b2b2d5] {
  display: block;
  width: 6px;
  height: 11px;
  margin-top: 0px;
}
.c-right[data-v-23b2b2d5] {
  /* width: 70%;
  max-width: 900px;
  min-width: 729px;
  */
  height: 555px;
  display: flex;
  justify-content: space-between;
  flex: 1;
  /* z-index: 888; */
  border-right: 1px solid #e1251b;
  border-top: 1px solid #e1251b;
  border-bottom: 1px solid #e1251b;
  border-left: 1px solid #e1251b;
}
.in-shop .c-right[data-v-23b2b2d5] {
  width: 100%;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  border-top: 0;
}

/* 下级分类 */
.c-right .sub-category[data-v-23b2b2d5] {
  flex: 1;
  /* max-height: 450px; */
  overflow-x: hidden;
  background-color: white;
}
.c-right .sub-category[data-v-23b2b2d5]::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
.c-right .sub-category .sub-item[data-v-23b2b2d5] {
  /* display: flex;
  justify-content: flex-start;
  align-items: top;
  margin-top: 20px; */

  position: relative;
  top: 0;
  max-height: 442px;
  /* width:770px; */
  z-index: 16;
  overflow: hidden;
  left: 200;
  padding: 20px 10px;
  border: 1px solid #f7f7f7;
  background: #fff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
}
.c-left .c-item:hover~.c-right .sub-category .sub-item[data-v-23b2b2d5] {
  display: flex;
}
.c-left li:hover~.c-right[data-v-23b2b2d5] {
  display: flex !important;
}
.c-right li:hover>.c-righ[data-v-23b2b2d5] {
  display: flex !important;
}
.c-right li:hover>.sub-category[data-v-23b2b2d5] {
  display: flex !important;
}
.c-right .second-level[data-v-23b2b2d5] {
  display: flex;
  justify-content: space-between;
  align-items: start;
  /* align-items: center; */
  width: 160px;
  padding: 4px 10px;
  font-weight: bold;
  box-sizing: border-box;
  cursor: pointer;
  color: #000;
}
.c-right .second-level.width[data-v-23b2b2d5] {
  width: 160px
}
.c-right .in-shop .second-level[data-v-23b2b2d5] {
  width: 160px;
}
.c-right .second-level[data-v-23b2b2d5]:hover {
  /* color: #e1251b; */
  color: cornflowerblue;
}
.c-right .second-level.active[data-v-23b2b2d5] {
  /* color: #e1251b; */
  color: cornflowerblue;
}
.c-right .second-level .c-name[data-v-23b2b2d5] {
  max-height: 42px;
  line-height: 100%;
  max-width: 120px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
  white-space: pre-wrap;
}
.c-right .in-shop .second-level .c-name[data-v-23b2b2d5] {
  width: 90px;
}
.c-right .second-level .c-arrow-icon[data-v-23b2b2d5] {
  margin-left: 10px;
}
.c-right .tertiary-level .t-list[data-v-23b2b2d5] {
  display: block;
  line-height: 1em;
  width: 800px;
  margin-right: 40px;
  padding-bottom: 8px;
  padding-top: 2px;
  border-bottom: 1px solid #EAEAEA;
  text-align: left;
}
.c-right .tertiary-level .t-list.width[data-v-23b2b2d5] {
  width: 800px;
}
.in-shop .tertiary-level .t-list[data-v-23b2b2d5] {
  width: 750px;
}
.c-right .tertiary-level .t-item[data-v-23b2b2d5] {
  display: inline-block;
  font-size: 12px;
  line-height: 1em;
  color: #666;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.c-right .tertiary-level .t-item.weak[data-v-23b2b2d5] {
  color: #ccc;
}
.c-right .tertiary-level .t-item.first[data-v-23b2b2d5] {
  color: #f60;
}
.c-right .tertiary-level .t-item span[data-v-23b2b2d5] {
  margin-left: 10px;
}
.c-right .tertiary-level .t-item[data-v-23b2b2d5]:hover,
.c-right .tertiary-level .t-item.active[data-v-23b2b2d5] {
  color: #e1251b;
}
.c-right .tertiary-level .t-item.weak[data-v-23b2b2d5]:hover {
  color: #ccc;
}

/* 推荐品牌 */
.c-right .featured-brands[data-v-23b2b2d5] {
  display: block;
  width: 220px;
  background: #f8f8f8;
  padding: 0 12px;
  box-sizing: border-box;
}
.c-right .featured-brands .brands-tit[data-v-23b2b2d5] {
  display: block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #000;
}
.c-right .featured-brands .brands-list[data-v-23b2b2d5] {
  display: block;
  text-align: left;
}
.c-right .featured-brands .b-item[data-v-23b2b2d5] {
  display: inline-block;
  width: 90px;
  height: 90px;
  background: #fff;
  margin-bottom: 0;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, .1);
  cursor: pointer;
}
.c-right .featured-brands .b-item[data-v-23b2b2d5]:not(:nth-child(2n)) {
  margin-right: 10px;
}
.c-right .featured-brands .b-item.no-margin[data-v-23b2b2d5] {
  margin-right: 0;
}
.c-right .featured-brands .b-item img[data-v-23b2b2d5] {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-right .empty[data-v-23b2b2d5] {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 12px;
  color: #888;
}
.classifieds[data-v-23b2b2d5] {
  display: block;
  position: absolute;
  bottom: -450px;
  left: 0;
  z-index: 111;
}
.classifieds_new[data-v-23b2b2d5] {
  display: block;
  position: relative;
  left: 0;
  z-index: 111;
  width: 230px;
}
.head[data-v-24c9d590] {
    background: #fff;
    width: 100%;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.09);
}
.head .content[data-v-24c9d590] {
    display: flex;
    align-items: center;
    height: 130px;
    padding-bottom: 26px;
    box-sizing: border-box;
}
.head .logo[data-v-24c9d590] {
    height: 78px;
    display: flex;
    cursor: pointer;
}
.head .logo .logo-img[data-v-24c9d590] {
    display: block;
    width: 160px;
    height: 70px;
    /* background: url(../images/logo.png) no-repeat; */
    background-size: 100%;
}
.head .logo .name[data-v-24c9d590] {
    margin-left: 15px;
}
.head .logo .name .cn[data-v-24c9d590] {
    display: block;
    line-height: 26px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 2px;
}
.head .logo .name .en[data-v-24c9d590] {
    font-size: 14px;
    color: #ccc;
    display: block;
    line-height: 19px;
    margin-top: 4px;
}
.head .menu[data-v-24c9d590] {
    position: relative;
    display: flex;
}
.head .menu .item.prod-sort[data-v-24c9d590]:hover {
    color: #fff;
    /* background-color:#e1251b; */
}
.head .search[data-v-24c9d590] {
    position: relative;
    width: 320px;
    height: 38px;
    margin-top: 8px;
}
.head .search .search-input[data-v-24c9d590] {
    height: 38px;
    line-height: 38px;
    border: 0;
    border: 2px solid #e1251b;
    width: 100%;
    padding: 0 100px 0 10px;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}
.head .search .search-btn[data-v-24c9d590] {
    width: 93px;
    height: 38px;
    padding-left: 7px;
    font-size: 14px;
    letter-spacing: 5px;
    position: absolute;
    right: 0;
    top: 0;
    background: #e1251b;
    border: 0;
    color: #fff;
    cursor: pointer;
    z-index: 11;
    transition: all 0.2s;
}
.head .search .search-btn[data-v-24c9d590]:hover {
    opacity: 0.9;
}
.head .menu .item[data-v-24c9d590] {
    position: relative;
    height: 40px;
    padding: 0 5px;
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    box-sizing: border-box;
}
.head .menu .item[data-v-24c9d590]:not(:first-child) {
    width: 120px;

    /* 文字不换行 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.head .menu .item[data-v-24c9d590]:hover {
    color: #e1251b;
}

/* 调整menu样式 开始 */
.head .menu[data-v-24c9d590] {
    display: flex;
    justify-content: flex-start;
    width: 70%;
    min-width: 1200px;
    margin: 0 auto;
}
.head .menu .nav[data-v-24c9d590] {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    line-height: 38px;
    white-space: nowrap;
}
.head .menu .nav .nav-item[data-v-24c9d590] {
    flex: 1;
    text-align: center;
    position: relative;
}
.head .menu .nav .nav-link[data-v-24c9d590] {
    display: block;
    padding: 0 18px;
    font-size: 16px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    -webkit-text-decoration: none;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}
.head .menu .nav .nav-link[data-v-24c9d590]:hover {
    color: #e1251b;
}
.head .menu .nav .nav-link.active[data-v-24c9d590] {
    color: #f60;
}
.head .menu .nav .nav-link.bold[data-v-24c9d590] {
    font-weight: bold;
}

/* 调整menu样式 结束 */
.head .menu .item[data-v-24c9d590]:nth-child(2) {
    padding-left: 60px;
}
.head .menu .item-on[data-v-24c9d590] {
    /* color: #E1251B; */
    color: #e1251b;
}
.head .menu .prod-sort[data-v-24c9d590] {
    display: flex;
    height: 51px;
    line-height: 51px;
    color: #FFFFFF;
    padding: 0 25px;
    background: #f60;
    flex: 0 0 230px;
}
.head .menu .prod-sort .sort-icon[data-v-24c9d590] {
    width: 17px;
    height: 13px;
    margin-left: 30px;
}
.head .hot-word[data-v-24c9d590] {
    max-width: 600px;
    overflow-x: hidden;
    white-space: nowrap;

    flex: 1;
    display: flex;
    line-height: 40px;
}
.head .hot-word .con[data-v-24c9d590] {
    /* max-width: 500px; */
    overflow: hidden;
    color: #AAA;
}
.head .hot-word .con .item[data-v-24c9d590] {
    max-width: 120px;
    height: 40px;
    display: inline-block;
    margin-left: 12px;
    transition: all .2s;
    -webkit-transition: all .2s;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.head .hot-word .con .item[data-v-24c9d590]:hover {
    color: #e1251b;
}
.head .search-msg[data-v-24c9d590] {
    position: relative;
    height: 40px;
    margin-right: 250px;
    /* margin-left: auto; */
}
.head .search-msg .search-input[data-v-24c9d590] {
    width: 600px;
    height: 40px;
    padding: 0 180px 0 10px;
    border: 0;
    border: 2px solid #e1251b;
    box-sizing: border-box;
}
.head .search-msg .search-type-box[data-v-24c9d590] {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 124px;
    transform: translateY(-50%);
    cursor: pointer;
}
.head .search-msg .search-type-box .search-type[data-v-24c9d590] {
    font-size: 14px;
    color: #e1251b;
}
.head .search-msg .search-type-box .switch-icon[data-v-24c9d590] {
    display: block;
    width: auto;
    height: auto;
    max-width: 10px;
    max-height: 12px;
    margin-left: 3px;
}
.head .search-msg .search-btn[data-v-24c9d590] {
    position: absolute;
    right: 0;
    top: 0;
    width: 109px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    background: #e1251b;
    letter-spacing: 2px;
    border: 0;
    cursor: pointer;
    transition: all .2s;
    -webkit-transition: all .2s;
}
.head .cart-btn[data-v-24c9d590] {
    position: relative;
    min-width: 160px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    padding: 0 20px 0 52px;
    background-color: #e1251b;
    margin-left: 50px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all .2s;
    -webkit-transition: all .2s;
}
.head .cart-btn[data-v-24c9d590]::before {
    position: absolute;
    left: 25px;
    top: 12px;
    display: block;
    width: 18px;
    height: 17px;
    content: " ";
    background: url(/_nuxt/assets/images/icons.png) no-repeat -44px -38px;
}
.head .cart-btn .number[data-v-24c9d590] {
    font-size: 12px;
    font-family: arial;
    display: inline-block;
    padding: 0 5px;
    background: #fff;
    color: #e1251b;
    height: 16px;
    line-height: 16px;
    min-width: 16px;
    border-radius: 20px;
    vertical-align: top;
    margin-top: 12px;
    margin-left: 10px;
    text-align: center;
    box-sizing: border-box;
}
.head .search-msg .search-btn[data-v-24c9d590]:hover,
.head .cart-btn[data-v-24c9d590]:hover {
    opacity: 0.9;
}

/* 搜索建议下拉列表样式 */
.head .search-msg[data-v-24c9d590] {
    position: relative;
}
.head .search-msg .search-suggestions[data-v-24c9d590] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 109px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 2px;
}
.head .search-msg .search-suggestions .suggestion-item[data-v-24c9d590] {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.2s;
    line-height: 1.5;
}
.head .search-msg .search-suggestions .suggestion-item[data-v-24c9d590]:last-child {
    border-bottom: none;
}
.head .search-msg .search-suggestions .suggestion-item[data-v-24c9d590]:hover {
    background-color: #f5f5f5;
}
.head .search-msg .search-suggestions .suggestion-item span[data-v-24c9d590] {
    display: block;
    word-break: break-word;
}

.base[data-v-314f53c6] {
  /* min-height: 535px; */
  /* min-height: 65vh; */
  min-height: calc(100vh - 268px);
  /* padding-bottom: 40px !important; */
}
.home-fixed-toolbar[data-v-314f53c6] {
  position: fixed;
  right: 8px;
  top: 28%;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-fixed-toolbar .tool-item[data-v-314f53c6] {
  width: 64px;
  height: 72px;
  background: #fff;
  color: #333;
  border: 1px solid #e5e5e5;
  font-size: 12px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  border-radius: 4px 0 0 4px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}
.home-fixed-toolbar .tool-item[data-v-314f53c6]:hover {
  background: #f5f7fa;
  border-color: #dcdfe6;
}
.home-fixed-toolbar .tool-item .badge[data-v-314f53c6] {
  position: absolute;
  top: 4px;
  right: 6px;
  background: #ff4d4f;
  color: #fff;
  padding: 0 5px;
  height: 16px;
  line-height: 16px;
  border-radius: 8px;
  font-size: 10px;
}
.home-fixed-toolbar .tool-item .tool-icon[data-v-314f53c6] {
  font-size: 18px;
  line-height: 1;
  color: #00a1d6;
}
.home-fixed-toolbar .service-popup[data-v-314f53c6] {
  position: absolute;
  right: 72px;
  top: 0;
  width: 240px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e5e5;
  padding: 10px 12px;
}
.home-fixed-toolbar .service-popup .popup-header[data-v-314f53c6] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #005bbb;
  margin-bottom: 10px;
}
.home-fixed-toolbar .service-popup .popup-header .close[data-v-314f53c6] {
  cursor: pointer;
  font-size: 16px;
  color: #999;
}
.home-fixed-toolbar .service-popup .popup-body[data-v-314f53c6] {
  display: flex;
  justify-content: center;
}
.home-fixed-toolbar .service-popup .popup-card[data-v-314f53c6] {
  flex: 1;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 8px 4px;
  text-align: center;
}
.home-fixed-toolbar .service-popup .popup-card.qr-card[data-v-314f53c6] {
  border: none;
  box-shadow: none;
}
.home-fixed-toolbar .service-popup .popup-card .qr-img[data-v-314f53c6] {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 8px;
  display: block;
}
.home-fixed-toolbar .service-popup .popup-card .title[data-v-314f53c6] {
  font-size: 12px;
  color: #333;
  margin-top: 4px;
}


img[data-v-72afff82]{
  width: 100%;
  height: 100%;
}

