﻿@keyframes breathing {
  50% {
    transform: scale(0.6, 0.6);
  }
  0% {
    transform: scale(1, 1);
  }
}

@-webkit-keyframes breathing {
  50% {
    transform: scale(0.6, 0.6);
  }
  0% {
    transform: scale(1, 1);
  }
}

@-moz-keyframes breathing {
  50% {
    transform: scale(0.6, 0.6);
  }
  0% {
    transform: scale(1, 1);
  }
}

@-o-keyframes breathing {
  50% {
    transform: scale(0.6, 0.6);
  }
  0% {
    transform: scale(1, 1);
  }
}

.sk-wave {
  position: fixed;
  z-index: 99;
  padding: 50% auto;
  width: 100%;
  left: 0;
  right: 0;
  height: 100%;
  /*height: 40px;*/
  text-align: center;
  font-size: 10px;
}

.sk-wave .sk-rect {
  background-color: #ffb400;
  margin-top: 45%;
  height: 50px;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
  animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}

.sk-wave .sk-rect1 {
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
}

.sk-wave .sk-rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-wave .sk-rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-wave .sk-rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-wave .sk-rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-waveStretchDelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@keyframes sk-waveStretchDelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  outline: none;
}

html,
body {
  height: 100%;
  position: relative;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul {
  list-style: none;
}

#app {
  height: calc(100% - 0.9rem);
}

.section-title {
  width: 100%;
  height: 0.8rem;
  line-height: 0.4rem;
  padding-left: 0.2rem;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  position: relative;
}

.section-title span {
  height: 0.4rem;
  padding-left: 0.2rem;
  border-left: 2px solid #f87201;
  color: #000;
  font-size: 0.28rem;
  font-weight: 700;
}

.tip {
  margin: 0;
  padding: 0.2rem 0 0.2rem 0.2rem;
  color:#333333;
  background-color:#dcdcdc;
  font-size: 0.28rem;
}

.bank-list {
  width: 100%;
  padding: 0 calc(4% + 0.2rem);
  position: relative;
}

.bank-list ul {
  margin: 0 -0.1rem;
  overflow: auto;
/*  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
      flex-wrap: wrap;*/
}

.bank-list .bank-item {
  float: left;
  width: 33.33%;
  height: 2.5rem;
  margin-top: 0.2rem;
  padding: 0 0.1rem;
  position: relative;
}

.bank-list .bank-item a {
  height: 100%;
  padding: 0.2rem 0;
  font-size: 0.28rem;
  background-color: #fdfdfd;
  border-radius: 5px;
  -webkit-box-shadow: 0px 1px 6px 0px #dddddd;
          box-shadow: 0px 1px 6px 0px #dddddd;
  display: block;
  text-align: center;
  text-decoration: none;
  position: relative;
}

.bank-list .bank-item img {
  height: 40%;
  top: 10%;
  margin: 0 auto;
  display: block;
  position: relative;
}

.bank-list .bank-item .bank-name {
  bottom: -15%;
  color: #333;
  font-size: 0.28rem;
  line-height: 0.4rem;
  position: relative;
}

.bank-list .bank-item .bank-desc {
  bottom: -15%;
  padding: 0 0.15rem;
  color: #9b9b9b;
  font-size: 0.22rem;
  line-height: 0.3rem;
  position: relative;
}

.bank-list .bank-item .bank-desc.important {
  color: #FF0000;
}

.bank-list .bank-item .flag {
  position: absolute;
  top: 8%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transform-origin: 100% 100%;
      -ms-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  width: 0.9rem;
  height: 0.5rem;
  color: #ffffff;
  font-size: 0.36rem;
  background-color: #ff4a57;
  border-radius: 6px 0 6px 0;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(139, 139, 139, 0.5);
          box-shadow: 0px 1px 1px 0px rgba(139, 139, 139, 0.5);
  white-space: nowrap;
  overflow: hidden;
}

.bank-list button.more,
.card-list button.more {
  width: 100%;
  height: 0.8rem;
  margin-top: 0.2rem;
  line-height: 0.8rem;
  text-align: center;
  font-size: 0.3rem;
  color: #f97201;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  -webkit-box-shadow: 1px 3px 5px -3px #dddddd;
          box-shadow: 1px 3px 5px -3px #dddddd;
  display: block;
  position: relative;
}

.bank-list button.more span,
.card-list button.more span {
  width: 10px;
  height: 10px;
  top: 0.15rem;
  left: calc(50% + 0.7rem);
  background-color: #ff0000;
  border-radius: 100%;
  display: inline-block;
  position: absolute;
  animation: breathing 1s 0.3s linear infinite;
  -webkit-animation: breathing 1s 0.3s linear infinite;
  -moz-animation: breathing 1s 0.3s linear infinite;
  -o-animation: breathing 1s 0.3s linear infinite;
}

.swiper-container .swiper-slide {
  border-radius: 2px;
  -webkit-box-shadow: 0px 1px 6px 0px rgba(209, 209, 209, 0.5);
          box-shadow: 0px 1px 6px 0px rgba(209, 209, 209, 0.5);
  position: relative;
}

.swiper-container .swiper-slide a,
.swiper-container .swiper-slide img {
  width: 100%;
  border-radius: 2px;
  display: block;
}

.labels-container {
  padding: 0.4rem 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.labels-container .label-list {
  width: 100%;
  padding: 0 calc(4% + 0.2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.labels-container .label-list .label {
  padding: 0 0.1rem;
  text-align: center;
  text-decoration: none;
}
.labels-container .label-list li {
  font-size: 0;
}

.labels-container .label-list .label img {
  height: 1rem;
}

.labels-container .label-list .label span {
  color: #4a4a4a;
  font-size: 0.24rem;
  line-height: 0.6rem;
  display: block;
}

.card-list .card-item {
  margin-top: 0.05rem;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  overflow: auto;
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;*/
}

.card-list .card-item .card-img {
  float: left;
  width: 30%;
  border-right: 1px solid #eeeeee;
  display: inline-block;
  position: relative;
  font-size: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.card-list .card-item .card-img img {
  width: 100%;
  display: block;
}

.card-list .card-item .card-img .flag {
  width: 15%;
  top: 0;
  right: 6%;
  padding: 0.05rem;
  color: #ffffff;
  font-size: 0.22rem;
  background-color: #d0021b;
  position: absolute;
  z-index: 1;
}

.card-list .card-item .card-img .flag:before {
  content: "";
  top: 0.16rem;
  left: 0;
  border: 0.16rem solid transparent;
  border-left: 0.16rem solid #d0021b;
  position: absolute;
  z-index: -1;
}

.card-list .card-item .card-img .flag:after {
  content: "";
  top: 0.16rem;
  right: 0;
  border: 0.16rem solid transparent;
  border-right: 0.16rem solid #d0021b;
  position: absolute;
  z-index: -1;
}

.card-list .card-item .card-info {
  float: left;
  width: 70%;
  padding: 3% 6%;
  color: #4a4a4a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.card-list .card-item .card-info .title {
  padding-bottom: 2%;
  font-size: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card-list .card-item .card-info .title span {
  font-size: 0.32rem;
  line-height: 0.42rem;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.card-list .card-item .card-info .title img {
  width: 20%;
  height: 100%;
  margin-right: 4%;
  display: block;
}

.card-list .card-item .card-info ul {
  list-style: initial;
  margin-left: 8%;
  margin-bottom: 2%;
}

.card-list .card-item .card-info ul li {
  font-size: 0.26rem;
  line-height: 0.36rem;
  white-space: nowrap;
}

.card-list .card-item .card-info .opera {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.card-list .card-item .card-info .opera .button {
  width: 55%;
  margin-right: 5%;
  color: #ffffff;
  font-size: 0.26rem;
  line-height: 0.52rem;
  border-radius: 25px;
  background-color: #d0021b;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card-list .card-item .card-info .opera span {
  font-size: 0.2rem;
  white-space: nowrap;
}

.card-list .card-item .card-info .opera em {
  font-style: normal;
  color: #c90017;
}

.helper {
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.helper .button {
  width: 45%;
  margin: 0 0.2rem;
  font-size: 0.3rem;
  line-height: 0.8rem;
  color: #FFFFFF;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#FF9D78), to(#FF3972));
  background: -webkit-linear-gradient(left, #FF9D78, #FF3972);
  background: -o-linear-gradient(left, #FF9D78, #FF3972);
  background: linear-gradient(to right, #FF9D78, #FF3972);
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.helper .button img {
  height: 0.4rem;
  margin-right: 0.2rem;
  display: block;
}

.bar {
  width: 100%;
  height: 0.9rem;
  bottom: 0;
  color: #333333;
  font-size: 0.32rem;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 999;
}

.bar .bubble {
  top: -1rem;
  left: 0.25rem;
  padding: 0.1rem 0.2rem 0.1rem 0.1rem;
  color: #ffffff;
  font-size: 0.28rem;
  background: rgba(33, 33, 33, 0.8);
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.bar .bubble.faded {
  opacity: 0.5;
}

.bar .bubble img {
  height: 0.4rem;
  padding: 0.05rem;
  margin-right: 0.15rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#F9A8A7), to(#F16A6B));
  background: -webkit-linear-gradient(#F9A8A7, #F16A6B);
  background: -o-linear-gradient(#F9A8A7, #F16A6B);
  background: linear-gradient(#F9A8A7, #F16A6B);
  border-radius: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.bar a {
  border-top: 1px solid #dedede;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}


.bar a:nth-of-type(1),.bar a:nth-of-type(2) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.bar a:nth-of-type(2) {
  border-left: 1px solid #dedede;
}