@font-face {
  font-family: Anton;
  src: url(fontas/Anton/Anton-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url(fontas/Poppins/Poppins-Regular.ttf);
  font-display: swap;
}
/* 默认值：light */
:root {
  --theme-main-bg: #fff;
  --theme-text-deep-color: #333;
  --theme-text-middle-color: #666;
  --theme-text-light-color: #999;
  --theme-deep-red-color: #CC2229;
  --theme-light-red-color: #E84753;
  --theme-deep-bg: #d6d6d6;
  --theme-middle-bg: #f8f8f8;
  --theme-light-bg: #fafafa;
  --theme-light-event-bg: #F5EDED;
  --theme-disbaled-bg: #c7c7c7;
}
/* 暗黑：dark */
[data-theme='dark'] {
  --theme-main-bg: #000;
  --theme-text-deep-color: #white;
  --theme-text-middle-color: #fefefe;
  --theme-text-light-color: #eee;
  --theme-deep-red-color: #6f00ff;
  --theme-light-red-color: #12e95a;
  --theme-deep-bg: #d336c6;
  --theme-middle-bg: #1aad3f;
  --theme-light-bg: #3b15e6;
  --theme-light-event-bg: #F5EDED;
  --theme-disbaled-bg: #c7c7c7;
}
@font-face {
  font-family: Anton;
  src: url(fontas/Anton/Anton-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url(fontas/Poppins/Poppins-Regular.ttf);
  font-display: swap;
}
html,
body {
  font-family: Poppins, Arial, sans-serif, PingFangSC;
}
* {
  margin: 0;
  padding: 0;
}
.absCenter {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.dfbox {
  display: flex;
  align-items: center;
}
.dfbox .df-box-left {
  flex-shrink: 0;
}
.cusInput {
  background-color: #f8f8f8;
  border: 1px solid #ddd !important;
  box-shadow: none;
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-image: none;
  border-radius: 4px;
}
.dfy {
  display: flex;
  align-items: center;
}
.btn {
  border: none;
  cursor: pointer;
  outline: none;
}
.jalert-mask {
  z-index: 210;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 110;
}
.jalert-mask .mask-center-content {
  background-color: var(--theme-main-bg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.jalert-mask .closeMask {
  position: absolute;
  color: white;
  display: inline-block;
  font-size: 30px;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  font-style: normal;
  border: 2px solid white;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}
.jalert-mask .jalert-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  padding: 45px 40px 30px;
  background-color: var(--theme-main-bg);
  box-sizing: border-box;
  font-size: 16px;
  color: var(--theme-text-deep-color);
  border-radius: 8px;
}
.jalert-mask .jalert-button {
  width: 150px;
  height: 35px;
  background-color: var(--theme-deep-red-color);
  color: white;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  outline: none;
}
.jalert-button:hover {
  background-color: var(--theme-light-red-color);
}
@media (max-width: 768px) {
  .jalert-mask .jalert-content {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .regInput {
    width: 100%;
  }
  .reg-btn {
    width: 100%;
    margin-top: 20px;
  }
}
.ac {
  text-align: center;
}
.bb {
  box-sizing: border-box;
}
.ma {
  margin: 0 auto;
}
ul,
ol,
li {
  list-style: none;
}
.box {
  box-sizing: border-box;
}
button[disabled],
html input[disabled] {
  cursor: not-allowed;
  pointer-events: none !important;
  background-color: var(--theme-disbaled-bg) !important;
  color: var(--theme-middle-bg) !important;
}
.substringt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.redTopBorder {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 2px 16px 0px rgba(216, 216, 216, 0.5);
}
.redTopBorder::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  width: 100%;
  content: '';
  display: block;
  background: var(--theme-light-red-color);
}
.mask {
  position: fixed;
  z-index: 210;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
.mask .mask-center-content {
  background-color: var(--theme-main-bg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: white;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: white;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #efefef;
  border-radius: 5px;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.w12 {
  width: 1200px;
}
@media (max-width: 768px) {
  .w12 {
    width: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
}
html,
body {
  font-family: Poppins, Arial, sans-serif, PingFangSC;
}
.scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: white;
}
.itemNodata {
  color: #333;
  text-align: center;
  padding: 50px;
  font-size: 24px;
  width: 100%;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: white;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #efefef;
  border-radius: 5px;
}
#cartAnime {
  color: #d1751e;
  font-size: 25px;
  position: fixed;
  bottom: 20px;
  z-index: 100;
  left: 20px;
  transform: scale(1.5);
  opacity: 0;
}
#cartAnime.act {
  animation: cartAnime 1.5s cubic-bezier(0.4, 0, 1, 1);
}
@keyframes cartAnime {
  0% {
    opacity: 1;
  }
  100% {
    bottom: 85%;
    left: 85%;
    transform: scale(0.8);
    opacity: 0.5;
  }
}
.fixedCenter {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.commProBG .commProCont {
  padding: 35px 25px;
}
.commProBG .commProCont ol li {
  list-style: decimal;
}
.commProBG .commProCont ul,
.commProBG .commProCont li {
  list-style: disc;
}
.commProBG .commProCont table {
  border-collapse: collapse;
  table-layout: fixed;
  word-break: break-all;
}
.commProBG .commProCont table tr td {
  border: 1px solid #666;
  padding: 10px;
}
.commPageTitle {
  color: #A20406;
}
.bx {
  box-sizing: border-box;
}
.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 110;
}
.mask .closeMask {
  position: absolute;
  color: white;
  display: inline-block;
  font-size: 30px;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  font-style: normal;
  border: 2px solid white;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}
.prgBox {
  position: relative;
}
.prgBox .fa-close {
  position: absolute;
  right: 10px;
  top: 9px;
  cursor: pointer;
  color: #666;
  display: none;
}
.cp {
  cursor: pointer;
}
.img-text-col {
  display: flex;
  justify-content: space-between;
}
.img-text-col .img-text-col-left {
  flex-shrink: 0;
}
.img-text-col .img-text-col-left img {
  max-width: 100%;
}
.img-text-col .img-text-col-right {
  flex-grow: 1;
}
.img-text-col .img-text-col-right .text-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}
.img-text-col .img-text-col-right .text-box {
  font-size: 16px;
  color: #666;
}
.dfy {
  display: flex;
  align-items: center;
}
.dfb {
  display: flex;
  justify-content: space-between;
}
.dfc {
  display: flex;
  justify-content: center;
}
.dfyc {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dfyb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ma {
  margin: 0 auto;
}
.absCenter {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#appQrcode {
  position: fixed;
  z-index: 5;
  right: 26px;
  bottom: 370px;
  width: 70px;
  height: 70px;
  border-radius: 70px;
  background: #43C161;
  text-align: center;
  padding-top: 13px;
}
#appQrcode:hover #codeBox {
  display: block;
}
#appQrcode #codeBox {
  position: absolute;
  font-size: 16px;
  color: white;
  width: 205px;
  padding: 16px;
  background: #43C161;
  border-radius: 6px;
  text-align: center;
  right: 90px;
  bottom: -70px;
  display: none;
}
#appQrcode #codeBox #creatQrcode {
  width: 140px;
  height: 140px;
  border: 10px solid white;
  border-radius: 6px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.gameDetail-head-out-wrap {
  width: 100%;
  border-radius: 12px;
  padding: 0 40px;
  margin-bottom: 40px;
}
.gameHead {
  background-position: center;
  background-size: cover;
  position: relative;
  width: 100%;
  box-shadow: 0px 2px 16px 0px rgba(153, 153, 153, 0.5);
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  box-sizing: border-box;
}
.gameHead .gameHeadContainer {
  position: relative;
  z-index: 3;
  width: 1200px;
  margin: 0 auto;
  padding-top: 25px;
  padding-bottom: 25px;
}
.gameHead .commPageMark {
  font-size: 16px;
  color: var(--theme-text-deep-color);
}
.gameHead .commPageMark .headerNavigation {
  color: var(--theme-text-deep-color);
}
.gameHead #shopTitle {
  color: var(--theme-text-deep-color);
  font-family: Anton;
  font-size: 24px;
  margin: 15px 0;
}
.gameHead #p-t {
  color: #333;
  line-height: 25px;
  height: 75px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 18px;
  margin-bottom: 0;
  font-family: Poppins;
}
.addpart {
  position: relative;
  z-index: 3;
}
.chan-wrap {
  transform: translateY(2px);
}
#channelBox {
  width: 1200px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
}
#channelBox #scorePoint {
  margin-left: auto;
  margin-right: 20px;
}
#channelBox .chan-item {
  padding: 20px 0;
  margin-left: 40px;
  color: black;
  text-align: center;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  position: relative;
}
#channelBox .chan-item .actimg {
  width: 60px;
  margin-right: 16px;
}
#channelBox .chan-item.chan-item.act {
  color: var(--theme-deep-red-color);
}
#channelBox .chan-item.chan-item.act::after {
  display: block;
}
#channelBox .chan-item::after {
  height: 4px;
  background: var(--theme-deep-red-color);
  border-radius: 2px;
  content: '';
  position: absolute;
  left: 0;
  display: none;
  width: 100%;
  bottom: 3px;
}
#channelBox .icon-grp {
  margin-left: auto;
  flex-shrink: 0;
  padding-right: 34px;
  background-color: #fcfcfc;
  height: 100%;
  width: 530px;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  justify-content: flex-end;
  padding-top: 20px;
}
#channelBox .icon-grp .icon-grp-item {
  margin-right: 60px;
  text-align: center;
  font-size: 14px;
  color: #999;
}
#channelBox .icon-grp .icon-grp-item img {
  width: 56px;
  margin-bottom: 10px;
}
#channelBox .icon-grp .icon-grp-item:last-child {
  margin-right: 0;
}
#channelBox .addwrap {
  display: flex;
  width: 100%;
  margin-left: 12px;
}
.partWrap {
  margin-top: 40px;
  padding: 0 10px;
}
.tranItem {
  font-size: 16px;
  color: #666;
  line-height: 35px;
  height: 35px;
  cursor: pointer;
  padding: 0 20px;
  margin-bottom: 10px;
  border-radius: 12px;
  font-size: 14px;
  border: 1px solid #ABABAB;
  margin-right: 15px;
  box-sizing: border-box;
}
.tranItem.act {
  color: #C54042;
  border: 1px solid #C54042;
}
.tranItem:hover {
  color: #C54042;
  border: 1px solid #C54042;
}
.moreTrand {
  border: 1px solid #d6d6d6;
  box-shadow: 0 0 3px #d6d6d6;
  position: absolute;
  width: 1150px;
  z-index: 5;
  background-color: white;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 25%);
  border-radius: 6px;
  overflow-y: auto;
  box-shadow: 0px 2px 16px 0px rgba(216, 216, 216, 0.5);
  max-height: 750px;
  border-top: 4px solid #c54043;
}
.moreTrand .tranItem {
  width: 95%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.moreTrand .fa-close {
  position: absolute;
  right: 8px;
  color: #c54042;
  top: 7px;
  font-size: 20px;
  cursor: pointer;
}
#rightSelect {
  background-color: white;
  background: var(--theme-main-bg);
  padding: 45px 60px 45px 60px;
  box-sizing: border-box;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
}
#rightSelect .kazari {
  width: 350px;
  margin-right: 70px;
  flex-shrink: 0;
}
#rightSelect .kazari .addonText {
  width: 100%;
}
#rightSelect .kazari .shopCover {
  width: 100%;
  height: 512px;
  margin-right: 55px;
  border: 1px solid #D6D6D6;
  box-shadow: 0px 4px 14px 0px #bebebe;
  border-radius: 6px;
  margin-bottom: 15px;
}
#rightSelect .shopInfo {
  flex-grow: 1;
}
#rightSelect #shopName {
  font-size: 30px;
}
#rightSelect #priceBox {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: bold;
  margin: 10px 0;
}
#rightSelect #priceBox #priceNum,
#rightSelect #priceBox .symbol {
  font-size: 46px;
  color: #C43638;
}
#rightSelect #priceBox #showTotalCoins {
  color: #333;
  font-size: 36px;
  font-weight: normal;
}
#rightSelect #priceBox #uniPriceBox {
  margin-left: 9px;
  font-size: 24px;
  color: #333;
  align-self: initial;
  transform: translateY(6px);
}
#rightSelect #priceBox #uniPriceBox .symbol {
  font-size: 24px;
  color: #333;
}
#rightSelect #priceBox #eventBeforePrice {
  font-size: 36px;
  font-weight: normal;
  color: #999;
  margin: 0 5px;
  display: none;
}
#rightSelect .chanTip {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}
#rightSelect .itemName {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}
#rightSelect .eventDesc {
  display: flex;
  margin-bottom: 15px;
}
#rightSelect .eventDesc .descInfo {
  margin-left: 20px;
  min-height: 40px;
}
#rightSelect .eventDesc .descInfo .eventTitle {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}
#rightSelect .eventDesc .descInfo .eventText {
  font-size: 12px;
  color: #666;
}
#rightSelect .eventWrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 5px;
  width: 100%;
}
#rightSelect .eventWrap .eventItem {
  height: 46px;
  margin-right: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  border: 1px solid #ABABAB;
}
#rightSelect .eventWrap .eventItem.act {
  border-color: #C54042;
}
#rightSelect .eventWrap .eventItem .eventEmojiIcon {
  font-size: 28px;
  box-sizing: border-box;
  border-right: 1px solid #ABABAB;
  border-radius: 6px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: noto;
}
#rightSelect .eventWrap .eventItem .evbox {
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: #333;
  width: 130px;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 0 6px 6px 0;
  height: 100%;
  padding-top: 2px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF7F7 100%);
}
#rightSelect #trad {
  margin-bottom: 15px;
}
#rightSelect #trad .tradings {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#rightSelect .fg {
  font-size: 14px;
  color: #666;
  margin-right: 20px;
  font-weight: bold;
  width: 90px;
  box-sizing: border-box;
  display: inline-flex;
  justify-content: space-between;
  align-self: center;
}
#rightSelect .fg em {
  font-style: normal;
}
#rightSelect #shopWrap {
  display: flex;
  margin-top: 15px;
}
#rightSelect #addCartBtn {
  margin-top: 35px;
}
#rightSelect #addCartBtn .addwrap {
  display: flex;
  align-items: center;
}
#buyItemsWrap {
  width: 1200px;
  margin: 0 auto;
  padding: 35px;
  box-sizing: border-box;
  background-color: white;
  background: #FFFFFF;
  border-radius: 4px;
}
#buyItemsWrap #platWrap {
  margin-bottom: 20px;
}
#buyItemsWrap #platWrap .itemName {
  margin-bottom: 16px;
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #666666;
  line-height: 24px;
}
#buyItemsWrap .cateRowWrap,
#buyItemsWrap .cateChildWrap,
#buyItemsWrap #filterBox {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 4px;
  border: 1px solid #ABABAB;
  align-items: center;
  padding: 10px 20px 0 ;
  box-sizing: border-box;
  font-size: 14px;
  color: #666;
  margin-top: 9px;
}
#buyItemsWrap .cateRowWrap label,
#buyItemsWrap .cateChildWrap label,
#buyItemsWrap #filterBox label {
  margin-bottom: 10px;
  cursor: pointer;
  margin-right: 15px;
  display: inline-block;
  width: 160px;
  flex-shrink: 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: normal;
  position: relative;
}
#buyItemsWrap .cateRowWrap input[type="radio"],
#buyItemsWrap .cateChildWrap input[type="radio"],
#buyItemsWrap #filterBox input[type="radio"] {
  margin: 0;
  float: none;
  cursor: pointer;
  margin-right: 10px;
}
#buyItemsWrap .cateRowWrap input[type="radio"]:checked::after,
#buyItemsWrap .cateChildWrap input[type="radio"]:checked::after,
#buyItemsWrap #filterBox input[type="radio"]:checked::after {
  background-image: url(/images/checked.png);
}
#buyItemsWrap .cateRowWrap input[type="radio"]:after,
#buyItemsWrap .cateChildWrap input[type="radio"]:after,
#buyItemsWrap #filterBox input[type="radio"]:after {
  background-color: white;
  position: absolute;
  content: '';
  display: inline-block;
  width: 19px;
  height: 19px;
  background-image: url(/images/check.png);
  left: 0;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  border-radius: 0;
}
#buyItemsWrap .schbox {
  display: flex;
  flex-wrap: wrap;
  border-radius: 4px;
  border: 1px solid #ABABAB;
  padding: 15px 20px 0px;
  box-sizing: border-box;
  position: relative;
}
#buyItemsWrap .schbox .schbox-left {
  display: inline-flex;
  width: 936px;
  flex-wrap: wrap;
}
#buyItemsWrap .schbox .schbox-left .schItem {
  display: inline-flex;
  align-items: center;
  margin-bottom: 15px;
  margin-right: 10px;
}
#buyItemsWrap .schbox .schbox-left .schItem .schDiv {
  position: relative;
  height: 100%;
  background-color: white;
}
#buyItemsWrap .schbox .schbox-left .schItem .schDiv::after {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 14px;
  content: '';
  background-image: url('/images/arrow-down.png');
  width: 16px;
  height: 16px;
  background-size: contain;
}
#buyItemsWrap .schbox .schbox-left .schItem input {
  height: 42px;
  border-radius: 4px;
  border: 1px solid #ABABAB;
  font-size: 14px;
  outline: none;
  margin-right: 10px;
}
#buyItemsWrap .schbox .schbox-left .schItem input.schName {
  width: 260px;
  color: #333;
  box-sizing: border-box;
  padding-left: 20px;
  position: relative;
}
#buyItemsWrap .schbox .schbox-left .schItem input.schNum {
  text-align: center;
  color: #999;
  width: 70px;
}
#buyItemsWrap .schbox .schbox-left .schItem .itool {
  font-style: normal;
  font-size: 28px;
  color: #666;
  cursor: pointer;
}
#buyItemsWrap .schbox .mfilter {
  width: 100px;
  height: 42px;
  background: #C54042;
  border-radius: 4px;
  font-size: 14px;
  color: white;
  outline: none;
  border: none;
}
#buyItemsWrap .schbox #filterBox {
  z-index: 4;
  position: absolute;
  left: 0;
  width: 100%;
  background-color: white;
  flex-wrap: wrap;
  padding: 15px;
  display: none;
  background: #FBFBFC;
  box-shadow: 0px 0px 4px 0px rgba(214, 214, 214, 0.5);
  border-radius: 4px;
  padding: 20px;
  padding-bottom: 5px;
  box-sizing: border-box;
  max-height: 220px;
  overflow: auto;
}
#buyItemsWrap .schbox #filterBox label {
  width: 23%;
  margin-bottom: 15px;
  font-size: 14px;
}
#buyItemsWrap .nameOfServer {
  margin-top: 50px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#buyItemsWrap .nameOfServer .serverName {
  font-size: 30px;
  color: #A20406;
}
#buyItemsWrap .nameOfServer .nameSeach {
  width: 427px;
  position: relative;
}
#buyItemsWrap .nameOfServer .nameSeach input {
  width: 100%;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #ABABAB;
  position: relative;
  box-sizing: border-box;
  padding-left: 20px;
  outline: none;
  font-size: 16px;
  color: #B1B1B1;
}
#buyItemsWrap .nameOfServer .nameSeach .fa-search {
  position: absolute;
  right: 20px;
  top: 11px;
  color: #999;
  font-size: 18px;
}
#buyItemsWrap .filterType {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
}
#buyItemsWrap .filterType label {
  margin-right: 20px;
  font-weight: normal;
}
#buyItemsWrap .filterType label input[type="radio"] {
  margin-top: 0;
  width: 18px;
  height: 18px;
  transform: translateY(3px);
  margin-right: 6px;
}
#buyItemsWrap .itemWrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  position: relative;
}
#buyItemsWrap .itemWrap .countdown {
  background-color: red;
  border-radius: 6px 0 6px 0;
  color: white;
  width: fit-content;
  padding: 0 3px;
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
#buyItemsWrap .itemWrap .disable-mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 5;
  display: none;
}
#buyItemsWrap .itemWrap .item {
  text-align: center;
  width: 203px;
  background-color: #F6F7F9;
  margin-right: 15px;
  box-sizing: border-box;
  padding: 20px 15px 25px 15px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0px 2px 4px 0px #D6D6D6;
}
#buyItemsWrap .itemWrap .item.dis {
  filter: grayscale(1);
}
#buyItemsWrap .itemWrap .item .itemNameBox {
  width: 127px;
  display: inline-flex;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
#buyItemsWrap .itemWrap .item .itemNameBox .itemShowName {
  height: 80px;
  font-size: 14px;
  color: #333;
  text-align: center;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
#buyItemsWrap .itemWrap .item .shopImg {
  width: 127px;
  height: 127px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
#buyItemsWrap .itemWrap .item .descImg {
  display: none;
  position: absolute;
  z-index: 10;
  max-width: 370px;
  background: white;
  border: 1px solid #eee;
  border-radius: 4px;
  box-shadow: 0px 2px 4px 0px #D6D6D6;
}
#buyItemsWrap .itemWrap .item .itemPrice {
  margin-bottom: 10px;
}
#buyItemsWrap .itemWrap .item .itemPrice .newprice {
  font-size: 20px;
  color: #C54042;
  margin-right: 10px;
}
#buyItemsWrap .itemWrap .item .itemPrice del {
  font-size: 13px;
  color: #333333;
}
#buyItemsWrap .itemWrap .item .itemTool {
  display: flex;
  align-items: center;
  height: 28px;
  margin: 0 auto;
  width: 130px;
}
#buyItemsWrap .itemWrap .item .itemTool input {
  height: 28px;
  width: 75px;
  outline: none;
  border: 1px solid #ccc;
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 14px;
  color: #666;
}
#buyItemsWrap .itemWrap .item .itemTool button {
  width: 28px;
  height: 28px;
  outline: none;
  border: 1px solid #ccc;
  color: #666;
  font-size: 20px;
  background-color: white;
}
#buyItemsWrap .itemWrap .item .itemTool button.dis {
  color: #cbcbcb;
  background-color: #efefef;
}
#buyItemsWrap .itemWrap .item .itemTool button:hover {
  color: #C54042;
}
#buyItemsWrap .itemWrap .item .itemTool button.redu {
  border-radius: 6px 0 0 6px;
}
#buyItemsWrap .itemWrap .item .itemTool button.add {
  border-radius: 0 6px 6px 0;
}
#buyItemsWrap .itemWrap .item .cartTool {
  margin-top: 15px;
  display: flex;
  align-items: center;
  height: 30px;
}
#buyItemsWrap .itemWrap .item .cartTool .addCart {
  width: 48px;
  background: #FFFFFF;
  border: 1px solid #C54042;
  border-radius: 4px;
  color: #993D3D;
  transform: translateX(4px);
  height: 30px;
}
#buyItemsWrap .itemWrap .item .cartTool .addCart i {
  transform: translateY(2px);
}
#buyItemsWrap .itemWrap .item .cartTool .addCart:hover {
  box-shadow: 2px 0px 10px 0px #993D3D;
}
#buyItemsWrap .itemWrap .item .cartTool .addCart.dis {
  pointer-events: none;
  border: 1px solid #ccc;
  color: #ccc;
}
#buyItemsWrap .itemWrap .item .cartTool .itemBuyNow {
  background: linear-gradient(0deg, #C54042 0%, #E44C4F 100%);
  border-radius: 4px;
  font-size: 18px;
  color: white;
  flex-grow: 1;
  height: 30px;
  border: none;
  outline: none;
}
#buyItemsWrap .itemWrap .item .cartTool .itemBuyNow.dis {
  pointer-events: none;
  border: 1px solid #999;
  color: #fff;
  background: #999;
}
#buyItemsWrap .itemWrap .item:nth-child(5n) {
  margin-right: 0;
}
#buyItemsWrap .itemWrap .off {
  z-index: 4;
  position: absolute;
  width: 81px;
  height: 81px;
  background-image: url('/images/xiejiao.png');
  background-repeat: no-repeat;
  text-align: center;
  font-size: 12px;
  color: white;
  left: 0;
  top: 0;
}
#buyItemsWrap .itemWrap .off .showOffText {
  position: absolute;
  width: 113px;
  left: -23px;
  transform: rotateZ(-45deg);
  top: 20px;
  text-align: center;
  height: 24px;
  line-height: 24px;
}
#buyItemsWrap #pages {
  font-size: 16px;
  color: #999;
  margin-top: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
#buyItemsWrap #pages span {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 4px;
  margin-right: 5px;
  cursor: pointer;
}
#buyItemsWrap #pages span.act {
  background: #C53F42;
  color: white;
}
#showShop {
  padding: 0 10px;
}
.reviewBoxTitle {
  font-size: 30px;
  font-weight: bold;
  color: var(--theme-text-deep-color);
  margin-bottom: 40px;
}
.code-content .code-text {
  margin-bottom: 20px;
  font-size: 16px;
}
.code-content .code-img img {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
  margin-bottom: 30px;
  max-width: 100%;
}
.userHead {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  margin-right: 5px;
}
.person-link {
  height: 50px;
  border-bottom: 1px solid #d5d5d5;
  display: flex;
  align-items: center;
}
.person-link:last-child {
  border-bottom: none;
}
#memberBox {
  padding-bottom: 60px;
}
#memberBox .headOutBox {
  margin: 0 40px;
  background-color: var(--theme-main-bg);
  border-radius: 12px;
  padding-bottom: 1px;
  box-sizing: border-box;
  height: 290px;
  overflow: hidden;
  margin-bottom: 40px;
}
#memberBox .forHeadBg {
  position: relative;
  z-index: 2;
  height: 160px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(/images/new/personcenter-bg.jpg);
}
#memberBox .memberTit {
  bottom: 75px;
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
  margin-bottom: 21px;
  align-items: flex-end;
  position: relative;
  z-index: 3;
}
#memberBox .memberTit .personal-left {
  align-items: flex-start;
  flex-direction: column;
}
#memberBox .avt-wrap {
  position: relative;
  cursor: pointer;
  margin-bottom: 13px;
}
#memberBox .avt-wrap:hover .avt-camera {
  display: block;
}
#memberBox .avt-wrap .avt-img {
  width: 110px;
  height: 110px;
  border-radius: 100%;
  margin-right: 30px;
  background-color: white;
}
#memberBox .avt-wrap .avt-camera,
#memberBox .avt-wrap .avtLoading {
  position: absolute;
  z-index: 3;
  width: 110px;
  height: 110px;
  border-radius: 100%;
  line-height: 110px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 34px;
  text-align: center;
  top: 0;
  left: 0;
  display: none;
}
#memberBox .personal-right {
  margin-top: 95px;
}
#memberBox .ua {
  font-size: 21px;
  color: #333;
  font-weight: bold;
}
#memberBox .ub,
#memberBox .uc {
  font-size: 16px;
  color: #333;
}
#memberBox .nle {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 14px;
  text-align: right;
}
#memberBox .prog-wrap {
  position: relative;
  width: 588px;
}
#memberBox .prog-wrap .prog-line {
  width: 100%;
  position: relative;
  height: 22px;
  background: #D8D8D8;
  box-shadow: 0px 2px 4px 0px #D8D8D8, inset 0px 1px 3px 0px rgba(102, 102, 102, 0.5);
  border-radius: 11px;
  overflow: hidden;
  margin-bottom: 7px;
}
#memberBox .prog-wrap .prog-line .prog-fake {
  position: absolute;
  height: 100%;
  font-size: 14px;
  color: white;
  text-align: right;
  padding-right: 15px;
  line-height: 22px;
  background-repeat: repeat-x;
  background-size: auto 100%;
  background: linear-gradient(270deg, #CC2229 0%, #E84753 100%);
  box-shadow: 0px 1px 4px 0px rgba(204, 34, 41, 0.4);
}
#memberBox .prog-wrap .prog-split {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#memberBox .prog-wrap .prog-split .lv-item {
  flex-shrink: 0;
  flex-grow: 1;
  font-size: 14px;
  color: #666;
}
#memberBox .prog-wrap .prog-split .lv-item:last-child {
  flex-grow: 0;
}
.my-center {
  display: flex;
  width: 100%;
}
.my-center .memberList {
  width: 280px;
  padding: 0;
  border-radius: 6px;
  margin: 0;
  margin-right: 20px;
  height: fit-content;
  background-color: white;
  flex-shrink: 0;
  border: 1px solid #e4e4e4;
  box-shadow: 0px 2px 16px 0px rgba(216, 216, 216, 0.5);
}
.my-center .memberList li {
  line-height: 50px;
  height: 50px;
  padding-left: 0;
}
.my-center .memberList li .mbIcon {
  position: static;
}
.my-center .memberList li a {
  padding-left: 20px;
  border-bottom: 1px solid #e4e4e4;
  display: block;
  color: #212121;
}
.my-center .memberList li a i {
  margin-right: 10px;
  color: #a0a0a0;
  font-size: 20px;
  transform: translateY(4px);
}
.my-center .memberList li a.act {
  color: #A20406;
}
.my-center .memberList li a.act i {
  color: #A20406;
}
.my-center .memberList li a:hover {
  color: #A20406;
}
.my-center .memberList li a:hover i {
  color: #A20406;
}
.my-center .main-right {
  flex-grow: 1;
  background-color: white;
  border-radius: 4px;
  padding: 0 30px;
  box-shadow: 0px 2px 16px 0px rgba(216, 216, 216, 0.5);
  border-radius: 6px;
  padding-bottom: 40px;
}
.my-center .main-right .main-right-head {
  font-size: 24px;
  font-weight: bold;
  color: var(--theme-deep-red-color);
  padding: 15px 0;
  padding-top: 20px;
}
.my-center .main-right .main-wrap #sch-wrap {
  margin-top: 15px;
}
.personData {
  width: 100%;
  overflow: hidden;
}
.personData .dataItem {
  margin-bottom: 10px;
  padding-top: 10px;
}
.personData .dataItem .personDataTitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 9px;
}
.personData .dataItem .personDataTitle i {
  color: #999;
  margin-right: 10px;
  font-size: 20px;
}
.personData .dataItem .dataItemContent {
  height: 50px;
  border-radius: 6px;
  border: 1px solid #ABABAB;
  line-height: 50px;
  padding-left: 13px;
  color: var(--theme-deep-red-color);
}
.personData .dataItem .dataItemContent.personPhone {
  display: flex;
  align-items: center;
}
.personData .dataItem .dataItemContent .nullt {
  color: #999;
}
.personData .dataItem .dataItemContent .changeDataFormControl {
  height: 46px;
  border-radius: 4px;
  font-size: 16px;
  color: #999;
  width: 100%;
  outline: none;
  border: none;
  text-indent: 15px;
  background-color: #F8F8F8;
}
.personData .dataItem .dataItemContent #area {
  width: 50%;
  flex-shrink: 0;
}
.personData .modBox {
  margin-top: 40px;
  text-align: right;
}
.personData .modBox .modData {
  width: 166px;
  height: 46px;
  background-color: var(--theme-deep-red-color);
  border-radius: 4px;
  outline: none;
  color: white;
  font-size: 18px;
  border: none;
}
.person-mobile-side {
  position: fixed;
  width: 0.56rem;
  height: 1.12rem;
  background-color: var(--theme-deep-red-color);
  color: var(--theme-main-bg);
  border-radius: 0 0.12rem 0.12rem 0;
  text-align: center;
  box-sizing: border-box;
  top: 4.31rem;
  z-index: 5;
  padding: 0 0.2rem;
  padding-top: 0.4rem;
}
.person-mobile-nav-side {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 41;
  background-color: #f8f8f8;
  transform: translateX(-100%);
  padding-top: 72px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.person-mobile-nav-side.act {
  transform: translateX(0);
}
.person-mobile-nav-side .hide-side {
  position: absolute;
  right: 0;
  border-radius: 0.12rem 0 0 0.12rem;
}
.person-mobile-nav-side .for-person-mobile-nav-bg {
  background-color: var(--theme-main-bg);
  margin-top: 0.2rem;
  padding: 0 0.2rem;
  height: 100%;
}
.person-mobile-nav-side .head-row {
  display: flex;
  align-items: center;
  padding: 0.6rem 0 0.6rem 0.4rem;
  border-bottom: 1px solid #D6D6D6;
}
.person-mobile-nav-side .head-row button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0.1rem 0.3rem;
  font-size: 0.32rem;
  color: var(--theme-deep-red-color);
  border: 1px solid var(--theme-deep-red-color);
  border-radius: 0.12rem;
  background-color: var(--theme-main-bg);
}
.person-mobile-nav-side .side-user-name {
  font-size: 0.36rem;
  margin-bottom: 0.3rem;
  color: var(--theme-text-deep-color);
}
.person-mobile-nav-side .side-avt {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 0.6rem;
}
.person-mobile-nav-side .nav-li-mobile {
  height: 1rem;
  padding-left: 0.4rem;
  color: var(--theme-text-light-color);
  line-height: 1rem;
  border-bottom: 1px solid #D6D6D6;
}
.person-mobile-nav-side .nav-li-mobile a {
  color: var(--theme-text-light-color);
  display: block;
}
.person-mobile-nav-side .nav-li-mobile a.act {
  color: var(--theme-deep-red-color);
}
.person-mobile-nav-side .nav-li-mobile i {
  font-size: 0.42rem;
  margin-right: 0.3rem;
  transform: translateY(3px);
}
#regform {
  margin-bottom: 50px;
  width: 380px;
  padding: 10px 0;
  box-sizing: content-box;
}
.logWrap {
  text-align: center;
  margin: 85px 0 40px 0;
}
.affdeInfoList .regformItem {
  color: #666;
  margin-bottom: 45px;
}
.affdeInfoList .regformItem .fi {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}
.affdeInfoList .regformItem .input-wrap {
  position: relative;
  width: 100%;
}
.affdeInfoList .regformItem input {
  width: 100%;
  height: 50px;
  border: 1px solid #ababab;
  border-radius: 6px;
  outline: none;
  box-sizing: border-box;
  text-indent: 60px;
}
.affdeInfoList .regformItem .input-wrap .icons {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  height: 28px;
  width: 50px;
  text-align: center;
  line-height: 28px;
  border-radius: 6px 0 0 6px;
  color: #a20107;
  font-size: 18px;
  border-right: 1px solid #ABABAB;
}
.affdeInfoList .regformItem .fa-eye {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--theme-text-light-color);
  cursor: pointer;
}
.affdeInfo #bttreg {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 6px;
  height: 50px;
  outline: none;
  border: none;
  color: white;
  font-size: 18px;
  background-color: var(--theme-deep-red-color);
}
.loginTerm {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 18px;
}
.commInputStyle p input.newsCheckbox {
  width: 24px;
  height: 24px;
  margin-top: 8px;
}
.titleMore {
  margin-left: auto;
  color: #DB1B3C;
  font-size: 18px;
  border: 1px solid #DB1B3C;
  width: 140px;
  height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 6px;
  line-height: 40px;
  float: right;
  transform: translateY(-10px);
}
.titleMore:hover {
  color: #A20406;
}
.commCrdWd.newsindex .news-swiper-pagination {
  bottom: 25px;
}
.hotPlat {
  margin-bottom: 60px;
}
.acommentWrap {
  width: 100%;
  background-size: cover;
}
.acommentWrap .aCommentContainer {
  background-color: #e1e1e1cc;
  border-radius: 12px;
  padding: 26px;
  box-sizing: border-box;
}
.acommentWrap .aCommentContainer .acommentImg {
  margin-right: 100px;
  border-radius: 12px;
  width: 460px;
  height: 316px;
  background-color: white;
}
.acommentWrap .aCommentContainer .acommentHead {
  margin-top: 46px;
  line-height: 1;
  position: relative;
  font-size: 20px;
  color: #333;
  padding: 20px 0px;
  text-transform: uppercase;
}
.acommentWrap .aCommentContainer .acommentHead::after {
  width: 80px;
  height: 4px;
  background: #34C258;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
}
.acommentWrap .aCommentContainer .fa-star {
  width: 39px;
  height: 39px;
  text-align: center;
  line-height: 39px;
  margin-right: 5px;
  border-radius: 4px;
  font-size: 26px;
}
.acommentWrap .aCommentContainer .acommentContent {
  margin-top: 26px;
  line-height: 24px;
  font-size: 18px;
  color: #333;
  width: 530px;
  height: 95px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-bottom: 27px;
}
.acommentWrap .aCommentContainer .acommentTime {
  text-align: right;
}
.comtWrap {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}
.comtWrap .comtItem {
  background-color: #F6F6F6;
  padding: 20px 40px;
  border-radius: 12px;
  flex-shrink: 0;
  flex-grow: 1;
}
.comtWrap .comtItem:first-child {
  margin-right: 15px;
}
.comtWrap .comtItem .comtHead {
  margin-bottom: 15px;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.comtWrap .comtItem .comtHead .comtName {
  flex-shrink: 0;
}
.comtWrap .comtItem .comtHead .comtScore {
  display: flex;
}
.comtWrap .comtItem .comtHead .comtScore .fa-star {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  margin-right: 3px;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
.comtWrap .comtItem .comtContent {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 45px;
  width: 497px;
  margin-bottom: 15px;
}
.comtWrap .comtItem .comtTime {
  text-align: right;
}
.newsindex {
  display: flex;
  justify-content: space-between;
}
.newsindex .news-swiper-box {
  width: 520px;
  height: 560px;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px 0px rgba(153, 153, 153, 0.75);
  border-radius: 12px;
  flex-shrink: 0;
  margin-right: 30px;
}
.newsindex .news-swiper-box .newItem {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.newsindex .news-swiper-box .newItem .newImg {
  width: 100%;
  height: 338px;
  background-size: cover;
  font-size: 30px;
  color: white;
  position: relative;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.newsindex .news-swiper-box .newItem .newImg .newsT {
  width: 100%;
  padding: 20px;
  height: 115px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}
.newsindex .news-swiper-box .newItem .newsTextWrap {
  padding: 30px 20px;
}
.newsindex .news-swiper-box .newItem .newsTime {
  margin-bottom: 15px;
  font-size: 16px;
  color: #C53F42;
}
.newsindex .news-swiper-box .newItem .newsContent {
  font-size: 16px;
  color: #666;
  line-height: 24px;
  height: 72px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.newsindex .rightNewsList {
  flex-grow: 1;
}
.newsindex .rightNewsList .newItem {
  display: flex;
  align-items: center;
  background-color: #F9F9F9;
  border-radius: 12px;
  margin-bottom: 15px;
}
.newsindex .rightNewsList .newItem .newImg {
  width: 280px;
  height: 176px;
  background-size: cover;
  font-size: 16px;
  color: white;
  position: relative;
  border-radius: 12px;
  flex-shrink: 0;
  overflow: hidden;
}
.newsindex .rightNewsList .newItem .newImg .newsT {
  width: 100%;
  padding: 10px 20px;
  height: 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}
.newsindex .rightNewsList .newItem .newsTextWrap {
  padding: 30px 20px;
}
.newsindex .rightNewsList .newItem .newsTime {
  margin-bottom: 15px;
  font-size: 16px;
  color: #C53F42;
}
.newsindex .rightNewsList .newItem .newsContent {
  font-size: 16px;
  color: #666;
  line-height: 24px;
  height: 72px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.channelWrapBox {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.channelWrapBox .chanItem {
  width: 24%;
  background: white;
  border-radius: 4px;
  margin-right: 1.3%;
  margin-bottom: 10px;
}
.channelWrapBox .chanItem:nth-child(4n) {
  margin-right: 0;
}
.channelWrapBox .chanImg {
  height: 130px;
  text-align: center;
  padding: 25px 0;
  padding-bottom: 10px;
}
.channelWrapBox .chanImg img {
  height: 100%;
}
.channelWrapBox .chanName {
  text-align: center;
  color: #333;
  padding-bottom: 15px;
}
.channelWrapBox button {
  width: 90%;
  height: 40px;
  background-color: #a20107;
  border-radius: 40px;
  margin: 0 auto;
  display: block;
  margin-bottom: 17px;
  color: white;
  text-transform: uppercase;
  outline: none;
  border: none;
}
.channelWrapBox button:hover {
  background-color: #7d0106;
}
#platServer[type='select']:focus {
  border-color: transparent;
  outline: none;
  box-shadow: none;
  border: 1px solid #ccc;
}
@media (max-width: 768px) {
  #rightSelect #trad .tradings {
    justify-content: space-between;
  }
  .tranItem {
    width: 49%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 0;
    text-align: center;
  }
  .channelWrapBox .chanItem {
    width: 49%;
  }
  .channelWrapBox .channelWrapBox .chanImg {
    height: 95px;
    padding: 15px 0;
  }
  .channelWrapBox .chanName {
    padding-bottom: 8px;
  }
  .channelWrapBox button {
    height: 30px;
    border-radius: 30px;
    margin-bottom: 17px;
  }
  .channelWrapBox .chanItem:nth-child(2n) {
    margin-right: 0;
  }
  #regform {
    width: 100%;
  }
  #buyItemsWrap {
    width: 100%;
    padding: 10px;
  }
  #buyItemsWrap #platList {
    justify-content: space-between;
  }
  #buyItemsWrap #platList .server-item {
    width: 47%;
    margin-right: 15px;
    margin-bottom: 15px;
  }
  #buyItemsWrap #platList .server-item:nth-child(2n) {
    margin-right: 0;
  }
  #buyItemsWrap .cateRow .cateRowWrap,
  #buyItemsWrap .cateRow .cateChildWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 0;
  }
  #buyItemsWrap .cateRow .cateRowWrap label,
  #buyItemsWrap .cateRow .cateChildWrap label {
    width: 47%;
    margin-right: 15px;
    margin-bottom: 10px;
  }
  #buyItemsWrap .cateRow .cateRowWrap label:nth-child(2n),
  #buyItemsWrap .cateRow .cateChildWrap label:nth-child(2n) {
    margin-right: 0;
  }
  #buyItemsWrap .filterType {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #buyItemsWrap .filterType label {
    margin-right: 0;
    margin-bottom: 8px;
    width: 50%;
  }
  #buyItemsWrap .schbox {
    padding: 10px;
  }
  #buyItemsWrap .schbox .schbox-left .schItem input {
    height: 35px;
  }
  #buyItemsWrap .schbox .schbox-left .schItem input.schName {
    width: 170px;
    padding-left: 10px;
  }
  #buyItemsWrap .schbox .schbox-left .schItem input.schNum {
    width: 45px;
  }
  #buyItemsWrap .schbox .schbox-left .schItem .itool {
    font-size: 24px;
  }
  #buyItemsWrap .schbox .schbox-left .schItem .schDiv::after {
    right: 20px;
    top: 10px;
  }
  #buyItemsWrap .schbox .mfilter {
    margin-left: auto;
    height: 35px;
  }
  #buyItemsWrap .schbox #filterBox label {
    width: 44%;
  }
  #buyItemsWrap .nameOfServer {
    flex-direction: column;
    align-items: flex-start;
  }
  #buyItemsWrap .nameOfServer .nameSeach {
    width: 100%;
    margin-top: 10px;
  }
  #buyItemsWrap .itemWrap {
    justify-content: space-between;
  }
  #buyItemsWrap .itemWrap .item {
    width: 47%;
    margin-right: 0;
    padding: 15px 10px 20px;
  }
  #buyItemsWrap .itemWrap .item .itemTool {
    width: 100%;
  }
  #buyItemsWrap .itemWrap .item .cartTool {
    transform: translateX(-4px);
  }
  #buyItemsWrap .itemWrap .item .cartTool .itemBuyNow {
    width: 80px;
    font-size: 14px;
  }
  #buyItemsWrap .itemWrap .item .itemPrice .newprice {
    font-size: 14px;
  }
  #buyItemsWrap .itemWrap .item .itemPrice del {
    font-size: 10px;
  }
  #buyItemsWrap #pages {
    font-size: 16px;
    color: #999;
    margin-top: 20px;
    width: 100%;
  }
  #rightSelect .eventList {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
  #rightSelect .eventList .eventScroll {
    height: initial;
    max-height: 260px;
  }
  #rightSelect .shopInfo {
    width: 100%;
    padding: 0 0.2rem;
  }
  #rightSelect .eventWrap {
    justify-content: space-between;
  }
  #rightSelect .eventWrap .eventItem {
    height: initial;
    text-align: center;
    border: none;
    padding: 7px;
    width: 32%;
    flex-direction: column;
    flex-shrink: 0;
    margin-right: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF7F7 100%);
  }
  #rightSelect .eventWrap .eventItem .eventEmojiIcon {
    font-size: 24px;
    width: 30px;
    height: 30px;
    margin-bottom: 3px;
    border-right: none;
  }
  #rightSelect .eventWrap .eventItem .evbox {
    width: 100%;
    background: none;
    padding: 0;
    height: 35px;
    justify-content: center;
    align-items: flex-start;
  }
  .moreTrand {
    width: 95%;
    grid-template-columns: repeat(2, 50%);
    padding: 30px 15px;
    max-height: 80vh;
  }
  #appQrcode {
    bottom: 160px;
    zoom: 0.7 !important;
  }
  .commProBG .commProCont {
    padding: 25px 15px;
  }
  .commProBG .commProCont span,
  .commProBG .commProCont p {
    max-width: 100%;
    height: fit-content !important;
  }
  .newsindex {
    flex-wrap: wrap;
  }
  .newsindex .news-swiper-box {
    margin-bottom: 25px;
    width: 100%;
    height: 310px;
  }
  .newsindex .news-swiper-box .newItem .newImg {
    border-radius: 12px;
    height: 174px;
    font-size: 18px;
  }
  .newsindex .news-swiper-box .newItem .newImg .newsT {
    padding: 15px;
    height: 68px;
    font-size: 14px;
  }
  .newsindex .news-swiper-box .newItem .newsTextWrap {
    padding: 15px;
  }
  .newsindex .news-swiper-box .newItem .newsTextWrap .newsTime {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .newsindex .news-swiper-box .newItem .newsTextWrap .newsContent {
    font-size: 12px;
    line-height: 1.5;
    height: 55px;
  }
  .newsindex .rightNewsList .newItem {
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  .newsindex .rightNewsList .newItem .newImg {
    border-radius: 12px;
    height: 174px;
    font-size: 18px;
    width: 100%;
  }
  .newsindex .rightNewsList .newItem .newImg .newsT {
    padding: 15px;
    height: 68px;
    font-size: 14px;
  }
  .newsindex .rightNewsList .newItem .newsTextWrap {
    padding: 15px;
  }
  .newsindex .rightNewsList .newItem .newsTextWrap .newsTime {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .newsindex .rightNewsList .newItem .newsTextWrap .newsContent {
    font-size: 12px;
    line-height: 1.5;
    height: 55px;
  }
  .acommentWrap .aCommentContainer {
    padding: 12px;
  }
  .acommentWrap .aCommentContainer .acommentImg {
    margin-right: 10px;
    border-radius: 12px;
    width: 120px;
    height: 150px;
  }
  .acommentWrap .aCommentContainer .acommentHead {
    margin-top: 10px;
    font-size: 14px;
    padding: 10px 0;
  }
  .acommentWrap .aCommentContainer .fa-star {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
  }
  .acommentWrap .aCommentContainer .acommentContent {
    margin-top: 7px;
    line-height: 1.5;
    font-size: 12px;
    width: 100%;
    height: 50px;
    -webkit-line-clamp: 3;
    margin-bottom: 0;
  }
  .acommentWrap .aCommentContainer .acommentTime {
    font-size: 12px;
  }
  .comtWrap {
    flex-wrap: wrap;
  }
  .comtWrap .comtItem {
    padding: 15px 20px;
    margin-bottom: 15px;
  }
  .comtWrap .comtItem:first-child {
    margin-right: 0;
  }
  .comtWrap .comtItem .comtHead {
    font-size: 16px;
  }
  .comtWrap .comtItem .comtContent {
    width: 315px;
    font-size: 14px;
    height: initial;
    max-height: 45px;
  }
  .comtWrap .comtItem .comtTime {
    font-size: 14px;
  }
  .commCrdWd.newsindex .news-swiper-pagination {
    bottom: 10px;
  }
  .titleMore {
    width: 90px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    transform: translateY(-6px);
  }
  .hotPlat {
    margin-bottom: 30px;
  }
  .personData .dataItem {
    padding-left: 15px;
  }
  .personData .modBox {
    text-align: center;
    padding-right: 0;
  }
  .personData .modBox .modData {
    width: 100%;
  }
  #memberBox {
    width: 100%;
    margin: 0 auto;
  }
  #memberBox .headOutBox {
    margin: 0 0.2rem;
    margin-bottom: 0.4rem;
    height: 6.2rem;
    box-shadow: 0px 2px 8px 0px rgba(216, 216, 216, 0.5);
  }
  #memberBox .forHeadBg {
    height: 2.4rem;
  }
  #rightSelect {
    padding: 0;
    display: block;
    border-radius: 0;
  }
  .gameHead .gameHeadContainer {
    width: 100%;
    padding: 0.1rem 0.2rem 0.2rem;
  }
  .gameHead #p-t {
    font-size: 0.28rem;
    height: 0.4rem;
    height: 2.4rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
  }
  .gameHead #shopTitle {
    line-height: 1;
    font-size: 18px;
  }
  .gameHead .addpart {
    padding: 0;
    border-radius: 0;
  }
  .gameHead #channelBox {
    height: 1.48rem;
    width: 100%;
  }
  .gameHead #channelBox .chan-wrap {
    display: flex;
  }
  .gameHead #channelBox .chan-wrap .chan-item {
    margin-left: 0.2rem;
    margin-right: 0.3rem;
  }
  .gameHead #channelBox .chan-wrap .chan-item .actimg {
    width: 0.8rem;
  }
  #rightSelect #shopName {
    font-size: 0.4rem;
  }
  #rightSelect #shopWrap {
    display: block;
    margin-top: 0.4rem;
  }
  #rightSelect .fg {
    margin-bottom: 12px;
    display: block;
    padding-left: 0;
  }
  #rightSelect .addwrap {
    display: flex;
    width: 100%;
    margin-left: 0;
  }
  #rightSelect .addwrap .fa-shopping-cart {
    font-size: 0.45rem;
    transform: translateY(-3px);
  }
  #rightSelect .kazari {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  #rightSelect .kazari .shopCover {
    width: 3.7rem;
    height: auto;
    margin-bottom: 0.4rem;
    margin-right: 0;
  }
  #rightSelect #priceBox #priceNum,
  #rightSelect #priceBox .symbol {
    font-size: 0.8rem;
  }
  #rightSelect #priceBox #showTotalCoins {
    font-size: 0.4rem;
  }
  #rightSelect #priceBox #uniPriceBox {
    font-size: 0.26rem;
  }
  #rightSelect #priceBox #eventBeforePrice {
    font-size: 0.4rem;
  }
  #reviewsBox {
    margin-top: 15px;
  }
  #reviewsBox #scrollReview {
    height: initial;
  }
  #reviewsBox .swiper-wrapper {
    display: block;
  }
  #reviewsBox .ctime {
    font-size: 12px;
    color: #333;
  }
  #platServer {
    width: 100%;
  }
  #noReview {
    margin-top: 15px;
  }
  #cartNum {
    height: 55px;
  }
  #optbtn button {
    height: 28px;
    width: 26px;
    color: white;
  }
  .oBtn {
    height: 55px;
    flex-grow: 1;
  }
  #platList {
    width: 100%;
    flex-wrap: wrap;
  }
  #shopListBox {
    width: 100%;
  }
  #shopView {
    padding: 0 15px;
  }
  #rightSelect {
    padding: 0.4rem 0;
    padding-bottom: 0.6rem;
  }
  #platList .server-item {
    width: 100%;
    margin-bottom: 8px;
    margin-right: 0;
  }
  #platList .server-item:nth-child(2n) {
    margin-right: 0;
  }
  #shopListBox .shop-item {
    width: 48.6%;
  }
  #shopListBox .shop-item:nth-child(2n) {
    margin-right: 0;
  }
  #addCartBtn {
    display: flex;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    margin-left: 0;
    z-index: 30;
    margin-top: 0;
  }
  #addCart,
  .oBtn {
    border-radius: 0 !important;
    margin-right: 0 !important;
  }
  #addCart {
    background-color: #d1751e;
  }
  #optbtn button {
    background-color: #c54043;
  }
  #viewShop {
    width: 100%;
  }
  #index-swiper {
    height: calc(100vw / 3.08);
  }
  .swiper-container {
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 25px;
    /* 设置按钮大小 */
  }
  #confInfo > div {
    margin-bottom: 5px;
    width: 100% !important;
  }
  #confInfo .glyphicon.glyphicon-trash {
    width: 100%;
    background: #c54043;
    height: 35px;
    text-align: center;
    line-height: 35px;
    color: white;
    border-radius: 4px;
    margin-top: 15px;
    position: static;
  }
  #channelBox a:nth-of-type(2n) button {
    margin-right: 0;
  }
  #input-group {
    width: 100%;
  }
  .tool-item {
    font-size: 12px;
  }
  #showPic {
    margin: 12px 0 0 0;
  }
  #showShop {
    padding: 0;
  }
  #gameDetailBox {
    padding: 0 !important;
  }
  .reviews-wrap .partWrap-center .reviewsItem .com-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .reviews-wrap .partWrap-center .reviewsItem .com-head .usname {
    font-size: 0.3rem;
    margin-bottom: 0;
    font-weight: bold;
    width: 150px;
  }
  .reviews-wrap .partWrap-center .reviewsItem .content-guestbook {
    font-size: 0.28rem;
    height: initial;
    line-height: 0.4rem;
    max-height: 1.6rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin-bottom: 0.4rem;
  }
  #rightSelect #priceBox #uniPriceBox .symbol {
    font-size: 13px;
  }
  #memberBox .personal-right {
    margin-top: 0;
  }
  #memberBox .memberTit {
    width: 100%;
    display: block;
    padding: 0;
  }
  #memberBox .memberTit .personal-left {
    padding-top: 25px;
  }
  #memberBox .memberTit .personal-right {
    padding: 0 0.4rem;
  }
  #memberBox .avt-wrap {
    padding-left: 20px;
  }
  #memberBox .pe-w {
    margin-left: 0.4rem;
  }
  #memberBox .ub,
  #memberBox .uc {
    font-size: 0.28rem;
  }
  #memberBox .nle {
    font-weight: normal;
    font-size: 0.28rem;
    margin-top: 0.07rem;
  }
  #memberBox .avt-wrap .avt-img {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 100%;
    margin-right: 0;
  }
  #memberBox .avt-wrap .avt-camera {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 100%;
    left: 0.4rem;
    line-height: 1.6rem;
  }
  #memberBox .ua {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1;
  }
  #memberBox .ub.uc {
    font-size: 14px;
  }
  #memberBox .nle {
    text-align: left;
  }
  #memberBox .prog-wrap {
    width: 100%;
  }
  .my-center .main-right {
    border-radius: 0;
    padding: 0 0.2rem;
    padding-bottom: 1rem;
  }
}
