* {
  margin: 0;
  padding: 0;
  font-size: 16px;
}

div {
  position: relative;
  box-sizing: border-box;
}

img {
  width: 100%;
  object-fit: cover;
}

.dialog {
  z-index: 9999;
}

.mask {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
  filter: alpha(opacity=60);
  -moz-opacity: .60;
  -khtml-opacity: .60;
  opacity: .60;
}

.title {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  padding: 0 20px;
  text-align: left;
}

.title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  width: 2px;
  height: 100%;
  background-color: #1989fa;
}

.btn-blue {
  height: 50px;
  background-color: #1989fa;
  text-align: center;
  line-height: 50px;
  color: #fff;
  border-radius: 5px;
  font-size: 20px;
  cursor: pointer;
  width: 280px;
  margin-top: 20px;
}

.app-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header {
  width: 100%;
  display: flex;
  justify-content: center;
  box-shadow: 2px 2px 10px 1px #0003;
}

.header .container {
  width: 1200px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .game-select {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header .game-icon,
.header .pull-down-game-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
}

.header .game-name,
.header .pull-down-game-name {
  font-size: 14px;
  color: #b8b8b8;
  margin-left: 5px;
}

.header .game-select .pull-down {
  width: 13px;
  height: 7px;
  background: url(/resource/overseas/images/recharge_center/pull_down.png)
  no-repeat center/contain;
  margin-left: 5px;
}

.header .game-select .pull-down.select {
  transform: rotate(180deg);
}

.header .pull-down-box {
  position: absolute;
  top: 85px;
  left: 0px;
  background-color: #fff;
  width: 300px;
  max-height: 300px;
  border-radius: 5px;
  padding: 10px;
  overflow: auto;
  z-index: 999;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
}

.header .pull-down-box .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.header .pull-down-box .item {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 5px 0;
  cursor: pointer;
}

.header .pull-down-box .item:hover {
  background-color: #f5f7fa;
}

.header .language {
  color: #b8b8b8;
  cursor: pointer;
}

.main-img {
  width: 1200px;
  height: 380px;
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  width: 1200px;
  height: 50px;
  margin-top: 20px;
}

.progress-bar .text {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.progress-bar .text .active {
  color: #4aacff;
}

.progress-bar .bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}

.progress-bar .bar .dot,
.progress-bar .bar .dot,
.progress-bar .bar .dot {
  width: 8px;
  height: 8px;
  background-color: #ababab;
  border-radius: 50%;
}

.progress-bar .bar .active .dot {
  transform: scale(1.5);
  background: url(/resource/overseas/images/recharge_center/progress_bar_active.png)
  no-repeat center/contain;
}

.progress-bar .bar .select .dot {
  background-color: #4aacff;
}

.progress-bar .bar .line {
  position: absolute;
  width: 575px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  background-color: #ababab;
}

.progress-bar .bar .active .line,
.progress-bar .bar .select .line {
  background-color: #4aacff;
}

.game-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.game-info .game-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
}

.game-info .game-name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}

.app-content {
  width: 1200px;
  margin: 20px 0;
}

.app-content .log-in-box,
.app-content .select-role-box,
.app-content .top-up-box {
  width: 100%;
}

.app-content .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-content .select-role-box .title {
  width: 480px;
}

.app-content .select-role-box .account-details-wrapper {
  display: flex;
  flex-direction: column;
  width: 480px;
  background-color: #ebebeb;
  border-radius: 10px;
  padding: 10px;
  margin-top: 20px;
}

.app-content .select-role-box .account-details-wrapper .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  width: 100%;
}

.app-content .select-role-box .account-details-wrapper .select-server,
.app-content .select-role-box .account-details-wrapper .select-role {
  cursor: pointer;
  padding-right: 15px;
}

.app-content .select-role-box .account-details-wrapper .select-server::after,
.app-content .select-role-box .account-details-wrapper .select-role::after {
  content: '>';
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: #b8b8b8;
}

.app-content .select-role-box .account-details-wrapper .item .text {
  color: #b8b8b8;
}

.app-content .top-up-box .container {
  width: 1200px;
}

.app-content .top-up-box .title {
  width: 100%;
}

.app-content .top-up-box .top-up-account-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: #ebebeb;
  border-radius: 10px;
  padding: 10px;
  margin: 20px 0;
}

.app-content .top-up-box .top-up-account-wrapper .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px;
  width: 420px;
}

.app-content .top-up-box .top-up-account-wrapper .item .text {
  color: #b8b8b8;
}

.app-content .top-up-box .top-up-account-wrapper .switch-character {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #4aacff;
  font-size: 14px;
  cursor: pointer;
}

.app-content .top-up-box .information {
  position: absolute;
  top: 175px;
  left: 155px;
  cursor: pointer;
  font-size: 12px;
  color: #b8b8b8;
}

.app-content .top-up-box .information::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b8b8b8;
}

.app-content .top-up-box .select-bundle-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.app-content .top-up-box .select-bundle-wrapper .item {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.app-content .top-up-box .select-bundle-wrapper .item .gift-img {
  width: 160px;
  height: 160px;
}

.app-content .top-up-box .select-bundle-wrapper .item .gift-name {
  font-size: 14px;
  margin-top: 10px;
  color: #b8b8b8;
}

.app-content .top-up-box .select-bundle-wrapper .item .gift-price {
  width: 250px;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #000;
  padding: 20px 0;
}

.footer .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 100px;
}

.footer .logo,
.footer .link,
.footer .content {
  margin: 0 20px;
}

.dialog .container {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 15px;
}

.dialog .close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 12px;
  height: 12px;
  background: url(/resource/overseas/images/recharge_center/close.png)
  no-repeat center/contain;
  cursor: pointer;
}

.dialog .confirm {
  width: 100%;
  border-radius: 25px;
}

.dialog .dialog-title {
  width: 100%;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.roadblock-dialog .content {
  margin-top: 20px;
  font-size: 14px;
}

.login-dialog .account-input {
  width: 100%;
  height: 40px;
  display: flex;
  margin-top: 20px;
}

.login-dialog .account-input input[type="text"] {
  box-sizing: border-box;
  color: #b8b8b8;
  outline: none;
  width: 100%;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #b8b8b8;
  padding: 0 5px;
}

.login-dialog .account-input input[type="text"]::placeholder {
  font-size: 14px;
  color: #b8b8b8;
  opacity: 1;
}

.login-dialog .get-account {
  margin-top: 20px;
  width: 100%;
  text-align: left;
  color: #b8b8b8;
  font-size: 14px;
}

.login-dialog .tips-img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.server-dialog .content,
.role-dialog .content {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  overflow: auto;
}

.server-dialog .content .item,
.role-dialog .content .item {
  padding: 10px;
  color: #000;
  cursor: pointer;
}

.server-dialog .content .item:hover,
.role-dialog .content .item:hover,
.language-dialog .content .item:hover {
  background-color: #f5f7fa;
}

.server-dialog .content .item.select,
.role-dialog .content .item.select,
.language-dialog .content .item.select {
  background-color: #f5f7fa;
}

.info-dialog .content {
  font-size: 14px;
}

.language-dialog .content {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  overflow: auto;
}

.language-dialog .content .item {
  padding: 5px 10px;
  margin: 5px;
  color: #000;
  cursor: pointer;
}




