/* 默认值：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 {
  position: fixed;
  z-index: 210;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
.jalert-mask .mask-center-content {
  background-color: var(--theme-main-bg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.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%;
  }
}
body {
  background-color: var(--theme-middle-bg);
}
#platList,
#category-wrap {
  display: flex;
  flex-wrap: wrap;
}
#platList .server-item,
#category-wrap .server-item,
#platList .cate-item,
#category-wrap .cate-item {
  display: inline-block;
  min-width: 110px;
  padding: 0 15px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  color: #333;
  border: 1px solid #8f8484;
  margin-right: 30px;
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  margin-bottom: 10px;
  box-sizing: border-box;
}
#platList .server-item.act,
#category-wrap .server-item.act,
#platList .cate-item.act,
#category-wrap .cate-item.act {
  border: 1px solid #c54043;
  color: #c54043;
}
#platList .server-item:hover,
#category-wrap .server-item:hover,
#platList .cate-item:hover,
#category-wrap .cate-item:hover {
  border: 1px solid #c54043;
  color: #c54043;
}
img {
  max-width: 100%;
}
#shopListBox {
  flex-grow: 1;
}
#toolBox {
  display: inline-flex;
  width: 537px;
  justify-content: space-between;
}
#toolBox .tool-item {
  font-size: 14px;
  color: #666;
  cursor: pointer;
}
#toolBox .tool-item:hover {
  color: #c54043;
}
#toolBox .tool-item.act {
  color: #c54043;
}
#toolBlock {
  display: none;
  flex-wrap: wrap;
}
#toolBlock .tool-item {
  width: 76px;
  height: 35px;
  border-radius: 4px;
  text-align: center;
  line-height: 35px;
  font-size: 16px;
  margin-bottom: 14px;
  border: 1px solid #ABABAB;
  margin-right: 15px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
}
#toolBlock .tool-item:hover {
  background-color: #c54043;
  color: white;
}
#toolBlock .tool-item.act {
  background-color: #c54043;
  color: white;
}
#buyNow {
  flex-grow: 1;
}
#input-group {
  height: 38px;
  background: #fff;
  border: 1px solid #333;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
#inputMask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: white;
  z-index: 2;
  width: 100%;
  display: none;
  line-height: 36px;
  font-size: 22px;
  text-align: center;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
}
#inputMask input,
#input-group input {
  border: none;
  width: 100%;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  outline: none;
  text-align: center;
  font-size: 22px;
  color: #333;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
#inputMask button,
#input-group button {
  width: 40px;
  color: #666;
  background-color: transparent;
  height: 100%;
  border: none;
  cursor: pointer;
  outline: none;
}
#inputMask button.disabled,
#input-group button.disabled {
  background-color: #eee;
  pointer-events: none;
}
#inputMask button:hover,
#input-group button:hover {
  color: #C54042;
}
.partWrap-center {
  width: 1200px;
  margin: 0 auto;
}
.reviews-wrap {
  background-color: #f3f3f3;
  padding: 30px 60px 60px;
}
.reviews-wrap .partWrap-center .dh {
  margin-bottom: 30px;
}
.reviews-wrap .partWrap-center .dh img {
  width: 45px;
}
.reviews-wrap .partWrap-center .swiper-slide:nth-child(2n-1) .reviewsItem::after {
  display: block;
}
.reviews-wrap .partWrap-center .reviewsItem {
  padding: 0 60px;
  box-sizing: border-box;
  position: static;
}
.reviews-wrap .partWrap-center .reviewsItem::after {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  height: 200px;
  border-left: 1px solid var(--theme-deep-bg);
}
.reviews-wrap .partWrap-center .content-guestbook {
  height: 120px;
  line-height: 30px;
  color: var(--theme-text-deep-color);
  font-size: 21px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-bottom: 30px;
}
.reviews-wrap .partWrap-center .com-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews-wrap .partWrap-center .com-head .usname {
  font-size: 24px;
  color: var(--theme-text-deep-color);
}
.reviews-wrap .partWrap-center .com-head .ctime {
  font-size: 16px;
  color: var(--theme-text-middle-color);
}
.reviews-wrap .partWrap-center .fa-star {
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  margin-right: 5px;
  border-radius: 4px;
  font-size: 22px;
}
.reviewBoxTitle {
  font-family: anton;
}
.aboutChandesc {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: var(--theme-middle-bg);
}
.aboutChandesc .configContent {
  font-size: 16px;
  color: var(--theme-text-deep-color);
}
.aboutChandesc .configContent h1,
.aboutChandesc .configContent h2,
.aboutChandesc .configContent h3,
.aboutChandesc .configContent h4,
.aboutChandesc .configContent h5,
.aboutChandesc .configContent h6 {
  font-weight: bold;
}
.aboutChandesc .configContent h1 {
  font-size: 22px;
}
.aboutChandesc .configContent h2 {
  font-size: 20px;
}
.aboutChandesc .configContent h3 {
  font-size: 18px;
}
.aboutChandesc .configContent h4,
.aboutChandesc .configContent h5,
.aboutChandesc .configContent h6 {
  font-size: 16px;
}
#shopTitle {
  text-transform: uppercase;
  font-size: 26px;
  color: #666;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.9;
}
#p-t {
  font-size: 16px;
  color: #666;
  height: 49px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
#reSend {
  width: 300px;
  border-radius: 6px;
  margin-top: 30px;
}
.st.fg {
  margin-bottom: 0;
}
#sliderText {
  margin-top: 15px;
  font-size: 14px;
  flex-grow: 1;
}
#toolWrap {
  display: flex;
  margin-top: 15px;
  width: 100%;
}
.oBtn {
  width: 450px;
  height: 40px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  background-color: #c54043;
  outline: none;
  border: none;
  margin-right: 40px;
  border-radius: 4px;
}
.oBtn:hover {
  background-color: #ab3c3f;
}
.oBtn.dis {
  background-color: #efefef !important;
  color: #666;
  pointer-events: none;
  cursor: default;
}
#addCart {
  width: 90px;
  font-size: 30px;
}
#priceLoading {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(238, 238, 238, 0.9);
  box-sizing: border-box;
  padding-top: 28px;
  display: none;
  z-index: 5;
}
#input-group {
  height: 38px;
  background: #fff;
  border: 1px solid #333;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
#inputMaskWrap {
  flex-grow: 1;
  height: 100%;
  position: relative;
}
#platServer {
  width: 90%;
}
#goReview {
  display: flex;
  align-items: center;
  padding-top: 40px;
  margin: 0 15px;
  flex-direction: column;
  padding-bottom: 40px;
}
#goRe:hover {
  cursor: pointer;
  color: #00c1de;
}
#goReview .t-star {
  background-color: #bfc8c1;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 2px;
  margin-right: 2px;
  color: #eee;
}
.searchBox {
  position: relative;
  margin-left: auto;
  /* select{

        background-image: url(/images/arrowDown@2x.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    } */
}
.searchBox input,
.searchBox select {
  width: 100%;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #D6D6D6;
  font-size: 14px;
  color: #999;
  text-indent: 10px;
  outline: none;
}
.searchBox .schIcon {
  position: absolute;
  display: inline-block;
  width: 52px;
  height: 40px;
  border-radius: 4px;
  color: #999;
  text-align: center;
  line-height: 40px;
  right: 0;
  top: 0;
}
.searchBox .nameSeach {
  position: relative;
}
.searchBox .nameSeach .fa-search {
  position: absolute;
  right: 15px;
  color: var(--theme-text-middle-color);
  top: 14px;
}
.buy-account-center {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
}
.buy-account-center .filter-type-wrap {
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--theme-text-middle-color);
  justify-content: space-between;
}
.buy-account-center .filter-type-wrap label {
  font-weight: normal;
  margin-right: 15px;
  cursor: pointer;
  color: var(--theme-text-deep-color);
  margin-bottom: 0;
}
.buy-account-center .filter-type-wrap label input {
  margin-top: 0;
  margin-right: 5px;
  transform: translateY(2px);
}
.buy-account-center .shopItemBox {
  margin-bottom: 50px;
}
.buy-account-center .shopItem {
  background: #FFFFFF;
  box-shadow: 0px 2px 4px 0px rgba(214, 214, 214, 0.5);
  border-radius: 6px;
  border: 1px solid #D6D6D6;
  font-size: 16px;
}
.buy-account-center .shopItem .top-padding {
  padding: 14px 20px 0 20px;
}
.buy-account-center .shopItem .prodName {
  line-height: 22px;
  height: 66px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: var(--theme-text-deep-color);
  margin-bottom: 12px;
}
.buy-account-center .shopItem .priceO {
  font-size: 18px;
}
.buy-account-center .shopItem .prodPrice {
  padding-top: 12px;
  border-top: 1px solid var(--theme-deep-bg);
  display: flex;
  justify-content: space-between;
}
.buy-account-center .shopItem .prodPrice .pp {
  color: var(--theme-text-deep-color);
}
.buy-account-center .shopItem .off {
  font-size: 10px;
  color: var(--theme-deep-red-color);
  background: #FFF7F7;
  border-radius: 4px;
  margin-left: 10px;
  padding: 3px 5px;
}
.buy-account-center .shopItem .tt {
  font-size: 12px;
  color: var(--theme-text-middle-color);
}
.buy-account-center .shopItem .item-total-price {
  height: 60px;
  background: #FAFAFA;
  border-radius: 0px 0px 6px 6px;
  border-top: 1px solid #ABABAB;
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin-top: 12px;
}
.buy-account-center .shopItem .item-total-price .item-total-price {
  font-size: 18px;
  color: var(--theme-text-deep-color);
}
.buy-account-center .shopItem .item-total-price .addCart {
  width: 44px;
  height: 30px;
  background: var(--theme-main-bg);
  border-radius: 6px;
  border: 1px solid var(--theme-deep-red-color);
  box-sizing: border-box;
  transform: translateX(12px);
  margin-left: auto;
  color: var(--theme-deep-red-color);
}
.buy-account-center .shopItem .item-total-price .addCart.act {
  background: linear-gradient(360deg, var(--theme-deep-red-color), var(--theme-light-red-color));
  color: var(--theme-main-bg);
}
.buy-account-center .shopItem .item-total-price .addCart:hover {
  background: linear-gradient(360deg, var(--theme-deep-red-color), var(--theme-light-red-color));
  color: var(--theme-main-bg);
}
.buy-account-center .shopItem .item-total-price .addCart i {
  transform: translateY(3px);
}
.buy-account-center .shopItem .item-total-price .cartTool {
  margin-left: auto;
}
.buy-account-center .shopItem .item-total-price .itemBuyNow {
  width: 140px;
  height: 30px;
  border-radius: 6px;
  outline: none;
  border: 1px solid var(--theme-deep-red-color);
  background: var(--theme-main-bg);
  color: var(--theme-deep-red-color);
}
.buy-account-center .shopItem .item-total-price .itemBuyNow.act {
  background: linear-gradient(360deg, var(--theme-deep-red-color), var(--theme-light-red-color));
  color: var(--theme-main-bg);
}
.buy-account-center .shopItem .item-total-price .itemBuyNow:hover {
  background: linear-gradient(360deg, var(--theme-deep-red-color), var(--theme-light-red-color));
  color: var(--theme-main-bg);
}
@media (max-width: 768px) {
  .gameDetail-head-out-wrap {
    padding: 0.2rem;
    padding-top: 0;
    margin-bottom: 0.4rem;
  }
  #rightSelect {
    width: 100%;
  }
  #gameDetailBox {
    width: 100%;
    padding: 0 0.1rem;
  }
  #rightShop {
    padding: 0;
  }
  .eventWrap {
    position: relative;
  }
  #platList {
    justify-content: space-between;
  }
  #platList .server-item,
  #platList .cate-item {
    width: 49%;
    margin-bottom: 8px;
    margin-right: 0;
  }
  #inputMask {
    font-size: 22px;
    text-align: center;
    border-left: 1px solid var(--theme-text-deep-color);
    border-right: 1px solid var(--theme-text-deep-color);
  }
  .partWrap-center {
    width: 100%;
  }
  .aboutChandesc {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0.3rem;
  }
  .aboutChandesc .configContent {
    font-size: 0.28rem;
    padding: 0.3rem 0.2rem;
  }
  .reviews-wrap {
    margin-top: 0.2rem;
    padding: 0.2rem;
    background-color: var(--theme-middle-bg);
  }
  .reviews-wrap .partWrap-center .dh {
    margin-bottom: 0.2rem;
  }
  .reviews-wrap .partWrap-center .dh img {
    width: 0.4rem;
  }
  .reviews-wrap .partWrap-center .reviewsItem {
    padding: 0.4rem;
    background-color: #f3f3f3;
    border-radius: 0.3rem;
    margin-bottom: 0.4rem;
  }
  .reviews-wrap .partWrap-center .reviewsItem::after {
    display: none !important;
  }
  .reviews-wrap .partWrap-center .starWrap {
    zoom: 0.7;
  }
  .reviewBoxTitle {
    font-size: 0.42rem;
    margin-bottom: 0.4rem;
  }
}
