body {
  background: #F9F9F9;
}
body.modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
.body_title {
  width: 100%;
  min-width: 1560px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}
.recharge_area {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  min-height: calc(var(--vh, 1vh) * 100 - 93px - 88px);
}
.recharge_area .ra_left {
  width: 225px;
  padding-top: 36px;
}
.recharge_area .ra_left a {
  display: block;
  padding: 0 53px;
  font-size: 18px;
  margin-bottom: 35px;
  position: relative;
}
.recharge_area .ra_left a.active {
  color: var(--theme-color);
}
.recharge_area .ra_left a.active::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 26px;
  background-color: var(--theme-color);
}
.recharge_area .ra_right {
  flex: 1;
  border-left: 1px solid #d1d1d1;
  padding: 33px 0 33px 36px;
}
.recharge_area .ra_right .nav {
  font-size: 16px;
  color: #a5a5a5;
  margin-bottom: 40px;
}
.recharge_area .ra_right .nav a {
  color: #a5a5a5;
}
.recharge_area .ra_right .nav a:hover {
  color: var(--theme-color);
}
.recharge_area .ra_right .game_and_record {
  display: none;
}
.recharge_area .ra_right .main_area {
  padding-left: 46px;
}
.recharge_area .ra_right .main_area .ma_item {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  font-size: 14px;
}
.recharge_area .ra_right .main_area .ma_item.recharge_money {
  align-items: flex-start;
}
.recharge_area .ra_right .main_area .ma_item.recharge_money .prefix {
  margin-top: 9px;
}
.recharge_area .ra_right .main_area .ma_item .prefix {
  width: 98px;
  text-align: end;
}
.recharge_area .ra_right .main_area .ma_item .game_name {
  color: var(--red);
  font-size: 16px;
}
.recharge_area .ra_right .main_area .ma_item .radios {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
.recharge_area .ra_right .main_area .ma_item .radios .radio {
  width: 150px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #a5a5a5;
  border-radius: 4px;
  margin-right: 20px;
  margin-bottom: 18px;
  cursor: pointer;
  overflow: hidden;
}
.recharge_area .ra_right .main_area .ma_item .radios .radio.ipt input {
  width: 100%;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 14px;
  padding: 0 12px;
}
.recharge_area .ra_right .main_area .ma_item .radios .radio:nth-child(4) {
  margin-right: 0;
}
.recharge_area .ra_right .main_area .ma_item .radios .radio.choose {
  border-color: var(--theme-color);
  position: relative;
}
.recharge_area .ra_right .main_area .ma_item .radios .radio.choose::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 10px;
  background: url(../images/choose.png) 0 0 / 100% 100% no-repeat;
}
.recharge_area .ra_right .main_area .ma_item .radios.payType .radio {
  width: 80px;
}
.recharge_area .ra_right .main_area select {
  width: 190px;
  height: 40px;
}
.recharge_area .ra_right .main_area .select2 {
  height: 40px;
  border: 1px solid #A5A5A5;
  border-radius: 4px;
}
.recharge_area .ra_right .main_area .select2-selection__rendered {
  text-align: start;
  height: 38px;
  line-height: 36px;
  padding-left: 12px;
}
.recharge_area .ra_right .main_area .select2-selection__arrow {
  top: 6px;
}
.recharge_area .ra_right .main_area .total_money {
  display: flex;
  align-items: center;
}
.recharge_area .ra_right .main_area .total_money p {
  margin-right: 30px;
}
.recharge_area .ra_right .main_area .total_money p i {
  color: var(--red);
}
.recharge_area .ra_right .main_area .code {
  display: flex;
  align-items: center;
  position: relative;
}
.recharge_area .ra_right .main_area .code .code-btn {
  width: 196px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #F6F6F6;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  font-size: 14px;
  color: #a5a5a5;
  cursor: pointer;
  user-select: none;
}
.recharge_area .ra_right .main_area .code .success {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 196px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #52CF7D;
  color: #52CF7D;
  font-size: 14px;
  margin-left: 36px;
}
.recharge_area .ra_right .main_area .code .success img {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}
.recharge_area .ra_right .main_area .code .code_pop {
  display: none;
  position: absolute;
  left: 0;
  bottom: 40px;
  background-color: #fff;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
  padding: 10px;
}
.recharge_area .ra_right .main_area .ljcc {
  margin-left: 280px;
  border: none;
  outline: none;
  width: 344px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--theme-color);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.recharge_area .ra_right .main_area .ljcc:active {
  opacity: 0.9;
  transform: scale(0.98);
}
.recharge_area .ra_right .main_area .ljcc:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}
.recharge_area .ra_right .main_area .ljcc:disabled:active {
  opacity: 1;
  transform: scale(1);
}
.recharge_area .ra_right .main_area .rules {
  margin-top: 32px;
}
.recharge_area .ra_right .main_area .rules .rule_tit {
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.recharge_area .ra_right .main_area .rules .rule_tit img {
  width: 14px;
}
.recharge_area .ra_right .main_area .rules p {
  font-size: 14px;
  color: #a5a5a5;
  line-height: 20px;
}
.recharge_area .ra_right .detail_area {
  padding-left: 30px;
}
.recharge_area .ra_right .detail_area .theader {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
}
.recharge_area .ra_right .detail_area .theader p {
  text-align: center;
  padding: 13px 19px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-right: 34px;
  cursor: pointer;
}
.recharge_area .ra_right .detail_area .theader p.active {
  color: var(--theme-color);
  border-color: var(--theme-color);
}
.recharge_area .ra_right .detail_area .theader a {
  color: #4086FF;
}
.recharge_area .ra_right .detail_area table {
  border-collapse: collapse;
}
.recharge_area .ra_right .detail_area table tr th {
  border: 1px solid var(--theme-color);
  background-color: var(--theme-color);
  color: #fff;
  font-size: 14px;
  text-align: center;
  height: 40px;
  border-right: 1px solid #d1d1d1;
}
.recharge_area .ra_right .detail_area table tr td {
  border: 1px solid #d1d1d1;
  font-size: 12px;
  text-align: center;
  height: 32px;
}
.recharge_area .ra_right .detail_area table tr td.ing {
  color: #08E81E;
}
.recharge_area .ra_right .detail_area table tr td.reorder {
  color: var(--red);
}
.recharge_area .ra_right .detail_area table tr td a {
  color: #4086FF;
}
.recharge_area .ra_right .detail_area table tr th:nth-child(1),
.recharge_area .ra_right .detail_area table tr td:nth-child(1) {
  width: 140px;
}
.recharge_area .ra_right .detail_area table tr th:nth-child(2),
.recharge_area .ra_right .detail_area table tr td:nth-child(2) {
  width: 144px;
}
.recharge_area .ra_right .detail_area table tr th:nth-child(3),
.recharge_area .ra_right .detail_area table tr td:nth-child(3) {
  width: 102px;
}
.recharge_area .ra_right .detail_area table tr th:nth-child(4),
.recharge_area .ra_right .detail_area table tr td:nth-child(4) {
  width: 106px;
}
.recharge_area .ra_right .detail_area table tr th:nth-child(5),
.recharge_area .ra_right .detail_area table tr td:nth-child(5) {
  width: 83px;
}
.recharge_area .ra_right .detail_area table tr th:nth-child(6),
.recharge_area .ra_right .detail_area table tr td:nth-child(6) {
  width: 47px;
}
.recharge_area .ra_right .detail_area .no_data {
  width: 623px;
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
  color: var(--border-color);
}
.choose-game {
  padding-bottom: 30px;
}
.choose-game .game_list {
  width: 800px;
  height: fit-content;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
}
.choose-game .game_list a {
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  position: relative;
}
.choose-game .game_list a:nth-child(1),
.choose-game .game_list a:nth-child(2),
.choose-game .game_list a:nth-child(3),
.choose-game .game_list a:nth-child(4) {
  border-top: 1px solid #d1d1d1;
}
.choose-game .game_list a:nth-child(4n + 1) {
  border-left: 1px solid #d1d1d1;
}
.choose-game .game_list a img {
  width: 80%;
  height: auto;
}
.choose-game .game_list a .go_btn {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.choose-game .game_list a .go_btn p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  width: 76px;
  height: 26px;
  line-height: 24px;
  text-align: center;
  background: var(--theme-color);
  border-radius: 4px;
}
.choose-game .game_list a:hover .go_btn {
  opacity: 1;
}
.pop {
  display: none;
}
.pop .pop_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.38);
}
.pop .pop_content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.pop .pop_content .pop_title {
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 16px;
  position: relative;
}
.pop .pop_content .pop_title .close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../images/close.png) 0 0 / 100% 100% no-repeat;
}
.pop .pop_content .pop_detail {
  padding: 28px 0 28px 80px;
}
.pop .pop_content .pop_detail p {
  line-height: 30px;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  header::after {
    content: '充值中心';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.36rem;
    font-weight: 700;
    color: #000;
  }
  .m-style {
    width: 100% !important;
  }
  .body_title {
    height: 1.2rem;
    background-color: #fff;
    opacity: 0;
    width: 100%;
    min-width: unset;
  }
  .recharge_area {
    width: 100%;
    overflow: hidden;
    min-height: calc(var(--vh, 1vh) * 100 - 1.2rem);
  }
  .recharge_area .ra_left {
    display: none;
  }
  .recharge_area .ra_right {
    width: 100%;
    padding: 0.4rem 0.7rem;
  }
  .recharge_area .ra_right .nav {
    display: none;
  }
  .recharge_area .ra_right .game_and_record {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.28rem;
  }
  .recharge_area .ra_right .game_and_record .choose_game {
    display: flex;
    align-items: center;
  }
  .recharge_area .ra_right .game_and_record .choose_game .icon {
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 0.28rem;
    margin-right: 0.22rem;
  }
  .recharge_area .ra_right .game_and_record .choose_game .game_name {
    font-size: 0.28rem;
  }
  .recharge_area .ra_right .game_and_record .choose_game .change_icon {
    width: 0.3rem;
    height: 0.3rem;
    margin-left: 0.16rem;
  }
  .recharge_area .ra_right .game_and_record .record_btn {
    font-size: 0.28rem;
    padding-right: 0.3rem;
    position: relative;
  }
  .recharge_area .ra_right .game_and_record .record_btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -0.1rem;
    transform: translateY(-50%);
    width: 0.4rem;
    height: 0.4rem;
    background: url(../images/arrow.png) 0 0 / 100% 100% no-repeat;
  }
  .recharge_area .ra_right .main_area {
    padding-left: 0;
  }
  .recharge_area .ra_right .main_area .ma_item {
    margin-bottom: 0.32rem;
    font-size: 0.28rem;
  }
  .recharge_area .ra_right .main_area .ma_item .prefix {
    width: auto;
  }
  .recharge_area .ra_right .main_area .ma_item .prefix span {
    display: none;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(1) {
    display: none;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(2) {
    height: 0.8rem;
    padding: 0 0.26rem;
    background-color: #fff;
    border-radius: 0.14rem;
    font-size: 0.28rem;
    border: 1px solid #a5a5a5;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(3) .prefix,
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(4) .prefix {
    display: none;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(3) .select2,
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(4) .select2 {
    width: 100% !important;
    height: 0.8rem;
    background-color: #fff;
    border-radius: 0.14rem;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(3) .select2-selection__rendered,
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(4) .select2-selection__rendered {
    height: 0.8rem;
    line-height: 0.8rem;
    padding-left: 0.26rem;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(3) .select2-selection__arrow,
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(4) .select2-selection__arrow {
    top: 0.12rem;
    right: 0.1rem;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(3) .select2-selection__arrow b,
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(4) .select2-selection__arrow b {
    border-width: 0.12rem 0.12rem 0 0.12rem;
    border-color: #000 transparent transparent transparent;
    border-radius: 0.05rem;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(5) {
    display: block;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(5) .prefix {
    font-size: 0.28rem;
    text-align: start;
    margin-bottom: 0.22rem;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(5) .radios .radio {
    margin-bottom: 0;
    border-radius: 0.07rem;
    -webkit-tap-highlight-color: transparent;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(5) .radios .radio.choose {
    color: var(--theme-color);
    background-color: #E4FFFE;
    color: #000;
  }
  .recharge_area .ra_right .main_area .ma_item.recharge_money {
    display: block;
    margin-bottom: 0;
  }
  .recharge_area .ra_right .main_area .ma_item.recharge_money .prefix {
    margin-top: 0;
    font-size: 0.28rem;
    text-align: start;
    margin-bottom: 0.22rem;
  }
  .recharge_area .ra_right .main_area .ma_item.recharge_money .radios .radio {
    width: 48%;
    margin-bottom: 0.2rem;
    margin-right: 4%;
    border-radius: 0.07rem;
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
  }
  .recharge_area .ra_right .main_area .ma_item.recharge_money .radios .radio.choose {
    color: var(--theme-color);
    background-color: #E4FFFE;
    color: #000;
  }
  .recharge_area .ra_right .main_area .ma_item.recharge_money .radios .radio:nth-child(2n+2) {
    margin-right: 0;
  }
  .recharge_area .ra_right .main_area .ma_item.recharge_money .radios .ipt {
    width: 100%;
    margin-right: 0;
  }
  .recharge_area .ra_right .main_area .ma_item.recharge_money .radios .ipt input {
    background-color: transparent;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(7) {
    margin-bottom: 0.5rem;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(7) .total_money {
    flex: 1;
    justify-content: space-between;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(7) .total_money p {
    margin-right: 0;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(8) {
    display: block;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(8) .prefix {
    font-size: 0.28rem;
    text-align: start;
    margin-bottom: 0.22rem;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(8) .code {
    justify-content: space-between;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(8) .code .code-btn {
    flex: 1;
  }
  .recharge_area .ra_right .main_area .ma_item:nth-of-type(8) .code .success {
    flex: 1;
    margin-left: 0.2rem;
  }
  .recharge_area .ra_right .main_area .ljcc {
    margin: 0.5rem auto 0;
    width: 100%;
  }
  .recharge_area .ra_right .main_area .rules .rule_tit {
    font-size: 0.28rem;
  }
  .recharge_area .ra_right .main_area .rules p {
    word-break: break-all;
    font-size: 0.24rem;
  }
  .choose-game {
    padding: 0;
  }
  .choose-game .game_list {
    width: 100%;
    margin: 0;
    padding-top: 0.8rem;
    position: relative;
  }
  .choose-game .game_list::before {
    content: '选择充值的游戏';
    position: absolute;
    top: 0;
    left: 0;
    color: #000;
    font-size: 0.28rem;
  }
  .choose-game .game_list a {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 0.25rem;
    border: 1px solid #d1d1d1;
    border-radius: 0.1rem;
    overflow: hidden;
  }
  .choose-game .game_list a img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    margin: 0 auto;
  }
  .choose-game .game_list a:nth-child(2n+2) {
    margin-right: 0;
  }
}
