.flex {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
}
.flex1 {
  flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
}
.box-sizing {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.trans {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.text-shadow {
  -webkit-text-shadow: 0 0 15rem #354b40;
  -moz-text-shadow: 0 0 15rem #354b40;
  -ms-text-shadow: 0 0 15rem #354b40;
  -o-text-shadow: 0 0 15rem #354b40;
  text-shadow: 0 0 15rem #354b40;
}
.posCenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.disabled {
  background: #ccc !important;
  pointer-events: none;
}
.loading {
  display: flex !important;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.loading:before {
  content: '';
  width: 20rem;
  height: 20rem;
  border: 2px solid #fff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: loading 1s infinite linear;
  -webkit-animation: loading 1s infinite linear;
  margin-right: 10rem;
}
@keyframes loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
html,
body,
.container,
.wrap-swiper {
  width: 100%;
  height: 100%;
  background: #262b39;
  min-width: 1440px;
}
.scroll-view {
  width: 100%;
  flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  padding: 0 20rem 20rem;
  overflow: auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  font-size: 18rem;
  color: #85859e;
  line-height: 36rem;
}
.stop {
  filter: grayscale(1) !important;
  -webkit-filter: grayscale(1) !important;
  pointer-events: none;
}
.music {
  width: 49rem;
  height: 49rem;
  background: url(../images/music_stop.png) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 90rem;
  left: 20rem;
  z-index: 2;
}
.music.active {
  background: url(../images/music.png) no-repeat center;
  background-size: cover;
  animation: music 2s linear infinite;
  -webkit-animation: music 2s linear infinite;
}
@keyframes music {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes music {
  0% {
    -webkit-transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.nav {
  width: 100%;
  min-width: 1440px;
  height: 74rem;
  background: url(../images/TOP_BG.png?20250311) no-repeat center top;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 999;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  justify-content: space-between;
  align-items: center;
}
.nav-list {
  height: 100%;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  align-items: center;
}
.nav-list .nav-item {
  width: 184rem;
  height: 74rem;
  text-indent: -9999px;
  position: relative;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  justify-content: center;
  align-items: center;
}
.nav-list .nav-item:after {
  background: url(../images/TOP_t_wxz.png) no-repeat;
  background-size: 669rem 38rem;
  content: "";
  display: block;
}
.nav-list .nav-item.item1:after {
  width: 90rem;
  height: 38rem;
  background-position: 0 0;
}
.nav-list .nav-item.item2:after {
  width: 116rem;
  height: 38rem;
  background-position: -172rem 0;
}
.nav-list .nav-item.item3:after {
  width: 128rem;
  height: 38rem;
  background-position: -352rem 0;
}
.nav-list .nav-item.item4:after {
  width: 140rem;
  height: 38rem;
  background-position: -529rem 0;
}
.nav-list .nav-item.active {
  width: 186rem;
  height: 76rem;
  background: url(../images/TOP_xz.png) no-repeat;
  background-size: 100% 100%;
}
.nav-list .nav-item.active:after {
  content: "";
  display: block;
  background: url(../images/TOP_t_xz.png) no-repeat;
  background-size: 658rem 44rem;
}
.nav-list .nav-item.active.item1:after {
  width: 68rem;
  height: 44rem;
  background-position: 0 0;
}
.nav-list .nav-item.active.item2:after {
  width: 91rem;
  height: 44rem;
  background-position: -171rem 0;
}
.nav-list .nav-item.active.item3:after {
  width: 134rem;
  height: 44rem;
  background-position: -335rem 0;
}
.nav-list .nav-item.active.item4:after {
  width: 146rem;
  height: 44rem;
  background-position: -512rem 0;
}
.nav .btn {
  width: 206rem;
  height: 47rem;
  flex-shrink: 0;
  margin-right: 30rem;
}
.nav .btn:hover {
  filter: contrast(1.2);
  -webkit-filter: contrast(1.2);
}
.scroll-top {
  width: 168rem;
  height: 59rem;
  position: fixed;
  bottom: 40rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  -webkit-animation: light 1.5s linear infinite;
  -moz-animation: light 1.5s linear infinite;
  -ms-animation: light 1.5s linear infinite;
  animation: light 1.5s linear infinite;
  cursor: pointer;
}
.wrap-swiper .swiper-slide {
  position: relative;
}
.wrap-swiper .slide1 {
  background: url(../images/1P_BG.png?20250311) no-repeat center top;
  background-size: cover;
}
.wrap-swiper .slide1 .slogan {
  width: 676rem;
  margin-top: 150rem;
  margin-left: 160rem;
}
.wrap-swiper .slide1 .info {
  width: 623rem;
  margin: 30rem 0 0 160rem;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  justify-content: center;
  align-items: center;
}
.wrap-swiper .slide1 .info .ewm {
  width: 118rem;
  height: 118rem;
  padding: 5rem;
  background: #fff;
  box-sizing: border-box;
}
.wrap-swiper .slide1 .info .ewm img {
  display: block;
}
.wrap-swiper .slide1 .info .pc-btn {
  width: 449rem;
  position: relative;
  top: -10rem;
  margin-left: 20rem;
}
.wrap-swiper .slide1 .btn {
  position: absolute;
  top: 90rem;
  right: 20rem;
}
.wrap-swiper .slide1 .btn a {
  width: 136rem;
  height: 43rem;
  margin-bottom: 12rem;
  display: block;
}
.wrap-swiper .slide1 .btn a:hover {
  filter: contrast(1.2);
  -webkit-filter: contrast(1.2);
}
.wrap-swiper .slide2 {
  background: url(../images/2P_BG.png?20250309) no-repeat center top;
  background-size: cover;
}
.wrap-swiper .slide2 .title {
  width: 847rem;
  margin: 116rem auto 0;
}
.wrap-swiper .slide2 .right-pop {
  width: 186rem;
  height: 209rem;
  background: url(../images/2P_suspend.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: 50rem;
  top: 50%;
  margin-top: -104rem;
}
.wrap-swiper .slide2 #vk_groups {
  width: 565rem;
  height: 512rem;
  background: url(../images/2P_SQBG.png) no-repeat;
  background-size: cover;
  margin: 0 auto;
  padding: 10rem;
  box-sizing: border-box;
}
.wrap-swiper .slide2 .list {
  width: 1220rem;
  margin: 0 auto;
}
.wrap-swiper .slide2 .list ul {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wrap-swiper .slide2 .list ul li {
  width: 365rem;
  height: 482rem;
  background: url(../images/2P_SQBG.png) no-repeat;
  background-size: cover;
}
.wrap-swiper .slide2 .list ul li .item-top {
  height: 76rem;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  align-items: center;
  margin-top: 5rem;
  padding: 0 22rem;
  box-sizing: border-box;
}
.wrap-swiper .slide2 .list ul li .item-top .icon {
  width: 44rem;
  height: 44rem;
  border: solid 2rem #fff;
  border-radius: 50%;
  box-sizing: border-box;
  overflow: hidden;
}
.wrap-swiper .slide2 .list ul li .item-top .name {
  font-size: 16rem;
  color: #315b95;
  padding-left: 20rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: bold;
}
.wrap-swiper .slide2 .list ul li .item-cont {
  padding: 12rem 20rem;
}
.wrap-swiper .slide2 .list ul li .item-cont .fans {
  margin-bottom: 12rem;
  font-size: 16rem;
  color: #000000;
}
.wrap-swiper .slide2 .list ul li .info {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  align-items: center;
}
.wrap-swiper .slide2 .list ul li .info-icon {
  width: 50rem;
  height: 50rem;
  border: solid 2rem #fff;
  border-radius: 50%;
  box-sizing: border-box;
  overflow: hidden;
}
.wrap-swiper .slide2 .list ul li .info-name {
  font-size: 18rem;
  color: #315b95;
  padding-left: 20rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: bold;
}
.wrap-swiper .slide2 .list ul li .info-time {
  padding-left: 20rem;
  font-size: 14rem;
  color: #808080;
}
.wrap-swiper .slide2 .list ul li .info-text {
  height: 270rem;
  overflow: auto;
  font-size: 16rem;
  color: #000000;
  margin-top: 8rem;
  box-sizing: border-box;
}
.wrap-swiper .slide4 {
  background: url(../images/4P_BG.png?20250311) no-repeat center top;
  background-size: cover;
  position: relative;
}
.wrap-swiper .slide4 .title {
  width: 793rem;
  margin: 160rem 0 40rem 270rem;
}
.wrap-swiper .slide4:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 727rem;
  background: url(../images/4P_qj.png) no-repeat center;
  background-size: cover;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.wrap-swiper .slide4 .picture {
  position: absolute;
  right: 50rem;
  bottom: 0;
}
.wrap-swiper .slide4 .picture .img {
  position: relative;
  display: none;
}
.wrap-swiper .slide4 .info {
  height: 400rem;
  margin: 0 0 0 270rem;
  position: relative;
  padding-top: 40rem;
  width: 916rem;
  background: url(../images/4P_fj.png) no-repeat 0 0;
  background-size: 896rem 157rem;
  z-index: 2;
}
.wrap-swiper .slide4 .info-icon {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  justify-content: space-between;
  width: 740rem;
  margin-bottom: 20rem;
}
.wrap-swiper .slide4 .info-text {
  padding-right: 160rem;
  font-size: 23rem;
}
.wrap-swiper .slide4 .info .btn {
  width: 250rem;
  height: 40rem;
  position: absolute;
  right: 170rem;
  top: 120rem;
  background: url(../images/R_TT_1.png) no-repeat center;
  background-size: 250rem 40rem;
}
.wrap-swiper .slide4 .info .btn:hover {
  opacity: 0.8;
}
.wrap-swiper .slide4 .info ul li {
  display: none;
}
.wrap-swiper .slide4 .pagination {
  margin: 30rem 0 0 270rem;
  position: relative;
  width: 916rem;
  z-index: 2;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
}
.wrap-swiper .slide4 .pagination a {
  width: 94rem;
  height: 94rem;
  border: solid 1px #000;
  border-radius: 50%;
  margin-right: 40rem;
  padding: 3rem;
  background: #fff;
  position: relative;
}
.wrap-swiper .slide4 .pagination a:hover {
  opacity: 0.8;
}
.wrap-swiper .slide4 .pagination a:after {
  content: '';
  display: block;
  width: 40rem;
  height: 1rem;
  border-bottom: solid 1px #000;
  position: absolute;
  top: 50%;
  right: -40rem;
}
.wrap-swiper .slide4 .pagination a:last-child:after {
  display: none;
}
.wrap-swiper .slide6 {
  background: url(../images/6P_BG.png?20250311) no-repeat center top;
  background-size: cover;
  position: relative;
}
.wrap-swiper .slide6 .title {
  width: 1022rem;
  margin: 110rem auto 0;
}
.wrap-swiper .slide6 .swiper {
  width: 1400rem;
  margin: 12rem auto 0;
}
.wrap-swiper .slide6 .swiper-slide {
  width: 900rem;
}
.wrap-swiper .slide6 .swiper-3d .swiper-slide-shadow-left,
.wrap-swiper .slide6 .swiper-3d .swiper-slide-shadow-right {
  background: rgba(0, 0, 0, 0.4);
}
.wrap-swiper .slide6 .swiper-pagination {
  bottom: 100rem;
}
.wrap-swiper .slide6 .swiper-pagination span {
  width: 32rem;
  height: 33rem;
  background: url(../images/6P_LB2.png) no-repeat center top;
  background-size: cover;
  opacity: 1;
  margin: 0 8rem;
}
.wrap-swiper .slide6 .swiper-pagination span.swiper-pagination-bullet-active {
  background: url(../images/6P_LB1.png) no-repeat center top;
  background-size: cover;
}
.wrap-swiper .slide6 .swiper-button-prev {
  width: 56rem;
  height: 70rem;
  background: url(../images/4P_JT_L.png) no-repeat;
  background-size: cover;
  left: 50%;
  margin-left: -800rem;
  margin-top: 10rem;
}
.wrap-swiper .slide6 .swiper-button-prev:after {
  display: none;
}
.wrap-swiper .slide6 .swiper-button-next {
  width: 56rem;
  height: 70rem;
  background: url(../images/4P_JT_R.png) no-repeat;
  background-size: cover;
  right: 50%;
  margin-right: -800rem;
  margin-top: 10rem;
}
.wrap-swiper .slide6 .swiper-button-next:after {
  display: none;
}
.wrap-swiper .footer {
  height: 220rem;
  background: #262b39;
  background-size: cover;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 20rem;
  box-sizing: border-box;
}
.wrap-swiper .footer .txt {
  font-size: 24rem;
  color: #fff;
  text-align: center;
  padding: 20rem 0;
}
.wrap-swiper .footer .info {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  flex-direction: column;
}
.wrap-swiper .footer-cont {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  align-items: center;
}
.wrap-swiper .footer-cont .logo {
  width: 120rem;
  margin-right: 20rem;
}
.wrap-swiper .footer-cont .icon {
  width: 68rem;
  margin-right: 20rem;
}
.wrap-swiper .footer-cont .text {
  color: #fff;
  font-size: 22rem;
  margin: 0 20rem;
  position: relative;
  text-decoration: underline;
}
select:invalid {
  color: gray;
}
.pay-container {
  background: #e1e2e6;
}
.pay-head {
  max-width: 1920px;
  width: 100%;
  height: 80rem;
  background: #0048a1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99;
  padding: 0 22rem;
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.pay-head .pay-head-left {
  display: flex;
  align-items: center;
}
.pay-head .text1 {
  font-size: 26rem;
  margin-right: 20rem;
}
.pay-head .text2 {
  font-size: 18rem;
}
.pay-head .btn {
  font-size: 24rem;
  background: #48a4ff;
  color: #fff;
  height: 42rem;
  padding: 0 12rem;
  line-height: 42rem;
  border-radius: 8rem;
}
.pay-content {
  width: 1200rem;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  padding: 80rem 0 118rem;
  box-sizing: border-box;
}
.pay-content-w {
  width: 624rem;
  padding: 0 0 50rem;
  margin: 0 auto;
}
.pay-content-w .title {
  font-size: 36rem;
  line-height: 48rem;
  color: #000;
  padding-left: 56rem;
  background: url(../images/CZ_title_B-1.png) no-repeat left center;
  background-size: 43rem 34rem;
  position: relative;
  margin-top: 50rem;
}
.pay-content-w .title span {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -17rem;
  width: 43rem;
  height: 34rem;
  padding-right: 5rem;
  box-sizing: border-box;
  text-align: center;
  font-size: 24rem;
  color: #ee4641;
  line-height: 34rem;
}
.pay-select {
  width: 612rem;
  height: 60rem;
  display: flex;
  background: #f3f5f7;
  border-radius: 40rem;
  margin: 20rem auto 0;
  padding: 0 30rem 0 20rem;
  box-sizing: border-box;
  align-items: center;
}
.pay-select span {
  padding-right: 12rem;
  font-size: 25rem;
  color: #000;
  min-width: 100rem;
}
.pay-select select {
  flex: 1;
  border: none;
  background: url(../images/CZ_pulldown.png) no-repeat right center;
  background-size: 20rem 10rem;
  font-size: 25rem;
  appearance: none;
  -webkit-appearance: none;
}
.pay-select select option {
  padding: 10rem;
}
.pay-select select option:not(:first-child) {
  color: #000;
}
.pay-list {
  width: 600rem;
  margin: 0 auto;
}
.pay-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pay-list ul li {
  margin-top: 20rem;
}
.pay-list ul li a {
  width: 290rem;
  height: 124rem;
  border: solid 3rem #eae8ef;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 24rem;
  justify-content: space-between;
  border-radius: 8rem;
}
.pay-list ul li a:active {
  background-color: rgba(0, 0, 0, 0.05);
}
.pay-list ul li a .info-title {
  font-size: 26rem;
  color: #000;
  line-height: 40rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pay-list ul li a .info {
  overflow: hidden;
  padding-right: 12rem;
}
.pay-list ul li a .info-desc {
  font-size: 20rem;
  color: #85848a;
  line-height: 30rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pay-list ul li a .info-icon {
  width: 68rem;
  flex-shrink: 0;
}
.pay-list ul li.active {
  position: relative;
}
.pay-list ul li.active:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 55rem;
  height: 54rem;
  background: url(../images/CZ_title_B.png) no-repeat;
  background-size: cover;
}
.pay-list ul li.active a {
  border-color: #f93f36;
}
.pay-method ul li {
  margin-top: 20rem;
  position: relative;
}
.pay-method ul li a {
  width: 100%;
  height: 110rem;
  box-sizing: border-box;
  border: solid 3rem #eae8ef;
  border-radius: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24rem;
  font-size: 26rem;
  color: #25213c;
  position: relative;
}
.pay-method ul li a:active {
  background-color: rgba(0, 0, 0, 0.05);
}
.pay-method ul li .label {
  background: #f93f36;
  border-top-left-radius: 8rem;
  border-top-right-radius: 8rem;
  border-bottom-right-radius: 40rem;
  padding: 2rem 12rem;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18rem;
  color: #fff;
  font-style: normal;
}
.pay-method ul li .method-icon {
  width: 110rem;
  height: 56rem;
  background: #f5f5fe;
  border-radius: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.pay-method ul li .method-icon img {
  width: 42rem;
}
.pay-method ul li.active:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 55rem;
  height: 54rem;
  background: url(../images/CZ_title_B.png) no-repeat;
  background-size: cover;
}
.pay-method ul li.active a {
  border-color: #f93f36;
}
.pay-footer {
  max-width: 1920px;
  min-width: 1440px;
  width: 100%;
  height: 118rem;
  background: #fff;
  border-top: solid 1px #e6e6e6;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  margin: 0 auto;
}
.pay-footer-cont {
  width: 624rem;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pay-footer-cont .price {
  font-size: 33rem;
}
.pay-footer-cont .price span {
  font-size: 23rem;
  color: #848484;
  padding-right: 20rem;
}
.pay-footer-cont .btn {
  height: 64rem;
  line-height: 64rem;
  padding: 0 24rem;
  background: #e5493d;
  border-radius: 12rem;
  color: #fff;
  font-size: 27rem;
}
.pay-footer-cont .btn:active {
  background: #d8392f;
}
.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.modal:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.modal .close {
  position: absolute;
  top: 20rem;
  right: 20rem;
  width: 20rem;
  height: 20rem;
  background: url(../images/tx_close.png) no-repeat center center;
  background-size: cover;
}
.modal .close:hover {
  transform: rotate(180deg);
  transition: all 0.3s;
}
.modal .login-w {
  width: 562rem;
  height: 814rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -407rem 0 0 -281rem;
  border-radius: 16rem;
  padding: 32rem 24rem;
  box-sizing: border-box;
}
.modal .login-w .logo {
  width: 226rem;
  margin: 0 auto;
}
.modal .login-w .login-title {
  font-size: 32rem;
  text-align: center;
  margin-top: 24rem;
}
.modal .login-w .login-input {
  width: 100%;
  height: 54rem;
  background: #f3f5f7;
  border-radius: 24rem;
  margin-top: 24rem;
  padding: 0 24rem;
  box-sizing: border-box;
  position: relative;
}
.modal .login-w .login-input input {
  width: 100%;
  height: 100%;
  background: none;
  outline: none;
  border: none;
  font-size: 23rem;
  box-sizing: border-box;
}
.modal .login-w .login-input input::-webkit-input-placeholder {
  color: #cccdcd;
}
.modal .login-w .login-input input.pwd {
  padding-right: 50rem;
}
.modal .login-w .login-input input.pwd[type="password"] + .eyes {
  background: url(../images/DL_close.png) no-repeat center center;
  background-size: 33rem 15rem;
}
.modal .login-w .login-input input.pwd[type="text"] + .eyes {
  background: url(../images/DL_open.png) no-repeat center center;
  background-size: 32rem 18rem;
}
.modal .login-w .login-input .eyes {
  width: 40rem;
  height: 54rem;
  position: absolute;
  top: 0;
  right: 24rem;
}
.modal .login-w .login-link {
  font-size: 20rem;
  display: flex;
  justify-content: space-between;
  margin-top: 16rem;
}
.modal .login-w .login-link a {
  text-decoration: underline;
  flex-shrink: 0;
  line-height: 20rem;
}
.modal .login-w .login-link .tips {
  color: #e5493d;
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  flex-shrink: initial;
  padding-right: 20rem;
}
.modal .login-w .login-btn {
  width: 100%;
  height: 54rem;
  background: #e5493d;
  font-size: 24rem;
  color: #fff;
  display: block;
  border-radius: 12rem;
  text-align: center;
  line-height: 54rem;
  margin-top: 24rem;
  margin-bottom: 24rem;
}
.modal .login-w .login-btn:active {
  background: #d7392e;
}
.modal .login-w .login-text {
  font-size: 19rem;
  color: #000;
  text-align: center;
  margin-top: 12rem;
  line-height: 24rem;
}
.modal .login-w .login-text a {
  text-decoration: underline;
}
.modal .login-w .login-other {
  margin-top: 24rem;
  border-top: solid 1px #ddd;
  padding-top: 16rem;
}
.modal .login-w .login-other .other-title {
  font-size: 32rem;
  text-align: center;
  line-height: 40rem;
}
.modal .login-w .login-other .other-btn {
  display: flex;
  justify-content: center;
  margin-top: 20rem;
}
.modal .login-w .login-other .other-btn a {
  width: 64rem;
  height: 64rem;
  margin: 0 16rem;
}
.modal .common-w {
  width: 562rem;
  height: 400rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -200rem 0 0 -281rem;
  border-radius: 16rem;
  padding: 52rem 24rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.modal .common-w .title {
  height: 54rem;
  line-height: 54rem;
  font-size: 40rem;
  text-align: center;
  color: #000;
}
.modal .common-w .content {
  font-size: 24rem;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.modal .pay-w {
  width: 562rem;
  height: 400rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -200rem 0 0 -281rem;
  border-radius: 16rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.modal .pay-w .title {
  height: 59rem;
  line-height: 59rem;
  background: url(../images/CZ_XB_BG.png) no-repeat center;
  background-size: cover;
  font-size: 19rem;
  line-height: 18rem;
  color: #000;
  padding: 12rem 80rem 0 54rem;
  box-sizing: border-box;
}
.modal .pay-w .title i {
  width: 28rem;
  height: 28rem;
  background: url(../images/CZ_XB_Jp.png) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 16rem;
  left: 16rem;
}
.modal .pay-w .content {
  font-size: 24rem;
  flex: 1;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 0 40rem 0 60rem;
}
.modal .pay-w .content p {
  margin-bottom: 10rem;
  display: flex;
  text-align: left;
  margin: 12rem 0;
}
.modal .pay-w .content p span:nth-child(1) {
  font-size: 24rem;
  color: #999;
  min-width: 150rem;
}
.modal .pay-w .content p span:nth-child(2) {
  font-size: 24rem;
  color: #000;
}
.modal .pay-w .footer {
  border-top: solid 1px #ddd;
  padding: 24rem;
  display: flex;
  justify-content: space-between;
}
.modal .pay-w .footer .price {
  font-size: 33rem;
}
.modal .pay-w .footer .price span {
  font-size: 23rem;
  color: #848484;
  padding-right: 20rem;
}
.modal .pay-w .footer .desc {
  font-size: 20rem;
  color: #999;
}
.modal .pay-w .footer .btn {
  height: 64rem;
  line-height: 64rem;
  padding: 0 24rem;
  background: #e5493d;
  border-radius: 12rem;
  color: #fff;
  font-size: 27rem;
}
.modal .pay-w .footer .btn:active {
  background: #d8392f;
}
.modal .reset-w {
  width: 562rem;
  height: 400rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -200rem 0 0 -281rem;
  border-radius: 16rem;
  padding: 24rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.modal .reset-w .title {
  height: 54rem;
  line-height: 54rem;
  font-size: 40rem;
  text-align: center;
  color: #000;
}
.modal .reset-w .content {
  font-size: 24rem;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin-top: 50rem;
}
.modal .reset-w .content .input {
  width: 100%;
  height: 54rem;
  display: flex;
}
.modal .reset-w .content .input span {
  padding: 0 24rem;
  line-height: 54rem;
  flex-shrink: 0;
}
.modal .reset-w .content .input input {
  flex: 1;
  background: #f3f5f7;
  border-radius: 24rem;
  padding: 0 24rem;
  box-sizing: border-box;
  font-size: 22rem;
}
.modal .reset-w .content .input input::-webkit-input-placeholder {
  color: #cccdcd;
}
.modal .reset-w .content .btn {
  height: 64rem;
  line-height: 64rem;
  padding: 0 24rem;
  background: #e5493d;
  border-radius: 12rem;
  color: #fff;
  font-size: 27rem;
  margin-top: 40rem;
}
.modal .reset-w .content .btn:active {
  background: #d8392f;
}
.modal .reset-w .content .link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 50rem;
}
.modal .reset-w .content .link a {
  font-size: 19rem;
  text-decoration: underline;
}
@keyframes light {
  0% {
    bottom: 30rem;
    opacity: 1;
  }
  100% {
    bottom: 10rem;
    opacity: 0;
  }
}
@-webkit-keyframes light {
  0% {
    bottom: 30rem;
    opacity: 1;
  }
  100% {
    bottom: 10rem;
    opacity: 0;
  }
}
@-moz-keyframes light {
  0% {
    bottom: 30rem;
    opacity: 1;
  }
  100% {
    bottom: 10rem;
    opacity: 0;
  }
}
@-ms-keyframes light {
  0% {
    bottom: 30rem;
    opacity: 1;
  }
  100% {
    bottom: 10rem;
    opacity: 0;
  }
}
@keyframes light2 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes light2 {
  0% {
    -webkit-transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes light2 {
  0% {
    -moz-transform: translateY(0px);
  }
  50% {
    -moz-transform: translateY(-10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-ms-keyframes light2 {
  0% {
    -ms-transform: translateY(0px);
  }
  50% {
    -ms-transform: translateY(-10px);
  }
  100% {
    -ms-transform: translateY(0);
  }
}
