/*
* @Author: jason
* @Date:   2016-09-02 11:00:07
* @Last Modified by:   jason
* @Last Modified time: 2019-01-04 17:11:45
*/
@charset "utf-8";

/* reset */
body {
  position: relative;
  background-color: #f4f4f4;
  -webkit-transition: 500ms;
          transition: 500ms;
}

/**
 * commmon
 */
/* float */
.fl { float: left; }
.fr { float: right; }
.clearfix {  *zoom: 1; }
.clearfix:after {
  display: block;
  content: '';
  clear: both;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

/* display */
.hide { display: none; }
:focus { outline: none; }

/* width */
.w {
  width: 100%;
  max-width: 640px;
}

/* border */
.bb { position: relative; }
.bb:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  height: 1px;
  background-color: #e2e2e2;
  -webkit-transform: scaleY(.5);
  -webkit-transform-origin: 0 100%;
}

/* background */
img.imgload,
.imgload img { background-color: #f4f4f8; }
.active { background-color: rgba(0,0,0,.1); }

/* shareicon */
.shareicon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 0;
  opacity: 0;
  filter:alpha(opacity=0);
}

/* downapp */
.downapp {
  position: fixed;
  top: -51px;
  z-index: 10;
  display: none;
  padding: 5px 40px 10px 10px;
  background-color: #fafafa;
  -webkit-transition: 500ms;
          transition: 500ms;
}
.downapp:after { background-color: #dbdbdb; }
.downapp .logo {
  height: 35px;
  background: url('../../../images/zbmy/app/openapp_logo.png') no-repeat;
  -webkit-background-size: auto 100%;
          background-size: auto 100%;
}
.downapp .logo-other {
  height: 35px;
  -webkit-background-size: auto 100%;
          background-size: auto 100%;
}
.downapp .down {
  position: absolute;
  top: 50%;
  right: 10%;
  padding: 8px 20px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  border-radius: 50px;
  background-color: #e64a46;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.downapp .active { background-color: #dd3732; }
/* .downapp .down:after {
  position: absolute;
  right: 10px;
  top: 50%;
  content: '';
  width: 1em;
  height: 1em;
  background: url('../../../images/zbmy/app/downapp_down.png') no-repeat center;
  -webkit-background-size: auto 100%;
          background-size: auto 100%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
} */
.downapp .close {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  text-indent: -999em;
  background: url('../../../images/zbmy/app/downapp_close.png') no-repeat;
  -webkit-background-size: auto 100%;
          background-size: auto 100%;
}

/* backtop */
.backtop {
  position: fixed;
  right: 10px;
  bottom: 53px;
  z-index: 20;
  display: none;
  width: 50px;
  height: 50px;
  background: url('../../../images/zbmy/app/backtop_bg.png') no-repeat;
  -webkit-background-size: auto 55px;
          background-size: auto 55px;
}
.backtop.active { background-position: -55px 0; }

/* alert */
.alert {
  position: fixed;
  top: 50%;
  left: 10%;
  right: 10%;
  z-index: 70;
  text-align: center;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.alert span {
  display: inline-block;
  padding: 12px 20px;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #fff;
  border-radius: 5px;
  background: #333;
  -webkit-box-shadow: inset 0 0 1px #424242, 0 1px 3px rgba(0,0,0,.65);
          box-shadow: inset 0 0 1px #424242, 0 1px 3px rgba(0,0,0,.65);
  text-shadow: 0 1px 1px #9d9d9d;
}

/*提示下载看度弹出层*/
.tip-rule {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 51;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .75);
}
.tip-rule .inner {
  position: relative;
  top: 50%;
  left: 50%;
  width: 86%;
  min-width: 290px;
  max-width: 600px;
  height: auto;
  min-height: 160px;
  padding: 15px 12px;
  font-size: 1.6rem;
  line-height: 20px;
  color: #13142c;
  text-align: left;
  border-radius: 6px;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.tip-txt {
  min-height: 85px;
  text-align: center;
  padding: 20px 0;
}
.tip-txt p {
  margin: 3px 0;
  color: #2e96df;
}
.tip-btn { text-align: center; }

/* delivery */
.delivery {
  color: #2e96df;
  cursor: pointer;
  padding: 6px 16px;
  border: 1px solid #2e96df;
  border-radius: 6px;
  display: inline-block;
}

/* abolish */
.abolish {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-top-right-radius: 5px;
  display: inline-block;
  color: #2e96df;
  cursor: pointer;
}
.abolish:before {
  position: absolute;
  bottom: 15px;
  left: 15px;
  content: 'x';
  font-size: 20px;
  color: #2e96df;
  z-index: 101;
  width: 20px;
  height: 20px;
  text-align: center;
}

/* pops */
.pops {
  position: absolute;
  top: 10px;
  right: 30px;
  z-index: 9999;
  display: none;
  width: 80%;
  max-width: 640px;
  max-height: 90%;
}
.pops img { width: 100%; }

/* mask */
.mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9998;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
}
