
.btn-container{
   display: flex;
  justify-content: center;
  align-items: center;
}
.btn-container .theme-button{
  display: block;
  margin: 22px 30px 0;
}

.flex {
  display: flex;
}
.flex-col{
  flex-direction: column;
}
.items-center{
  align-items: center;
}
.justify-between{
  justify-content: space-between;
}
.flex-center{
  display: flex;
  justify-content: center;
  align-items: center;
}
.overflow-hidden{
  overflow: hidden;
}
.relative{
  position: relative;
}
.absolute{
  position: absolute;
}
.pointer{
  cursor: pointer;
}
.display-none{
  display: none;
}
.f14{
  font-size: 14px;
}

.pay-dialog{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  /* display: none; */
  z-index: 9999;

}
.pay-container {
   width: 1073px;
  height: 720px;
  padding: 20px;
  box-sizing: border-box;
  background: linear-gradient(to right, #FDF6D7 20%, #C2EDFF 100%);
  border-radius: 15px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pay-container::before {
  content: "";
  display: block;
  width: 450px;
  height: 106px;
  height: 96px;
  background: url("../images/pay/login_bg_icon.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: -30px;
  top: 0;
  right: 170px;
}
.pay-container .pay_top {
  height: 76px;
  padding-top: 10px;
}

.pay-container .pay_top .top_title {
  height: 37px;
  line-height: 37px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  color: #333;
}

.pay-container .pay_top .top_title img {
  width: 46px;
  height: 46px;
  margin-right: 10px;
  background-color: #fff;
}

.pay-container .pay_top .top_title .top_name {
  height: 27px;
  line-height: 27px;
  margin-top: 10px;
  font-size: 16px;
  color: #44496A;
}

.pay-container .pay_top .vip_close {
  width: 22px;
  height: 22px;
  top: 30px;
  right: 30px;
}

.pay-container .pay_top .vip_close svg:hover path {
  fill: #366BEB;
}

.pay-container .pay_content {
  width: 1033px;
  height: 606px;
  padding: 0 30px;
  background-color: #fff;
  border-radius: 30px;
}

.pay-container .pay_content .pay_info {
  width: 680px;
  width: 100%;
  height: 116px;
}

.pay-container .pay_content .vip_list {
  height: 196px;
  margin-bottom: 40px;
}

.pay-container .pay_content .vip_list .vip_item {
  width: 311px;
  height: 196px;
  padding: 15px;
  border-radius: 10px;
  margin-right: 20px;
  border: 2px solid #fff;
  background: url("../images/pay/vip_common_bg.png") no-repeat;
  background-size: 100% 100%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.07);
  cursor: pointer;
}

.pay-container .pay_content .vip_list .vip_item.active {
  border: 2px solid #DBA87C;
  position: relative;
}

.pay-container .pay_content .vip_list .vip_item.active::before {
  content: '';
  display: block;
  width: 56px;
  height: 49px;
  background: url("../images/pay/vip_active.png") no-repeat center;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.pay-container .pay_content .vip_list .vip_item.discount {
  position: relative;
}

.pay-container .pay_content .vip_list .vip_item.discount::after {
  content: '';
  display: block;
  width: 112px;
  height: 31px;
  background: url("../images/pay/vip_discount.png") no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.pay-container .pay_content .vip_list .vip_item:last-child {
  margin-right: 0;
}

.pay-container .pay_content .vip_list .vip_item .vip_name {
  width: 120px;
  height: 24px;
  margin-top: 24px;
  margin-bottom: 12px;
  font-family: Inter, Inter;
  font-weight: bold;
  font-size: 20px;
  background: linear-gradient(to right, #6B3F06 0%, #E07B36 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pay-container .pay_content .vip_list .vip_item .vip_price {
  width: 230px;
  height: 36px;
  line-height: 36px;
  margin-bottom: 30px;
  font-family: Inter, Inter;
  font-weight: normal;
  font-weight: bold;
  font-size: 32px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  background: linear-gradient(180deg, #571503 0%, #7B4226 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pay-container .pay_content .vip_list .vip_item .vip_oldPrice {
  font-size: 13px;
  color: #C29E6C;
  text-decoration: line-through;
}

.pay-container .pay_content .vip_list .vip_item .vip_desc {
  font-size: 16px;
  color: #C29E6C;
}

.pay-container .pay_content .vip_list .vip_item .vip_desc strong {
  font-weight: bold;
  font-size: 20px;
}

.pay-container .pay_content .vip_list .vip_forever {
  background: url("../images/pay/vip_forever_bg.png") no-repeat;
  background-size: 120%;
}

.pay-container .pay_content .pay_area {
  width: 100%;
  height: 240px;
  background: url("../images/pay/pay_area_bg.png") no-repeat;
  background-size: 100% 100%;
  position: relative;
}

.pay-container .pay_content .pay_area .pay_left {
  width: 230px;
  height: 100%;
  margin-right: 32px;
}

.pay-container .pay_content .pay_area .pay_left .pay_code {
  width: 176px;
  height: 176px;
  position: absolute;
  top: 32px;
  left: 40px;
  border-radius: 10px;
}

.pay-container .pay_content .pay_area .pay_left .pay_code .qrcode {
  width: 176px;
  height: 176px;
}
.pay-container .pay_content .pay_area .pay_left .pay_code .img-cover {
  width: 176px;
  height: 176px;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(255,255,255, 0.97);
  /* background-color: rgba(0,0,0, 0.5); */
  /* background-color: rgb(15, 14, 14); */
  /* display: none; */
}

.pay-container .pay_content .pay_area .pay_left .pay_code .code_load,
.pay-container .pay_content .pay_area .pay_left .pay_code .code_reset {
  top: 0;
  left: 0;
  width: 176px;
  height: 176px;
  background-color: rgba(255, 255, 255, 0.9);
}

.pay-container .pay_content .pay_area .pay_left .pay_code .code_load.code_reset .reset .reset_img,
.pay-container .pay_content .pay_area .pay_left .pay_code .code_reset.code_reset .reset .reset_img {
  width: 36px;
  height: 36px;
}

.pay-container .pay_content .pay_area .pay_left .pay_code .code_load.code_reset .reset .reset_text,
.pay-container .pay_content .pay_area .pay_left .pay_code .code_reset.code_reset .reset .reset_text {
  width: 56px;
  height: 18px;
}

.pay-container .pay_content .pay_area .pay_left .pay_code .code_load.code_load .load,
.pay-container .pay_content .pay_area .pay_left .pay_code .code_reset.code_load .load {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pay-container .pay_content .pay_area .pay_right .pay_text {
  height: 40px;
  line-height: 40px;
  font-size: 32px;
  color: #333;
  font-weight: normal;
  margin-top: 26px;
}

.pay-container .pay_content .pay_area .pay_right .pay_text strong {
  font-size: 40px;
  color: #FF6262;
}

.pay-container .pay_content .pay_area .pay_right .pay_text .pay_discount {
  height: 32px;
  line-height: 32px;
  padding: 0 10px;
  background-color: #FF6262;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  margin-left: 16px;
}

.pay-container .pay_content .pay_area .pay_right .pay_check {
  margin-top: 120px;
  color: #366BEB;
}

.pay-container .pay_content .pay_area .pay_right .pay_check .check_label {
  font-size: 14px;
  color: #333;
  margin-left: 10px;
}

.pay-container .pay_content .pay_area .pay_right .pay_check .check_label a {
  color: #366BEB;
  cursor: pointer;
}

.pay-container .pay_content .pay_area .pay_right .pay_check .check_label a:hover {
  text-decoration: underline;
}

.marquee-container {
  width: 100%;
  width: 1000px;
  height: 50px;
  margin-top: 30px;
  margin-bottom: 30px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.marquee-container .marquee-track {
  width: 1200px;
  display: flex;
  height: 36px;
  animation: scroll 30s linear infinite;
}

.marquee-container .marquee-item {
  flex-shrink: 0;
  padding: 6px 22px;
  height: 35px;
  line-height: 35px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 14px;
  margin-right: 20px;
  color: #FF6262;
  background-color: rgba(255, 229, 229, 0.32);
  border: 1px solid rgba(255, 139, 139, 0.3);
  border-radius: 74px;
  position: relative;
}

.marquee-container .marquee-item::before {
  content: "";
  box-shadow: inset 2px 4px 10px rgba(255, 126, 126, 0.14);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 74px;
}

.marquee-container .marquee-item::after {
  content: "";
  box-shadow: 0 0 12px rgba(70, 83, 205, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 74px;
}

.marquee-container .marquee-item.active {
  margin: 0 36px 0 24px;
  transform: scale(1.2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}