:root {
  --container-width: 1296px;
  --primary-color: #1A65FF;
  --price-main-color: #f63434;
  --price-sub-color: #f634341a;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  list-style: none;
  font-family: "Microsoft YaHei", 微软雅黑, "Tahoma", "Arial", "Helvetica", "MicrosoftJhengHei", 华文细黑, STHeiti, MingLiu;
  font-size: 12px;
  color: #666;
}

body {
  width: 100%;
  min-width: calc(var(--container-width) + 16px) !important;
  background-color: #F7F7FA !important;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-inline {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-1 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex.row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}

.flex.rowReverse {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex.column {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
}

.flex.columnReverse {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.flex.wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex.flex-start {
  -webkit-box-pack: start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.flex.flex-end {
  -webkit-box-pack: end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.flex.center {
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

.flex.space-between {
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.flex.space-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.flex.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.flex.align-end {
  -webkit-box-align: end;
  -moz-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.flex.align-center {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}

.text-l {
  text-align: left;
}

.text-c {
  text-align: center;
}

.text-r {
  text-align: right;
}

a:hover {
  color: var(--primary-color) !important;
}

.pd-20 {
  padding: 20px;
}

.body-container {
  width: var(--container-width);
  margin: 0 auto;
}

/* nav start */
.top-nav {
  width: 100%;
  min-width: var(--container-width);
  height: 36px;
  background: #222;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.top-nav .n-left,
.top-nav .n-right {
  position: relative;
  height: 36px;
}

.top-nav .n-left .left-tag {
  height: 100%;
  line-height: 36px;
  color: #ffffffcc;
  font-family: "HarmonyOS Sans SC";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  padding: 0 20px;
}

.top-nav .n-left .left-tag:first-child {
  padding-left: 0;
}

.top-nav .n-left .left-tag.area {
  position: relative;
  cursor: pointer;
}

.top-nav .n-left .left-tag.area:hover {
  color: #fff;
  background-color: #484444;
}

.top-nav .n-left .left-tag.area:hover .icon {
  transform: rotate(180deg);
}

.top-nav .n-left .left-tag.area .icon {
  width: 8px;
  height: 8px;
  margin-left: 2px;
}

.top-nav .n-left .left-tag.area .area-pop {
  display: none;
  position: absolute;
  left: 0;
  top: 36px;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0 0 8px 0 #4444441f;
  z-index: 3;
}

.top-nav .n-left .left-tag.area .area-pop .place-top {
  width: 460px;
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #ddd;
}

.top-nav .n-left .left-tag.area .area-pop .place-top .place-item {
  font-size: 14px;
  margin-right: 40px;
}

.top-nav .n-left .left-tag.area .area-pop .place-top .place-item.act {
  color: var(--primary-color);
}

.top-nav .n-left .left-tag.area .area-pop .place-content {
  display: none;
  width: 460px;
  line-height: 30px;
  padding: 5px 0;
}

.top-nav .n-left .left-tag.area .area-pop .place-content:first-child {
  display: block;
}

.top-nav .n-left .left-tag.area .area-pop .place-content .place-item {
  font-size: 14px;
  white-space: nowrap;
  margin-right: 20px;
}

.top-nav .n-left .left-tag.area .area-pop .place-content .place-item.act {
  color: var(--primary-color);
}

.top-nav .right-tag {
  position: relative;
  color: #ffffffcc;
  font-family: "HarmonyOS Sans SC";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  padding: 0 10px;
  line-height: 14px;
  border-right: #ffffff33 solid 1px;
}

.top-nav .right-tag.member,
.top-nav .right-tag.app {
  height: 36px;
  line-height: 36px;
  border-right: none;
}

.top-nav .right-tag:last-child {
  border-right: none;
}

.top-nav .right-tag:hover {
  color: #fff;
}

.top-nav .right-tag.member:hover {
  color: #fff;
  background-color: #484444;
}

.top-nav .right-tag.member .txt {
  color: #ffffffcc;
}

.top-nav .right-tag.member .icon {
  width: 8px;
  height: 8px;
  margin-left: 2px;
}

.top-nav .right-tag.member .member-pop {
  display: none;
  position: absolute;
  top: 36px;
  left: 0;
  width: 196px;
  padding: 5px 8px;
  background: #FFF;
  box-shadow: 0 0 8px 0 #4444441f;
}

.top-nav .right-tag.member .member-pop .pop-menu {
  display: block;
  line-height: 17px;
  font-size: 14px;
  padding: 6px 10px;
  white-space: nowrap;
}

.top-nav .right-tag.member:hover .icon {
  transform: rotate(180deg);
}

.top-nav .right-tag.member:hover .member-pop,
.top-nav .right-tag.app:hover .app-pop {
  display: flex;
}

.top-nav .right-tag.app .app-pop {
  display: none;
  position: absolute;
  top: 36px;
  right: 0;
  width: 196px;
  height: 92px;
  padding: 12px;
  background: #FFF;
  box-shadow: 0 0 8px 0 #4444441f;
  box-sizing: border-box;
  z-index: 3;
}

.top-nav .right-tag.app .app-pop .pop-code {
  display: block;
  width: 68px;
  height: 68px;
}

.top-nav .right-tag.app .app-pop .pop-content {
  margin-left: 8px;
}

.top-nav .right-tag.app .app-pop .title {
  color: #000000;
  font-family: "HarmonyOS Sans SC";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px;
  margin-bottom: 10px;
}

.top-nav .right-tag.app .app-pop .desc {
  color: #1a65ff;
  font-family: "HarmonyOS Sans SC";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
}

.top-nav .n-right .bubble {
  background-color: #ef430c;
  color: #fff;
  padding: 0 12px;
  position: absolute;
  top: 34px;
  left: 18%;
  border-radius: 3px;
  z-index: 99;
  height: 26px;
  line-height: 26px;
  text-align: center;
  font-size: 14px;
  white-space: nowrap;
  font-family: "Microsoft Yahei";
}

.top-nav .n-right .bubble::before {
  content: '';
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-color: #ef430c;
  position: absolute;
  left: 50%;
  top: 0px;
  transform: rotate(180deg);
  margin-top: -10px;
  margin-left: -6px;
}

/* nav over */




.head-nav {
  background-color: #fff;
}

.head-nav>.body-container {
  padding: 18px 0 14px;
}

.head-nav .n-left {}

.head-nav .n-left .logo {
  width: 148px;
  height: 56px;
  margin-right: 14px;
}

.head-nav .n-left .gift {
  width: 65px;
  height: 56px;
}


.head-nav .n-left .logo>img,
.head-nav .n-left .gift>img {
  width: 100%;
  height: 100%;
}

.head-nav .n-middle .search-box {
  width: 760px;
  height: 40px;
  border-radius: 2px;
  border: 1px solid #1A65FF;
  background: #FFF;
}

.head-nav .n-middle .search-box input[name="keyword"] {
  width: 650px;
  height: 40px;
  padding: 0 14px;
  font-family: "HarmonyOS Sans SC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  outline: none;
  border: none;
  box-sizing: border-box;
}

.head-nav .n-middle .search-box .btn-search {
  width: 110px;
  height: 40px;
  color: #ffffff;
  font-family: "HarmonyOS Sans SC";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  border-radius: 0 2px 2px 0;
  background: var(--primary-color);
  border: none;
  box-sizing: border-box;
}

.head-nav .n-middle .search-box .btn-search:hover {
  opacity: .8;
}

.head-nav .n-middle .search-keyword {
  padding-top: 5px;
}

.head-nav .n-middle .search-keyword .a-link {
  color: #888888;
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  margin-right: 23px;
}

.head-nav .n-right .btn-cart {
  position: relative;
  width: 188px;
  height: 40px;
  border-radius: 2px;
  border: 1px solid #EEE;
  background: #FFF;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.head-nav .n-right .btn-cart .cover {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.head-nav .n-right .btn-cart .txt {
  color: #444444;
  font-family: "HarmonyOS Sans SC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}

.head-nav .n-right .btn-cart:hover {
  border-color: var(--primary-color);
}

.head-nav .n-right .btn-cart:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  mix-blend-mode: color;
}

.head-nav .tab-list {
  width: 100%;
  padding: 20px 0 0;
  margin-bottom: -14px;
  overflow-x: auto;
}

.head-nav .tab-list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: #F5F5F5;
}

.head-nav .tab-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  background-color: #F5F5F5;
}

.head-nav .tab-list::-webkit-scrollbar-thumb {
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #555;
}


.head-nav .tab-list .tab-item {
  position: relative;
  color: #333333;
  font-family: "HarmonyOS Sans SC";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding-bottom: 14px;
  white-space: nowrap;
  margin-right: 80px;
}

.head-nav .tab-list .tab-item:last-child {
  margin-right: 0;
}

.head-nav .tab-list .tab-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary-color);
}


.right-nav {
  position: fixed;
  top: 20vh;
  right: 16px;
  width: 80px;
  padding: 12px 0;
  border-radius: 4px;
  background: #FFF;
  box-shadow: 0 0 8px 0 #4444441f;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  z-index: 9;
}

.right-nav.backtop {
  top: calc(20vh + 590px);
}

.right-nav.menu.up {
  top: calc(20vh + 469px);
}

.right-nav .nav-item {
  position: relative;
  display: block;
  margin-bottom: 12px;
  cursor: pointer;
}

.right-nav .nav-item:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  mix-blend-mode: color;
}

.right-nav .nav-item:hover .nav-pop {
  display: block;
}

.right-nav .nav-item:hover .item-txt {
  color: var(--primary-color);
}

.right-nav.backtop .nav-item:last-child {
  margin-bottom: 0;
}


.right-nav .nav-item .item-cover {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
}

.right-nav .nav-item .item-txt {
  color: #444444;
  text-align: center;
  font-family: "HarmonyOS Sans SC";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  line-height: 15px;
}

.right-nav .nav-item .nav-pop {
  display: none;
  position: absolute;
  top: 0;
  right: 80px;
}

.right-nav .nav-item .nav-pop .pop-content {
  position: relative;
  padding: 4px 8px;
  background-color: #fff;
  border-radius: 10px;
  cursor: auto;
  box-shadow: 0 0 8px 0 #4444441f;
  margin-right: 10px;
}

.right-nav .nav-item .nav-pop .pop-content::before {
  content: '';
  position: absolute;
  right: -8px;
  top: 16px;
  border-left: #fff solid 8px;
  border-top: transparent solid 6px;
  border-bottom: transparent solid 6px;
}

.right-nav .nav-item .nav-pop .pop-code {
  width: 110px;
  height: 110px;
}

.right-nav .nav-item .nav-pop .pop-info {
  width: 140px;
}

.right-nav .nav-item .nav-pop .pop-info .tit {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  padding-top: 10px;
  margin-bottom: 10px;
}

.right-nav .nav-item .nav-pop .pop-info .subtit {
  color: #666;
  font-size: 12px;
  height: 42px;
  line-height: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-all;
}

.right-nav .nav-item .nav-pop .pop-info .desc {
  color: #999;
  font-size: 13px;
  line-height: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.right-nav .nav-dropdown {
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);

}

.nav-dropdown .icon-default {
  display: block;
}

.nav-dropdown .icon-lighter {
  display: none;
}

.right-nav .nav-dropdown:hover>div:nth-child(1) .icon-default,
.right-nav .nav-dropdown.up:hover>div:nth-child(2) .icon-default {
  display: none;
}

.right-nav .nav-dropdown:hover>div:nth-child(1) .icon-lighter,
.right-nav .nav-dropdown.up:hover>div:nth-child(2) .icon-lighter {
  display: block;
}

.right-nav .nav-dropdown.up>div:nth-child(1),
.right-nav .nav-dropdown>div:nth-child(2) {
  display: none;
}

.right-nav .nav-dropdown>div:nth-child(1),
.right-nav .nav-dropdown.up>div:nth-child(2) {
  display: block;
}

.right-nav .nav-dropdown>img {
  width: 18px;
  height: 18px;
}


/* foot */
.bottom-foot {
  width: 100%;
  min-width: var(--container-width);
  background-color: #fff;
}

.bottom-foot .after-sale {
  width: 100%;
  border-bottom: #EEEEEE solid 1px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.bottom-foot .after-sale .sale-item {
  padding: 25px 20px;
}

.bottom-foot .after-sale .sale-item .item-cover {
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 6px;
}

.bottom-foot .after-sale .sale-item .item-info .item-tit {
  color: #333333;
  font-family: "HarmonyOS Sans SC";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 8px;
}


.bottom-foot .after-sale .sale-item .item-info .item-desc {
  color: #797979;
  font-family: "HarmonyOS Sans SC";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
}


.bottom-foot .quick-link {
  padding: 24px 0 46px;
}

.bottom-foot .quick-link dl.block-quick {
  width: 160px;
  margin-right: 39px;
}

.bottom-foot .quick-link dl.block-quick dt {
  color: #333333;
  font-family: "HarmonyOS Sans SC";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
  padding: 4px 0;
  margin-bottom: 10px;
}

.bottom-foot .quick-link dl.block-quick dd {
  color: #797979;
  font-family: "HarmonyOS Sans SC";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  padding: 5px 0;
  margin-bottom: 3px;
}

.bottom-foot .code-list {
  padding: 20px 0;
}

.bottom-foot .code-list .code-item {
  margin-left: 36px;
}

.bottom-foot .code-list .code-item .item-cover {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto 12px;
}

.bottom-foot .code-list .code-item .item-tit {
  color: #333333;
  font-family: "HarmonyOS Sans SC";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

.bottom-foot .copyright-block {
  text-align: center;
  padding: 20px 0 44px;
}

.bottom-foot .copyright-block .txt {
  color: #797979;
  font-family: "HarmonyOS Sans SC";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  margin-bottom: 9.5px;
}

.bottom-foot .copyright-block .txt>a {
  color: inherit;
}

/* foot over */

.crumbs-box {
  padding: 15px 0 20px;
}

.crumbs-box .crumb-item {
  max-width: 220px;
  color: #797979;
  font-family: "HarmonyOS Sans SC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.crumbs-box .crumb-item.this {
  color: #333333 !important;
  cursor: auto;
}

.crumbs-box .icon-right {
  margin: 0 9px;
}

.confirm-pop.layui-layer .layui-layer-content {
  color: #333;
  background-color: #fff;
}

.mark-con {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  box-sizing: border-box;
  overflow: hidden;
  pointer-events: none;
}

.mark-con .mark-item {
  width: 33.333%;
  height: 33.333%;
  overflow: hidden;
  float: left;
}

.mark-con .mark-item .mark-txt {
  line-height: 83px;
  text-align: center;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.mark-con .mark-item .mark-img {
  width: 100% !important;
  height: 100% !important;
}