.wrap{
  position: relative;
}
.open-btn{
  position: fixed;
  width: 80%;
  left:10%;
  bottom: 16px;
  z-index: 2
}
.bank-logo{
  position: absolute;
  width: 23vw;
  left: 25vw;
  top: 4.5vw;
}
.wallet-logo{
  position: absolute;
  width: 16vw;
  left: 6vw;
  top: 4.1vw;
}
.card-swiper{
  position: absolute;
  width: 90%;
  top: 42%;
  left: 5%;
}
.right-swiper{
  position: absolute;
  width: 84%;
  top: 24%;
  left: 8%;
}
.swiper-container1{
  width: 70%;
  padding-bottom: 8%;
}
.swiper-container2{
  padding-bottom: 8%;
}
.swiper-pagination-bullet{
  width: 6px;
  height: 6px; 
  background-color: #535258
}
.swiper-pagination-bullet-active{
  background-color:#f6dfbf 
}
.card-name{
  width: 70%;
  margin: 0 auto 12px;
}
.finger{
 position: absolute;
 width: 7%;
 top: 2%;
 left: 76%;
}
.benifit{
  position: absolute;
  width: 40%;
  top: 64%;
  left: 30%;
  height: 10%;
}
.benifit-item{
  position: absolute;
  width: 90vw;
  top: 10vw;
  left: 5vw;
  height: 36vw;
}
.benifit-item:nth-child(2){
  top: 52vw;
}
.benifit-item:nth-child(3){
  top: 93vw;
}


.morebenifit-item{
  position: absolute;
  width: 44vw;
  top: 5vw;
  left: 5vw;
  height: 45vw;
}
.morebenifit-item:nth-child(2){
  left: 52vw;
}
.morebenifit-item:nth-child(3){
  top: 63vw;
}
.morebenifit-item:nth-child(4){
  top: 63vw;
  left: 52vw;
}
.morebenifit-item:nth-child(5){
  top: 111vw;
}
.morebenifit-item:nth-child(6){
  top: 111vw;
  left: 52vw;
}



.mask{
display: none;
width: 100%;
height: 100%;
background-color: #000;
opacity: 1;
position: fixed;
top: 0;
left: 0;
z-index: 99;
}
.alert-box{
  display: none;
  width: 300px;
  height: 412px;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -150px;
  margin-top: -235px;
  border-radius: 12px;
  background: url("../images/alert-bg.png");
  background-size: 100% 100%;
  opacity: 1;
  z-index: 100;
  color:#000;
}
.download-alert{
  display: none;
  width: 300px;
  height: 200px;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -150px;
  margin-top: -85px;
  border-radius: 12px;
  background: #fff;
  opacity: 1;
  z-index: 100;
  color:#000;
  padding:24px;
  box-sizing:border-box;
  text-align: center;
  font-size: 18px;
}
.download-btn{
  width: 140px;
  height: 30px;
  margin:36px auto 0;
  background: #007dff;
  color: #fff;
  border-radius: 15px;
  line-height: 30px;
}
.close-btn{
  width: 30px;
  height: 54px;
  position: absolute;
  left: 50%;
  bottom: -50px;
  margin-left: -15px;
}
.rule-title{
  margin-top: 5px;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  color:#fff;
  box-sizing: border-box; 
}
.rule-con{
  margin: 16px 6%;
  overflow-y:scroll;
  height: 85%;
  color: #666;
  width: 88%;
}
.rule-con p{
  margin-bottom: 4px;
}
.rule-con a{
  text-decoration: underline;
}
.scale-btn{
  animation: scale-move 1s 0s infinite ease;
  -moz-animation: scale-move 1s 0s infinite ease;
  -webkit-animation: scale-move 1s 0s infinite ease;
  -o-animation: scale-move 1s 0s infinite ease;
}
@keyframes scale-move
{
    0% {
     -webkit-transform: scale(0.98);
        transform: scale(0.98);
    }
    50% {
     -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
    }
}
.R-move{
  animation: right-move 1s 0s infinite ease;
  -moz-animation: right-move 1s 0s infinite ease;
  -webkit-animation: right-move 1s 0s infinite ease;
  -o-animation: right-move 1s 0s infinite ease;
}
@keyframes right-move
{
    0% {
     -webkit-transform: translateX(-10%);
        transform: translateX(-10%);
      opacity: 0
    }
    15% {
     -webkit-transform: translateX(-5%);
        transform: translateX(-5%);
      opacity: 0.5
    }
    50% {
     -webkit-transform: translateX(0%);
        transform: translateX(0%);
      opacity: 1
    }
    85% {
     -webkit-transform: translateX(5%);
        transform: translateX(5%);
      opacity: 0.5
    }
    
    100% {
        -webkit-transform: translateX(10%);
         transform: translateX(10%);
      opacity: 0
      
    }
}