@charset "utf-8";
/*!
by Sean Lu 20220929
!!!请勿直接在c.css中修改内容
!!!请勿直接在c.css中修改内容
!!!请勿直接在c.css中修改内容
*/
/* 全局变量设置 */
:root {
  --color-main: #ff6600;
  --color-white: #fff;
  --color-red: #ce2226;
  --color-txt: #253554;
  --color-bg: #f5f5f5;
  --color-0: #000;
  --color-3: #333;
  --color-6: #666;
  --color-9: #999;
  --color-border: #dedede;
  --color-rgb-black: 0, 0, 0;
  --fsize-base: 14px;
  --fsize-large: calc(var(--fsize-base) * 1.25);
  --fsize-txt: calc(var(--fsize-base) * 1.14);
  --fsize-small: calc(var(--fsize-base) * 0.85);
  --fsize-sma13: calc(var(--fsize-base) * 0.93);
  --fsize-h1: calc(var(--fsize-base) * 2.6);
  --fsize-h2: calc(var(--fsize-base) * 2.15);
  --fsize-h3: calc(var(--fsize-base) * 1.7);
}
/* chrome */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
/* 火狐浏览器 */
input[type="number"] {
  -moz-appearance: textfield;
}
.topbar {
  position: relative;
  z-index: 101;
  height: 60px;
  background: var(--color-0);
  color: var(--color-white);
  font-size: var(--fsize-sma13);
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar span {
  margin: 0 10px;
}
.topbar a {
  margin-left: 10px;
  color: var(--color-white);
  position: relative;
}
.topbar a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background-color: var(--color-white);
  transition: all 0.3s;
}
.topbar a:hover {
  color: var(--color-main);
  text-decoration: none;
}
.topbar a:hover:after {
  background-color: var(--color-main);
}
.header {
  background-color: var(--color-white);
  border-bottom: 0 solid var(--color-border);
  position: relative;
  top: 0;
  z-index: 101;
}
@media (max-width: 800px) {
  .header {
    overflow: hidden;
  }
}
.header .headblack {
  background: var(--color-0);
}
@media (max-width: 800px) {
  .header .headblack {
    padding-bottom: calc(38px + 3vw);
    position: relative;
  }
}
.header .headsec {
  background: var(--color-3);
}
@media (max-width: 800px) {
  .header .headsec {
    overflow-x: auto;
  }
  .header .headsec::-webkit-scrollbar {
    display: none;
  }
}
.header .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 20px;
}
@media (max-width: 800px) {
  .header .head {
    padding: var(--gap-large) 0 var(--gap-large);
  }
}
.header .head .logo {
  display: block;
  width: 250px;
}
@media (max-width: 800px) {
  .header .head .logo {
    width: 50vw;
  }
}
.header .head .logo img {
  display: block;
  width: 100%;
}
.header .head .seabox {
  display: flex;
  height: 38px;
  border: 1px solid var(--color-white);
  box-shadow: 1px 0 0 var(--color-white), -1px 0 0 var(--color-white), 0 -1px 0 var(--color-white), 0 1px 0 var(--color-white);
  border-radius: 20px;
  width: 50%;
  overflow: hidden;
}
@media (max-width: 800px) {
  .header .head .seabox {
    position: absolute;
    left: 4vw;
    right: 4vw;
    bottom: 3vw;
    width: 92vw;
    box-sizing: border-box;
  }
}
.header .head .seabox:focus-within {
  border-color: var(--color-main);
  box-shadow: 1px 0 0 var(--color-main), -1px 0 0 var(--color-main), 0 -1px 0 var(--color-main), 0 1px 0 var(--color-main);
}
.header .head .seabox .ipt {
  border: 0;
  background: transparent;
  padding: 0 30px;
  flex: 1;
  box-sizing: border-box;
  font-size: var(--fsize-sma13);
  font-family: "Montserrat";
  color: var(--color-white);
}
.header .head .seabox .ipt::placeholder {
  color: var(--color-white);
}
.header .head .seabox .btn {
  border: 0;
  background: transparent url(../img/seaicon.svg) no-repeat center;
  border-left: 1px solid var(--color-white);
  width: 60px;
  text-indent: -9999px;
  cursor: pointer;
}
.header .head .seabox .btn:hover {
  background-color: var(--color-bg);
}
.header .head .tools {
  justify-content: flex-end;
  display: flex;
}
.header .head .tools .lk {
  position: relative;
  text-decoration: none;
  margin: 0 10px;
  border-radius: 6px;
  padding: 5px;
}
@media (max-width: 800px) {
  .header .head .tools .lk {
    margin: 0 var(--gap-small);
  }
  .header .head .tools .lk.lksns {
    display: none;
  }
}
.header .head .tools .lk img {
  display: block;
  cursor: pointer;
}
.header .head .tools .lk s {
  pointer-events: none;
  position: absolute;
  z-index: 2;
  top: -2px;
  right: -2px;
  line-height: 18px;
  padding: 0 6px;
  color: var(--color-white);
  background: var(--color-main);
  border-radius: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: var(--fsize-sma13);
  text-decoration: none;
}
.header .head .tools .lk em {
  pointer-events: none;
  position: absolute;
  bottom: -32px;
  left: 50%;
  line-height: 24px;
  font-size: var(--fsize-small);
  color: var(--color-white);
  background: var(--color-0);
  border-radius: 4px;
  padding: 0 10px;
  transform: translateX(-50%);
  font-style: normal;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.header .head .tools .lk span {
  pointer-events: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  padding: 5px;
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.header .head .tools .lk span * {
  transition: none;
}
.header .head .tools .lk span img {
  display: block;
  width: 100%;
}
.header .head .tools .lk:hover {
  background: rgba(255, 255, 255, 0.3);
}
.header .head .tools .lk:hover em {
  opacity: 1;
  visibility: visible;
}
.header .head .tools .lk:hover span {
  opacity: 1;
  visibility: visible;
}
.header .head .tools .lk:hover .jtcartip {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 800px) {
  .header .head .tools .lk:hover .jtcartip {
    display: none;
  }
}
.header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .navbar .nav .nul {
  display: flex;
}
.header .navbar .nav .nul .nli {
  margin-right: 36px;
}
@media (max-width: 800px) {
  .header .navbar .nav .nul .nli {
    margin-right: var(--gap-h3);
  }
}
.header .navbar .nav .nul .nli .na {
  text-decoration: none;
  font-size: var(--fsize-base);
  font-weight: bold;
  color: var(--color-white);
  text-transform: uppercase;
  padding: 16px 0;
  display: block;
  white-space: nowrap;
  position: relative;
}
@media (max-width: 800px) {
  .header .navbar .nav .nul .nli .na {
    font-size: var(--fsize-small);
    padding: var(--gap-large) 0;
  }
}
.header .navbar .nav .nul .nli .na::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 2px;
  width: 0;
  background: var(--color-main);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.header .navbar .nav .nul .nli .na:hover {
  color: var(--color-main);
}
.header .navbar .nav .nul .nli .na:hover::after {
  width: 100%;
}
.header .navbar .nav .nul .nli:hover .na {
  color: var(--color-main);
}
.header .navbar .nav .nul .nli:hover .na::after {
  width: 100%;
}
.header .navbar .nav .nul .nli:hover .sub {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.header .navbar .nav .nul .nli.on .na {
  color: var(--color-main);
}
@media (max-width: 1860px) {
  .header .navbar .nav .nul .nli .sub.rt {
    right: 20px;
  }
}
@media (max-width: 1600px) {
  .header .navbar .nav .nul .nli .sub {
    left: 20px;
  }
  .header .navbar .nav .nul .nli .sub.minisub {
    left: auto;
  }
}
.header .navbar .sub {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  position: absolute;
  top: 100%;
  background: var(--color-white);
  box-shadow: inset 0 4px 8px 0 rgba(0, 0, 0, 0.06);
  padding: 32px 24px;
  width: 970px;
  min-height: 380px;
  max-height: 600px;
  overflow-y: auto;
  border-radius: 0 0 8px 8px;
  display: flex;
  z-index: 99;
  box-sizing: border-box;
}
.header .navbar .sub * {
  transition: none;
}
.header .navbar .sub.minisub {
  width: 260px;
  min-height: 168px;
}
.header .navbar .sub.minisub .sbox {
  flex-flow: nowrap;
  column-count: auto;
}
.header .navbar .sub.minisub .sbox .slist:last-child {
  margin-right: 0;
}
.header .navbar .sub .sbox {
  flex: 1;
  flex-flow: column wrap;
  column-count: 3;
}
.header .navbar .sub .sbox .slist {
  margin-right: 24px;
  width: 210px;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
  position: relative;
  margin-bottom: 10px;
}
.header .navbar .sub .sbox .slist:last-child {
  margin-bottom: 0;
}
.header .navbar .sub .sbox .slist .sa {
  font-size: var(--fsize-sma13);
  display: block;
  line-height: 1.5;
  padding: 2px 0;
}
.header .navbar .sub .sbox .slist .sh {
  font-weight: 700;
}
.header .navbar .sub .sbox .slist .sh .sa {
  color: var(--color-0);
}
.header .navbar .sub .sbox .slist .sb {
  margin-top: 4px;
}
.header .navbar .sub .simg {
  width: 220px;
}
.header .navbar .sub .simg a {
  display: block;
  margin-bottom: 20px;
}
.header .navbar .sub .simg a:last-child {
  margin-bottom: 0;
}
.header .navbar .sub .simg a:hover {
  opacity: 0.8;
}
.header .navbar .sub .simg a img {
  display: block;
  width: 100%;
}
.header .navbar .more {
  display: flex;
}
@media (max-width: 1600px) {
  .header .navbar .more .mh {
    display: none;
  }
}
@media (max-width: 800px) {
  .header .navbar .more {
    display: none;
  }
}
.header .navbar .more a {
  text-decoration: none;
  margin-left: 20px;
  font-size: var(--fsize-sma13);
  color: var(--color-white);
  display: flex;
  align-items: center;
  font-weight: 500;
}
.header .navbar .more a img {
  display: block;
  margin-right: 6px;
}
.navsubcov {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  background: rgba(0, 0, 0, 0.3);
  z-index: 100;
  backdrop-filter: blur(5px) saturate(180%);
}
.navsubcov.on {
  display: block;
}
@media (max-width: 800px) {
  .navsubcov.on {
    display: none;
  }
}
@media (max-width: 800px) {
  .navsubcov.proside {
    display: block;
    z-index: 102;
  }
}
.sidecart .free {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fsize-txt);
  color: var(--color-0);
}
.sidecart .free img {
  margin-right: 6px;
}
.sidecart .btng {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.sidecart .btng .btn {
  display: flex;
  height: 48px;
  flex: 50%;
  font-size: var(--fsize-base);
  box-sizing: border-box;
  border: 1px solid var(--color-0);
  color: var(--color-0);
  text-decoration: none;
  border-radius: 30px;
  margin-right: 8px;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 500;
}
.sidecart .btng .btn:hover {
  opacity: 0.8;
}
.sidecart .btng .btn:last-child {
  margin-right: 0;
}
.sidecart .btng .btn.on {
  background: var(--color-0);
  color: var(--color-white);
}
.sidecart .topmar {
  margin-top: var(--gap-large);
}
.sidecart .topgoods .list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-base);
}
.sidecart .topgoods .list .item {
  background: var(--color-white);
  border-radius: var(--gap-mini);
  overflow: hidden;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.09);
}
.sidecart .topgoods .list .item:hover {
  transform: translateY(-4px);
  box-shadow: 4px 6px 16px 0 rgba(0, 0, 0, 0.2);
}
.sidecart .topgoods .list .item a {
  display: block;
  text-decoration: none;
  font-size: var(--fsize-small);
  color: var(--color-3);
}
.sidecart .topgoods .list .item .img img {
  display: block;
  width: 100%;
}
.sidecart .topgoods .list .item .inf {
  padding: var(--gap-small);
}
.sidecart .topgoods .list .item .inf .nam {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.sidecart .topgoods .list .item .inf .pri {
  margin: var(--gap-small) 0;
  font-size: var(--fsize-txt);
  font-weight: normal;
  color: var(--color-main);
}
.sidecart .topgoods .list .item .inf .sta {
  display: flex;
  align-items: center;
}
.sidecart .topgoods .list .item .inf .sta i {
  display: block;
  width: 12px;
  height: 12px;
}
.sidecart .topgoods .list .item .inf .sta i svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #e8e8e8;
}
.sidecart .topgoods .list .item .inf .sta i.on svg {
  fill: var(--color-main);
}
.sidecart .topgoods .list .item .inf .sta .val {
  margin-left: var(--gap-mini);
  font-size: var(--fsize-base);
}
.sidecart .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-0);
  font-weight: 500;
  margin-bottom: 20px;
}
.sidecart .total .nam {
  font-size: var(--fsize-large);
}
.sidecart .total .pri {
  font-size: var(--fsize-txt);
}
.sidecart .total .pri span {
  font-weight: normal;
}
.sidecart .jtcartip {
  transform: translateY(0);
  visibility: visible;
  position: relative;
  opacity: 1;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  padding: 0;
  top: auto;
  right: auto;
  z-index: 1;
}
.sidecart .jtcartip .plist {
  max-height: none;
}
.imglight img {
  transition: all 0.3s;
}
.imglight:hover img {
  filter: contrast(1.2) saturate(1.1);
}
.homebox01 {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0;
}
@media (max-width: 800px) {
  .homebox01 {
    margin: 3vw 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.homebox01 .item {
  grid-column: span 4;
}
@media (max-width: 800px) {
  .homebox01 .item {
    grid-column: span 1;
    display: none;
  }
}
.homebox01 .item.it01 {
  grid-row: span 2;
  grid-column: span 6;
}
@media (max-width: 800px) {
  .homebox01 .item.it01 {
    grid-column: span 1;
    display: block;
  }
}
.homebox01 .item.it01 .ia:hover img {
  transform: scale(1);
}
.homebox01 .item .hb01list {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.homebox01 .item .hb01list:hover .swiper-button-next,
.homebox01 .item .hb01list:hover .swiper-button-prev {
  opacity: 1;
  transform: translateX(0);
}
.homebox01 .item .hb01list .swiper-pagination-bullet-active {
  background: var(--color-main);
}
.homebox01 .item .hb01list .swiper-button-next,
.homebox01 .item .hb01list .swiper-button-prev {
  color: var(--color-0);
  width: 40px;
  height: 40px;
  opacity: 0;
}
.homebox01 .item .hb01list .swiper-button-next {
  transform: translateX(10px);
}
.homebox01 .item .hb01list .swiper-button-prev {
  transform: translateX(-10px);
}
.homebox01 .item .hb01list .swiper-button-next:after,
.homebox01 .item .hb01list .swiper-button-prev:after {
  background: var(--color-white);
  font-size: var(--fsize-large);
  border-radius: 50%;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: all 0.3s;
}
.homebox01 .item .hb01list .swiper-button-next:hover:after,
.homebox01 .item .hb01list .swiper-button-prev:hover:after {
  background-color: var(--color-main);
  color: var(--color-white);
}
.homebox01 .item .ia {
  display: block;
  height: 100%;
  overflow: hidden;
}
.homebox01 .item .ia img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homebox01 .item .ia:hover img {
  transform: scale(1.02);
}
.homebox02 {
  display: flex;
  margin: 60px 0;
  cursor: pointer;
}
@media (max-width: 800px) {
  .homebox02 {
    margin: var(--gap-h3) 0;
    overflow-x: auto;
  }
}
.homebox02 .item {
  display: flex;
  flex: 1;
  align-items: center;
}
@media (max-width: 800px) {
  .homebox02 .item .inf .nam {
    width: 15vw;
  }
  .homebox02 .item:nth-child(3) .inf .nam {
    width: 25vw;
  }
}
.homebox02 .item:hover {
  opacity: 0.6;
}
.homebox02 .item .ico {
  width: 50px;
  height: 50px;
}
@media (max-width: 800px) {
  .homebox02 .item .ico {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
}
.homebox02 .item .ico img {
  display: block;
  width: 100%;
}
.homebox02 .item .inf {
  margin-left: 15px;
}
.homebox02 .item .inf .nam {
  font-size: var(--fsize-large);
  color: var(--color-0);
  font-weight: 500;
}
@media (max-width: 800px) {
  .homebox02 .item .inf .nam {
    font-size: var(--fsize-small);
    color: var(--color-6);
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.homebox02 .item .inf .txt {
  font-size: var(--fsize-base);
  color: var(--color-6);
  font-weight: 500;
}
@media (max-width: 800px) {
  .homebox02 .item .inf .txt {
    display: none;
  }
}
.homebox03 {
  margin: 60px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 800px) {
  .homebox03 {
    margin: 3vw 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 800px) {
  .homebox03 .item {
    display: none;
    border-radius: 2vw;
    padding-bottom: 2vw;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .homebox03 .item:first-child {
    display: block;
  }
}
.homebox03 .item .img img {
  display: block;
  width: 100%;
}
.homebox03 .item .box {
  position: relative;
}
.homebox03 .item .box .lis {
  margin: 0 15px;
  background: var(--color-white);
  padding: 10px 15px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
@media (max-width: 800px) {
  .homebox03 .item .box .lis {
    margin: 0;
    padding: 2vw;
    gap: 2vw;
    border-radius: 0;
    top: 0;
    bottom: 0;
    transform: translateY(0);
  }
}
.homebox03 .item .box .lis .it {
  overflow: hidden;
  background: #e8e8e8;
}
@media (max-width: 800px) {
  .homebox03 .item .box .lis .it {
    border-radius: 2vw;
    overflow: hidden;
  }
}
.homebox03 .item .box .lis .it:hover {
  background: var(--color-border);
}
.homebox03 .item .box .lis .it img {
  display: block;
  width: 100%;
}
.homebox03 .item .box .lis .it a {
  display: block;
  text-decoration: none;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.homebox03 .item .box .lis .it a:hover img {
  filter: contrast(1.2) saturate(1.1);
}
.homebox03 .item .box .lis .it a:hover .cen .ico em {
  transform: scale(1.2);
}
.homebox03 .item .box .lis .it .cen {
  text-align: center;
}
.homebox03 .item .box .lis .it .cen .ico {
  position: relative;
  margin: 0 auto;
  width: 35px;
  height: 35px;
}
@media (max-width: 800px) {
  .homebox03 .item .box .lis .it .cen .ico {
    width: 30px;
    height: 30px;
  }
}
.homebox03 .item .box .lis .it .cen .ico img {
  mix-blend-mode: multiply;
}
.homebox03 .item .box .lis .it .cen .ico em {
  font-style: normal;
  position: absolute;
  z-index: 2;
  top: -2px;
  right: -2px;
  line-height: 18px;
  padding: 0 6px;
  color: var(--color-white);
  background: var(--color-main);
  border-radius: 10px;
  font-weight: 700;
  font-size: var(--fsize-sma13);
}
.homebox03 .item .box .lis .it .cen .nam {
  font-size: var(--fsize-base);
  color: var(--color-6);
  font-weight: 500;
  margin-top: 10px;
}
@media (max-width: 800px) {
  .homebox03 .item .box .lis .it .cen .nam {
    font-size: var(--fsize-small);
  }
}
.homebox03 .item .inf {
  line-height: 2.5;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .homebox03 .item .inf {
    padding: 0 2vw;
  }
}
.homebox03 .item .inf .nam {
  font-size: var(--color-base);
  color: var(--color-0);
}
@media (max-width: 800px) {
  .homebox03 .item .inf .nam {
    font-size: var(--fsize-small);
  }
}
@media (max-width: 800px) {
  .homebox03 .item .inf .lin {
    font-size: var(--fsize-small);
  }
}
.homebox03 .item .inf .lin a {
  color: var(--color-main);
  text-decoration: underline;
}
.homebox03 .item .inf .lin a:hover {
  background: var(--color-main);
  color: var(--color-white);
}
.hbox {
  margin: 60px 0;
}
@media (max-width: 800px) {
  .hbox {
    margin: 8vw 0 3vw;
  }
}
.hbox .hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hbox .hd .tit {
  display: flex;
  align-items: center;
}
.hbox .hd .tit .fla {
  display: flex;
  align-items: center;
  margin-left: 28px;
  font-weight: 500;
  font-size: var(--fsize-large);
}
@media (max-width: 800px) {
  .hbox .hd .tit .fla {
    margin-left: 6px;
    font-size: var(--fsize-small);
  }
}
.hbox .hd .tit .fla .ico {
  margin-right: 20px;
  display: flex;
  align-items: center;
}
@media (max-width: 800px) {
  .hbox .hd .tit .fla .ico {
    margin-right: 4px;
  }
}
.hbox .hd .tit .fla .tim strong {
  font-weight: 500;
  margin-left: 5px;
}
.hbox .hd .lin {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}
.hbox .hd .lin .swiper-button-next,
.hbox .hd .lin .swiper-button-prev {
  position: relative;
  top: 0;
  width: 40px;
  left: 0;
  right: 0;
  margin: 0 10px;
}
@media (max-width: 800px) {
  .hbox .hd .lin .swiper-button-next,
  .hbox .hd .lin .swiper-button-prev {
    width: 32px;
    height: 32px;
    margin: 0 1vw;
  }
}
.hbox .hd .lin .swiper-button-next:hover:after,
.hbox .hd .lin .swiper-button-prev:hover:after {
  border-color: var(--color-main);
}
.hbox .hd .lin .swiper-button-prev:after {
  content: "";
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid var(--color-border);
  background: var(--color-white) url(../img/dimg/arrowicon2.svg) no-repeat center;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  .hbox .hd .lin .swiper-button-prev:after {
    width: 32px;
    height: 32px;
  }
}
.hbox .hd .lin .swiper-button-next:after {
  content: "";
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid var(--color-border);
  background: var(--color-white) url(../img/dimg/arrowicon.svg) no-repeat center;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  .hbox .hd .lin .swiper-button-next:after {
    width: 32px;
    height: 32px;
  }
}
.hbox .hd .lin .swiper-pagination {
  position: relative;
  width: auto;
  top: 0;
  margin: 0 10px;
}
@media (max-width: 800px) {
  .hbox .hd .lin .swiper-pagination {
    font-size: var(--fsize-small);
    margin: 0 1vw;
  }
}
.hbox .hd .nam {
  font-size: var(--fsize-h2);
  color: var(--color-0);
  font-weight: 500;
}
@media (max-width: 800px) {
  .hbox .hd .nam {
    font-size: var(--fsize-large);
  }
}
.hbox .hd .btn {
  width: 140px;
  line-height: 38px;
  border: 1px solid var(--color-border);
  padding: 0 15px;
  box-sizing: border-box;
  display: flex;
  white-space: nowrap;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fsize-base);
  color: var(--color-3);
  text-decoration: none;
}
@media (max-width: 800px) {
  .hbox .hd .btn {
    width: 30vw;
    line-height: 30px;
    color: var(--color-6);
    font-size: var(--fsize-small);
  }
}
.hbox .hd .btn:hover {
  border-color: var(--color-main);
  color: var(--color-main);
}
.hbox .list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 800px) {
  .hbox .list {
    margin-top: 3vw;
    gap: 2vw;
  }
}
.hbox .list .item {
  background: var(--color-white);
}
.hbox .list .item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.hbox .list .item:hover .inf .nam a {
  color: var(--color-main);
}
.hbox .list .item .img a {
  display: block;
  width: 100%;
}
.hbox .list .item .img img {
  display: block;
  width: 100%;
}
.hbox .list .item .inf {
  padding: 15px 15px 30px;
}
@media (max-width: 800px) {
  .hbox .list .item .inf {
    padding: 2vw 0 0;
  }
}
.hbox .list .item .inf .nam {
  font-size: var(--fsize-large);
  line-height: 1.6;
  font-weight: 500;
}
@media (max-width: 800px) {
  .hbox .list .item .inf .nam {
    font-size: var(--fsize-small);
    text-align: center;
  }
}
.hbox .list .item .inf .nam a {
  color: var(--color-0);
}
@media (max-width: 800px) {
  .hbox .list .item .inf .nam a {
    color: var(--color-6);
  }
}
.hbox .list .item .inf .nam a:hover {
  color: var(--color-main);
}
.hbox .list .item .inf .txt {
  font-size: var(--fsize-base);
  line-height: 1.4;
  margin-top: 4px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 800px) {
  .hbox .list .item .inf .txt {
    display: none;
  }
}
.homebox05 {
  overflow: hidden;
}
.homebox05 .slide {
  margin-top: 30px;
}
@media (max-width: 800px) {
  .homebox05 .slide {
    margin-top: 3vw;
  }
}
.homebox05 .slide .box {
  background-color: var(--color-white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.homebox05 .slide .box:hover {
  transform: translateY(-5px);
}
.homebox05 .slide .box:hover .inf .nam a {
  color: var(--color-main);
}
.homebox05 .slide .box .img a {
  display: block;
  width: 100%;
}
.homebox05 .slide .box .img img {
  display: block;
  width: 100%;
}
.homebox05 .slide .box .inf {
  padding: 20px 15px;
}
@media (max-width: 800px) {
  .homebox05 .slide .box .inf {
    padding: 3vw;
  }
}
.homebox05 .slide .box .inf .nam {
  font-size: var(--fsize-txt);
}
@media (max-width: 800px) {
  .homebox05 .slide .box .inf .nam {
    font-size: var(--fsize-base);
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
}
.homebox05 .slide .box .inf .nam a {
  color: var(--color-0);
}
@media (max-width: 800px) {
  .homebox05 .slide .box .inf .nam a {
    color: var(--color-3);
  }
}
.homebox05 .slide .box .inf .nam a:hover {
  color: var(--color-main);
}
.homebox06 .list02 {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}
.homebox06 .list02 .item {
  background: var(--color-white);
}
.homebox06 .list02 .item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.homebox06 .list02 .item .img a {
  display: block;
  width: 100%;
}
.homebox06 .list02 .item .img img {
  display: block;
  width: 100%;
}
.homebox06 .list02 .item .inf {
  display: flex;
  align-items: center;
  padding: 20px 15px;
}
.homebox06 .list02 .item .inf strong {
  color: var(--color-main);
  font-size: calc(var(--fsize-base) * 1.5);
  font-weight: 500;
}
.homebox06 .list02 .item .inf s {
  font-size: var(--fsize-base);
  color: var(--color-9);
  margin: 0 20px;
}
.homebox06 .list02 .item .inf span {
  font-size: var(--fsize-base);
  color: var(--color-main);
  font-weight: 500;
}
.homebox07 .list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
@media (max-width: 800px) {
  .homebox07 .list {
    gap: 2vw;
  }
}
.homebox08.inpro .hd {
  padding: 0 20px;
}
.homebox08.inpro .hd .tit .nam {
  font-size: var(--fsize-large);
  color: var(--color-6);
  font-weight: 700;
}
.homebox08.inpro .list03 {
  margin-top: var(--gap-base);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--gap-small);
}
@media (max-width: 800px) {
  .homebox08.inpro .list03 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.homebox08 .hd .lin .swiper-button-next,
.homebox08 .hd .lin .swiper-button-prev {
  width: 24px;
  margin: 0 4px;
}
.homebox08 .hd .lin .swiper-button-next:after,
.homebox08 .hd .lin .swiper-button-prev:after {
  width: 24px;
  height: 24px;
}
.homebox08 .list03 {
  overflow: hidden;
  margin-top: 30px;
}
.homebox08 .list03.listms {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--gap-base);
}
@media (max-width: 800px) {
  .homebox08 .list03.listms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.homebox08 .list03.listms2 {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap-base);
}
@media (max-width: 800px) {
  .homebox08 .list03.listms2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.homebox08 .list03.listms2 .box .inf .pri span {
  display: none;
}
.homebox08 .list03.listms2 .box .inf .simg .it {
  padding: 0 !important;
}
.homebox08 .list03 .box.itemout .img a {
  position: relative;
}
.homebox08 .list03 .box.itemout .img a:after {
  position: absolute;
  content: "Out of Stock";
  color: var(--color-white);
  padding: var(--gap-base);
  border-radius: var(--gap-mini);
  font-size: var(--fsize-base);
  background: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  top: 50%;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%) translateY(-50%);
}
.homebox08 .list03 .box .img {
  position: relative;
}
.homebox08 .list03 .box .img a {
  display: block;
  width: 100%;
}
.homebox08 .list03 .box .img a.wishico {
  width: 20px;
  height: 20px;
  padding: var(--gap-small);
  background: var(--color-white);
  border-radius: 50%;
  position: absolute;
  top: var(--gap-base);
  right: var(--gap-base);
}
.homebox08 .list03 .box .img a.wishico::after {
  display: none;
}
.homebox08 .list03 .box .img a.wishico img {
  display: block;
  width: 100%;
  height: 100%;
}
.homebox08 .list03 .box .img a.wishico img.w1 {
  display: block;
}
.homebox08 .list03 .box .img a.wishico img.w2 {
  display: none;
}
.homebox08 .list03 .box .img a.wishico.on img.w1 {
  display: none;
}
.homebox08 .list03 .box .img a.wishico.on img.w2 {
  display: block;
}
.homebox08 .list03 .box .img img {
  display: block;
  width: 100%;
}
.homebox08 .list03 .box .img .cov {
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  color: var(--color-white);
  background: url(../img/dimg/flashcov.png) no-repeat left bottom;
  background-size: 100% 56px;
  box-sizing: border-box;
  padding: 0 0 6px 20px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 800px) {
  .homebox08 .list03 .box .img .cov {
    height: 40px;
    background-size: 100% 40px;
    padding: 0 0 4px 10px;
  }
}
.homebox08 .list03 .box .img .cov .pri {
  flex: 2;
}
.homebox08 .list03 .box .img .cov .pri strong {
  font-size: var(--fsize-h3);
}
@media (max-width: 800px) {
  .homebox08 .list03 .box .img .cov .pri strong {
    font-size: var(--fsize-large);
    padding-bottom: 4px;
    display: block;
  }
}
.homebox08 .list03 .box .img .cov .pri span {
  display: block;
  font-size: var(--fsize-small);
}
@media (max-width: 800px) {
  .homebox08 .list03 .box .img .cov .pri span {
    display: none;
  }
}
.homebox08 .list03 .box .img .cov .clo {
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fsize-txt);
}
@media (max-width: 800px) {
  .homebox08 .list03 .box .img .cov .clo {
    font-size: var(--fsize-small);
  }
}
.homebox08 .list03 .box .img .cov .clo img {
  display: block;
  width: 18px;
  margin-right: 4px;
}
@media (max-width: 800px) {
  .homebox08 .list03 .box .img .cov .clo img {
    width: 14px;
  }
}
.homebox08 .list03 .box .inf {
  padding: 15px 10px;
}
.homebox08 .list03 .box .inf .sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fsize-small);
  color: var(--color-6);
}
.homebox08 .list03 .box .inf .nam {
  font-size: calc(var(--fsize-base) * 1.02);
  font-weight: 500;
  margin: 15px 0;
}
.homebox08 .list03 .box .inf .nam a {
  color: var(--color-0);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.homebox08 .list03 .box .inf .nam a:hover {
  color: var(--color-main);
}
.homebox08 .list03 .box .inf .tip {
  font-size: var(--fsize-small);
  color: var(--color-6);
  margin: 8px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.homebox08 .list03 .box .inf .tip a {
  display: flex;
  align-items: center;
}
.homebox08 .list03 .box .inf .tip img {
  margin-left: 4px;
  width: 14px;
  display: block;
}
.homebox08 .list03 .box .inf .tip .save {
  margin-left: auto;
}
@media (max-width: 1600px) {
  .homebox08 .list03 .box .inf .tip .save {
    display: none;
  }
}
.homebox08 .list03 .box .inf .pri {
  margin-bottom: var(--gap-small);
}
.homebox08 .list03 .box .inf .pri strong {
  color: var(--color-main);
  font-size: var(--fsize-h3);
  font-weight: 700;
}
@media (max-width: 800px) {
  .homebox08 .list03 .box .inf .pri strong {
    font-size: var(--fsize-large);
  }
}
.homebox08 .list03 .box .inf .pri s {
  font-size: var(--fsize-base);
  color: var(--color-9);
  margin: 0 var(--gap-small);
}
.homebox08 .list03 .box .inf .pri span {
  font-size: var(--fsize-base);
  color: var(--color-main);
  font-weight: 500;
}
@media (max-width: 1600px) {
  .homebox08 .list03 .box .inf .pri span {
    display: none;
  }
}
.homebox08 .list03 .box .inf .simg {
  display: flex;
  margin-bottom: var(--gap-small);
  height: 32px;
}
.homebox08 .list03 .box .inf .simg .it {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: var(--gap-mini);
  border: 1px solid var(--color-border);
  margin-right: var(--gap-mini);
  overflow: hidden;
}
.homebox08 .list03 .box .inf .simg .it.on {
  border: 1px solid var(--color-main);
  box-shadow: var(--color-main) 1px 0 0, var(--color-main) 0 1px 0, var(--color-main) -1px 0 0, var(--color-main) 0 -1px 0;
}
.homebox08 .list03 .box .inf .simg .it img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.homebox08 .list03 .box .inf .sta {
  display: flex;
  align-items: center;
  margin-bottom: var(--gap-large);
}
.homebox08 .list03 .box .inf .sta i {
  display: block;
  width: 12px;
  height: 12px;
}
.homebox08 .list03 .box .inf .sta i svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #e8e8e8;
}
.homebox08 .list03 .box .inf .sta i.on svg {
  fill: var(--color-main);
}
.homebox08 .list03 .box .inf .sta .val {
  margin-left: var(--gap-mini);
  font-size: var(--fsize-small);
}
.homebox08 .list03 .box .inf .sta img {
  margin-right: 4px;
}
.homebox09 {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}
.homebox09 .list {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.homebox09 .list .item {
  display: flex;
  align-items: center;
}
.homebox09 .list .item .ico {
  width: 47px;
  margin-right: 25px;
}
.homebox09 .list .item .ico img {
  display: block;
  width: 100%;
  mix-blend-mode: multiply;
}
.homebox09 .list .item .inf .tit {
  font-size: var(--fsize-base);
  font-weight: 500;
  color: var(--color-0);
}
.homebox09 .list .item .inf .txt {
  font-size: var(--fsize-base);
  color: var(--color-6);
}
.homebox09 .list .line {
  width: 1px;
  height: 120px;
  background: var(--color-border);
}
.footer {
  background: var(--color-0);
  color: var(--color-white);
  padding-top: 60px;
  padding-bottom: 30px;
  overflow: hidden;
}
@media (max-width: 800px) {
  .footer {
    padding-top: 8vw;
  }
}
.footcopy {
  display: flex;
  justify-content: space-between;
}
.footcopy .left {
  font-size: var(--fsize-sma13);
  color: var(--color-9);
}
.footcopy .link {
  font-size: var(--fsize-sma13);
  color: var(--color-9);
}
@media (max-width: 800px) {
  .footcopy .link {
    display: none;
  }
}
.footcopy .link .split {
  margin: 0 4px;
}
.footcopy .link a {
  color: var(--color-9);
}
.footcopy .link a:hover {
  color: var(--color-main);
}
.footsns {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
}
.footsns .left {
  display: flex;
  align-items: center;
}
@media (max-width: 800px) {
  .footsns .left {
    display: none;
  }
}
.footsns .left .nam {
  font-size: var(--fsize-sma13);
  color: var(--color-9);
  margin-right: 5px;
}
.footsns .left .ico {
  margin-right: 30px;
  display: flex;
  align-items: center;
}
.footsns .left .ico img {
  margin: 0 5px;
}
.footsns .right {
  display: flex;
  align-items: center;
}
.footsns .right .nam {
  font-size: var(--fsize-sma13);
  color: var(--color-9);
  margin-right: 5px;
}
.footsns .right .lin {
  display: flex;
  align-items: center;
}
.footsns .right .lin a {
  display: block;
  margin: 0 5px;
}
.footsns .right .lin a:hover {
  opacity: 0.6;
}
.footsns .right .lin img {
  display: block;
}
.footline {
  background: #212121;
  height: 1px;
  margin: 25px 0;
}
.footnav {
  display: flex;
  justify-content: space-between;
}
.footnav .item {
  margin-left: 5%;
}
@media (max-width: 800px) {
  .footnav .item {
    margin-left: 1vw;
  }
  .footnav .item:nth-child(4) {
    display: none;
  }
}
.footnav .item.itbig {
  max-width: 410px;
  margin-left: 0;
}
@media (max-width: 800px) {
  .footnav .item.itbig {
    display: none;
  }
}
.footnav .item.itbig .hd a {
  font-size: var(--fsize-large);
  color: #fff;
}
.footnav .item.itbig .hd a:hover {
  color: var(--color-main);
}
.footnav .item.itbig .fd a {
  font-size: var(--fsize-base);
}
.footnav .item .hd {
  color: var(--color-white);
  font-size: var(--fsize-base);
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .footnav .item .hd {
    font-size: var(--fsize-sma13);
  }
}
.footnav .item .hd:nth-child(3) {
  margin-top: 45px;
}
.footnav .item .td {
  margin: 24px 0;
  font-size: var(--fsize-sma13);
  color: #aaa;
  line-height: 1.5;
}
.footnav .item .fd a {
  font-size: var(--fsize-base);
  color: var(--color-white);
  text-decoration: underline;
}
.footnav .item .fd a:hover {
  color: var(--color-main);
}
.footnav .item .bd {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  font-size: var(--fsize-sma13);
  line-height: 1.6;
}
@media (max-width: 800px) {
  .footnav .item .bd {
    font-size: var(--fsize-small);
    margin-top: 2vw;
  }
}
.footnav .item .bd a {
  color: var(--color-white);
}
.footnav .item .bd a:hover {
  color: var(--color-main);
}
.footnav .item .bd p {
  margin-bottom: 25px;
}
.footnav .item .bd p:last-child {
  margin-bottom: 0;
}
.footbox {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
@media (max-width: 800px) {
  .footbox {
    display: none;
  }
}
.footbox .seabox {
  grid-column: span 3;
}
.footbox .seabox .tit {
  font-size: var(--fsize-base);
  font-weight: 700;
  color: var(--color-white);
}
.footbox .seabox .txt {
  margin: 12px 0;
  font-size: var(--fsize-sma13);
  line-height: 1.4;
  color: var(--color-9);
}
.footbox .seabox .form {
  height: 56px;
  border: 1px solid var(--color-6);
  display: flex;
}
.footbox .seabox .form:focus-within {
  border-color: var(--color-main);
  box-shadow: var(--color-main) 1px 0 0, var(--color-main) 0 1px 0, var(--color-main) -1px 0 0, var(--color-main) 0 -1px 0;
}
.footbox .seabox .form .key {
  flex: 1;
  border: 0;
  background: var(--color-white);
  box-sizing: border-box;
  padding: 0 25px;
  font-size: var(--fsize-sma13);
  line-height: 56px;
}
.footbox .seabox .form .key::placeholder {
  font-style: italic;
}
.footbox .seabox .form .btn {
  width: 130px;
  line-height: 56px;
  text-align: center;
  border: 0;
  border-left: 1px solid var(--color-6);
  background: transparent;
  color: var(--color-white);
  font-size: var(--fsize-sma13);
  cursor: pointer;
}
.footbox .seabox .form .btn:hover {
  background: var(--color-main);
}
.footbox .seabox .tip {
  margin-top: 18px;
}
.footbox .seabox .tip label {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: var(--fsize-base);
  color: var(--color-9);
}
.footbox .seabox .tip label input {
  margin-right: 6px;
  width: 17px;
  height: 17px;
}
.footbox .morbox {
  grid-column: span 5;
}
.footbox .morbox .tit {
  font-size: var(--fsize-h2);
  color: var(--color-white);
  font-weight: 500;
}
.footbox .morbox .tit strong {
  font-weight: 500;
  color: var(--color-main);
}
.footbox .morbox .sub {
  font-size: var(--fsize-sma13);
  color: #ccc;
}
.footbox .morbox .txt {
  font-size: var(--fsize-sma13);
  line-height: 1.4;
  color: var(--color-9);
  margin: 30px 0;
}
.footbox .morbox .lin {
  font-size: var(--fsize-base);
}
.footbox .morbox .lin .split {
  margin: 0 10px;
  color: var(--color-9);
}
.footbox .morbox .lin a {
  color: #ccc;
  text-decoration: none;
  position: relative;
}
.footbox .morbox .lin a:hover {
  color: var(--color-main);
}
.footbox .morbox .lin a:hover:after {
  background-color: var(--color-main);
}
.footbox .morbox .lin a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #fefefe;
  transition: all 0.3s;
}
.footlogo {
  display: flex;
  align-items: center;
  margin: 60px 0;
}
@media (max-width: 800px) {
  .footlogo {
    margin: 0 0 6vw;
  }
}
.footlogo .line {
  flex: 1;
  height: 1px;
  background: #222222;
}
.footlogo .img {
  display: block;
  width: 200px;
}
.footlogo .img img {
  display: block;
  max-width: 100%;
}
.jtcartip {
  transform: translateY(-5px);
  opacity: 0;
  visibility: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background: var(--color-white);
  width: 360px;
  padding: 16px;
  box-sizing: border-box;
  position: absolute;
  right: 0;
  top: 40px;
  z-index: 99;
}
.jtcartip * {
  transition: none;
}
.jtcartip .plist {
  max-height: 324px;
  overflow-y: auto;
}
.jtcartip .plist .item {
  box-sizing: border-box;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 16px;
}
.jtcartip .plist .item:last-child {
  margin-bottom: 0;
}
.jtcartip .plist .item .top {
  display: flex;
}
.jtcartip .plist .item .top .img {
  width: 100px;
  height: 100px;
  border-radius: 4px;
}
.jtcartip .plist .item .top .img a {
  display: block;
}
.jtcartip .plist .item .top .img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.jtcartip .plist .item .top .inf {
  flex: 1;
  margin-left: 12px;
  line-height: 1.6;
}
.jtcartip .plist .item .top .inf .tit {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: var(--fsize-small);
}
.jtcartip .plist .item .top .inf .opt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: var(--fsize-small);
}
.jtcartip .plist .item .top .inf .rat {
  font-size: var(--fsize-small);
  display: flex;
  align-items: center;
}
.jtcartip .plist .item .top .inf .rat .sta {
  display: flex;
  align-items: center;
}
.jtcartip .plist .item .top .inf .rat .sta i {
  width: 12px;
  height: 12px;
  color: #e8e8e8;
}
.jtcartip .plist .item .top .inf .rat .sta i svg {
  width: 100%;
  height: 100%;
}
.jtcartip .plist .item .top .inf .rat .sta i.on {
  color: #ffb400;
}
.jtcartip .plist .item .top .inf .rat .val {
  margin-left: 4px;
}
.jtcartip .plist .item .top .inf .rat .num {
  margin-left: 8px;
  text-decoration: underline;
}
.jtcartip .plist .item .top .inf .rat .num:hover {
  text-decoration: none;
}
.jtcartip .plist .item .top .inf .pri .pbox {
  display: flex;
  align-items: center;
}
.jtcartip .plist .item .top .inf .pri .pbox .price {
  font-size: var(--fsize-txt);
  font-weight: 700;
}
.jtcartip .plist .item .top .inf .pri .pbox .tag {
  font-size: var(--fsize-small);
  margin-left: 4px;
  text-decoration: line-through;
}
.jtcartip .plist .item .top .inf .pri .save {
  font-size: var(--fsize-small);
  color: var(--color-red);
}
.jtcartip .plist .item .bottom {
  display: flex;
  margin-top: 8px;
}
.jtcartip .plist .item .bottom .num {
  border: 1px solid var(--color-border);
  height: 28px;
  box-sizing: border-box;
  width: 100px;
  display: flex;
  font-size: var(--fsize-base);
}
.jtcartip .plist .item .bottom .num a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  text-decoration: none;
  font-weight: bold;
}
.jtcartip .plist .item .bottom .num a:hover {
  background: var(--color-bg);
}
.jtcartip .plist .item .bottom .num .ipt {
  border: 0;
  line-height: 28px;
  flex: 1;
  width: 100%;
  font-weight: 500;
  text-align: center;
}
.jtcartip .plist .item .bottom .txt {
  margin-left: 12px;
  flex: 1;
  font-size: var(--fsize-small);
  display: flex;
  align-items: center;
}
.jtcartip .plist .item .bottom .txt p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.jtcartip .plist .item .bottom .txt p.g {
  color: #257039;
  margin-right: 6px;
  font-weight: 500;
  display: block;
  white-space: nowrap;
}
.jtcartip .plist .item .bottom .too {
  width: 28px;
}
.jtcartip .plist .item .bottom .too a {
  display: flex;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.jtcartip .plist .item .bottom .too a:hover {
  background: var(--color-bg);
}
.jtcartip .psumm .item {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fsize-base);
}
.jtcartip .psumm .item:last-child {
  font-weight: bold;
  font-size: var(--fsize-txt);
  border-top: 1px solid var(--color-border);
}
.jtcartip .btng {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.jtcartip .btng .btn {
  display: flex;
  height: 40px;
  flex: 50%;
  font-size: var(--fsize-base);
  box-sizing: border-box;
  border: 1px solid var(--color-0);
  color: var(--color-0);
  text-decoration: none;
  border-radius: 20px;
  margin-right: 8px;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 500;
}
.jtcartip .btng .btn:hover {
  opacity: 0.8;
}
.jtcartip .btng .btn:last-child {
  margin-right: 0;
}
.jtcartip .btng .btn.on {
  background: var(--color-0);
  color: var(--color-white);
}
.jtdrawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 0;
  height: 100%;
  transition: none;
}
.jtdrawer > * {
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1), box-shadow 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}
.jtdrawer .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(5px) saturate(180%);
}
.jtdrawer .content {
  width: 458px;
  transform: translateX(100%);
  background: var(--color-white);
  position: absolute;
  right: 0;
  height: 100%;
  overflow-y: auto;
}
@media (max-width: 800px) {
  .jtdrawer .content {
    width: 100vw;
    height: 90vh;
    bottom: 0;
    border-radius: 4vw 4vw 0 0;
    transform: translateY(100%);
  }
}
.jtdrawer .content .hd {
  position: sticky;
  top: 0;
  z-index: 99;
  height: 48px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  background: var(--color-white);
}
.jtdrawer .content .hd .cls {
  width: 48px;
  display: flex;
  justify-content: center;
  height: 48px;
  align-items: center;
}
.jtdrawer .content .hd .cls:hover {
  background: var(--color-bg);
}
.jtdrawer .content .hd .cls:hover img {
  transform: rotate(90deg);
}
.jtdrawer .content .hd .tit {
  flex: 1;
  text-align: center;
  font-size: var(--fsize-large);
  font-weight: 700;
}
.jtdrawer .content .bd {
  padding: 24px;
}
.jtdrawer .content .bd .it {
  margin-bottom: 24px;
}
.jtdrawer .content .bd .it:last-child {
  margin-bottom: 0;
}
.jtdrawer .content .bd .ih {
  display: flex;
  align-items: center;
  font-size: var(--fsize-base);
  font-weight: 500;
  margin-bottom: 4px;
}
.jtdrawer .content .bd .ih strong {
  margin-right: 6px;
}
.jtdrawer .content .bd .ih img {
  width: 32px;
  height: 32px;
  display: block;
  margin-right: 8px;
}
.jtdrawer .content .bd .ib {
  font-size: var(--fsize-base);
  line-height: 1.5;
  color: var(--color-6);
}
.jtdrawer .content .bd .ib a {
  margin: 0 4px;
  color: var(--color-main);
  text-decoration: underline;
}
.jtdrawer .content .bd .ib a:hover {
  opacity: 0.6;
}
.jtdrawer.on {
  width: 100%;
}
.jtdrawer.on .mask {
  height: 100%;
  opacity: 1;
}
.jtdrawer.on .content {
  transform: translateX(0);
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
}
@media (max-width: 800px) {
  .jtdrawer.on .content {
    transform: translateY(0);
  }
}
.jtdrawer .tool {
  position: sticky;
  bottom: 0;
  z-index: 9;
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
  background-color: #fff;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.jtdrawer .tool p {
  margin-bottom: 10px;
  font-size: var(--fsize-base);
  color: var(--color-6);
}
.jtdrawer .tool p strong {
  font-weight: 500;
  color: var(--color-main);
}
.jtdrawer .tool .btn {
  cursor: pointer;
  flex: 1;
  height: 48px;
  background: var(--color-0);
  border-radius: 25px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--fsize-txt);
  transition: 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  top: 0;
  text-decoration: none;
  margin-right: 10px;
}
.jtdrawer .tool .btn img {
  margin-left: 6px;
}
.jtdrawer .tool .btn.no {
  background-color: var(--color-white);
  color: var(--color-0);
  border: 1px solid var(--color-0);
}
.jtdrawer .tool .btn:last-child {
  margin-right: 0;
}
.jtdrawer .tool .btn:hover {
  opacity: 0.8;
}
.conbinationbg {
  background-position: center top;
  background-repeat: repeat-y;
}
.conbinationbg .proltit {
  margin: 0 0 4vw;
}
.combinationmore {
  display: flex;
  justify-content: center;
  margin: var(--gap-large) 0;
}
.combinationmore .btn {
  display: block;
  padding: var(--gap-base) var(--gap-h3);
  border: 1px solid var(--color-main);
  border-radius: var(--gap-h1);
  text-decoration: none;
  font-size: var(--fsize-large);
  color: var(--color-main);
  background: var(--color-white);
}
.combinationmore .btn:hover {
  background: var(--color-main);
  color: var(--color-white);
}
.combinationadd {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
}
.combinationadd .add {
  display: block;
  background: rgba(255, 255, 255, 0.9);
  padding: var(--gap-base) var(--gap-h3);
  font-size: var(--fsize-txt);
  color: var(--color-3);
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}
.prolist .main .list .item .img .combinationadd a {
  width: auto;
}
.prolist .main .list .item:hover .combinationadd {
  opacity: 1;
}
.newmoreadd {
  display: block;
  width: 100%;
  margin-top: var(--gap-large);
}
@media (max-width: 800px) {
  .newmoreadd {
    width: 94vw;
  }
}
.newmoreadd .it {
  position: relative;
  overflow: hidden;
}
.newmoreadd .it:hover {
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.newmoreadd .it:hover .img {
  transform: scale(1.05);
}
.newmoreadd .it .img img {
  display: block;
  width: 100%;
}
.newmoreadd .it .inf {
  position: absolute;
  top: 6%;
  left: 6%;
  color: var(--color-white);
  line-height: 1.6;
  font-size: var(--fsize-txt);
}
.newmoreadd .it .inf .ina {
  font-weight: bold;
}
.writebox .probox {
  display: flex;
}
.writebox .probox .img {
  width: 78px;
  height: 78px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 16px;
}
.writebox .probox .img img {
  display: block;
  width: 100%;
  height: 100%;
}
.writebox .probox .inf {
  flex: 1;
}
.writebox .probox .inf .tit {
  font-size: var(--fsize-base);
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.writebox .probox .inf .sta {
  margin-top: 10px;
}
.writebox .probox .inf .sta #J_star2 {
  width: 100px;
  position: relative;
}
.writebox .probox .inf .sta #J_star2 path {
  fill: var(--color-border);
}
.writebox .probox .inf .sta #J_star2 svg {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.writebox .probox .inf .sta #J_star2 .s02 {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
}
.writebox .probox .inf .sta #J_star2 .s02 path {
  fill: var(--color-main);
}
.writebox .formitem {
  margin-top: 20px;
}
.writebox .formitem .nam {
  font-size: var(--fsize-base);
  font-weight: 700;
  color: var(--color-0);
}
.writebox .formitem .txt {
  font-size: var(--fsize-sma13);
  color: var(--color-6);
  margin-top: 10px;
}
.writebox .formitem .mar {
  font-size: var(--fsize-sma13);
  color: var(--color-6);
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.writebox .formitem .mar span {
  margin-right: 10px;
}
.writebox .formitem .mar span:before {
  content: "·";
  margin-right: 4px;
}
.writebox .formitem .ite {
  margin-top: 10px;
}
.writebox .formitem .ite .textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  padding: 10px;
  font-size: var(--fsize-base);
  line-height: 1.4;
  box-sizing: border-box;
  height: 100px;
}
.writebox .formitem .ite .textarea:focus {
  border-color: var(--color-main);
  box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
}
.writebox .formitem .ite .ipt {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  padding: 0 10px;
  line-height: 40px;
  font-size: var(--fsize-base);
  box-sizing: border-box;
}
.writebox .formitem .ite .ipt:focus {
  border-color: var(--color-main);
  box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
}
a.newhand {
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-main);
  border-radius: 1px solid var(--color-red);
  display: block;
  text-align: center;
  border-radius: var(--gap-mini);
  padding: var(--gap-mini) var(--gap-small);
  text-decoration: none;
  position: relative;
  font-size: var(--fsize-small);
}
a.newhand::after {
  content: "";
  width: var(--gap-large);
  height: var(--gap-large);
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../img/dimg/icon_p_hand.svg) no-repeat center;
  background-size: cover;
  transform: translateX(30%) translateY(20%);
  opacity: 0;
  transition: all 0.3s;
}
a.newhand:hover {
  text-decoration: none;
  color: var(--color-white);
}
a.newhand:hover::after {
  opacity: 1;
}
.qawrap .sea {
  border: 1px solid var(--color-0);
  height: 46px;
  line-height: 46px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
}
.qawrap .sea .ipt {
  flex: 1;
  border: 0;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: var(--fsize-base);
  color: var(--color-0);
}
.qawrap .sea .btn {
  border: 0;
  text-indent: -9999px;
  display: block;
  background: var(--color-0) url(../img/seaicon2.svg) no-repeat center;
  width: 60px;
  cursor: pointer;
}
.qawrap .sea .btn:hover {
  opacity: 0.6;
}
.qawrap .info {
  margin: 20px 0;
  font-size: var(--fsize-base);
  color: var(--color-6);
  display: flex;
  align-items: center;
}
.qawrap .info img {
  margin-right: 6px;
}
.qawrap .qalist .item {
  background: var(--color-white);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  margin-top: 16px;
  padding: 16px;
  font-size: var(--fsize-base);
  line-height: 1.4;
}
.qawrap .qalist .item .que {
  font-weight: 500;
  color: var(--color-0);
}
.qawrap .qalist .item .ans {
  color: var(--color-6);
  margin-top: 10px;
}
.qawrap .qalist .item .btn {
  margin-top: 15px;
}
.qawrap .qalist .item .btn .hel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  box-sizing: border-box;
  height: 40px;
  border: 1px solid var(--color-0);
  color: var(--color-0);
  font-size: var(--fsize-base);
  font-weight: 500;
  text-decoration: none;
  border-radius: 20px;
}
.qawrap .qalist .item .btn .hel svg {
  margin-right: 6px;
}
.qawrap .qalist .item .btn .hel svg path {
  fill: var(--color-0);
}
.qawrap .qalist .item .btn .hel:hover {
  opacity: 0.8;
}
.qawrap .qalist .item .btn .hel.on {
  background: var(--color-main);
  border-color: var(--color-main);
  color: var(--color-white);
}
.qawrap .qalist .item .btn .hel.on svg path {
  fill: var(--color-white);
}
.qawrap .qalist .item .fi {
  margin-top: 10px;
}
.qawrap .qalist .item .fi:first-child {
  margin-top: 0;
}
.qawrap .qalist .item .fi .textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  padding: 10px;
  font-size: var(--fsize-base);
  line-height: 1.4;
  box-sizing: border-box;
  height: 100px;
}
.qawrap .qalist .item .fi .textarea:focus {
  border-color: var(--color-main);
  box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
}
.qawrap .qalist .item .fi .ipt {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  padding: 0 10px;
  line-height: 40px;
  font-size: var(--fsize-base);
  box-sizing: border-box;
}
.qawrap .qalist .item .fi .ipt:focus {
  border-color: var(--color-main);
  box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
}
.breadcrumb {
  display: flex;
  align-items: center;
  margin: 20px 0;
  font-size: var(--fsize-sma13);
  color: var(--color-6);
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 800px) {
  .breadcrumb {
    margin: 3vw 0;
    font-size: var(--fsize-small);
    flex-wrap: wrap;
    line-height: 1.6;
  }
}
.breadcrumb .it {
  display: flex;
  align-items: center;
}
.breadcrumb .it a {
  color: var(--color-9);
  display: flex;
  align-items: center;
  text-decoration: underline;
}
.breadcrumb .it a img {
  margin-right: 4px;
  display: block;
  width: 16px;
}
.breadcrumb .it a:hover {
  color: var(--color-main);
  text-decoration: underline;
}
.breadcrumb .it:last-child a {
  text-decoration: none;
}
.breadcrumb .it::after {
  content: ">";
  font-family: simsun;
  margin: 0 6px;
}
.breadcrumb .it:last-child::after {
  display: none;
}
.proltit {
  font-size: calc(var(--fsize-h1) * 1.5);
  color: var(--color-0);
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .proltit {
    font-size: var(--fsize-h3);
    margin: 8vw 0 0;
  }
}
.prolist {
  display: flex;
}
.prolist .side {
  width: 226px;
  margin-right: 40px;
}
@media (max-width: 800px) {
  .prolist .side {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 20vw;
    z-index: 103;
    background: var(--color-white);
    padding: 3vw;
    width: 100%;
    margin: 0;
    overflow-y: auto;
    box-sizing: border-box;
    transform: translateY(100%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 4vw 4vw 0 0;
    visibility: hidden;
  }
  .prolist .side.on {
    visibility: visible;
    transform: translateY(0);
  }
}
.prolist .side .hd {
  font-size: var(--fsize-base);
  font-weight: 500;
  color: var(--color-0);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0 16px;
  display: flex;
  align-items: center;
}
.prolist .side .hd .cls {
  display: none;
}
@media (max-width: 800px) {
  .prolist .side .hd .cls {
    display: block;
    font-size: var(--fsize-h2);
    text-decoration: none;
    margin-left: auto;
    padding: 0 var(--gap-base);
    color: var(--color-0);
  }
}
.prolist .side .bd .it {
  border-bottom: 1px solid var(--color-border);
}
.prolist .side .bd .it.mshow {
  display: none;
}
@media (max-width: 800px) {
  .prolist .side .bd .it.mshow {
    display: block;
  }
}
.prolist .side .bd .it .ih {
  padding: 8px 0;
  position: relative;
  font-size: var(--fsize-base);
  color: var(--color-0);
  font-weight: 700;
  cursor: pointer;
}
.prolist .side .bd .it .ih span {
  font-size: var(--fsize-large);
  font-weight: bold;
  color: var(--color-0);
  position: absolute;
  right: 0;
  padding: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.prolist .side .bd .it .ih span::after {
  content: "+";
}
.prolist .side .bd .it .ih.on span::after {
  content: "-";
}
.prolist .side .bd .it .ih.checked::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-main);
  border-radius: 50%;
  display: inline-block;
  transform: translate(4px, -4px);
}
.prolist .side .bd .it .ib {
  padding-bottom: 10px;
  transition: none;
}
.prolist .side .bd .it .ib .box {
  max-height: 176px;
  overflow-y: auto;
}
@media (max-width: 800px) {
  .prolist .side .bd .it .ib .box {
    max-height: none;
  }
}
.prolist .side .bd .it .ib .box.radio .bi .txt:hover:before {
  background-image: url(../img/dimg/radio.svg);
}
.prolist .side .bd .it .ib .box.radio .bi .txt:before {
  background-image: url(../img/dimg/radio.svg);
}
.prolist .side .bd .it .ib .box.radio .bi input:checked + label .txt:before {
  background-image: url(../img/dimg/radios.svg);
}
.prolist .side .bd .it .ib .box .bi {
  margin: 8px 0;
}
.prolist .side .bd .it .ib .box .bi .txt {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: var(--fsize-sma13);
  height: 20px;
  color: var(--color-0);
}
.prolist .side .bd .it .ib .box .bi .txt span {
  margin-left: 6px;
}
@media (max-width: 800px) {
  .prolist .side .bd .it .ib .box .bi .txt {
    flex-wrap: wrap;
  }
}
.prolist .side .bd .it .ib .box .bi .txt:hover {
  border-color: var(--color-main);
}
.prolist .side .bd .it .ib .box .bi .txt:hover:before {
  background-image: url(../img/dimg/screen01h.svg);
}
.prolist .side .bd .it .ib .box .bi .txt:before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/dimg/screen01n.svg) no-repeat center;
  background-size: cover;
  margin-right: 10px;
}
.prolist .side .bd .it .ib .box .bi input {
  display: none;
}
.prolist .side .bd .it .ib .box .bi input:checked + label .txt:before {
  background-image: url(../img/dimg/screen01.svg);
}
.prolist .main {
  flex: 1;
}
.prolist .main .catebox {
  margin-bottom: 30px;
}
@media (max-width: 800px) {
  .prolist .main .catebox {
    margin-bottom: 6vw;
  }
}
.prolist .main .catebox .hd {
  color: var(--color-0);
  font-size: var(--fsize-h3);
  font-weight: 500;
}
@media (max-width: 800px) {
  .prolist .main .catebox .hd {
    font-size: var(--fsize-large);
  }
}
.prolist .main .catebox .bd {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
  margin-top: 20px;
}
@media (max-width: 800px) {
  .prolist .main .catebox .bd {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 800px) and (max-width: 800px) {
  .prolist .main .catebox .bd {
    margin-top: 3vw;
  }
}
.prolist .main .catebox .bd .it .ia {
  display: block;
  text-decoration: none;
  background-color: var(--color-white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 6px;
}
.prolist .main .catebox .bd .it .ia:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.prolist .main .catebox .bd .it .img img {
  display: block;
  width: 100%;
}
.prolist .main .catebox .bd .it .inf {
  padding: 20px;
}
.prolist .main .catebox .bd .it .inf .nam {
  font-size: var(--fsize-txt);
}
@media (max-width: 800px) {
  .prolist .main .catebox .bd .it .inf .nam {
    font-size: var(--fsize-base);
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
}
.prolist .main .filter {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.prolist .main .filter .attr {
  display: flex;
  flex-wrap: wrap;
}
.prolist .main .filter .attr .num {
  height: 30px;
  display: flex;
  align-items: center;
  font-size: var(--fsize-base);
  margin: 5px;
  color: var(--color-0);
}
@media (max-width: 800px) {
  .prolist .main .filter .attr .num {
    font-size: var(--fsize-small);
  }
}
.prolist .main .filter .attr .ai {
  cursor: pointer;
  height: 30px;
  display: flex;
  padding: 0 10px;
  align-items: center;
  font-size: var(--fsize-base);
  border: 1px solid var(--color-border);
  border-radius: 15px;
  margin-right: 10px;
  margin: 5px;
  box-sizing: border-box;
}
.prolist .main .filter .attr .ai:hover {
  background-color: var(--color-bg);
}
.prolist .main .filter .attr .ai span {
  margin-right: 4px;
}
.prolist .main .filter .attr .ai::after {
  content: "×";
  font-size: var(--fsize-h3);
  font-weight: 300;
}
.prolist .main .filter .attr .ai.all {
  color: var(--color-main);
  border-color: var(--color-main);
}
.prolist .main .filter .attr .ai.all::after {
  content: "";
}
.prolist .main .filter .sort {
  display: flex;
  align-items: center;
}
.prolist .main .filter .sort .type {
  display: flex;
  margin-right: 8px;
}
@media (max-width: 800px) {
  .prolist .main .filter .sort .type {
    display: none;
  }
}
.prolist .main .filter .sort .type a {
  display: block;
  opacity: 0.3;
  margin: 0 4px;
}
.prolist .main .filter .sort .type a.on {
  opacity: 1;
}
.prolist .main .filter .sort .filterbtn {
  background: var(--color-0);
  border-radius: 40px;
  line-height: 30px;
  padding: 0 20px;
  font-size: var(--fsize-small);
  color: var(--color-white);
  cursor: pointer;
  display: none;
  align-items: center;
}
.prolist .main .filter .sort .filterbtn img {
  margin-right: 10px;
}
@media (max-width: 800px) {
  .prolist .main .filter .sort .filterbtn {
    display: flex;
  }
}
.prolist .main .filter .sort .by {
  display: flex;
  align-items: center;
  font-size: var(--fsize-base);
}
@media (max-width: 800px) {
  .prolist .main .filter .sort .by {
    font-size: var(--fsize-small);
    display: none;
  }
}
.prolist .main .filter .sort .by .nam {
  margin-right: 6px;
}
.prolist .main .filter .sort .by .ipt {
  width: 180px;
}
.prolist .main .list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
@media (max-width: 800px) {
  .prolist .main .list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2vw;
  }
}
.prolist .main .list.on {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.prolist .main .list.on .item {
  display: flex;
}
.prolist .main .list.on .item .img {
  width: 200px;
}
.prolist .main .list.on .item .img .cov span {
  font-size: var(--fsize-base);
  left: 12px;
  bottom: 12px;
}
.prolist .main .list.on .item .inf {
  flex: 1;
  padding: 20px 25px;
}
.prolist .main .list.on .item.best .img::after {
  width: 45px;
  height: 45px;
  right: 10px;
  top: 10px;
}
.prolist .main .list .item {
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-white);
}
.prolist .main .list .item:hover {
  box-shadow: 4px 6px 16px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}
@media (max-width: 800px) {
  .prolist .main .list .item:hover {
    transform: translateY(0);
  }
}
.prolist .main .list .item.best .img::after {
  content: "";
  width: 3.4vw;
  height: 3.4vw;
  position: absolute;
  right: 0.5vw;
  top: 0.5vw;
  background: url(../img/dimg/besticon.png) no-repeat center;
  background-size: cover;
}
.prolist .main .list .item.itemout .img a {
  position: relative;
}
.prolist .main .list .item.itemout .img a:after {
  position: absolute;
  content: "Out of Stock";
  color: var(--color-white);
  padding: var(--gap-base);
  border-radius: var(--gap-mini);
  font-size: var(--fsize-base);
  background: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  top: 50%;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%) translateY(-50%);
}
.prolist .main .list .item .img {
  position: relative;
}
.prolist .main .list .item .img a {
  display: block;
  width: 100%;
}
.prolist .main .list .item .img a.wishico {
  width: 20px;
  height: 20px;
  padding: var(--gap-small);
  background: var(--color-white);
  border-radius: 50%;
  position: absolute;
  top: var(--gap-base);
  right: var(--gap-base);
}
.prolist .main .list .item .img a.wishico::after {
  display: none;
}
.prolist .main .list .item .img a.wishico img {
  display: block;
  width: 100%;
  height: 100%;
}
.prolist .main .list .item .img a.wishico img.w1 {
  display: block;
}
.prolist .main .list .item .img a.wishico img.w2 {
  display: none;
}
.prolist .main .list .item .img a.wishico.on img.w1 {
  display: none;
}
.prolist .main .list .item .img a.wishico.on img.w2 {
  display: block;
}
.prolist .main .list .item .img img {
  display: block;
  width: 100%;
}
.prolist .main .list .item .img .cov {
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  color: var(--color-white);
  background: url(../img/dimg/flashcov.png) no-repeat left bottom;
  background-size: 100% 56px;
  box-sizing: border-box;
  padding: 0 0 6px 20px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 800px) {
  .prolist .main .list .item .img .cov {
    height: 40px;
    background-size: 100% 40px;
    padding: 0 0 4px 10px;
  }
}
.prolist .main .list .item .img .cov .pri {
  flex: 2;
}
.prolist .main .list .item .img .cov .pri strong {
  font-size: var(--fsize-h3);
}
@media (max-width: 800px) {
  .prolist .main .list .item .img .cov .pri strong {
    font-size: var(--fsize-large);
    padding-bottom: 4px;
    display: block;
  }
}
.prolist .main .list .item .img .cov .pri span {
  display: block;
  font-size: var(--fsize-small);
}
@media (max-width: 800px) {
  .prolist .main .list .item .img .cov .pri span {
    display: none;
  }
}
.prolist .main .list .item .img .cov .clo {
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fsize-txt);
}
@media (max-width: 800px) {
  .prolist .main .list .item .img .cov .clo {
    font-size: var(--fsize-small);
  }
}
.prolist .main .list .item .img .cov .clo img {
  display: block;
  width: 18px;
  margin-right: 4px;
}
@media (max-width: 800px) {
  .prolist .main .list .item .img .cov .clo img {
    width: 14px;
  }
}
.prolist .main .list .item .inf {
  padding: 15px 10px;
}
.prolist .main .list .item .inf .sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fsize-small);
  color: var(--color-6);
}
.prolist .main .list .item .inf .nam {
  font-size: calc(var(--fsize-base) * 1.02);
  font-weight: 500;
  margin: 15px 0;
}
.prolist .main .list .item .inf .nam a {
  color: var(--color-0);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.prolist .main .list .item .inf .nam a:hover {
  color: var(--color-main);
}
.prolist .main .list .item .inf .tip {
  font-size: var(--fsize-small);
  color: var(--color-6);
  margin: 8px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.prolist .main .list .item .inf .tip img {
  margin-left: 4px;
  width: 14px;
}
.prolist .main .list .item .inf .tip .save {
  margin-left: auto;
}
@media (max-width: 800px) {
  .prolist .main .list .item .inf .tip .save {
    display: none;
  }
}
.prolist .main .list .item .inf .pri {
  margin-bottom: var(--gap-small);
}
.prolist .main .list .item .inf .pri strong {
  color: var(--color-main);
  font-size: var(--fsize-h3);
  font-weight: 700;
}
@media (max-width: 800px) {
  .prolist .main .list .item .inf .pri strong {
    font-size: var(--fsize-large);
  }
}
.prolist .main .list .item .inf .pri s {
  font-size: var(--fsize-base);
  color: var(--color-9);
  margin: 0 var(--gap-small);
}
.prolist .main .list .item .inf .pri span {
  font-size: var(--fsize-base);
  color: var(--color-main);
  font-weight: 500;
}
@media (max-width: 800px) {
  .prolist .main .list .item .inf .pri span {
    display: none;
  }
}
.prolist .main .list .item .inf .simg {
  display: flex;
  margin-bottom: var(--gap-small);
  height: 32px;
}
.prolist .main .list .item .inf .simg .it {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: var(--gap-mini);
  border: 1px solid var(--color-border);
  margin-right: var(--gap-mini);
  overflow: hidden;
}
@media (max-width: 800px) {
  .prolist .main .list .item .inf .simg .it {
    width: 24px;
    height: 24px;
    margin-right: var(--gap-small);
  }
}
.prolist .main .list .item .inf .simg .it.on {
  border: 1px solid var(--color-main);
  box-shadow: var(--color-main) 1px 0 0, var(--color-main) 0 1px 0, var(--color-main) -1px 0 0, var(--color-main) 0 -1px 0;
}
.prolist .main .list .item .inf .simg .it img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.prolist .main .list .item .inf .sta {
  display: flex;
  align-items: center;
  margin-bottom: var(--gap-large);
}
.prolist .main .list .item .inf .sta i {
  display: block;
  width: 12px;
  height: 12px;
}
.prolist .main .list .item .inf .sta i svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #e8e8e8;
}
.prolist .main .list .item .inf .sta i.on svg {
  fill: var(--color-main);
}
.prolist .main .list .item .inf .sta .val {
  margin-left: var(--gap-mini);
  font-size: var(--fsize-small);
}
.prolist .main .list .item .inf .sta img {
  margin-right: 4px;
}
.shippingtip .item {
  display: flex;
  align-items: center;
  margin-bottom: var(--gap-large);
}
.shippingtip .item .ico {
  width: var(--gap-h2);
  height: var(--gap-h2);
  margin-right: var(--gap-base);
  flex-shrink: 0;
}
.shippingtip .item .ico img {
  display: block;
  width: 100%;
  height: 100%;
}
.shippingtip .item .inf .txt {
  font-size: var(--fsize-base);
}
.shippingtipcon {
  font-size: var(--fsize-base);
  line-height: 1.5;
}
.couponwrap {
  padding: 0 0 var(--gap-h2);
}
.couponwrap .hd {
  font-size: var(--fsize-h2);
  font-weight: bold;
  color: var(--color-3);
  margin-bottom: var(--gap-large);
}
@media (max-width: 800px) {
  .couponwrap .hd {
    font-size: var(--fsize-large);
    margin: var(--gap-h3) 0;
  }
}
.couponwrap .list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-large);
}
@media (max-width: 800px) {
  .couponwrap .list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.couponwrap .list .item {
  background: url(../img/dimg/cuponbg.png) no-repeat center;
  background-size: 100% auto;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 800px) {
  .couponwrap .list .item {
    background-size: 100% 100%;
  }
}
.couponwrap .list .item .morgoods {
  width: 69%;
  padding: var(--gap-base);
  box-sizing: border-box;
}
.couponwrap .list .item .morgoods .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  /*之前是ease-out*/
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.couponwrap .list .item .morgoods .it {
  position: relative;
}
.couponwrap .list .item .morgoods .it .img {
  border-radius: var(--gap-small);
  overflow: hidden;
  padding: var(--gap-mini);
}
.couponwrap .list .item .morgoods .it .img img {
  display: block;
  width: 100%;
}
.couponwrap .list .item .morgoods .it .pri {
  margin-top: var(--gap-small);
  font-size: var(--gap-small);
  text-align: center;
  color: var(--color-3);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
  -webkit-line-clamp: 1;
}
.couponwrap .list .item:hover .mormor {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.couponwrap .list .item .mormor {
  position: absolute;
  background: var(--color-bg);
  left: 0;
  right: 0;
  top: 96%;
  border-radius: 0 0 6px 6px;
  padding: var(--gap-base);
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: var(--gap-small);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
}
.couponwrap .list .item .mormor .mi .img img {
  display: block;
  width: 100%;
}
.couponwrap .list .item.use {
  position: relative;
}
.couponwrap .list .item.use:after {
  content: "";
  display: block;
  width: 12%;
  height: 30%;
  position: absolute;
  right: 0;
  top: 0;
  background: url(../img/dimg/receivedicon.png) no-repeat;
  background-size: 100% auto;
}
.couponwrap .list .item.use .info .btn a {
  background: var(--color-white);
  color: var(--color-red);
}
.couponwrap .list .item .goods {
  flex: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: var(--gap-small);
  box-sizing: border-box;
  padding: var(--gap-base);
}
.couponwrap .list .item .goods .it {
  position: relative;
}
.couponwrap .list .item .goods .it::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateX(100%) translateY(-100%);
  font-size: var(--gap-large);
}
.couponwrap .list .item .goods .it:last-child::after {
  display: none;
}
.couponwrap .list .item .goods .it .img {
  border-radius: var(--gap-small);
  overflow: hidden;
  padding: var(--gap-mini);
}
.couponwrap .list .item .goods .it .img img {
  display: block;
  width: 100%;
}
.couponwrap .list .item .goods .it .pri {
  margin-top: var(--gap-small);
  font-size: var(--gap-small);
  text-align: center;
  color: var(--color-3);
}
.couponwrap .list .item .info {
  flex: 3;
  text-align: center;
}
.couponwrap .list .item .info .pri {
  font-size: calc(var(--fsize-large) * 1.2);
  color: var(--color-0);
  font-weight: bold;
}
@media (max-width: 800px) {
  .couponwrap .list .item .info .pri {
    font-size: var(--fsize-large);
  }
}
.couponwrap .list .item .info .pri strong {
  margin-right: var(--gap-mini);
}
.couponwrap .list .item .info .ove {
  font-size: var(--fsize-base);
  color: var(--color-3);
  margin: var(--gap-mini) 0 var(--gap-small);
}
@media (max-width: 800px) {
  .couponwrap .list .item .info .ove {
    font-size: var(--fsize-small);
  }
}
.couponwrap .list .item .info .btn a {
  display: block;
  width: 80%;
  margin: 0 auto;
  line-height: 30px;
  border: 1px solid var(--color-red);
  background: var(--color-red);
  color: var(--color-white);
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
  font-size: var(--fsize-txt);
  text-decoration: none;
}
@media (max-width: 800px) {
  .couponwrap .list .item .info .btn a {
    font-size: var(--fsize-sma13);
    line-height: 24px;
    width: 70%;
  }
}
.couponwrap .list .item .info .btn a:hover {
  opacity: 0.8;
}
.promotionsbanner img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (max-width: 800px) {
  .promotionsbanner img {
    height: auto;
  }
}
.promotionlistbox {
  margin-bottom: 30px;
}
@media (max-width: 800px) {
  .promotionlistbox {
    margin-bottom: 6vw;
  }
}
.promotionlistbox .hd {
  color: var(--color-3);
  font-size: var(--fsize-h2);
  font-weight: bold;
}
@media (max-width: 800px) {
  .promotionlistbox .hd {
    font-size: var(--fsize-large);
  }
}
.promotionlistbox .bd {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.promotionlistbox .bd.bdbig {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.promotionlistbox .bd.bdbig.bdbig2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 800px) {
  .promotionlistbox .bd.bdbig {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 3vw;
  }
}
.promotionlistbox .bd.bdbig .it .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
}
.promotionlistbox .bd.bdbig .it .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 800px) {
  .promotionlistbox .bd {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 3vw;
  }
}
.promotionlistbox .bd .it .ia {
  display: block;
  text-decoration: none;
  background-color: var(--color-white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 6px;
}
.promotionlistbox .bd .it .ia:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.promotionlistbox .bd .it .img img {
  display: block;
  width: 100%;
}
.promotionlistbox .bd .it .inf {
  padding: 20px;
}
.promotionlistbox .bd .it .inf .nam {
  font-size: var(--fsize-txt);
}
@media (max-width: 800px) {
  .promotionlistbox .bd .it .inf .nam {
    font-size: var(--fsize-base);
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
}
.proitemhead {
  display: flex;
  flex-direction: row-reverse;
  box-sizing: border-box;
  transition: 0.2s ease;
  width: 100%;
  min-height: 400px;
}
@media (max-width: 800px) {
  .proitemhead {
    flex-direction: column;
  }
}
.proitemhead .side {
  box-sizing: border-box;
  width: calc(34.68% - 48px);
  margin-left: 48px;
}
@media (max-width: 800px) {
  .proitemhead .side {
    width: 100%;
    margin-bottom: var(--gap-h3);
    margin-left: 0;
  }
}
.proitemhead .side .box {
  position: sticky;
  top: 0;
  z-index: 9;
  box-sizing: border-box;
  padding-top: 20px;
  margin-top: -20px;
  max-height: 100vh;
  overflow-y: auto;
}
@media (max-width: 800px) {
  .proitemhead .side .box {
    max-height: none;
    overflow: visible;
  }
}
.proitemhead .side .box .top .tit {
  font-size: var(--fsize-h3);
  font-weight: 500;
  color: var(--color-0);
  line-height: 1.4;
}
@media (max-width: 800px) {
  .proitemhead .side .box .top .tit {
    font-size: var(--fsize-large);
  }
}
.proitemhead .side .box .top .tit .label {
  display: inline-block;
  border-radius: 2px;
  float: left;
  margin-top: 0;
  margin-right: 10px;
  font-size: var(--fsize-base);
  color: var(--color-white);
  background: var(--color-red);
  padding: 2px 8px;
  line-height: 20px;
}
.proitemhead .side .box .top .rate {
  font-size: var(--fsize-base);
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.proitemhead .side .box .top .rate .sta {
  display: flex;
  align-items: center;
}
.proitemhead .side .box .top .rate .sta i {
  width: 15px;
  height: 15px;
  margin: 0 1px;
  color: #e8e8e8;
}
.proitemhead .side .box .top .rate .sta i:hover {
  transform: scale(1.1);
}
.proitemhead .side .box .top .rate .sta i svg {
  width: 100%;
  height: 100%;
}
.proitemhead .side .box .top .rate .sta i.on {
  color: #ffb400;
}
.proitemhead .side .box .top .rate .val {
  margin-left: 6px;
  font-weight: 500;
  color: var(--color-0);
}
.proitemhead .side .box .top .rate .num {
  margin-left: 10px;
  text-decoration: underline;
}
@media (max-width: 800px) {
  .proitemhead .side .box .top .rate .num.mshow {
    display: none;
  }
}
.proitemhead .side .box .top .rate .num:hover {
  text-decoration: none;
}
.proitemhead .side .box .top .topbox {
  border-top: 1px solid var(--color-border);
  font-size: var(--fsize-base);
  color: var(--color-3);
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}
.proitemhead .side .box .top .topbox:hover {
  opacity: 0.8;
}
.proitemhead .side .box .top .topbox img {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
}
.proitemhead .side .box .top .topbox span {
  margin-left: 6px;
  font-size: var(--fsize-txt);
  font-family: simsun;
}
.proitemhead .side .box .top .price {
  margin: 20px 0 10px;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
.proitemhead .side .box .top .price strong {
  color: var(--color-main);
  font-size: var(--fsize-h1);
  font-weight: 600;
}
.proitemhead .side .box .top .price s {
  font-size: var(--fsize-base);
  color: var(--color-9);
  margin: 0 15px;
}
.proitemhead .side .box .top .price span {
  font-size: var(--fsize-base);
  color: var(--color-main);
  font-weight: 500;
}
.proitemhead .side .box .top .flash {
  height: 36px;
  padding: 0 12px;
  box-sizing: border-box;
  background: linear-gradient(90deg, #eb191d, #f65327);
  border-radius: 4px;
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fsize-txt);
}
@media (max-width: 800px) {
  .proitemhead .side .box .top .flash {
    font-size: var(--fsize-base);
  }
}
.proitemhead .side .box .top .flash .nam img {
  margin-right: 6px;
}
.proitemhead .side .box .top .flash .num {
  display: flex;
  align-items: center;
  font-size: var(--fsize-base);
}
.proitemhead .side .box .top .flash .num .numblock {
  display: flex;
  align-items: center;
  font-size: var(--fsize-small);
}
.proitemhead .side .box .top .flash .num .numblock .num_n {
  color: var(--color-0);
  background: var(--color-white);
  border-radius: var(--gap-mini);
  padding: 2px var(--gap-mini);
  margin: 0 var(--gap-mini);
  width: var(--gap-base);
  text-align: center;
}
@media (max-width: 800px) {
  .proitemhead .side .box .top .flash .num .numblock .num_n {
    width: var(--gap-h3);
  }
}
.proitemhead .side .box .top .flash .num img {
  margin-right: 10px;
}
.proitemhead .side .box .top .newtip {
  font-size: var(--fsize-large);
  color: var(--color-main);
  margin-top: 25px;
}
.proitemhead .side .box .top .newtip a {
  margin-left: 6px;
  color: var(--color-main);
  text-decoration: underline;
}
.proitemhead .side .box .info {
  margin: 30px 0;
}
.proitemhead .side .box .info .ib {
  margin-top: 16px;
}
.proitemhead .side .box .info .ib .nam {
  font-size: var(--fsize-base);
}
.proitemhead .side .box .info .ib .nam strong {
  font-weight: 700;
}
.proitemhead .side .box .info .ib .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}
.proitemhead .side .box .info .ib .list .li {
  margin: 0 8px 8px 0;
}
.proitemhead .side .box .info .ib .list .li:hover .lwrap .img {
  border-color: var(--color-0);
}
.proitemhead .side .box .info .ib .list .li.no {
  opacity: 0.6;
}
.proitemhead .side .box .info .ib .list .li.no .lwrap {
  cursor: not-allowed;
}
.proitemhead .side .box .info .ib .list .li.no .lwrap .img {
  border: 1px dashed var(--color-border);
}
.proitemhead .side .box .info .ib .list .li.nopic .lwrap {
  width: auto;
}
.proitemhead .side .box .info .ib .list .li.nopic .lwrap .tit {
  border: 1px solid var(--color-border);
  padding: var(--gap-small) var(--gap-base);
  border-radius: var(--gap-mini);
  margin-top: 0;
  position: relative;
}
@media (max-width: 800px) {
  .proitemhead .side .box .info .ib .list .li.nopic .lwrap .tit {
    padding: var(--gap-base) var(--gap-large);
  }
}
.proitemhead .side .box .info .ib .list .li.nopic input {
  display: none;
}
.proitemhead .side .box .info .ib .list .li.nopic input:checked + label .lwrap .tit {
  border: 2px solid var(--color-0);
}
.proitemhead .side .box .info .ib .list .li.nopic input:checked + label .lwrap .tit:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-right-color: var(--color-0);
  border-bottom-color: var(--color-0);
  position: absolute;
  right: 0;
  bottom: 0;
}
.proitemhead .side .box .info .ib .list .li.nopic input:checked + label .lwrap .tit::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(../img/dimg/righticon2.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: 0;
}
.proitemhead .side .box .info .ib .list .li.nopic:hover .lwrap .tit {
  border-color: var(--color-0);
}
.proitemhead .side .box .info .ib .list .li.nopic.no .lwrap .tit {
  border: 1px dashed var(--color-border);
}
.proitemhead .side .box .info .ib .list .li .lwrap {
  cursor: pointer;
  font-size: var(--fsize-sma13);
  color: var(--color-0);
  width: 76px;
}
@media (max-width: 800px) {
  .proitemhead .side .box .info .ib .list .li .lwrap {
    width: 56px;
  }
}
.proitemhead .side .box .info .ib .list .li .lwrap .img {
  padding: 4px;
  border-radius: 6px;
  width: 66px;
  height: 66px;
  border: 1px solid var(--color-border);
  transition: none;
  overflow: hidden;
}
@media (max-width: 800px) {
  .proitemhead .side .box .info .ib .list .li .lwrap .img {
    width: 46px;
    height: 46px;
    padding: 2px;
  }
}
.proitemhead .side .box .info .ib .list .li .lwrap .img img {
  border-radius: 4px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proitemhead .side .box .info .ib .list .li .lwrap .tit {
  font-size: var(--fsize-base);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-top: 6px;
}
@media (max-width: 800px) {
  .proitemhead .side .box .info .ib .list .li .lwrap .tit {
    font-size: var(--fsize-small);
  }
}
.proitemhead .side .box .info .ib .list .li input {
  display: none;
}
.proitemhead .side .box .info .ib .list .li input:checked + label .lwrap .img {
  border: 2px solid var(--color-0);
  padding: 3px;
}
@media (max-width: 800px) {
  .proitemhead .side .box .info .ib .list .li input:checked + label .lwrap .img {
    padding: 1px;
  }
}
.proitemhead .side .box .info .idra {
  margin-top: 8px;
}
.proitemhead .side .box .info .idra .item {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fsize-base);
  color: var(--color-3);
  border: 2px solid var(--color-0);
  height: 50px;
  border-radius: 30px;
  padding: 0 20px;
  cursor: pointer;
}
.proitemhead .side .box .info .idra .item:hover {
  opacity: 0.8;
}
.proitemhead .side .box .info .idra .item img {
  display: block;
  width: 16px;
}
.proitemhead .side .box .tool {
  margin: 24px 0;
}
.proitemhead .side .box .tool .tips {
  font-size: var(--fsize-base);
  color: var(--color-6);
  font-weight: 500;
  margin-bottom: 10px;
}
.proitemhead .side .box .tool .tips span {
  color: var(--color-main);
}
.proitemhead .side .box .tool .acti {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
}
.proitemhead .side .box .tool .acti .num {
  border: 1px solid var(--color-border);
  height: 48px;
  box-sizing: border-box;
  width: 150px;
  display: flex;
  font-size: var(--fsize-txt);
}
@media (max-width: 800px) {
  .proitemhead .side .box .tool .acti .num {
    width: 120px;
  }
}
.proitemhead .side .box .tool .acti .num a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  text-decoration: none;
  font-weight: bold;
}
.proitemhead .side .box .tool .acti .num a:hover {
  background: var(--color-bg);
}
.proitemhead .side .box .tool .acti .num .ipt {
  border: 0;
  line-height: 48px;
  flex: 1;
  font-size: var(--fsize-large);
  width: 100%;
  font-weight: 500;
  text-align: center;
}
.proitemhead .side .box .tool .acti .btn {
  border: 1px solid var(--color-border);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fsize-txt);
  height: 48px;
  margin-left: 8px;
  text-decoration: none;
}
.proitemhead .side .box .tool .acti .btn:hover {
  opacity: 0.8;
}
.proitemhead .side .box .tool .acti .btn.col {
  width: 64px;
  background: url(../img/dimg/colicon.png) no-repeat center;
}
.proitemhead .side .box .tool .acti .btn.col.on {
  background-image: url(../img/dimg/colicon2.png);
}
.proitemhead .side .box .tool .acti .btn.add {
  flex: 1;
  background-color: var(--color-0);
  border-color: var(--color-0);
  color: var(--color-white);
  font-weight: 700;
}
.proitemhead .side .box .free {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  cursor: pointer;
  margin-bottom: 24px;
}
.proitemhead .side .box .free .item {
  display: flex;
  flex: 1;
  align-items: center;
}
.proitemhead .side .box .free .item:hover {
  opacity: 0.6;
}
.proitemhead .side .box .free .item .ico {
  width: 30px;
  height: 30px;
}
.proitemhead .side .box .free .item .ico img {
  display: block;
  width: 100%;
}
.proitemhead .side .box .free .item .inf {
  margin-left: 6px;
}
.proitemhead .side .box .free .item .inf .nam {
  font-size: var(--fsize-base);
  color: var(--color-0);
  font-weight: 500;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.proitemhead .side .box .free .item .inf .txt {
  font-size: var(--fsize-small);
  color: var(--color-6);
  font-weight: 500;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.proitemhead .main {
  width: 65.32%;
  position: relative;
}
@media (max-width: 800px) {
  .proitemhead .main {
    width: 100%;
  }
}
.proitemhead .main .imageGallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 800px) {
  .proitemhead .main .imageGallery {
    display: none;
  }
}
.proitemhead .main .imageGallery.itemout .it:first-child {
  position: relative;
}
.proitemhead .main .imageGallery.itemout .it:first-child::after {
  position: absolute;
  content: "Out of Stock";
  color: var(--color-white);
  padding: var(--gap-large);
  border-radius: var(--gap-mini);
  font-size: var(--fsize-h3);
  background: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.proitemhead .main .imageGallery .it {
  cursor: url(../img/ad9.ico), pointer;
}
.proitemhead .main .imageGallery .it img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proitemhead .main .imageGallery .it.vid video {
  object-fit: cover;
}
.proitemhead .main .imageGallery .it.vid img {
  display: none;
}
.proitemhead .main .imagemore {
  display: flex;
  justify-content: center;
  margin-top: -142px;
  margin-bottom: 20px;
  padding: 50px 0 10px;
  position: relative;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 800px) {
  .proitemhead .main .imagemore {
    display: none;
  }
}
.proitemhead .main .imagemore a {
  display: flex;
  align-items: center;
  padding: 0 46px 0 28px;
  height: 40px;
  border-radius: 10px;
  margin: 20px 0;
  border: 1px solid var(--color-main);
  background: var(--color-main);
  color: var(--color-white);
  font-size: var(--fsize-sma13);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
.proitemhead .main .imagemore a.on::before {
  background: url(../img/dimg/iconup.svg) no-repeat center;
}
.proitemhead .main .imagemore a::before {
  content: "";
  display: block;
  background: url(../img/dimg/icondown.svg) no-repeat center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  bottom: -30px;
  transform: translateX(-50%) translateY(-130%);
  animation: scroll_bar infinite alternate linear;
  animation-duration: 1s;
}
@keyframes scroll_bar {
  0% {
    transform: translateX(-50%) translateY(-130%);
  }
  100% {
    transform: translateX(-50%) translateY(-100%);
  }
}
.proitemhead .main .imagemore a:hover {
  opacity: 0.8;
}
.shipopt {
  margin: var(--gap-base) 0;
}
.shipopt .hd {
  font-size: var(--fsize-base);
  font-weight: bold;
}
.shipopt .list .item {
  font-size: var(--fsize-base);
  margin-top: var(--gap-base);
}
.shipopt .list .item.no .swrap {
  cursor: not-allowed;
}
.shipopt .list .item.no .swrap .con .tit {
  color: var(--color-main);
}
.shipopt .list .item:nth-child(2) .swrap .con .tip {
  display: none;
}
.shipopt .list .item:nth-child(2) .swrap .con .tim {
  display: none;
}
.shipopt .list .item:nth-child(2) input {
  display: none;
}
.shipopt .list .item:nth-child(2) input:checked + label .swrap .con .tip {
  display: block;
}
.shipopt .list .item:nth-child(2) input:checked + label .swrap .con .tim {
  display: block;
}
.shipopt .list .item .swrap {
  display: flex;
  cursor: pointer;
}
.shipopt .list .item .swrap .dot {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #333;
  transition: none;
  margin: var(--gap-mini) var(--gap-small) 0 0;
  flex-shrink: 0;
}
.shipopt .list .item .swrap .con .tit {
  color: var(--color-0);
}
.shipopt .list .item .swrap .con .tit .sp {
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}
.shipopt .list .item .swrap .con .tit .sp:hover {
  text-decoration: none;
}
.shipopt .list .item .swrap .con .tit .ct {
  font-weight: bold;
  cursor: pointer;
}
.shipopt .list .item .swrap .con .tit .ct .J_option_shipping_text_detail {
  color: var(--color-main);
}
.shipopt .list .item .swrap .con .tit .ct:hover {
  text-decoration: underline;
}
.shipopt .list .item .swrap .con .tit .que {
  display: inline-block;
  width: var(--gap-base);
  height: var(--gap-base);
  background: url(../img/dimg/helpicon.svg) no-repeat center;
  background-size: cover;
}
.shipopt .list .item .swrap .con .tip {
  font-size: var(--fsize-base);
  color: #257039;
}
.shipopt .list .item input {
  display: none;
}
.shipopt .list .item input:checked + label .swrap .dot {
  border: 6px solid var(--color-main);
}
.pickcon {
  line-height: 2;
}
.pickcon .layui-input {
  width: 200px;
}
.pickcon p {
  display: flex;
  align-items: center;
  margin: var(--gap-small) 0;
}
.pickcon strong {
  margin-right: var(--gap-small);
  white-space: nowrap;
}
.pickcon .tip {
  background: rgba(248, 214, 185, 0.5);
  border: 1px solid #f8b881;
  font-size: var(--fsize-base);
  line-height: 1.5;
  padding: var(--gap-small);
  border-radius: var(--gap-mini);
  margin-top: var(--gap-base);
}
.sidecoupons .tit {
  text-align: center;
  font-weight: 500;
  font-size: var(--fsize-txt);
  margin-bottom: 20px;
}
.sidecoupons .txt {
  font-size: var(--fsize-base);
  color: var(--color-6);
  line-height: 1.4;
  margin-bottom: 20px;
}
.sidecoupons .apply {
  margin-bottom: 20px;
  display: flex;
}
.sidecoupons .apply .code {
  height: 44px;
  line-height: 42px;
  box-sizing: border-box;
  flex: 1;
  width: 100%;
  border: 1px solid var(--color-border);
  padding: 0 20px;
  border-radius: 4px;
}
.sidecoupons .apply .code:focus {
  border-color: var(--color-main);
}
.sidecoupons .apply .btn {
  border: 0;
  background: var(--color-0);
  border-radius: 4px;
  width: 100px;
  margin-left: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fsize-base);
  font-weight: 700;
  color: var(--color-white);
  cursor: pointer;
}
.sidecoupons .apply .btn:hover {
  opacity: 0.8;
}
.sidecoupons .list .item {
  margin-bottom: 16px;
  border-radius: 0 4px 4px 4px;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.12);
  padding: 0;
}
.sidecoupons .list .item.no {
  cursor: not-allowed;
  filter: grayscale(100%);
}
.sidecoupons .list .item .info {
  display: flex;
  align-items: center;
}
.sidecoupons .list .item .info .off {
  position: relative;
  width: 138px;
  height: 140px;
  font-size: var(--fsize-h3);
  font-weight: 500;
  color: var(--color-white);
  background-image: url(../img/dimg/couponsbg.png);
  background-size: 138px 140px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidecoupons .list .item .info .inf {
  flex: 1;
  height: 140px;
  padding: 12px 16px 0 12px;
  border-bottom: 1px solid #e8e8e8;
  box-sizing: border-box;
  color: var(--color-3);
}
.sidecoupons .list .item .info .inf .code {
  font-weight: 700;
  font-size: var(--fsize-txt);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.sidecoupons .list .item .info .inf .details {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidecoupons .list .item .info .inf .details .nam {
  font-size: var(--fsize-small);
}
.sidecoupons .list .item .info .inf .details .btn {
  background: var(--color-red);
  border-radius: 12px;
  font-size: var(--fsize-base);
  line-height: 24px;
  padding: 0 12px;
  color: var(--color-white);
  box-sizing: border-box;
  font-weight: 500;
  cursor: pointer;
}
.sidecoupons .list .item .info .inf .details .btn:hover {
  opacity: 0.8;
}
.sidecoupons .list .item .info .inf .details .radio {
  cursor: pointer;
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/dimg/radio.svg) no-repeat center;
}
.sidecoupons .list .item .info .inf .details .radio.on {
  background-image: url(../img/dimg/radios.svg);
}
.sidecoupons .list .item .info .inf .tim {
  margin-top: 8px;
  font-size: var(--fsize-small);
  line-height: 16px;
  padding-top: 5px;
  border-top: 1px dashed #e8e8e8;
}
.sidecoupons .list .item .tip {
  padding: 8px 12px;
  font-size: var(--fsize-small);
  position: relative;
  font-weight: 400;
  color: var(--color-9);
  width: 100%;
  box-sizing: border-box;
}
.sidecoupons .list .item .tip .canot_use {
  color: var(--color-3);
}
.mb01block {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-small);
  padding: var(--gap-large);
}
@media (max-width: 800px) {
  .mb01block {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.mb01block .it {
  display: flex;
  align-items: center;
}
.mb01block .it .ico {
  width: var(--gap-h3);
  height: var(--gap-h3);
  padding: var(--gap-small);
}
@media (max-width: 800px) {
  .mb01block .it .ico {
    flex-shrink: 0;
    width: var(--gap-h1);
    height: var(--gap-h1);
  }
}
.mb01block .it .ico img {
  display: block;
  width: 100%;
  height: 100%;
}
.mb01block .it .nam {
  font-size: var(--fsize-txt);
  color: var(--color-0);
  margin-left: var(--gap-small);
}
@media (max-width: 800px) {
  .mb01block .it .nam {
    font-size: var(--fsize-sma13);
  }
}
.sideproopt .probox {
  padding: 12px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  display: flex;
  margin-bottom: 16px;
}
.sideproopt .probox .img {
  display: block;
  width: 124px;
  height: 124px;
  border-radius: 4px;
  object-fit: cover;
}
.sideproopt .probox .imgbox {
  position: relative;
  display: block;
}
.sideproopt .probox .imgbox .label {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 45px;
}
.sideproopt .probox .imgbox .label.l4 {
  width: 28px;
  height: 35px;
}
.sideproopt .probox .imgbox .label img {
  display: block;
  width: 100%;
  height: 100%;
}
.sideproopt .probox .imgbox .label span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fsize-large);
  color: var(--color-white);
  font-weight: 500;
}
.sideproopt .probox .info {
  margin-left: 12px;
  flex: 1;
}
.sideproopt .probox .info .tit {
  font-size: var(--fsize-base);
  font-weight: 400;
  color: var(--color-3);
  line-height: 18px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.sideproopt .probox .info .rat {
  margin-top: 8px;
  font-size: var(--fsize-base);
  display: flex;
  align-items: center;
}
.sideproopt .probox .info .rat .sta {
  display: flex;
  align-items: center;
}
.sideproopt .probox .info .rat .sta i {
  width: 15px;
  height: 15px;
  margin: 0 1px;
  color: #e8e8e8;
}
.sideproopt .probox .info .rat .sta i svg {
  width: 100%;
  height: 100%;
}
.sideproopt .probox .info .rat .sta i.on {
  color: #ffb400;
}
.sideproopt .probox .info .rat .val {
  margin-left: 6px;
  font-weight: 500;
}
.sideproopt .probox .info .pri {
  margin-top: 18px;
}
.sideproopt .probox .info .pri strong {
  color: var(--color-main);
  font-size: var(--fsize-txt);
  font-weight: 700;
}
.sideproopt .probox .info .pri s {
  font-size: var(--fsize-base);
  color: var(--color-9);
  margin: 0 6px;
}
.sideproopt .probox .info .pri span {
  font-size: var(--fsize-base);
  color: var(--color-main);
  font-weight: 300;
  display: block;
  margin-top: 4px;
}
.sideproopt .probox .info .pri.pri2 {
  margin-top: 6px;
}
.sideproopt .probox .info .pri.pri2 span {
  display: inline-block;
}
.sideproopt .probox .info .btn {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
.sideproopt .probox .info .btn .hot {
  line-height: 30px;
  background: rgba(251, 146, 33, 0.1);
  border-radius: 32px;
  font-size: var(--fsize-small);
  font-weight: 400;
  color: var(--color-3);
  display: flex;
  align-items: center;
  padding-right: 16px;
}
.sideproopt .probox .info .btn .hot span {
  border-radius: 32px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  background: rgba(251, 146, 33, 0.1);
}
.sideproopt .probox .info .btn .hot span img {
  display: block;
  width: 20px;
  height: 20px;
}
.sideproopt .probox .info .btn .buy {
  line-height: 30px;
  padding: 0 16px;
  display: block;
  text-decoration: none;
  color: var(--color-white);
  background: var(--color-3);
  border-radius: 32px;
  font-size: var(--fsize-sma13);
  font-weight: 500;
}
.sideproopt .list .item {
  margin-top: 32px;
}
.sideproopt .list .item .ih {
  font-size: var(--fsize-txt);
  color: var(--color-3);
  margin-bottom: 16px;
}
.sideproopt .list .item .ih strong {
  font-weight: 700;
}
.sideproopt .list .item .ih span {
  margin-left: 6px;
  font-weight: 500;
}
.sideproopt .list .item .ib .it {
  margin: 8px 0;
}
.sideproopt .list .item .ib .it.no {
  opacity: 0.8;
}
.sideproopt .list .item .ib .it.no .lwrap {
  cursor: not-allowed;
  border-style: dashed;
}
.sideproopt .list .item .ib .it .lwrap {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: var(--fsize-txt);
  color: var(--color-0);
  padding: 10px 15px;
  box-sizing: border-box;
  border: 1px solid var(--color-border);
  transition: none;
  border-radius: 4px;
}
.sideproopt .list .item .ib .it .lwrap .img {
  margin-right: 20px;
}
.sideproopt .list .item .ib .it .lwrap .img img {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 4px;
}
.sideproopt .list .item .ib .it .lwrap .tit {
  font-weight: 500;
}
.sideproopt .list .item .ib .it .lwrap .inf {
  flex: 1;
}
.sideproopt .list .item .ib .it .lwrap .inf .not_available {
  color: var(--color-main);
  font-size: var(--fsize-sma13);
}
.sideproopt .list .item .ib .it .lwrap .inf .txt {
  font-size: var(--fsize-sma13);
  line-height: 1.4;
  color: var(--color-6);
  margin-top: 4px;
}
.sideproopt .list .item .ib .it .lwrap:before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/dimg/radio.svg) no-repeat center;
  background-size: cover;
  margin-right: 20px;
}
.sideproopt .list .item .ib .it input {
  display: none;
}
.sideproopt .list .item .ib .it input:checked + label .lwrap {
  border-color: var(--color-0);
  box-shadow: var(--color-0) 1px 0 0 inset, var(--color-0) 0 1px 0 inset, var(--color-0) -1px 0 0 inset, var(--color-0) 0 -1px 0 inset;
}
.sideproopt .list .item .ib .it input:checked + label .lwrap:before {
  background-image: url(../img/dimg/radios.svg);
}
body.bg {
  background: var(--color-bg);
}
:root {
  --gap-base: 16px;
  --gap-mini: calc(var(--gap-base) * 0.25);
  --gap-small: calc(var(--gap-base) * 0.5);
  --gap-large: calc(var(--gap-base) * 1.5);
  --gap-h1: calc(var(--gap-base) * 5);
  --gap-h2: calc(var(--gap-base) * 4);
  --gap-h3: calc(var(--gap-base) * 3);
}
@media (max-width: 800px) {
  :root {
    --gap-base: 6px;
  }
}
.commonempty {
  padding: var(--gap-large) 0;
  text-align: center;
}
.commonempty .ico {
  width: 36px;
  margin: 0 auto;
}
.commonempty .ico img {
  display: block;
  width: 100%;
  cursor: default !important;
}
.commonempty .inf {
  margin-top: var(--gap-base);
}
.commonempty .inf .nam {
  font-size: var(--fsize-base);
  color: var(--color-0);
  font-weight: bold;
}
.commonempty .inf .txt {
  font-size: var(--fsize-small);
  color: var(--color-6);
  margin-top: var(--gap-mini);
}
.commonempty .inf .txt a {
  text-decoration: underline;
}
.piclist {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--gap-small);
}
.piclist .pi {
  border: 1px solid var(--color-border);
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background: var(--color-white);
}
.piclist .pi .img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.piclist .pi img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.piclist .pi .del {
  text-decoration: none;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  background: #f30;
  color: var(--color-white);
  font-size: var(--fsize-large);
}
.piclist .pi .upp {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
.piclist .pi .upp:before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--color-9);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.piclist .pi .upp:after {
  content: "";
  width: 1px;
  height: 30px;
  background: var(--color-9);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.loginlayer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  transition: none;
  visibility: hidden;
}
.loginlayer.on {
  visibility: visible;
}
.loginlayer.on .mask {
  opacity: 1;
  height: 100%;
}
.loginlayer.on .content {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%);
}
.loginlayer > * {
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1), box-shadow 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}
.loginlayer .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(5px) saturate(180%);
}
.loginlayer .content {
  width: 458px;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-30%);
  background: var(--color-white);
  position: absolute;
  border-radius: var(--gap-base);
  padding: var(--gap-large);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.loginlayer .content:after {
  content: "×";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  pointer-events: none;
  display: flex;
  width: 40px;
  height: 40px;
  font-size: 30px;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
@media (max-width: 800px) {
  .loginlayer .content {
    width: 80%;
  }
}
.loginlayer .content .tit {
  font-size: var(--fsize-h3);
  font-family: "alibold";
  color: var(--color-3);
}
.loginlayer .content .sub {
  font-size: var(--fsize-base);
  color: var(--color-9);
  margin: 5px 0 20px;
}
.loginlayer .content .form .item {
  margin: 15px 0;
  display: flex;
  gap: 10px;
}
.loginlayer .content .form .item.i2 .ipt {
  width: 50%;
}
.loginlayer .content .form .item .ipt {
  flex: 1;
  line-height: 50px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0 20px 0 50px;
  box-sizing: border-box;
  font-size: var(--fsize-txt);
  color: var(--color-3);
  background: var(--color-bg) url(../img/dimg/loginicon01.svg) no-repeat 20px center;
}
.loginlayer .content .form .item .ipt.i02 {
  background-image: url(../img/dimg/loginicon02.svg);
}
.loginlayer .content .form .item .ipt.ino {
  background-color: var(--color-white);
}
.loginlayer .content .form .item .ipt:focus {
  background-color: var(--color-white);
  border-color: var(--color-main);
}
.loginlayer .content .form .btn {
  text-align: center;
}
.loginlayer .content .form .btn .on {
  display: flex;
  height: 50px;
  width: 100%;
  background: var(--color-main);
  color: var(--color-white);
  justify-content: center;
  align-items: center;
  border: 0;
  font-size: var(--fsize-large);
  border-radius: 4px;
  margin-bottom: 10px;
  font-family: "alibold";
  cursor: pointer;
}
.loginlayer .content .form .btn .on:hover {
  box-shadow: 0 16px 16px rgba(var(--color-rgb-black), 0.06);
  filter: contrast(1.2) saturate(1.1);
}
.loginlayer .content .form .btn .on:active {
  transform: scale(0.96);
}
.loginlayer .content .form .btn .for {
  font-size: var(--fsize-small);
  color: var(--color-main);
}
.loginlayer .content .form .reg {
  text-align: center;
  font-size: var(--fsize-base);
  color: var(--color-6);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.loginlayer .content .form .reg a {
  display: flex;
  height: 26px;
  border-radius: 4px;
  padding: 0 10px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-size: var(--fsize-base);
  color: var(--color-main);
  border: 1px solid var(--color-main);
  margin-left: 10px;
}
.loginlayer .content .form .reg a:hover {
  background: var(--color-bg);
}
.ipinfo .list .item {
  align-items: center;
}
.ipinfo .list .item .ipt {
  flex: 1;
  line-height: 50px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: var(--fsize-txt);
  color: var(--color-3);
}
.ipinfo .list .item .ipt:focus {
  border-color: var(--color-main);
  box-shadow: 1px 0 0 var(--color-main), -1px 0 0 var(--color-main), 0 -1px 0 var(--color-main), 0 1px 0 var(--color-main);
}
.ctm_checkbox .txt {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: var(--fsize-sma13);
  height: 20px;
  color: var(--color-0);
}
.ctm_checkbox .txt span {
  margin-left: 6px;
}
@media (max-width: 800px) {
  .ctm_checkbox .txt {
    flex-wrap: wrap;
  }
}
.ctm_checkbox .txt:hover {
  border-color: var(--color-main);
}
.ctm_checkbox .txt:hover:before {
  background-image: url(../img/dimg/screen01h.svg);
}
.ctm_checkbox .txt:before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/dimg/screen01n.svg) no-repeat center;
  background-size: cover;
  margin-right: 10px;
}
.ctm_checkbox input {
  display: none;
}
.ctm_checkbox input:checked + label .txt:before {
  background-image: url(../img/dimg/screen01.svg);
}
.jtcoupon {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 0;
  height: 100%;
  transition: none;
  display: none;
}
.jtcoupon.on {
  width: 100%;
  display: block;
}
.jtcoupon.on .mask {
  height: 100%;
  opacity: 1;
}
.jtcoupon .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(5px) saturate(180%);
}
.jtcoupon .box {
  background: var(--color-white) url(../img/dimg/topsellingbg.jpg) no-repeat center top;
  background-size: 100% auto;
  border-radius: var(--gap-small);
  padding: 0;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.jtcoupon .box img {
  display: block;
  width: 100%;
}
.jtcoupon .box .cls {
  position: absolute;
  right: var(--gap-base);
  top: var(--gap-base);
  color: var(--color-white);
  font-size: var(--gap-large);
  text-decoration: none;
  padding: var(--gap-small);
}
.jtcoupon .box .cls:hover {
  transform: rotate(90deg);
}
.jtcoupon .box .hd {
  text-align: center;
  color: var(--color-white);
  padding-top: 0;
}
.jtcoupon .box .hd .nam {
  font-weight: bold;
  font-size: var(--fsize-h2);
}
.jtcoupon .box .hd .txt {
  font-size: var(--fsize-large);
  margin-top: var(--gap-small);
  background: var(--color-white);
  color: #be7e38;
  border-radius: var(--gap-large);
  padding: var(--gap-mini) var(--gap-large);
}
.jtcoupon .box .quan {
  background: rgba(255, 255, 255, 0.5);
  padding: var(--gap-h3) 0;
  border-radius: var(--gap-small);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin: var(--gap-large) 0;
}
.jtcoupon .box .quan .num {
  font-size: var(--fsize-h1);
  font-weight: bold;
  color: #be7e38;
  text-align: center;
}
.jtcoupon .box .quan .txt {
  font-size: var(--fsize-large);
  color: var(--color-6);
  margin-top: var(--gap-small);
  text-align: center;
}
.jtcoupon .box .btn a {
  display: block;
  background: #be7e38;
  color: var(--color-white);
  border-radius: var(--gap-h3);
  padding: var(--gap-base) 0;
  text-decoration: none;
  font-size: var(--fsize-txt);
  text-align: center;
}
.jtcoupon .box .btn a:hover {
  opacity: 0.8;
}
@media (max-width: 800px) {
  .page_pagination {
    margin-bottom: 6vw !important;
  }
  .page_pagination ul {
    border-left: 1px solid #ddd;
  }
  .page_pagination ul > li {
    font-size: var(--fsize-small);
  }
  .page_pagination ul > li:first-child {
    display: none;
  }
  .page_pagination ul > li > a {
    font-size: var(--fsize-small);
  }
  .page_pagination #lastspan {
    font-size: var(--fsize-small);
    text-transform: uppercase;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lazyloaded {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}
.blur-up {
  -webkit-filter: blur(5px);
  filter: blur(5px);
  transition: filter 400ms, -webkit-filter 400ms;
}
.blur-up.lazyloaded {
  -webkit-filter: blur(0);
  filter: blur(0);
}
body {
  overflow-x: hidden;
}
body.on {
  overflow: hidden;
}
.wrapper {
  box-sizing: border-box;
  width: 1600px;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .wrapper {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 800px) {
  .wrapper {
    padding: 0 3vw;
  }
}
* {
  transition: all 0.3s;
}
@-webkit-keyframes zoomInSmall {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.92, 0.92, 0.92);
    transform: scale3d(0.92, 0.92, 0.92);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomInSmall {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.92, 0.92, 0.92);
    transform: scale3d(0.92, 0.92, 0.92);
  }
  50% {
    opacity: 1;
  }
}
.zoomInSmall {
  -webkit-animation-name: zoomInSmall;
  animation-name: zoomInSmall;
}
.lightGallery-white-theme .lg-outer .lg-thumb-outer {
  box-shadow: 0px 0px 6px -3.5px rgba(0, 0, 0, 0.25) inset;
}
.lightGallery-white-theme .lg-sub-html {
  color: #333 !important;
}
.lightGallery-white-theme .lg-sub-html a {
  color: #2f2f2f !important;
}
.lightGallery-white-theme .lg-backdrop {
  background-color: rgba(243, 243, 243, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightGallery-white-theme .lg-backdrop {
  background-color: rgba(243, 243, 243, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightGallery-white-theme .lg-thumb-item.active,
.lightGallery-white-theme .lg-thumb-item:hover {
  border-color: var(--color-main);
}
.lightGallery-white-theme .lg-progress-bar {
  background-color: #999;
}
.lightGallery-white-theme .lg-progress-bar .lg-progress {
  background-color: #333;
}
.lightGallery-white-theme .lg-outer .lg-thumb-outer {
  background-color: #fcfcfc;
}
.lightGallery-white-theme .lg-next,
.lightGallery-white-theme .lg-prev {
  background-color: rgba(0, 0, 0, 0.03);
  color: #444;
}
.lightGallery-white-theme .lg-next:hover,
.lightGallery-white-theme .lg-prev:hover {
  color: #000;
}
.lightGallery-white-theme .lg-next:focus,
.lightGallery-white-theme .lg-prev:focus {
  outline: none;
  box-shadow: none;
}
.lightGallery-white-theme .lg-toolbar .lg-icon {
  color: #555;
}
.lightGallery-white-theme .lg-toolbar .lg-icon:hover {
  color: #000;
}
.lightGallery-white-theme .lg-counter {
  color: #555;
}
.lightGallery-white-theme .lg-outer .lg-thumb-item.active,
.lightGallery-white-theme .lg-outer .lg-thumb-item:hover {
  border: 2px solid var(--color-main);
}
/* 圆细滚动条样式 20180601 */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-button:vertical {
  display: none;
}
::-webkit-scrollbar-track:vertical {
  background-color: black;
}
::-webkit-scrollbar-track-piece {
  background: #fff;
}
::-webkit-scrollbar-thumb:vertical {
  background-color: #c2c2c2;
}
::-webkit-scrollbar-thumb:vertical:hover {
  background-color: #a0a0a0;
}
::-webkit-scrollbar-corner:vertical {
  background-color: #535353;
}
::-webkit-scrollbar-resizer:vertical {
  background-color: #ff6e00;
}
/* 拖选文字样式 20160628 */
::selection {
  background: var(--color-main);
  color: var(--color-white);
}
::-moz-selection {
  background: var(--color-main);
  color: var(--color-white);
}
/* 移动端全局控制reset */
body,
div,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
iframe,
input,
textarea,
select,
label,
article,
aside,
footer,
header,
menu,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
}
article,
aside,
footer,
header,
hgroup,
nav,
section,
audio,
canvas,
video {
  display: block;
}
body {
  font-size: 100%;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: var(--color-white);
}
textarea {
  resize: none;
}
iframe,
img {
  border: 0;
}
ul,
ol {
  list-style: none;
}
input,
select,
textarea {
  outline: 0;
  -webkit-user-modify: read-write-plaintext-only;
}
/* input { -webkit-appearance: none; } */
a {
  text-decoration: none;
  color: #666;
}
a:hover {
  text-decoration: underline;
  color: var(--color-main);
}
.poplayer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  transition: none;
  visibility: hidden;
}
.poplayer.on {
  visibility: visible;
}
.poplayer.on .mask {
  opacity: 1;
  height: 100%;
}
.poplayer.on .content {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%);
}
.poplayer > * {
  transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1), box-shadow 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
}
.poplayer .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(5px) saturate(180%);
}
.poplayer .content {
  width: 458px;
  left: 50%;
  top: 40%;
  opacity: 0;
  transform: translateX(-50%) translateY(-30%);
  background: var(--color-white);
  position: absolute;
  border-radius: var(--gap-base);
  padding: var(--gap-large);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.poplayer .content:after {
  content: "×";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  pointer-events: none;
  display: flex;
  width: 40px;
  height: 40px;
  font-size: 30px;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.poplayer .content .tit {
  font-size: var(--fsize-h3);
  font-family: "alibold";
  color: var(--color-3);
}
.poplayer .content .sub {
  font-size: var(--fsize-base);
  color: var(--color-9);
  margin: 5px 0 20px;
}
.event_loading {
  padding: var(--gap-h1) 0;
}
.event_loading * {
  transition: none;
}
.event_loading .boxxxx {
  width: 100%;
  height: 40vh;
}
.event_loading .inf .sub {
  font-size: var(--fsize-large);
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}
.event_loading .inf .sub span {
  display: block;
  padding: var(--gap-small) var(--gap-large);
  background: var(--color-0);
  color: var(--color-white);
  border-radius: var(--gap-h1);
}
.event_loading .inf .nam {
  margin: var(--gap-base) 0 0;
  font-size: var(--fsize-h1);
  font-weight: bold;
  text-align: center;
}
.event_loading .inf .num {
  display: flex;
  justify-content: center;
}
.event_loading .inf .num .block {
  padding: var(--gap-base) var(--gap-large);
  background: var(--color-0);
  border-radius: var(--gap-mini);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-white);
}
.event_loading .inf .num .block strong {
  font-size: var(--fsize-h1);
  font-weight: bold;
}
.event_loading .inf .num .block span {
  font-size: var(--fsize-txt);
}
.event_loading .inf .tim {
  margin: var(--gap-large) 0;
  font-size: var(--fsize-large);
  text-align: center;
}
.event_loading .inf .btn {
  display: flex;
  justify-content: center;
}
.event_loading .inf .btn .ba {
  display: block;
  padding: var(--gap-base) var(--gap-h3);
  border-radius: var(--gap-h1);
  font-size: var(--fsize-large);
  color: var(--color-white);
  background-color: var(--color-main);
  text-decoration: none;
  transition: all 0.3s;
}
.event_loading .inf .btn .ba:hover {
  background: var(--color-red);
  transform: scale(1.05);
}
.newpagex {
  background-color: var(--color-bg);
  min-height: 50vh;
  box-sizing: border-box;
  padding: calc(var(--gap-h1) * 2) 0;
}
.newpagex .hd {
  text-align: center;
}
.newpagex .hd .nam {
  font-weight: bold;
  font-size: var(--fsize-h2);
  color: var(--color-0);
}
@media (max-width: 800px) {
  .newpagex .hd .nam {
    font-size: var(--fsize-h3);
  }
}
.newpagex .hd .txt {
  font-weight: bold;
  font-size: var(--fsize-large);
  color: var(--color-0);
  margin-top: var(--gap-base);
}
.newpagex .bd {
  margin-top: var(--gap-h1);
}
.newpagex .bd .list {
  display: flex;
  justify-content: center;
}
.newpagex .bd .list .item {
  margin: 0 var(--gap-h3);
}
.newpagex .bd .list .item .num {
  display: flex;
  justify-content: center;
}
.newpagex .bd .list .item .num span {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-white);
  font-size: var(--fsize-h1);
  font-weight: bold;
  color: var(--color-0);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.newpagex .bd .list .item .inf {
  margin-top: var(--gap-large);
  text-align: center;
  color: var(--color-0);
}
.newpagex .bd .list .item .inf .nam {
  font-weight: bold;
  font-size: var(--fsize-large);
}
.newpagex .bd .list .item .inf .txt {
  font-size: var(--fsize-txt);
  line-height: 1.6;
  margin-top: var(--gap-small);
}
.newpagex .bd .btn {
  display: flex;
  justify-content: center;
  margin-top: var(--gap-h3);
}
.newpagex .bd .btn .ba {
  width: 20vw;
  height: 46px;
  background: var(--color-0);
  font-size: var(--fsize-txt);
  color: var(--color-white);
  font-weight: bold;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media (max-width: 800px) {
  .newpagex .bd .btn .ba {
    width: 60vw;
  }
}
.newpagex .bd .btn .ba:hover {
  background: var(--color-red);
}
/*# sourceMappingURL=./c.css.map */