/* 公共样式  写完整的页面的时候，请加载这个公共样式（保证不同的浏览器样式一致）*/
/* 选中的页面中所有的标签，去除他的内外边距 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* 设置所有的浏览器默认字体样式  默认值都是大小16px，行高是字号的1.2倍，微软雅黑字体（主要利用的是继承） */
body {
  font: 16px/1.2 "微软雅黑";
}
/* 取消h标签的默认加粗效果 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
/* 取消页面中所有的em倾斜效果 */
em {
  font-style: normal;
}
/* 取消a标签的下划线 */
a {
  text-decoration: none;
  /*color: #000;*/
}
/* 取消ul*li的小点点 */
ul {
  list-style: none;
  /* 让img,input,button设置成垂直对齐方式 */
}
img {
  /* 解决底部缝隙,图片可以被行高设置成居中 */
  vertical-align: middle;
}
/* 清除clearfix浮动 */
.clearfix::after {
  content: '';
  display: block;
  clear: both;
  visibility: hidden;
}
input,
button {
  /* 让input和button顶部对齐 */
  vertical-align: top;
}
input,
textarea {
  /* 去除input和textarea的边框 */
  outline: none;
}
html {
  font-size: 13.3333333vw;
}
body {
  background-color: #f6f6f6;
}
.wrapper {
  position: relative;
  /*width: 375px;*/
  width: 100%;
}
.wrapper .swiper {
  width: 100%;
  height: 150px;
  --swiper-pagination-color: #fff;
}
.wrapper .swiper img {
  width: 100%;
  height: 100%;
}
.wrapper .ban-title {
  width: 100%;
  height: 62px;
}
.wrapper .ban-title img {
  width: 100%;
  height: 100%;
}
.wrapper .tabber {
  position: absolute;
  display: flex;
  justify-content: center;
  padding: 0 15px;
  width: 100%;
  height: 70px;
  z-index: 9999;
}
.wrapper .tabber p {
  width: 30%;
  height: 100%;
}
.wrapper .main {
  width: 100%;
}
.wrapper .main .ul {
  display: none;
}
.wrapper .main .table {
  width: 100%;
}
.wrapper .main .table .head {
  width: 100%;
  height: 70px;
}
.wrapper .main .table .head img {
  width: 100%;
  height: 100%;
}
.wrapper .main .table .body {
  padding: 0 15px 50px;
}
.wrapper .main .table .body .top {
  position: relative;
  width: 100%;
  padding: 15px 15px;
  background-color: #ffffff;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 8px 8px;
}
.wrapper .main .table .body .top .card-1 {
  position: relative;
  width: 100%;
  height: 186px;
  background: url(../images/tab-1-card.png) no-repeat;
  background-size: 100% 100%;
}
.wrapper .main .table .body .top .card-1 button {
  position: absolute;
  left: 50%;
  margin-left: -140px;
  bottom: 18px;
  width: 280px;
  height: 40px;
  background-image: linear-gradient(90deg, #f56d23 0%, #f6841e 50%, #f79b18 100%), linear-gradient(#fffbe3, #fffbe3);
  background-blend-mode: normal,
                                normal;
  border-radius: 20px;
  color: #fff;
  font-size: 18px;
  border: 0;
}
.wrapper .main .table .body .top .card-1 .btn {
  position: absolute;
  left: 50%;
  margin-left: -140px;
  bottom: 18px;
  width: 280px;
  height: 40px;
  color: #fff;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  border-radius: 20px;
  background-color: #999;
}
.wrapper .main .table .body .top .card-2 {
  position: relative;
  width: 100%;
  height: 180px;
  background: url(../images/tab-2-card.png) no-repeat;
  background-size: 100% 100%;
}
.wrapper .main .table .body .top .card-2 button {
  position: absolute;
  left: 50%;
  margin-left: -140px;
  bottom: 15px;
  width: 280px;
  height: 40px;
  background-image: linear-gradient(90deg, #f56d23 0%, #f6841e 50%, #f79b18 100%), linear-gradient(#fffbe3, #fffbe3);
  background-blend-mode: normal,
                                normal;
  border-radius: 20px;
  color: #fff;
  font-size: 18px;
  border: 0;
}
.wrapper .main .table .body .top .card-2 .btn {
  position: absolute;
  left: 50%;
  margin-left: -140px;
  bottom: 15px;
  width: 280px;
  height: 40px;
  color: #fff;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  border-radius: 20px;
  background-color: #999;
}
.wrapper .main .table .body .top .head-pic {
  margin: 0 auto;
  width: 56px;
  height: 56px;
}
.wrapper .main .table .body .top .head-pic img {
  width: 100%;
  height: 100%;
}
.wrapper .main .table .body .top h2 {
  margin: 10px 0;
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  color: #333;
}
.wrapper .main .table .body .top h3 {
  text-align: center;
  font-size: 12px;
  line-height: 12px;
  color: #333;
}
.wrapper .main .table .body .top .qr-ewm {
  margin: 15px auto;
  width: 220px;
  height: 220px;
}
.wrapper .main .table .body .top .qr-ewm img {
  width: 100%;
  height: 100%;
}
.wrapper .main .table .body .top .refresh {
  display: flex;
  justify-content: center;
}
.wrapper .main .table .body .top .refresh img {
  display: block;
  width: 12px;
  height: 12px;
}
.wrapper .main .table .body .top .refresh span {
  margin-left: 5px;
  display: block;
  font-size: 12px;
  line-height: 12px;
  color: #333;
}
.wrapper .main .table .body .top .validity {
  position: absolute;
  left: 15px;
  top: 15px;
}
.wrapper .main .table .body .top .validity p {
  font-size: 11px;
  line-height: 11px;
  color: #333;
}
.wrapper .main .table .body .top .validity .time {
  margin-top: 5px;
}
.wrapper .main .table .body .card-3-1 {
  position: relative;
  width: 100%;
  height: 401px;
  background: url(../images/tab-3-card.png) no-repeat;
  background-size: 100% 100%;
}
.wrapper .main .table .body .card-3-1 button {
  position: absolute;
  left: 50%;
  margin-left: -140px;
  bottom: 93px;
  width: 280px;
  height: 40px;
  background-image: linear-gradient(90deg, #f56d23 0%, #f6841e 50%, #f79b18 100%), linear-gradient(#fffbe3, #fffbe3);
  background-blend-mode: normal,
                            normal;
  border-radius: 20px;
  color: #fff;
  font-size: 18px;
  border: 0;
}
.wrapper .main .table .body .part {
  margin-top: 15px;
  padding: 15px 15px;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.wrapper .main .table .body .part h4 {
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  color: #333;
  font-weight: bolder;
}
.wrapper .main .table .body .part h4 span {
  color: #447df7;
}
.wrapper .main .table .body .part img {
  margin-top: 15px;
  width: 100%;
  height: 106px;
}
.wrapper .main .table .body .part p {
  margin-top: 15px;
  font-size: 12px;
  line-height: 18px;
  color: #383838;
}
.wrapper .main .table .body .part .party {
  margin-top: 15px;
  width: 100%;
  padding: 10px 15px 15px;
  background-color: #ffffff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.wrapper .main .table .body .part .party .title {
  position: relative;
}
.wrapper .main .table .body .part .party .title h3 {
  font-size: 16px;
  line-height: 16px;
  color: #333;
  font-weight: bolder;
}
.wrapper .main .table .body .part .party .title h4 {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 12px;
  line-height: 12px;
  color: #393939;
  font-weight: normal;
}
.wrapper .main .table .body .part .party .minitabber {
  width: 100%;
  padding: 0 5px;
  display: flex;
  justify-content: space-between;
}
.wrapper .main .table .body .part .party .minitabber li {
  margin-top: 18px;
  width: 45px;
}
.wrapper .main .table .body .part .party .minitabber li img {
  display: block;
  margin: 0 0;
  width: 100%;
  height: 45px;
}
.wrapper .main .table .body .part .party .minitabber li span {
  margin-top: 11px;
  display: block;
  font-size: 13px;
  line-height: 13px;
  color: #393939;
  text-align: center;
}
.wrapper .main .table .body .part .party .minitabber .minicurrent {
  margin-top: 8px;
  width: 55px;
  position: relative;
}
.wrapper .main .table .body .part .party .minitabber .minicurrent .arrow {
  position: absolute;
  bottom: -14px;
  left: 50%;
  margin-left: -5px;
  width: 10px;
  height: 11px;
  background: url(../images/arrow.png) no-repeat;
  background-size: 100% 100%;
}
.wrapper .main .table .body .part .party .minitabber .minicurrent img {
  display: block;
  margin: 0 0;
  width: 100%;
  height: 55px;
}
.wrapper .main .table .body .part .party .minitabber .minicurrent span {
  margin-top: 11px;
  display: block;
  font-size: 14px;
  line-height: 14px;
  color: #393939;
  font-weight: bolder;
  text-align: center;
}
.wrapper .main .table .body .part .party .tabber-copy {
  width: 100%;
  padding: 0 5px;
  display: flex;
  justify-content: space-between;
}
.wrapper .main .table .body .part .party .tabber-copy li {
  margin-top: 18px;
  width: 48px;
}
.wrapper .main .table .body .part .party .tabber-copy li img {
  display: block;
  margin: 0 0;
  width: 100%;
  height: 36px;
}
.wrapper .main .table .body .part .party .tabber-copy li span {
  margin-top: 11px;
  display: block;
  font-size: 12px;
  line-height: 12px;
  color: #393939;
  text-align: center;
}
.wrapper .main .table .body .part .party .tabber-copy .current-copy {
  margin-top: 8px;
  width: 58px;
  position: relative;
}
.wrapper .main .table .body .part .party .tabber-copy .current-copy .arrowcopy {
  position: absolute;
  bottom: -14px;
  left: 50%;
  margin-left: -5px;
  width: 10px;
  height: 11px;
  background: url(../images/arrow.png) no-repeat;
  background-size: 100% 100%;
}
.wrapper .main .table .body .part .party .tabber-copy .current-copy img {
  display: block;
  margin: 0 0;
  width: 100%;
  height: 46px;
}
.wrapper .main .table .body .part .party .tabber-copy .current-copy span {
  margin-top: 11px;
  display: block;
  font-size: 14px;
  line-height: 14px;
  color: #393939;
  font-weight: bolder;
  text-align: center;
}
.wrapper .main .table .body .part .party .uli {
  display: none;
}
.wrapper .main .table .body .part .party .ulis {
  display: none;
}
.wrapper .main .table .body .part .party .minitable {
  margin-top: 11px;
  padding: 10px 10px;
  width: 100%;
  border-radius: 5px;
  background-color: #fafafa;
  border: solid 1px #e6e6e6;
  font-size: 12px;
  color: #393939;
}
.wrapper .main .table .body .part .party .table-copy {
  margin-top: 11px;
  padding: 10px 10px;
  width: 100%;
  border-radius: 5px;
  background-color: #fafafa;
  border: solid 1px #e6e6e6;
  font-size: 12px;
  color: #393939;
}
.wrapper .main .table .adver {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 15px;
}
.wrapper .main .table .adver img {
  display: block;
  width: 165px;
  height: 74px;
}
.wrapper .shade {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 99998;
  display: none;
}
.wrapper .shade .success {
  position: fixed;
  width: 325px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wrapper .shade .success .suc {
  display: block;
  margin: 0 auto;
  width: 137px;
  height: 137px;
}
.wrapper .shade .success .body {
  position: relative;
  margin-top: -69px;
  width: 100%;
  background-color: #fef5ea;
  border-radius: 25px;
}
.wrapper .shade .success .body .title-bg {
  width: 100%;
  height: 115px;
}
.wrapper .shade .success .body h3 {
  position: absolute;
  top: 48px;
  width: 100%;
  font-size: 24px;
  color: #fff;
  line-height: 24px;
  text-align: center;
}
.wrapper .shade .success .body p {
  margin: 40px 20px 47px;
  color: #333;
  font-size: 18px;
  line-height: 18px;
  font-weight: bolder;
}
.wrapper .shade .success .body button {
  margin: 0 45px 23px;
  border: none;
  width: 235px;
  height: 55px;
  background-image: linear-gradient(0deg, #f56f25 0%, #f79b18 100%);
  border-radius: 27px;
  font-size: 18px;
  color: #fff;
}
.wrapper .shade .load {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
}
.wrapper .shade .load .load-img {
  display: block;
  margin: 0 auto 20px;
  width: 102px;
  height: 102px;
}
.wrapper .shade .load .load-line {
  width: 100%;
  height: 5px;
}
.wrapper .shade .load p {
  text-align: center;
  font-size: 15px;
  color: #fff;
  margin-top: 15px;
  line-height: 15px;
}
/** 弹出框样式 从此拷贝 **/
.popBox-ywsld { position: fixed;left: 0; top: 0;bottom: 0; right: 0; background: rgba(0, 0, 0, 0.5); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7f000000', endColorstr='#7f000000'); z-index: 300; display: none;}
:root .popBox-ywsld{ -webkit-filter: none\9;  filter: none\9;}
.popBox-ywsld.open{ display:block;}
.popBox-ywsld .popBox-inner-ywsld{ background: #fff; position: absolute; width:6.5rem; top:50%; left:50%; margin-left:-3.15rem; transform: translate(0,-50%); -webkit-transform: translate(0,-50%); -moz-transform: translate(0,-50%);border-radius:5px;}
.popBox-ywsld .popBox-inner-ywsld .close{ position: absolute; top: 0; right: 0; width: .5rem; height: .5rem; line-height: .46rem; display: block; text-align: center; color: #666; font-size: .5rem;}
.popBox-ywsld .popBox-headl-ywsld{ margin: 0; padding: 0 .1rem; position:relative; text-align: center; border-bottom: 1px solid #0195ff; line-height: .8rem; font-size: .36rem; color: #0195ff;}
.popBox-ywsld .popBox-body-ywsld{ padding: .2rem .4rem; font-size: .28rem; line-height:180%; color:#333; }
.popBox-ywsld .popBox-body-ywsld .popBox-scroll{ max-height: 6rem; overflow:hidden; overflow-y: auto;word-break: break-all;}
.popBox-ywsld .popBox-body-ywsld .popBox-scroll p{ text-indent: .56rem;}
.popBox-ywsld .popBox-foot-ywsld {text-align: center; padding: 10px 0 20px 0;}
.popBox-ywsld .btn {display: inline-block;  *display: inline; *zoom: 1; line-height: .66rem; font-size: .3rem; width: 2.2rem; background: #0195ff; color: #fff; -webkit-border-radius: 5px;  border-radius: 5px;border: 0; margin:0 .5rem; box-sizing:border-box;}
.pop-open-ywsld{display: block;}
.bill-info-ywsld{line-height: 1.5;}
.bill-info-ywsld .logo-ywsld{width: 2.4rem;	height: .72rem;	display: block;}
.bill-info-ywsld p{	border-bottom: 1px solid #e5e5e5;padding:.1rem 0;}
.bill-info-ywsld p:last-child{border-bottom: none;}
.bill-info-ywsld .info-scroll-ywsld{	overflow-y: scroll;	height: 6rem;}
.popBox-ywsld .popBox-inner-bill-ywsld{	width:6.5rem;margin-left:-3.25rem;color: #666;}
.info-important-ywsld{margin:.1rem 0;	display: inline-block;}
.popBox-ywsld .popBox-inner-bill-ywsld .popBox-body-ywsld{ padding: .2rem .2rem; font-size: .28rem; line-height:180%; color:#666; }
.info-important-ywsld em{font-size: .22rem;width:50%;	float:right;color:#999; }
.info-important-ywsld .logo-left-ywsld{float:left; }
.details-ywsld p{border-bottom: 0!important; }
.table-ywsld{border-collapse: collapse; width: 100% ; }
.table-ywsld tr td, .table-ywsld tr th {border: 1px #ccc solid;  word-break: break-all;  vertical-align: middle; text-align: center; padding: 5px 2px;}

.font_color_red{color: red;}
.font_weight_bold{font-weight: bold;}