@font-face {
  font-family: 'iconfont';
  src: url('../font/iconfont.woff2') format('woff2'),
    url('../font/iconfont.woff') format('woff'),
    url('../font/iconfont.ttf') format('truetype');
}


@keyframes loading {
  to {
    background-position-x: -20%;
  }
}

:root {
  --loading-grey: #ededed;
}

button {
  outline: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font: 14px/2 Helvetica, Microsoft Yahei;
  font-family: -apple-system, BlinkMacSystemFont, Tahoma, Arial, 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif, Helvetica;
  color: #262626;
  overflow-y: overlay;
}

input {
  border-radius: 0;
}

a {
  color: #262626;
  text-decoration: none;
}

a:hover {
  color: #0A7AFF;
}

select,
button,
input,
option,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input {
  border-radius: 0;
  outline: none;
}

input::-webkit-input-placeholder {
  color: #BFBFBF;
}

input:-moz-placeholder {
  color: #BFBFBF;
}

input::-moz-placeholder {
  color: #BFBFBF;
}

input:-ms-input-placeholder {
  color: #BFBFBF;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input {
  border-radius: 0;
  border: solid 1px #595959;
  outline: none;
}


.select {
  position: relative;
  /* top: -7px; */
  /* background: #fff url(./arrow.png) no-repeat right center; */
}

.select select {
  position: relative;
  -webkit-appearance: button;
  appearance: none;
  outline: none;
  padding-left: 10px;
  border: none;
  border-radius: 0;
  background: #fff;
}

.select select:invalid {
  color: rgb(117, 117, 117);
}

.select .icon {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #8c8c8c;
  font-size: 12px;
  transform: translate3d(0, -48%, 0) scale(0.6);
  pointer-events: none;
}

.nowrap {
  flex-wrap: nowrap;
}

.button-link-a {
  height: 30px;
  width: 100%;
  color: #0A7AFF;
  border-color: #0A7AFF;
  border-width: 0.5px;
  background-color: #fff;
  margin-top: 5px;
}

/* a:hover {
  color: #0A7AFF;
} */

.get_code_active {
  border-color: #ccc;
  width: 100%;
}

.icon {
  font-family: iconfont;
  /* color: #8c8c8c; */
  font-size: inherit;
  font-style: normal;
}

.uppercase {
  text-transform: uppercase;
}

img,
video {
  display: block;
}

.video-player::after {
  content: '';
  margin-top: 56.25%;
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-link {
  display: block;
  overflow: hidden;
}

.img-link img {
  transition: transform .25s ease-out;
}

.img-link:hover img {
  transform: scale(1.1);
}

.title-text {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}


.button-link {
  display: flex;
  align-self: flex-end;
  align-items: center;
  justify-content: center;
  /* margin-right: 20px; */
  width: 200px;
  height: 40px;
  line-height: 1;
  font-size: 16px;
  color: #262626;
  border: solid 1px #262626;
  text-align: center;
  transition: all .25s ease-out;
  outline: none;
  cursor: pointer;
  border-radius: 0;
  background: #fff;
}

.button-link--reverse,
.button-link:hover {
  color: #fff;
  background: #262626;
}

.button-link--reverse:disabled {
  background: #D9D9D9;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.button-link:hover {
  color: #fff;
}

.h1 {
  font-size: 32px;
  margin: 0;
  color: #262626;
  text-transform: uppercase;
  line-height: 1.3125;
}

.h2 {
  margin: 0;
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #595959;
  text-transform: uppercase;
  line-height: 1.4;
}

.h1>.h2,
.h1+.h2 {
  margin-top: 6px;
}

.container {
  width: 1800px;
  margin: 0 auto;
}
@media (max-width: 1920px) {
  .container {
    width: auto;
    margin-left: 60px;
    margin-right: 60px;
  }
}
@media (max-width: 1180px) {
  .container {
    margin-left: 20px;
    margin-right: 20px;
  }
}


.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.modal:not(.active) {
  display: none;
}

.iconMenuAdd img {
  object-fit: contain
}

.message-tip,
.modal__body {
  position: absolute;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  background: #fff;
}

.modal__close {
  position: absolute;
  top: 5px;
  right: 5px;
  /* line-height: 1; */
  cursor: pointer;
  /* transform: scale(0.70588235294); */
  font-size: 12px;
  color: #595959;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__footer {
  justify-content: flex-end;
  padding: 40px 20px 20px;
}

.modal__footer .button-link {
  width: 120px;
}

.modal__footer .button-link:not(.button-link--reverse) {
  /* width: 120px; */
  border-color: #D9D9D9;
}

.modal__footer .button-link:hover {
  border-color: #262626;
}


.modal__footer .button-link+.button-link {
  margin-left: 10px;
}

.message-tip {
  position: fixed;
  z-index: 9999;
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.message-tip .icon {
  font-size: 16px;
  color: #009E4C;
  margin-right: 10px;
}

@media (max-width: 5120px) {
  .container {
    width: auto;
    margin-left: 60px;
    margin-right: 60px;
    left: 0%;
  }
}

@media (max-width: 2560px) {
  .container {
    width: auto;
    margin-left: 60px;
    margin-right: 60px;
    left: 0%;
  }
}

@media (max-width: 2880px) {
  .container {
    width: auto;
    margin-left: 60px;
    margin-right: 60px;
    left: 0%;
  }
}

@media (max-width: 1920px) {
  .container {
    width: auto;
    margin-left: 60px;
    margin-right: 60px;
    left: 0%;
  }

}



@media (max-width: 1180px) {
  .container {
    margin-left: 20px;
    margin-right: 20px;
    left: 0%;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex__main {
  flex: 1;
}

.list-unstyled {
  margin: 0;
  padding: 0;
}

.list-unstyled li {
  list-style: none;
}

.list-unstyled .swiper_items {
  width: 150px;
  height: 66px;
  line-height: 1;
  padding-top: 8px;
}

.miaosha_area {
  width: 900px;
  overflow-x: hidden
}

.spike-times .active {
  background-color: #262626;
  color: #fff;
}

.show_cont_width {
  width: 50%;
}

#miaosha_ {
  position: relative
}

.browser-tip {
  top: 0;
  width: 100%;
  position: fixed;
  height: 42px;
  background: #FEF6E7;

  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  z-index: 9;
}

.browser-tip div {
  display: flex;
  align-items: center;
}

.browser-tip div .icon {
  color: #ECBF27;
  font-size: 16px;
  margin-right: 10px;
}

.browser-tip .close {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.browser-tip:not(.hide-pc)+.header {
  top: 42px;
}

.browser-tip:not(.hide-pc)+.header+* {
  margin-top: 144px;
}

.top-bar {
  background: #262626;
  height: 32px;
  align-items: center;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.7);
  padding-right: 60px;
  outline: none;
  position: relative;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 12px;
}

@font-face {
  font-family: 'iconfont';
  /* Project id 2446566 */
  src: url('//at.alicdn.com/t/font_2446566_xedq360oxtb.woff2?t=1621301107759') format('woff2'),
    url('//at.alicdn.com/t/font_2446566_xedq360oxtb.woff?t=1621301107759') format('woff'),
    url('//at.alicdn.com/t/font_2446566_xedq360oxtb.ttf?t=1621301107759') format('truetype');
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0!important;
  width: 100%;
  min-height: 100vh;
  height: auto;
  font: 14px/2 Helvetica, Microsoft Yahei;
  font-family: -apple-system, BlinkMacSystemFont, Tahoma, Arial, 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif, Helvetica;
  color: #262626;
  overflow-y: overlay;
}
html, body {
  overflow-x: hidden!important; /* 防止页面在水平方向上滚动 */
}

a {
  color: #262626;
  text-decoration: none;
}

select,
button,
input,
option,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input {
  border-radius: 0;
  outline: none;
}

input::-webkit-input-placeholder {
  color: #BFBFBF;
}

input:-moz-placeholder {
  color: #BFBFBF;
}

input::-moz-placeholder {
  color: #BFBFBF;
}

input:-ms-input-placeholder {
  color: #BFBFBF;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input {
  border-radius: 0;
  border: solid 1px #595959;
  outline: none;
}


.select {
  position: relative;

  /* background: #fff url(./arrow.png) no-repeat right center; */
}

.select select {
  position: relative;
  -webkit-appearance: button;
  appearance: none;
  outline: none;
  padding-left: 10px;
  border: none;
  border-radius: 0;
  background: #fff;
}

.select select:invalid {
  color: rgb(117, 117, 117);
}

.select .icon {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #8c8c8c;
  font-size: 12px;
  transform: translate3d(0, -48%, 0) scale(0.6);
  pointer-events: none;
}

/* a:hover {
  color: #0A7AFF;
} */

.icon {
  font-family: iconfont;
  /* color: #8c8c8c; */
  font-size: inherit;
  font-style: normal;
}

.uppercase {
  text-transform: uppercase;
}

img,
video {
  display: block;
}

.video-player::after {
  content: '';
  margin-top: 56.25%;
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-link {
  display: block;
  overflow: hidden;
}

.img-link img {
  transition: transform .25s ease-out;
}

.img-link:hover img {
  transform: scale(1.1);
}

.title-text {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}


.button-link {
  display: flex;
  align-self: flex-end;
  align-items: center;
  justify-content: center;
  /* margin-right: 20px; */
  width: 200px;
  height: 40px;
  line-height: 1;
  font-size: 16px;
  color: #262626;
  border: solid 1px #262626;
  text-align: center;
  transition: all .25s ease-out;
  outline: none;
  cursor: pointer;
  border-radius: 0;
  background: #fff;
}

.button-link--reverse,
.button-link:hover {
  color: #fff;
  background: #262626;
}

.button-link--reverse:disabled {
  background: #D9D9D9;
  border-color: #d9d9d9;
  cursor: not-allowed;
}

.button-link:hover {
  color: #fff;
}

.h1 {
  font-size: 32px;
  margin: 0;
  color: #262626;
  text-transform: uppercase;
  line-height: 1.3125;
}

.h2 {
  margin: 0;
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #595959;
  text-transform: uppercase;
  line-height: 1.4;
}

.h1>.h2,
.h1+.h2 {
  margin-top: 6px;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.modal:not(.active) {
  display: none;
}

.wrapper {
  overflow: hidden;
}

.wrapper .wrapper-img {
  margin: auto;
}





.message-tip,
.modal__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  background: #fff;
}

.fpmessage-tip,
.fpmodal__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  background: #fff;
}


.modal__close {
  position: absolute;
  top: 5px;
  right: 5px;
  /* line-height: 1; */
  cursor: pointer;
  /* transform: scale(0.70588235294); */
  font-size: 12px;
  color: #595959;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__footer {
  justify-content: flex-end;
  padding: 40px 20px 20px;
}

.modal__footer .button-link {
  width: 120px;
}

.modal__footer .button-link:not(.button-link--reverse) {
  /* width: 120px; */
  border-color: #D9D9D9;
}

.modal__footer .button-link:hover {
  border-color: #262626;
}


.modal__footer .button-link+.button-link {
  margin-left: 10px;
}

.message-tip {
  position: fixed;
  z-index: 9999;
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.message-tip .icon {
  font-size: 16px;
  /* color: #0A7AFF;  */
  color: #009E4C;
  margin-right: 10px;
}

.fpmessage-tip {
  position: fixed;
  z-index: 9999;
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.fpmessage-tip .icon {
  font-size: 16px;
  color: #009E4C;
  margin-right: 10px;
}


.flex__main {
  flex: 1;
}

.list-unstyled {
  margin: 0;
  padding: 0;
}

.list-unstyled li {
  list-style: none;
}

.list-unstyled .swiper_items {
  width: 150px;
  height: 66px;
  line-height: 1;
  padding-top: 8px;
}

.miaosha_area {
  width: 900px;
  overflow-x: hidden
}

@media (max-width: 980px) {
  .miaosha_area {}
}

.spike-times .active {
  background-color: #262626;
  color: #fff;
}

.show_cont_width {
  width: 50%;
}

#miaosha_ {
  position: relative
}

.browser-tip {
  top: 0;
  width: 100%;
  position: fixed;
  height: 42px;
  background: #FEF6E7;

  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  z-index: 9;
}

.browser-tip div {
  display: flex;
  align-items: center;
}

.browser-tip div .icon {
  color: #ECBF27;
  font-size: 16px;
  margin-right: 10px;
}

.browser-tip .close {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.browser-tip:not(.hide-pc)+.header {
  top: 42px;
}

.browser-tip:not(.hide-pc)+.header+* {
  margin-top: 144px;
}

.top-bar {
  background: #262626;
  height: 32px;
  align-items: center;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.7);
  padding-right: 60px;
  outline: none;
  position: relative;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 12px;
}

.top-bar select {
  width: 100px;
  height: 22px;
  color: #595959;
}


.nav {
  min-height: 70px;
  align-items: center;
  padding: 0 60px;
  background-color: #fff;
}

.nav h1 {
  margin: 0;
}

.nav h1 img {
  max-width: 161px;
  max-height: 30px;
}

.nav>.flex {
  align-items: center;
}
/* 导航标题列表 */
.nav-list {
  align-items: left;
  margin: 6px 20 0 20px;
  /* 设置里面的li元素自动换行 */
  flex-wrap: wrap;
  /* 设置li元素横向排列 */
  display: flex;
}

.nav-list li {
  margin-left: 20px;
}

.nav-list .active::after {
  content: '';
  height: 2px;
  background: #0A7AFF;
  display: block;
  transform: translateY(14px);
}

.nav-list .active a {
  color: #0A7AFF;
  font-weight: 700;
}

.nav-search {
  position: relative;
}

.nav-search input {
  width: 180px;
  height: 32px;
  border: solid 1px #d9d9d9;
  border-radius: 0;
  padding: 0 38px 0 15px;
  outline: none;
}

.nav-search button {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  color: #8c8c8c;
  top: 6px;
  right: 6px;
}

.nav-search button:hover {
  color: #0A7AFF;
}

.nav-account>a {
  margin-left: 20px;
  font-size: 18px;
}

.nav-account .icon {
  color: #8c8c8c;
}

.nav-account .icon:hover {
  color: #0A7AFF;
}

.nav-account .icon-cart .badge__count {
  transform: translate(50%, 0);
}

.nav-account__info {
  margin-left: 20px;
  position: relative;
}

.nav-account__info:hover .nav-account__list {
  display: block;
}

.nav-account__list {
  display: none;
  position: absolute;
  top: 51px;
  right: 0;
  width: 180px;
  background: #fff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.25);
  line-height: 50px;
}

.nav-account__list::before {
  position: absolute;
  display: block;
  content: '';
  width: 180px;
  height: 20px;
  top: -20px;
}

.nav-account__list a {
  padding-left: 20px;
  display: block;
}

.nav-account__name {
  font-weight: 700;
  line-height: 60px;
  border-bottom: 1px solid #D9D9D9;
}

.nav-account__list a:hover {
  font-weight: 700;
  color: #262626;
}

.nav-account__list a:hover .badge__count {
  font-weight: 400;
}

.nav-account__list li:last-child {
  border-top: 1px solid #D9D9D9;
}

.header {
  position: fixed;
  background: #fff;
  z-index: 9;
  top: 0;
  right: 0;
  left: 0;
  height: 102px;
  box-shadow: 0px 1px 0px 0px #DCDCDC;
}

.header+* {
  margin-top: 102px;
}

.header-fixed {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
}



.header-search {
  position: fixed;
  z-index: 8;
  top: 60px;
  width: 100%;
}

.header-search__bg {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity .25s ease-out;
}

.header-search__bg:not(.active) {
  pointer-events: none;
}

.header-search__content {
  width: 100%;
  background: #fff;
  position: relative;
}

.header-search__form {
  width: 100%;
  position: absolute;
  background: #262626;
  height: 50px;
  transform: translateY(-200%);
  transition: transform .25s ease-out;
}

.header-search__form form {
  margin: 0 15px;
  display: block;
  height: 36px;
  position: relative;
}

.header-search__form input,
.header-search__form .icon {
  position: absolute;
  top: 7px;
  font-size: 16px;
}

.header-search__form .icon {
  z-index: 1;
  top: 9px;
  left: 15px;
}

.header-search__form input {
  width: 100%;
  display: block;
  border: none;
  border-radius: 0;
  background: #fff;
  padding-left: 40px;
  height: 36px;
  outline: none;
}

.header-search__form input::-webkit-search-cancel-button {
  display: none;
}

.header-search__form button.icon {
  background: none;
  border: none;
  outline: none;
  font-size: 12px;
  left: auto;
  top: 0;
  right: -8px;
  width: 50px;
  height: 50px;
}

.search-history {
  display: none;
  padding: 10px 15px 40px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
}

.search-history header {
  font-size: 16px;
  font-weight: 700;
}

.search-history div {
  margin: 0 -5px;
}

.search-history div+header {
  margin-top: 10px;
}

.search-history a {
  display: inline-block;
  background: #F4F4F4;
  padding: 5px 10px;
  margin: 5px;
}

.header-search.active {
  padding-top: 50px;
}

.header-search.active .header-search__form {
  transform: translateY(-100%);
}

.header-search.active .header-search__bg {
  opacity: 1;
}

.header-search.active .search-history {
  display: block;
}


.header-nav__page1 {
  position: fixed;
  top: 60px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  transition: background .25s ease-out;
}

.header-nav__page1:not(.active) {
  pointer-events: none;
}

.header-nav__page1.active {
  background: rgba(0, 0, 0, 0.5);
}

.header-nav__page1-content {
  margin-left: 55px;
  background: #f5f5f5;
  max-height: 100%;
  overflow-y: auto;
  padding-bottom: 50px;
  transform: translateX(100%);
  transition: transform .25s ease-out;
  position: relative;
  height: 100vh;
}

.header-nav__page1.active .header-nav__page1-content {
  transform: translateX(0);
}

.header-nav__page2 {
  background: #f5f5f5;
  transform: translateX(100%);
  transition: transform .25s ease-out;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.header-nav__page2.active {
  transform: translateX(0);
}

.header-nav__page2 .nav {
  top: 0;
  position: absolute;
  justify-content: space-between;
  width: 100%;
}

.language-icon {
  align-items: center;
  margin-right: 10px;
}

.language-icon img {
  margin-right: 8px;
}

.header-nav__page2 .icon-close {
  font-size: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav__page2 .back {
  display: block;
  margin: 20px 0 15px 20px;
  color: #262626;
}

.header-nav__page2 header {
  font-size: 19px;
  font-weight: 500;
  margin-left: 20px;
}

.header-nav__page2 .languages {
  padding: 15px 0 15px 20px;
}

.header-nav__page2 .languages li {
  line-height: 40px;
  border-bottom: 1px solid #d5d5d5;
}

.header-nav__page2 .languages a {
  display: block;
}

.header-nav__page2 .languages li:first-child {
  border-top: 1px solid #d5d5d5;
}

.header-nav__page2-list {
  position: absolute;
  top: 60px;
  width: 100%;
  bottom: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}


.header-nav__nav {
  font-size: 17px;
  padding: 10px 0 0 30px;
  line-height: 44px;
}

.header-nav__nav a {
  border-bottom: .5px solid #D9D9D9;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
}

.header-nav__account--info::after,
.header-nav__nav a::after {
  content: '\e673';
  font-family: iconfont;
  font-size: 14px;
}

.header-nav__nav li.active {
  font-weight: 700;
}

.header-nav__nav li.active a {
  color: #0A7AFF;
}

.header-nav__account {
  padding: 20px 20px 20px 30px;
}

.header-nav__account .button-link {
  width: 130px;
  color: #fff;
  background: #262626;
  font-size: 18px;
}

.header-nav__account--info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -.5px;
  border-top: .5px solid #D9D9D9;
}

.header-nav__account--info img {
  margin-right: 10px;
}

.header-nav__account--info .flex {
  align-items: center;
}

.header-nav__cards {
  padding-left: 30px;
  padding-bottom: 10px;
}

.header-nav__cards a {
  display: flex;
  align-items: center;
  font-size: 17px;
}

.header-nav__cards .icon {
  font-size: 20px;
  margin-right: 10px;
}

.header-nav__links {
  color: #595959;
  border: solid #D9D9D9;
  border-width: .5px 0;
  padding: 20px 5px 20px 15px;
  font-size: 12px;
}

.header-nav__links a {
  color: #595959;
}

.header-nav__links span {
  margin: 0 10px;
}

.header-nav__services {
  height: 50px;
  display: flex;
  position: relative;
  background: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.header-nav__services a {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.header-nav__services::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(0, -50%);
  width: .5px;
  height: 30px;
  background-color: #d9d9d9;
}

.header-nav__services .icon,
.header-nav__services img {
  margin-right: 8px;
}

.language-form {
  padding: 0 !important;
  top: 0;
  transform: translateY(-100%);
  transition: transform .25s ease-out;
}

.language-form.active {
  transform: translateY(0);
}

.language-form form {
  display: block;
  margin: 10px 55px 0 10px;
}

.language-form input {
  width: 100%;
  display: block;
  /* position: absolute; */
  height: 40px;
  border: none;
  padding-left: 40px;
  /* top: 10px;
  left: 15px;
  right: 60px; */
  border-radius: 0;
  outline: none;
  background: #f5f5f5;
}

.language-form input::-webkit-search-cancel-button {
  display: none;
}

.language-form .icon {
  position: absolute;
  top: 16px;
}

.language-form .icon:first-child {
  left: 25px;
}

.language-form .icon:last-child {
  top: 12px;
  right: 10px;
}

.footer {
  color: #595959;
  background: #E8E8E8;
}

.footer__des {
  /* width: 1240px; */
  /* min-height: 318px; */
  padding: 60px 0;
  justify-content: space-between;
}

.footer__title {
  font-weight: bold;
  color: #262626;
  font-size: 14px;
  margin: 0;
  /* color: #595959; */
}

.footer__item {
  width: 23%;
  max-width: 360px;
}

.footer__item a {
  color: #595959;
}

.footer__item a:hover {
  color: #262626;
}

/* .footer__item:first-child {
  width: 290px;
}

.footer__item:first-child+.footer__item {
  width: 260px;
}

.footer__item+.footer__item {
  margin-left: 60px;
} */

.footer__tel {
  margin-top: 26px;
  color: #0A7AFF;
}

.footer__copy {
  text-align: center;
  line-height: 80px;
  background: #262626;
  color: #fff;
}

.banner__img {
  object-fit: cover;
}


.player {
  height: 620px;
  overflow: hidden;
  position: relative;
}

.player li {
  transition: all .25s ease-out;
}

/* .player::after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .52);
} */

.player__img li {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}

.player__img li.on {
  opacity: 1;
}

.player .container {
  z-index: 1;
  height: 620px;
  position: relative;
}

.player__control {
  position: absolute;
  right: 0;
  bottom: 20px;
}

@media (max-width: 1140px) {
  .player__control {
    right: 30px;
  }
}

.player__control li {
  padding: 10px 0;
  opacity: .3;
  cursor: pointer;
  /* border-bottom: 3px solid #fff; */
}

.player__control li::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
}

.player__control li+li {
  margin-left: 8px;
}

.player__control li.on {
  opacity: 1;
}

.player__content {
  color: #fff;
  padding-top: 140px;
}

.player__content li {
  position: absolute;
  width: 100%;
  opacity: 0;
}
.player__content li a {
  display: inline-block;
  width: 100%;
  height: 620px;
}

.player__content .des {
  font-size: 16px;
  color: #fff;
}

.player__content li.on {
  opacity: 1;
  z-index: 1;
}

.player__content .h1 {
  font-weight: bold;
  color: #fff;
  font-size: 42px;
  line-height: 1.35;
}

.player__content .abtns {
  text-align: center;
  display: block;
  width: 156px;
  height: 40px;
  line-height: 36px;
  margin-top: 40px;
  font-size: 16px;
  color: #fff;
  border: solid 1px #fff;
  transition: all .25s ease-out;
  position: absolute;
  top: 125px;
}

.player__content .abtns:hover {
  background: #fff;
  color: #262626;
}

.pager {
  align-items: center;
  justify-content: flex-end;
}

.pager a {
  height: 32px;
  min-width: 32px;
  border: 1px solid #D9D9D9;
  background: #fff;
  color: #262626;
  padding: 0 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
}

.pager a.prev,
.pager a.next {
  width: 32px;
}

.pager a.disabled {
  color: #BFBFBF;
  border-color: #D9D9D9;
  cursor: not-allowed;
}

/* .pager a.disabled .icon {
  color: #BFBFBF;
} */

.pager a:not(.disabled):hover,
.pager a.active {
  border-color: #0A7AFF;
  color: #0A7AFF;
}

/* .pager a:not(.disabled):hover .icon,
.pager a.active .icon {
  color: #0A7AFF;

} */
.pager select,
.pager input {
  border: 1px solid #D9D9D9;
  width: 50px;
  height: 32px;
  background: #fff;
  margin: 0 8px;
  border-radius: 0;
}

.pager select {
  width: 96px;
  margin: 0;
}

.pager .select {
  margin: 0 8px 0 4px;
}


.badge {
  position: relative;
}

.badge__count {
  position: absolute;
  display: block;
  height: 14px;
  min-width: 14px;
  color: #fff;
  line-height: 14px;
  font-size: 12px;
  text-align: center;
  background: #F5222D;
  top: 0;
  right: 0;
  transform: translate(120%, -40%);
}



.p-item {
  width: 23.666666666%;
  /* width: 23%; */
  /* height: 372px; */
  background: #fff;
  transition: all .25s ease-out;
}

.p-item--off {
  position: relative;
}

.p-item--off::after {
  line-height: 1;
  content: '\e607';
  font-family: iconfont;
  position: absolute;
  pointer-events: none;
  font-size: 60px;
  color: #BFBFBF;
  right: 9%;
  bottom: 9%;
}


html[lang="en-us"] .p-item--off::after {
  content: '\e6b2'
}

html[lang="zh-tw"] .p-item--off::after {
  content: '\e6b1'
}

.p-item__thumb {
  display: flex;
  width: 100%;
  height: auto;
  /* min-height: 200px; */
  /* min-height: 312px; */
  aspect-ratio: 426/240;
  position: relative;
}

.p-item__thumb::before {
  content: '';
  padding-top: 56.33802816901409%;
}

/* .p-item__tag {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  width: 90px;
  height: 32px;
  background-color: #262626;
  color: #fff;
} */

.p-item__thumb img {
  position: absolute;
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.p-item__content {
  padding: 3.5211267605633804% 4.6948356807511735%;
}

.p-item__title {
  display: block;
  line-height: 1.75;
  height: 56px;
  overflow: hidden;
  color: #262626;
  font-size: 16px;
}

.p-item__title em {
  font-style: normal;
  color: #F5222D;
}

.p-item__title:hover {
  color: #262626;
  font-weight: 700;
}

.p-item__title+.flex {
  align-items: center;
}

.p-item:hover {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

.p-item__price {
  display: flex;
  align-items: center;
  font-family: Microsoft Yahei;
}

.p-item__price ins {
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  color: #262626;
  margin-right: 10px;
}

.p-item__price del {
  color: #8c8c8c;
  transform: translateY(2px);
}

.p-item__fav {
  color: #8c8c8c;
  cursor: pointer;
}

.p-item__fav .icon {
  margin-right: 6px;
}

.p-item__fav--faved .icon {
  color: #F5222D;
}

.p-item__del {
  top: 10px;
  right: 10px;
  position: absolute;
  width: 28px;
  height: 28px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, .5);
  display: none;
}

.p-item:hover .p-item__del {
  display: flex;
}


.online-chat {
  position: absolute;
  right: 0;
  /* bottom: 110px; */
  margin-top: -205px;
  width: 270px;
  height: 95px;
  background: #AABEBA;
  box-shadow: 0px 2px 15px 1px rgba(0, 0, 0, 0.21);
  z-index: 6;
  color: #fff;
  padding: 18px 0 18px 22px;
  font-size: 24px;
  line-height: 1.2;
  align-items: center;
}

.online-chat:hover {
  color: #fff;
}

.online-chat .icon {
  font-size: 36px;
}

.online-chat strong {
  display: block;
}

.online-chat div {
  border-left: 2px solid #fff;
  margin-left: 22px;
  padding-left: 22px;
}


/*ÃƒÂ¦Ã¢â‚¬â€œÃ‚Â°ÃƒÂ¥Ã‚Â¢Ã…Â¾ÃƒÂ¨Ã‚ÂÃ…â€œÃƒÂ¥Ã‚ÂÃ¢â‚¬Â¢*/
header .nav {
  position: relative
}

.add_menus {
  position: absolute;
  right: 60px;
  top: 70px;
  background: #fff;
  box-shadow: 0rem 0.19rem 0.31rem 0rem rgb(0 0 0 / 35%);
  border: 0.03rem solid #D9D9D9;
  width: 180px;
  padding: 20px 0 15px 0;
}

.add_menus .bold {
  font-weight: bold;
}

.add_menusName {
  padding-left: 20px;
}


.add_menusExit {
  padding-left: 20px;
}


.add_menus ul {
  list-style: none;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  padding: 10px 0 10px 20px;
}

.nonelogin {
  border-top: none !important;
  margin-top: 0;
  padding: 0px 0 10px 20px !important;
}

.add_menus ul li {
  line-height: 48px;
}


.rela_tive {
  position: relative
}

.add_coll_area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: fixed;
  left: 0;
  top: 50%;
}

.add_coll {
  /* width: 10.25rem; */
  /* height: 2.63rem; */
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0rem 0.31rem 0.63rem 0rem rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  /* position: fixed; */
  /* z-index: 9999; */
  /* top: 50%; */
  /* left: 50%; */
  /*margin-left: -5.125rem;*/
  /*margin-top: -1.32rem;*/
}

.add_coll span {
  font-size: 0.88rem;
  color: #666666;
  line-height: 1.19rem;
  width: auto !important;
}

.add_coll a {
  margin-right: 10px;
}

.add_coll2 {
  width: 21%;
  padding: 15px 20px;
  height: unset;
}


.add_coll2 span i {
  font-style: normal;
}

/*ÃƒÂ¦Ã¢â‚¬â€œÃ‚Â°ÃƒÂ¥Ã‚Â¢Ã…Â¾ÃƒÂ¨Ã‚ÂÃ…â€œÃƒÂ¥Ã‚ÂÃ¢â‚¬Â¢*/
/*ÃƒÂ¦Ã¢â‚¬â€œÃ‚Â°ÃƒÂ¥Ã‚Â¢Ã…Â¾ÃƒÂ¨Ã‚Â¡Ã‚Â¨ÃƒÂ¦Ã†â€™Ã¢â‚¬Â¦*/
.faceDiv {
  width: 100%;
  /*height: 120px;*/
  /*border-top: 1px solid #ccc;*/
  position: absolute;
  background-color: #fff;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  z-index: 9;

}

.faceDiv>img {
  border: 1px solid #ccc;
  float: left;
  margin-left: -1px;
  margin-top: -1px;
  position: relative;
  width: 32px;
  height: 32px;
  padding: 3px 3px 3px 3px;
  cursor: pointer;
}

.faceDiv>img:hover {
  background-color: #efefef;
}

.faceDiv>img:active {
  padding: 4px 3px 2px 3px;
}

.row_left_center {
  display: flex;
  align-items: center;
  justify-content: flex-start
}

/*ÃƒÂ¦Ã¢â‚¬â€œÃ‚Â°ÃƒÂ¥Ã‚Â¢Ã…Â¾ÃƒÂ¨Ã‚Â¡Ã‚Â¨ÃƒÂ¦Ã†â€™Ã¢â‚¬Â¦*/


.foot_dialgs {
  background: #FFFFFF;
  box-shadow: 0rem 0.19rem 0.31rem 0rem rgba(0, 0, 0, 0.35);
  border: 0.03rem solid #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -20px;
  top: -136px;
  z-index: 99;
  padding: 5px;
}

.foot_dialgs2 {

  left: -20px;
  top: -110px;
}

.foot_dialgs:after {
  content: '';
  position: absolute;
  border: 9px solid #fff;
  border-left: 9px solid transparent;
  border-top: 9px solid transparent;
  bottom: -8px;
  left: 41%;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px -1px rgb(0 0 0 / 24%);
  z-index: 67;
}

.foot_Imgdialgs {
  background: #FFFFFF;
  box-shadow: 0rem 0.19rem 0.31rem 0rem rgba(0, 0, 0, 0.35);
  border: 0.03rem solid #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -20px;
  bottom: 35px;
  bottom: 67px;
  z-index: 99;
  padding: 5px;
}

.foot_Imgdialgs2 {
  left: -20px;
  bottom: 35px;
}

.foot_Imgdialgs:after {
  content: '';
  position: absolute;
  border: 9px solid #fff;
  border-left: 9px solid transparent;
  border-top: 9px solid transparent;
  bottom: -8px;
  left: 40px;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px -1px rgb(0 0 0 / 24%);
  z-index: 67;
}

/*/Ã¥Â¯Â¼Ã¨Ë†ÂªÃ¦â€“Â°Ã¥Â¢Å¾Ã¨ÂÅ“Ã¥Ââ€¢0825*/
.area_Select_ {
  position: relative;
  height: 100%;
}

.area_Select_1 {
  position: absolute;
  left: 30px;
  height: 100%;
  padding-left: 30px;
}

.area_Select_.current_ {
  background: #fff;
}

.sel_Names {
  margin: 0;
  padding: 0 30px 0 0;
  height: 100%;
  line-height: 32px;
}

.area_Select_.current_ .sel_Names {
  background: #fff;
  cursor: pointer;
}

.sel_Names text {}

.area_Select_.current_ .sel_Names text {
  color: #262626
}

.sel_Names text:after {
  content: '';
  position: absolute;
  border: 3px solid #969191;
  border-left: 3px solid transparent;
  border-top: 3px solid transparent;
  top: 28%;
  right: -13px;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px -1px rgb(0 0 0 / 24%);
  z-index: 67;
}

.area_Select_.current_ .sel_Names text:after {
  content: '';
  position: absolute;
  border: 3px solid #969191;
  border-left: 3px solid transparent;
  border-top: 3px solid transparent;
  top: 41%;
  right: -13px;
  transform: rotate(-135deg);
  box-shadow: 2px 2px 4px -1px rgb(0 0 0 / 24%);
  z-index: 67;
}

/*/Ã¥Â¯Â¼Ã¨Ë†ÂªÃ¦â€“Â°Ã¥Â¢Å¾Ã¨ÂÅ“Ã¥Ââ€¢0825*/
.area_Select_one {
  position: relative;
  height: 100%;
}

.area_Select_one.current_ {
  background: #fff;
}

.sel_Names {
  margin: 0;
  padding: 0 30px 0 0;
  height: 100%;
  line-height: 32px;
}

.area_Select_one.current_ .sel_Names {
  background: #fff;
  cursor: pointer;
}

.sel_Names text {}

.area_Select_one.current_ .sel_Names text {
  color: #262626
}

.sel_Names text:after {
  content: '';
  position: absolute;
  border: 3px solid #969191;
  border-left: 3px solid transparent;
  border-top: 3px solid transparent;
  top: 28%;
  right: -13px;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px -1px rgb(0 0 0 / 24%);
  z-index: 67;
}

.area_Select_one.current_ .sel_Names text:after {
  content: '';
  position: absolute;
  border: 3px solid #969191;
  border-left: 3px solid transparent;
  border-top: 3px solid transparent;
  top: 41%;
  right: -13px;
  transform: rotate(-135deg);
  box-shadow: 2px 2px 4px -1px rgb(0 0 0 / 24%);
  z-index: 67;
}

.area_ListArea {
  min-height: 300px;
  min-width: 540px;
}

.area_List_oneArea {
  min-height: 300px;
  min-width: 540px;
}

.area_List_one {
  position: absolute;
  background: #fff;
  z-index: 99;
  top: 32px;
  left: 0;
  padding: 10px 26px 16px 26px;
  box-shadow: 0px 8px 10px 0px rgb(0 0 0 / 30%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
}

.area_List_one p {
  margin: 0;
  font-size: 12px;
  color: #262626;
}

.area_List_one {
  position: absolute;
  background: #fff;
  z-index: 99;
  top: 32px;
  left: 0;
  padding: 10px 26px 16px 26px;
  box-shadow: 0px 8px 10px 0px rgb(0 0 0 / 30%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
}

.area_List_one p {
  margin: 0;
  font-size: 12px;
  color: #262626;
}

.area_ListArea {
  min-height: 300px;
  min-width: 540px;
}

.area_List {
  position: absolute;
  background: #fff;
  z-index: 99;
  top: 32px;
  left: 0;
  padding: 10px 26px 16px 26px;
  box-shadow: 0px 8px 10px 0px rgb(0 0 0 / 30%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
}

.area_List p {
  margin: 0;
  font-size: 12px;
  color: #262626;
}

.area_List {
  position: absolute;
  background: #fff;
  z-index: 99;
  top: 32px;
  left: 0;
  padding: 10px 26px 16px 26px;
  box-shadow: 0px 8px 10px 0px rgb(0 0 0 / 30%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
}

.area_List p {
  margin: 0;
  font-size: 12px;
  color: #262626;
}

.a_seles {}

.a_seles li {}

.a_seles li.current_ {}

.area_Area {}

.area_AreaList {
  padding: 0 0 0 15px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.area_AreaList li {
  color: #262626;
  list-style: none;
  width: 16%;
  display: inline-block;
  /* text-align: center; */
  padding-left: 3px;
  line-height: 20px;
  margin-bottom: 10px;
}

.area_AreaList li {
  margin-right: 2px;
}

.area_AreaList li:nth-child(6n) {
  margin-right: 0px;
}

.area_AreaList li a {
  color: #262626;
  margin: 0;
  padding: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 12px;
  /* display: inline-block; */
}

.area_AreaList li.current_ a text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.area_AreaList li.current_ {}

.area_AreaList li.current_ a {
  color: #fff;
  background: #262626;
  display: inline-block;
  /* padding: 0 10px; */
}


/* aaa */
.area_AreaList_one {
  padding: 0 0 0 15px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.area_AreaList_one li {
  color: #262626;
  list-style: none;
  width: 16%;
  display: inline-block;
  /* text-align: center; */
  padding-left: 3px;
  line-height: 20px;
  margin-bottom: 10px;
}

.area_AreaList_one li {
  margin-right: 2px;
}

.area_AreaList_one li:nth-child(6n) {
  margin-right: 0px;
}

.area_AreaList_one li a {
  color: #262626;
  margin: 0;
  padding: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 12px;
  /* display: inline-block; */
}

.area_AreaList_one li.current_ a text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.area_AreaList_one li.current_ {}

.area_AreaList_one li.current_ a {
  color: #fff;
  background: #262626;
  display: inline-block;
  /* padding: 0 10px; */
}

.a_seles {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #D9D9D9;
  margin: 10px 0 17px 0;
}

.a_seles p {
  font-size: 14px;
  margin: 0;
  color: #595959;
  background: #F5F5F5;
  border: 1px solid #D9D9D9;
  padding: 0 32px;
  border-bottom: none;
  cursor: pointer;
  line-height: 28px;
}

.a_seles p+p {
  margin-left: 0;
  border-left: 0;
}

.a_seles p.current_ {
  border-bottom: 1px solid #fff;
  position: relative;
  top: 1px;
  font-weight: bold;
  color: #262626;
  background: #fff;
  border-top: 2px solid #262626;
}

.a_seles_one {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #D9D9D9;
  margin: 10px 0 17px 0;
}

.a_seles_one p {
  font-size: 14px;
  margin: 0;
  color: #595959;
  background: #F5F5F5;
  border: 1px solid #D9D9D9;
  padding: 0 32px;
  border-bottom: none;
  cursor: pointer;
  line-height: 28px;
}

.a_seles_one p+p {
  margin-left: 0;
  border-left: 0;
}

.a_seles_one p.current_ {
  border-bottom: 1px solid #fff;
  position: relative;
  top: 1px;
  font-weight: bold;
  color: #262626;
  background: #fff;
  border-top: 2px solid #262626;
}

.area_AreaListSub {}

.area_AreaListSub li {
  width: 24%;
}

.area_AreaListSub li {
  margin-right: 0px;
}

.area_AreaListSub_one {}

.area_AreaListSub_one li {
  width: 24%;
}

.area_AreaListSub_one li {
  margin-right: 0px;
}

.nav_sub_list {
  padding: 0 0 0 10px;
}

.nav_sub_list li {
  color: #595959;
  list-style: none;
  line-height: 30px;
}

.nav_sub_list li a {
  color: #595959;
  font-size: 12px;
}

.nav_sub_list li a:hover {
  color: #0A7AFF
}

.area_List_sub1 {
  min-width: 120px;
  padding: 0;
}

p.otherSub {
  text-align: center;
  padding: 0 20px 0 10px;
}

.otherSub text {
  position: relative;
}

.area_List_sub2 {
  min-width: 258px;
  padding: 0 16px 16px 16px;
  left: unset;
  right: 0;
}

.nav_sub_list3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav_sub_list3 span {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: #262626;
  width: 100%;
  margin-top: 20px;
}

.nav_sub_list3 a {
  color: #595959;
  margin: 0;
}

.nav_sub_list3 a:hover {
  color: #0A7AFF
}

.mar_r20 {
  margin-right: 20px;
}


.select_area2_add {
  margin: 0;
  white-space: nowrap;
}

.shouhou1 {
  margin: 0 3%;
}

.shouhou2 {
  margin: 0 3%;
}

.shouhou3 {
  margin: 0 3%;
  white-space: nowrap;
}

.shouhou4 {
  margin: 0 5%;
}

.sale_Control li:nth-child(3) {
  margin-left: 32%;
}

.sale_Control li:nth-child(4) {
  margin: 0 12.5% 0 11.5%;
}

.sale_Control li:nth-child(5) {
  margin: 0 3% 0 0;
}

.sale_Control li:nth-child(6) {
  margin: 0 8% 0 4%;
}

.select_area2_add p {
  position: relative;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  width: 100%;
  color: #BFBFBF;
  line-height: 40px;
  padding: 0 10px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin: 0;
  background: #fff;
}

.select_area2_add p:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #8c8c8c;
  border-right: 1.5px solid #8C8C8C;
  box-shadow: 0 0 0 lightgrey;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  transform: rotate(135deg);
  margin-top: -5px;
}

.select_area2_add p.hover_:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #8c8c8c;
  border-right: 1.5px solid #8C8C8C;
  box-shadow: 0 0 0 lightgrey;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  transform: rotate(-45deg);
  margin-top: -2px;
}

.select_area2_add ul {
  position: absolute;
  min-width: 50%;
  background: #FFFFFF;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  padding: 11px 0;
  z-index: 10;
  margin: 0;
  max-height: 300px;
  overflow-y: scroll;
}

.select_area2_add ul.select_1 {
  min-width: calc(50% + 10px)
}

.select_area2_add ul li {
  height: 32px;
  line-height: 32px;
  color: #595959;
  cursor: pointer;
  padding: 0 11px;
  border: none;
  list-style: none;
}

.select_area2_add ul li:hover {
  background: #F5F5F5;
  color: #262626;
}

.select_area2_add ul li:last-child {
  color: #0A7AFF;
}

.select_area2_add ul li:last-child:hover {

  color: #0A7AFF;
}

.select_area2_add ul li.current_ {
  background: #F5F5F5;
  color: #0A7AFF;
}

.select_area2_add ul::-webkit-scrollbar {
  /*æ»šåŠ¨æ¡æ•´ä½“æ ·å¼*/
  width: 10px;
  /*é«˜å®½åˆ†åˆ«å¯¹åº”æ¨ªç«–æ»šåŠ¨æ¡çš„å°ºå¯¸*/
  height: 1px;
}

.select_area2_add ul::-webkit-scrollbar-thumb {
  /*æ»šåŠ¨æ¡é‡Œé¢å°æ–¹å—*/
  border-radius: 10px;
  background: #afbfb0;

  /*background-image: -webkit-linear-gradient(*/
  /*        45deg,*/
  /*        rgba(255, 255, 255, 0.2) 25%,*/
  /*        transparent 25%,*/
  /*        transparent 50%,*/
  /*        rgba(255, 255, 255, 0.2) 50%,*/
  /*        rgba(255, 255, 255, 0.2) 75%,*/
  /*        transparent 75%,*/
  /*        transparent*/
  /*);*/
}

.select_area2_add ul::-webkit-scrollbar-track {
  /*æ»šåŠ¨æ¡é‡Œé¢è½¨é“*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #ededed;
  border-radius: 10px;
}

.select_2 {
  position: absolute;
  left: 50%;
  box-shadow: 0px 2px 1px 0px rgb(0 0 0 / 30%) !important;
  /* top:0; */
}

.select_3 {
  position: absolute;
  left: 100%;
  box-shadow: 0px 2px 1px 0px rgb(0 0 0 / 30%) !important;
  /* top:0; */
}

/*.otherSub text:after {*/
/*  right: 7px;*/
/*}*/
/*.area_Select_.current_ .otherSub text:after {*/
/*  right: -5px;*/
/*}*/
/*/Ã¥Â¯Â¼Ã¨Ë†ÂªÃ¦â€“Â°Ã¥Â¢Å¾Ã¨ÂÅ“Ã¥Ââ€¢0825*/

.top-bar select {
  width: 100px;
  height: 22px;
  color: #595959;
}


.nav {
  min-height: 70px;
  align-items: center;
  padding: 0 60px;
  background-color: #fff;
}

.nav h1 {
  margin: 0;
}

.nav h1 img {
  max-width: 162px;
  max-height: 34px;
}


.nav>.flex {
  align-items: center;
}

.nav-list {
  align-items: center;
}

.nav-list {
  margin: 12px 0 0 40px;
}

.nav-list li+li {
  margin-left: 20px;
}

.nav-list .active::after {
  content: '';
  height: 2px;
  background: #0A7AFF;
  display: block;
  transform: translateY(14px);
}

.nav-list .active a {
  color: #0A7AFF;
  font-weight: 700;
}

.nav-search {
  position: relative;
}

.nav-search input {
  width: 180px;
  height: 32px;
  border: solid 1px #d9d9d9;
  border-radius: 0;
  padding: 0 38px 0 15px;
  outline: none;
}

.nav-search button {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  color: #8c8c8c;
  top: 6px;
  right: 6px;
}

.nav-search button:hover {
  color: #0A7AFF;
}

.nav-account>a {
  margin-left: 20px;
  font-size: 18px;
}

.nav-account .icon {
  color: #8c8c8c;
}

.nav-account .icon:hover {
  color: #0A7AFF;
}

.nav-account .icon-cart .badge__count {
  transform: translate(50%, 0);
}

.nav-account__info {
  margin-left: 20px;
  position: relative;
}

.nav-account__info:hover .nav-account__list {
  display: block;
}

.nav-account__list {
  display: none;
  position: absolute;
  top: 51px;
  right: 0;
  width: 180px;
  background: #fff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.25);
  line-height: 50px;
}

.nav-account__list::before {
  position: absolute;
  display: block;
  content: '';
  width: 180px;
  height: 20px;
  top: -20px;
}

.nav-account__list a {
  padding-left: 20px;
  display: block;
}

.nav-account__name {
  font-weight: 700;
  line-height: 60px;
  border-bottom: 1px solid #D9D9D9;
}

.nav-account__list a:hover {
  font-weight: 700;
  color: #262626;
}

.nav-account__list a:hover .badge__count {
  font-weight: 400;
}

.nav-account__list li:last-child {
  border-top: 1px solid #D9D9D9;
}

.header {
  position: fixed;
  background: #fff;
  z-index: 9;
  top: 0;
  right: 0;
  left: 0;
  height: 102px;
  box-shadow: 0px 1px 0px 0px #DCDCDC;
}

.header+* {
  margin-top: 102px;
}

.header-fixed {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
}



.header-search {
  position: fixed;
  z-index: 8;
  top: 60px;
  width: 100%;
}

.header-search__bg {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity .25s ease-out;
}

.header-search__bg:not(.active) {
  pointer-events: none;
}

.header-search__content {
  width: 100%;
  background: #fff;
  position: relative;
}

.header-search__form {
  width: 100%;
  position: absolute;
  background: #262626;
  height: 60px;
  transform: translateY(-200%);
  transition: transform .25s ease-out;
}

.header-search__form form {
  margin: 0 15px;
  display: block;
  height: 36px;
  position: relative;
}

.header-search__form input,
.header-search__form .icon {
  position: absolute;
  top: 7px;
  font-size: 16px;
}

.header-search__form .icon {
  z-index: 1;
  top: 9px;
  left: 15px;
}

.header-search__form input {
  width: 100%;
  display: block;
  border: none;
  border-radius: 0;
  background: #fff;
  padding-left: 40px;
  height: 36px;
  outline: none;
}

.header-search__form input::-webkit-search-cancel-button {
  display: none;
}

.header-search__form button.icon {
  background: none;
  border: none;
  outline: none;
  font-size: 12px;
  left: auto;
  top: 0;
  right: -8px;
  width: 50px;
  height: 50px;
}

.search-history {
  display: none;
  padding: 10px 15px 40px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
}

.search-history header {
  font-size: 16px;
  font-weight: 700;
}

.search-history div {
  margin: 0 -5px;
}

.search-history div+header {
  margin-top: 10px;
}

.search-history a {
  display: inline-block;
  background: #F4F4F4;
  padding: 5px 10px;
  margin: 5px;
}

.header-search.active {
  padding-top: 50px;
}

.header-search.active .header-search__form {
  transform: translateY(-100%);
  top: 11px;
}

.header-search.active .header-search__bg {
  opacity: 1;
}

.header-search.active .search-history {
  display: block;
}


.header-nav__page1 {
  position: fixed;
  top: 60px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  transition: background .25s ease-out;
}

.header-nav__page1:not(.active) {
  pointer-events: none;
}

.header-nav__page1.active {
  background: rgba(0, 0, 0, 0.5);
}

.header-nav__page1-content {
  margin-left: 55px;
  background: #f5f5f5;
  max-height: 100%;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .25s ease-out;
  overscroll-behavior: contain;
}

.header-nav__page1.active .header-nav__page1-content {
  transform: translateX(0);
}

.header-nav__page2 {
  background: #f5f5f5;
  transform: translateX(100%);
  transition: transform .25s ease-out;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.header-nav__page2.active {
  transform: translateX(0);
}

.header-nav__page2 .nav {
  top: 0;
  position: absolute;
  justify-content: space-between;
  width: 100%;
}

.language-icon {
  align-items: center;
  margin-right: 10px;
}

.language-icon img {
  margin-right: 8px;
}

.header-nav__page2 .icon-close {
  font-size: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav__page2 .back {
  display: block;
  margin: 20px 0 15px 20px;
  color: #262626;
}

.header-nav__page2 header {
  font-size: 19px;
  font-weight: 500;
  margin-left: 20px;
}

.header-nav__page2 .languages {
  padding: 15px 0 15px 20px;
}

.header-nav__page2 .languages li {
  line-height: 40px;
  border-bottom: 1px solid #d5d5d5;
}

.header-nav__page2 .languages a {
  display: block;
}

.header-nav__page2 .languages li:first-child {
  border-top: 1px solid #d5d5d5;
}

.header-nav__page2-list {
  position: absolute;
  top: 60px;
  width: 100%;
  bottom: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}


.header-nav__nav {
  font-size: 17px;
  padding: 10px 0 0 30px;
  line-height: 44px;
}

.header-nav__nav a {
  border-bottom: .5px solid #D9D9D9;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
}

.header-nav__account--info::after,
.header-nav__nav a::after {
  content: '\e673';
  font-family: iconfont;
  font-size: 14px;
}

.header-nav__nav li.active {
  font-weight: 700;
}

.header-nav__nav li.active a {
  color: #0A7AFF;
}

.header-nav__account {
  padding: 20px 20px 20px 30px;
}

.header-nav__account .button-link {
  width: 130px;
  color: #fff;
  background: #262626;
  font-size: 18px;
}

.header-nav__account--info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -.5px;
  border-top: .5px solid #D9D9D9;
}

.header-nav__account--info img {
  margin-right: 10px;
}

.header-nav__account--info .flex {
  align-items: center;
}

.header-nav__cards {
  padding-left: 30px;
  padding-bottom: 10px;
}

.header-nav__cards a {
  display: flex;
  align-items: center;
  font-size: 17px;
}

.header-nav__cards .icon {
  font-size: 20px;
  margin-right: 10px;
}

.header-nav__links {
  color: #595959;
  border: solid #D9D9D9;
  border-width: .5px 0;
  padding: 20px 5px 20px 15px;
  font-size: 12px;
  width: 100%;
  position: absolute;
  bottom: 50px;
}

.header-nav__links a {
  color: #595959;
}

.header-nav__links span {
  margin: 0 10px;
}


.header-nav__services a {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.header-nav__services::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(0, -50%);
  width: .5px;
  height: 30px;
  background-color: #d9d9d9;
}

.header-nav__services .icon,
.header-nav__services img {
  margin-right: 8px;
}

.language-form {
  padding: 0 !important;
  top: 0;
  transform: translateY(-100%);
  transition: transform .25s ease-out;
}

.language-form.active {
  transform: translateY(0);
}

.language-form form {
  display: block;
  margin: 10px 55px 0 10px;
}

.language-form input {
  width: 100%;
  display: block;
  /* position: absolute; */
  height: 40px;
  border: none;
  padding-left: 40px;
  /* top: 10px;
  left: 15px;
  right: 60px; */
  border-radius: 0;
  outline: none;
  background: #f5f5f5;
}

.language-form input::-webkit-search-cancel-button {
  display: none;
}

.language-form .icon {
  position: absolute;
  top: 16px;
}

.language-form .icon:first-child {
  left: 25px;
}

.language-form .icon:last-child {
  top: 12px;
  right: 10px;
}

.footer {
  color: #595959;
  background: #E8E8E8;
}

.footer__des {
  /* width: 1240px; */
  /* min-height: 318px; */
  padding: 60px 0;
  justify-content: space-between;
}

.footer__title {
  font-weight: bold;
  color: #262626;
  font-size: 14px;
  margin: 0;
  /* color: #595959; */
}

.footer__item {
  width: 23%;
  max-width: 360px;
}

.footer__item a {
  color: #595959;
}

.footer__item a:hover {
  color: #262626;
}

/* .footer__item:first-child {
  width: 290px;
}

.footer__item:first-child+.footer__item {
  width: 260px;
}

.footer__item+.footer__item {
  margin-left: 60px;
} */

.footer__tel {
  margin-top: 26px;
  color: #0A7AFF;
}

.footer__copy {
  text-align: center;
  line-height: 80px;
  background: #262626;
  color: #fff;
}

.banner__img {
  position: relative;
  background-color: var(--loading-grey);
  background: linear-gradient(100deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, .5) 50%,
      rgba(255, 255, 255, 0) 60%) var(--loading-grey);
  background-size: 200% 100%;
  background-position-x: 180%;
  animation: 2s loading ease-in-out infinite;
}

/* .banner__img_loding[src=""],.banner__img_loding:not([src]){
  opacity:0;
} */

.banner__img_loding {
  height: 100%;
  width: 100%;
  position: relative;
  background-color: var(--loading-grey);
  background: linear-gradient(100deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, .5) 50%,
      rgba(255, 255, 255, 0) 60%) var(--loading-grey);
  background-size: 200% 100%;
  background-position-x: 180%;
  animation: 2s loading ease-in-out infinite;
}

.banner__img_src[src=""],
.banner__img_src:not([src]) {
  opacity: 0;
}

.banner__img_div {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--loading-grey) !important;
  background: linear-gradient(100deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, .5) 50%,
      rgba(255, 255, 255, 0) 60%) var(--loading-grey) !important;
  background-size: 200% 100% !important;
  background-position-x: 180% !important;
  animation: 2s loading ease-in-out infinite !important;
}

.banner__img_src {
  width: 100%;
  height: 100%;
  /* position: relative;
  background-color: var(--loading-grey);
  background: linear-gradient(100deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, .5) 50%,
      rgba(255, 255, 255, 0) 60%) var(--loading-grey);
  background-size: 200% 100%;
  background-position-x: 180%;
  animation: 2s loading ease-in-out infinite; */
}
.product__img_div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  position: relative !important;
  background-color: var(--loading-grey) !important;
  background: linear-gradient(100deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, .5) 50%,
      rgba(255, 255, 255, 0) 60%) var(--loading-grey) !important;
  background-size: 200% 100% !important;
  background-position-x: 180% !important;
  animation: 2s loading ease-in-out infinite !important;
}
.product__img_src {
  width: 100%;
  height: 100%; 
  object-fit: contain; 
  /* height: auto; */
 /* 如果是非正方形的图片，按照宽度进行自动缩放 */
  /* object-fit: cover;
  position: relative;
  background-color: var(--loading-grey);
  background: linear-gradient(100deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, .5) 50%,
      rgba(255, 255, 255, 0) 60%) var(--loading-grey);
  background-size: 200% 100%;
  background-position-x: 180%;
  animation: 2s loading ease-in-out infinite;  */
}

.vr-item__thumb__iframe {
  position: relative;
  background-color: var(--loading-grey);
  background: linear-gradient(100deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, .5) 50%,
      rgba(255, 255, 255, 0) 60%) var(--loading-grey);
  background-size: 200% 100%;
  background-position-x: 180%;
  animation: 2s loading ease-in-out infinite;
}





.player {
  height: 620px;
  overflow: hidden;
  position: relative;
}

.player li {
  transition: all .25s ease-out;
}

/* .player::after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .52);
} */

.player__img li {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}

.player__img li.on {
  opacity: 1;
}

.player .container {
  z-index: 1;
  height: 620px;
  position: relative;
}

.player__control {
  position: absolute;
  right: 0;
  bottom: 20px;
  z-index: 10;
}

@media (max-width: 1140px) {
  .player__control {
    right: 30px;
  }
}

.player__control li {
  padding: 10px 0;
  opacity: .3;
  cursor: pointer;
  /* border-bottom: 3px solid #fff; */
}

.player__control li::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
}

.player__control li+li {
  margin-left: 8px;
}

.player__control li.on {
  opacity: 1;
}

.player__content {
  color: #fff;
  padding-top: 140px;
}

.player__content li {
  position: absolute;
  width: 100%;
  opacity: 0;
}

.player__content .des {
  font-size: 16px;
  color: #fff;
}

.player__content li.on {
  opacity: 1;
  z-index: 1;
}

.player__content .h1 {
  font-weight: bold;
  color: #fff;
  font-size: 42px;
  line-height: 1.35;
}

.player__content .abtns {
  text-align: center;
  display: block;
  width: 156px;
  height: 40px;
  line-height: 36px;
  margin-top: 40px;
  font-size: 16px;
  color: #fff;
  border: solid 1px #fff;
  transition: all .25s ease-out;
  position: absolute;
  top: 125px;
}

.player__content .abtns:hover {
  background: #fff;
  color: #262626;
}

.pager {
  align-items: center;
  justify-content: flex-end;
}

.pager a {
  height: 32px;
  min-width: 32px;
  border: 1px solid #D9D9D9;
  background: #fff;
  color: #262626;
  padding: 0 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
}

.pager a.prev,
.pager a.next {
  width: 32px;
}

.pager a.disabled {
  color: #BFBFBF;
  border-color: #D9D9D9;
  cursor: not-allowed;
}

/* .pager a.disabled .icon {
  color: #BFBFBF;
} */

.pager a:not(.disabled):hover,
.pager a.active {
  border-color: #0A7AFF;
  color: #0A7AFF;
}

/* .pager a:not(.disabled):hover .icon,
.pager a.active .icon {
  color: #0A7AFF;

} */
.pager select,
.pager input {
  border: 1px solid #D9D9D9;
  width: 50px;
  height: 32px;
  background: #fff;
  margin: 0 8px;
  border-radius: 0;
}

.pager select {
  width: 96px;
  margin: 0;
}

.pager .select {
  margin: 0 8px 0 4px;
}


.badge {
  position: relative;
}

.badge__count {
  position: absolute;
  display: block;
  height: 14px;
  min-width: 14px;
  color: #fff;
  line-height: 14px;
  font-size: 12px;
  text-align: center;
  background: #F5222D;
  top: 0;
  right: 0;
  transform: translate(120%, -40%);
}



.p-item {
  /* 这里为什么改成23 因为在mall页面 hover有白边的问题，经过测试发现这里有点问题 */
  width: 23.666666666%;
  /* width: 22.666666666%; */
  /* height: 372px; */
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  transition: all .25s ease-out;
}

.p-item--off {
  position: relative;
}

.p-item--off::after {
  line-height: 1;
  content: '\e607';
  font-family: iconfont;
  position: absolute;
  pointer-events: none;
  font-size: 60px;
  color: #BFBFBF;
  right: 9%;
  bottom: 9%;
}

.p-item__thumb {
  display: block;
  width: 100%;
  height: auto;
  /* min-height: 200px; */
  aspect-ratio: 426/240;
  position: relative;
  background-color: var(--loading-grey);
  background: linear-gradient(100deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, .5) 50%,
      rgba(255, 255, 255, 0) 60%) var(--loading-grey);
  background-size: 200% 100%;
  background-position-x: 180%;
  animation: 2s loading ease-in-out;
}


.p-item__tag {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  width: 90px;
  height: 32px;
  background-color: #f5222d;
  color: #fff;
}

.p-item__thumb img {
  display: none;
  position: absolute;
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}


/* .loadingDefault {
  background-color: var(--loading-grey);
  background: linear-gradient(100deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, .5) 50%,
      rgba(255, 255, 255, 0) 60%) var(--loading-grey);
  background-size: 200% 100%;
  background-position-x: 180%;
  animation: 1s loading ease-in-out infinite;
} */



.p-item__content {
  width: 100%;
  padding: 3.5211267605633804% 4.6948356807511735%;
}

.p-item__title {
  display: block;
  line-height: 1.75;
  height: 56px;
  overflow: hidden;
  color: #262626;
  font-size: 16px;
}

.p-item__title em {
  font-style: normal;
  color: #F5222D;
}

.p-item__title:hover {
  color: #262626;
  font-weight: 700;
}

.p-item__title+.flex {
  align-items: center;
}

.p-item:hover {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

.p-item__price {
  display: flex;
  align-items: center;
  font-family: Microsoft Yahei;
}

.p-item__price ins {
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  color: #262626;
  margin-right: 10px;
}

.p-item__price del {
  color: #8c8c8c;
  transform: translateY(2px);
}

.p-item__fav {
  color: #8c8c8c;
  cursor: pointer;
}

.p-item__fav .icon {
  margin-right: 6px;
}

.p-item__fav--faved .icon {
  color: #F5222D;
}

.p-item__del {
  top: 10px;
  right: 10px;
  position: absolute;
  width: 28px;
  height: 28px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, .5);
  display: none;
}

.p-item:hover .p-item__del {
  display: flex;
}


.online-chat {
  position: absolute;
  right: 0;
  /* bottom: 110px; */
  margin-top: -205px;
  width: 270px;
  height: 95px;
  background: #AABEBA;
  box-shadow: 0px 2px 15px 1px rgba(0, 0, 0, 0.21);
  z-index: 6;
  color: #fff;
  padding: 18px 0 18px 22px;
  font-size: 24px;
  line-height: 1.2;
  align-items: center;
}

.online-chat:hover {
  color: #fff;
}

.online-chat .icon {
  font-size: 36px;
}

.online-chat strong {
  display: block;
}

.online-chat div {
  border-left: 2px solid #fff;
  margin-left: 22px;
  padding-left: 22px;
}

@media (max-width: 1180px) {
  .top-bar {
    padding-right: 20px;
  }

  .nav {
    padding: 0 20px;
  }

  .nav-list li+li {
    margin-left: 14px;
  }
}

@media (min-width: 1024px) {
  .hide-lg {
    display: none;
  }
}

@media (min-width: 769px) {
  .hide-pc {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hide-1024 {
    display: none;
  }

  .header {
    height: auto;
  }

  .header+* {
    margin-top: 60px;
  }

  .browser-tip:not(.hide-pc)+.header+* {
    margin-top: 102px;
  }

  .nav {
    min-height: auto;
    height: 60px;
    padding-right: 10px;
  }

  .nav-account>a {
    width: 36px;
    margin-left: 0;
    text-align: center;
  }

  .nav-account .icon {
    color: #262626;
  }

  .icon-menu {
    display: block;
    width: 36px;
    height: 36px;
    position: relative;
  }

  .icon-menu span {
    pointer-events: none;
    position: absolute;
    width: 17px;
    height: 17px;
    display: block;
    transition: all .25s ease-out;
    left: 2.5px;
    top: .5px;
  }

  .icon-menu .icon {
    display: none;
    pointer-events: none;
  }

  .icon-menu span:first-child {
    top: 6px;
  }

  .icon-menu span:nth-child(3) {
    top: 11.5px;
  }

  .icon-menu span::before {
    display: block;
    content: "\e690";
    font-family: iconfont;
    display: block;
    transform: 0 center;
    font-size: 12px;
    transform: scale(.23, .125);
  }

  .icon-menu.active span {
    display: none;
  }

  .icon-menu.active .icon {
    display: block;
    font-size: 14px;
    transform: translateY(4px);
  }
}

/* modal 弹窗样式 */
.cart_del_modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.cart_del_modal .modal_info {
  min-width: 330px;
  height: 150px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 1px 1px 5px #888888;
  position: relative;
}

.cart_del_modal .modal_info .modal_info_title {
  margin-left: 20px;
}

.cart_del_modal .modal_info .modal_info_title svg {
  position: absolute;
  left: 25px;
  top: 36px;
}

.cart_del_modal .modal_info {
  min-width: 330px;
  height: 160px;
  background: #ffffff;
  padding: 30px;
  box-shadow: 1px 1px 5px #888888;
}

.cart_del_modal .modal_info .modal_info_text {
  color: #888888;
  margin-top: -8px;
  font-size: 12px;
  line-height: 40px;
}

.cart_del_modal .modal_info .modal_info_footer {
  display: flex;
  position: absolute;
  right: 20px;
  bottom: 30px;
}

.cart_del_modal .modal_info .modal_info_footer div:nth-child(1) {
  width: 60px;
  height: 30px;
  border: 1px solid #888888;
  text-align: center;
  line-height: 30px;
  margin-right: 10px;
  cursor: pointer;
}

.cart_del_modal .modal_info .modal_info_footer div:nth-child(2) {
  width: 60px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #ffffff;
  background-color: #262626;
  cursor: pointer;
}

#mobCofPass_error {
  display: none;
}

/*新增菜单*/
header .nav {
  position: relative
}

.add_menus {
  position: absolute;
  right: 60px;
  top: 70px;
  background: #fff;
  box-shadow: 0rem 0.19rem 0.31rem 0rem rgb(0 0 0 / 35%);
  border: 0.03rem solid #D9D9D9;
  width: 180px;
  padding: 20px 0 15px 0;
}

.add_menus .bold {
  font-weight: bold;
}

.add_menusName {
  padding-left: 20px;
}

.add_menusName a {}

.add_menusExit {
  padding-left: 20px;
}

.add_menusExit a {}

.add_menus ul {
  list-style: none;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  padding: 10px 0 10px 20px;
}

.add_menus ul li {
  line-height: 48px;
}

.add_menus ul li a {}

.rela_tive {
  position: relative
}

.add_coll_area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: fixed;
  left: 0;
  top: 50%;
}

.add_coll {
  /* width: 10.25rem; */
  /* height: 2.63rem; */
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0rem 0.31rem 0.63rem 0rem rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  /* position: fixed; */
  /* z-index: 9999; */
  /* top: 50%; */
  /* left: 50%; */
  /*margin-left: -5.125rem;*/
  /*margin-top: -1.32rem;*/
}

.add_coll span {
  font-size: 0.88rem;
  color: #666666;
  line-height: 1.19rem;
  width: auto !important;
}

.add_coll a {
  margin-right: 10px;
}

.add_coll2 {
  width: 21%;
  padding: 15px 20px;
  height: unset;
}

.add_coll2 span {}

.add_coll2 span i {
  font-style: normal;
}

/*新增菜单*/
/*新增表情*/
.faceDiv {
  width: 100%;
  /*height: 120px;*/
  /*border-top: 1px solid #ccc;*/
  position: absolute;
  background-color: #fff;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  z-index: 9;

}

.faceDiv>img {
  border: 1px solid #ccc;
  float: left;
  margin-left: -1px;
  margin-top: -1px;
  position: relative;
  width: 32px;
  height: 32px;
  padding: 3px 3px 3px 3px;
  cursor: pointer;
}

.faceDiv>img:hover {
  background-color: #efefef;
}

.faceDiv>img:active {
  padding: 4px 3px 2px 3px;
}

.row_left_center {
  display: flex;
  align-items: center;
  justify-content: flex-start
}

.imgfit {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

/*新增表情*/

/*新增表情*/


.foot_dialgs {
  background: #FFFFFF;
  box-shadow: 0rem 0.19rem 0.31rem 0rem rgba(0, 0, 0, 0.35);
  border: 0.03rem solid #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -20px;
  top: -136px;
  z-index: 99;
  padding: 5px;
}

.foot_dialgs2 {

  left: -20px;
  top: -110px;
}

.foot_dialgs:after {
  content: '';
  position: absolute;
  border: 9px solid #fff;
  border-left: 9px solid transparent;
  border-top: 9px solid transparent;
  bottom: -8px;
  left: 41%;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px -1px rgb(0 0 0 / 24%);
  z-index: 67;
}

.foot_Imgdialgs {
  background: #FFFFFF;
  box-shadow: 0rem 0.19rem 0.31rem 0rem rgba(0, 0, 0, 0.35);
  border: 0.03rem solid #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -20px;
  bottom: 130px;
  z-index: 99;
  padding: 5px;
}

.foot_Imgdialgs2 {
  left: -20px;
  bottom: 110px;
}

.foot_Imgdialgs:after {
  content: '';
  position: absolute;
  border: 9px solid #fff;
  border-left: 9px solid transparent;
  border-top: 9px solid transparent;
  bottom: -8px;
  left: 40px;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px -1px rgb(0 0 0 / 24%);
  z-index: 67;
}

.select_area2_add {
  margin: 0;
  white-space: nowrap;
}

.shouhou1 {
  margin: 0 3%;
}

.shouhou2 {
  margin: 0 3%;
}

.shouhou3 {
  margin: 0 3%;
  white-space: nowrap;
}

.shouhou4 {
  margin: 0 5%;
}

.sale_Control li:nth-child(3) {
  margin-left: 32%;
}

.sale_Control li:nth-child(4) {
  margin: 0 12.5% 0 11.5%;
}

.sale_Control li:nth-child(5) {
  margin: 0 3% 0 0;
}

.sale_Control li:nth-child(6) {
  margin: 0 8% 0 4%;
}

.select_area2_add p {
  position: relative;
  font-size: 14px;
  font-family: MicrosoftYaHei;
  width: 100%;
  color: #BFBFBF;
  line-height: 40px;
  padding: 0 10px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin: 0;
  background: #fff;
}



.select_area2_add ul {
  position: absolute;
  min-width: 33.3%;
  background: #FFFFFF;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  padding: 0 0;
  z-index: 10;
  margin: 0;
  max-height: 300px;
  overflow-y: scroll;
}

.select_area2_add ul.select_1 {
  min-width: calc(33.3% + 10px)
}

.select_area2_add ul li {
  height: 32px;
  line-height: 32px;
  color: #595959;
  cursor: pointer;
  padding: 0 11px;
  border: none;
  list-style: none;
}

.select_area2_add ul li:hover {
  background: #F5F5F5;
  color: #262626;
}

.select_area2_add ul li.current_ {
  background: #F5F5F5;
  color: #262626;
}

.select_area2_add ul::-webkit-scrollbar {
  /*æ»šåŠ¨æ¡æ•´ä½“æ ·å¼*/
  width: 10px;
  /*é«˜å®½åˆ†åˆ«å¯¹åº”æ¨ªç«–æ»šåŠ¨æ¡çš„å°ºå¯¸*/
  height: 1px;
}

.select_area2_add ul::-webkit-scrollbar-thumb {
  /*æ»šåŠ¨æ¡é‡Œé¢å°æ–¹å—*/
  border-radius: 10px;
  background: #afbfb0;

  /*background-image: -webkit-linear-gradient(*/
  /*        45deg,*/
  /*        rgba(255, 255, 255, 0.2) 25%,*/
  /*        transparent 25%,*/
  /*        transparent 50%,*/
  /*        rgba(255, 255, 255, 0.2) 50%,*/
  /*        rgba(255, 255, 255, 0.2) 75%,*/
  /*        transparent 75%,*/
  /*        transparent*/
  /*);*/
}

.select_area2_add ul::-webkit-scrollbar-track {
  /*æ»šåŠ¨æ¡é‡Œé¢è½¨é“*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #ededed;
  border-radius: 10px;
}

.select_1 {
  position: absolute;
  left: 0;
  width: 100%;
  box-shadow: 0px 2px 1px 0px rgb(0 0 0 / 30%) !important;
  /* top:0; */
}

.select_2 {
  position: absolute;
  left: 33.3%;
  box-shadow: 0px 2px 1px 0px rgb(0 0 0 / 30%) !important;
  /* top:0; */
}

.select_3 {
  position: absolute;
  left: 66.6%;
  box-shadow: 0px 2px 1px 0px rgb(0 0 0 / 30%) !important;
  /* top:0; */
}

.hack_right_55 {
  right: 55px;
}

/*.otherSub text:after {*/
/*  right: 7px;*/
/*}*/
/*.area_Select_.current_ .otherSub text:after {*/
/*  right: -5px;*/
/*}*/
/*/Ã¥Â¯Â¼Ã¨Ë†ÂªÃ¦â€“Â°Ã¥Â¢Å¾Ã¨ÂÅ“Ã¥Ââ€¢0825*/
.newMiddle {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #f0f0f0; */
}

.nc-container .nc_scale span {
  height: 35px !important;
}

.hk-content {
  height: 100%;
}

.hk-content .nc_scale,
.hk-content .nc_scale span,
.hk-content .nc_scale .slidetounlock {
  height: 44px !important;
  line-height: 44px !important;
}

.search_null {
  text-align: center;
}

.search_null span {
  color: #fff;
  background: #d9d9d9;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.search_null p {
  font-size: 16px;
  color: #262626;
  line-height: 19px;
}

.vr-item_name {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: nowrap;
  display: block;
  width: 100px
}

.shadowGrey {
  background: #e8e8e8;
  background: linear-gradient(-45deg,
      #e8e8e8 50%,
      #c7c7c7 60%,
      #e8e8e8 70%);
  background-size: 600% 100%;
  -webkit-animation: shine 20s infinite;
  animation: shine 20s infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes shine {
  0% {
    background-position-x: 400%;
  }

  50% {
    background-position-x: 0%;
  }

  100% {
    background-position-x: -400%;
  }
}

@keyframes shine {
  0% {
    background-position-x: 400%;
  }

  50% {
    background-position-x: 0%;
  }

  100% {
    background-position-x: -400%;
  }
}

.hackWrapper:hover {
  transform: scale(1.1);

}

.hackWrapper {
  transition: transform .25s ease-out;
}


/********** 1.9.0 **************/
.footer,
.footer__copy {
  color: #595959;
  background: #eee;
}

.footer__copy {
  margin: 0 60px;
  border-top: 1px solid #D9D9D9;
}

.top-bar {
  height: 60px;
  color: #262626;
  background-color: #fff;
  padding-right: 30px;
  padding-left: 30px;
  justify-content: space-between;
}

.header-left h1,
.header-left h1 a {
  width: 154px;
  height: 34px;
  display: flex;
  margin: 0;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: inline-flex;
}

.logo img {
  width: 154px;
  height: 34px;
}

.area_Select_1 {
  padding-left: 0;
  position: relative;
}

.nav nav {
  justify-content: center;
}

.nav-list {
  margin-left: 0;
}

.nav-list li {
  margin: 0 20px;
}

.nav-search {
  margin-right: 12px;
}

.nav-search input {
  border-top: none;
  border-left: none;
  border-right: none;
  padding-left: 0;
}

.top-bar .icon-cart {
  color: #8c8c8c;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  margin: 0 12px;
  cursor: pointer;
  display: block;
}

.top-bar .icon-cart:hover .menus-box {
  display: block;
}

.menus-box {
  display: none;
  position: absolute;
  transform: translateX(-60px);
  width: 150px;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

.menus-box ul li a,
.menus-box .logout a {
  color: #262626;
  display: block;
  margin: 0;
  height: 32px;
  font-size: 14px;
  line-height: 32px;
  font-weight: normal;
  text-align: left;
}

.menus-box ul li span {
  color: #262626;
}

.menus-box ul li,
.menus-box .logout {
  padding: 0 12px;
  text-align: left;
}

.menus-box ul.no-login li,
.menus-box ul.no-login li a {
  text-align: center;
}

.menus-box .logout {
  border-top: 1px solid #D9D9D9;
}

.menus-box ul li:hover,
.menus-box .logout:hover {
  background-color: #F5F5F5;
}

.top-bar .icon-cart:hover {
  background-color: #E8E8E8;
}

.select-lang {
  margin-left: 12px;
}

.select-lang:hover {
  cursor: pointer;
  background-color: #E8E8E8;
}

.select.select-lang select {
  background: none;
}

.select.select-lang select:hover {
  cursor: pointer;
}

.header {
  height: 130px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
}

.header+* {
  margin-top: 130px;
}

.footer__copy {
  padding: 20px 0;
}

.footer__copy p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 120px);
}


.focus-on-us-title {
  font-weight: bold;
  color: #262626;
  font-size: 14px;
  margin: 0;
  margin-bottom: 24px;
}

.focus-on-us {
  padding: 60px 0;
}

.qr-code-list {
  display: flex;
}

.qr-code-list li {
  margin-left: 22px;
}

.qr-code-list li:first-child {
  margin-left: 0;
}

.qr-code-box {
  padding: 5px;
  background-color: #fff;
}

.qr-code-box img {
  width: 120px;
  height: 120px;
}

.qr-code-des {
  font-size: 12px;
  color: #262626;
  text-align: center;
}

.footer__des {
  flex: 1;
}

a.icon-more {
  display: block;
  width: 30px;
  height: 30px;
  background: url('../images/icon_more@2x.png') center center no-repeat;
  background-size: contain;
}

/* swiper */
.ping-pai-swiper {
  background-color: #fff;
}

.ping-pai-swiper .swiper-container {
  height: 100px;
}

/* .ping-pai-swiper .img-box {
  height: 60px;
  width: calc(100% - 20px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;

} */

.ping-pai-swiper .img-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: calc(100% - 20px);
}

.ping-pai-swiper .img-box img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

.ping-pai-swiper .swiper-button-prev {
  left: 0;
}

.ping-pai-swiper .swiper-button-next {
  right: 0;
}

.ping-pai-swiper .swiper-button-next,
.ping-pai-swiper .swiper-button-prev {
  width: 24px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
}

.ping-pai-swiper .swiper-button-next:hover,
.ping-pai-swiper .swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.ping-pai-swiper:hover .swiper-button-next,
.ping-pai-swiper:hover .swiper-button-prev {
  opacity: 1;
}

.ping-pai-swiper .swiper-button-next:after,
.ping-pai-swiper .swiper-button-prev:after {
  color: #fff;
  font-size: 14px;
}

.player__content {
  padding-top: 0;
}

#swiper-container-1 .swiper-slide:hover,
#swiper-container-2 .swiper-slide:hover {
  background-color: #F5F5F5;
}

/* fix style */
.player__content .des {
  font-size: 20px;
  line-height: 30px;
}
/* banner文字的容器 */
.banner-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 600px;
  margin: 0px auto;
}

.video-home {
  padding-bottom: 56.25%;
  position: relative;
}

.video-home .video-player-home {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
