@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}
body {
  font-family: Helvetica;
  /* ,"微软雅黑", "PingFang SC", Arial, sans-serif */
  word-wrap: break-word;
  color: #333;
  background-color: #fff;
  font-size: 14px;
}
html,body,.contanter,.iBox {
  height: 100%;
  width: 100%;
  max-width: 440px;
  min-width: 320px;
  margin: 0 auto;
  position: relative;
  background-color: #FEFAFC;
}
 
a{
  text-decoration: none;
  color: inherit;
}
input[disabled],input:disabled{
  background-color: transparent;
}
 
a,input{-webkit-tap-highlight-color:rgba(255,0,0,0);}
 
input,textarea {
  -webkit-user-select:auto; /*webkit浏览器*/
  margin: 0px;
  padding: 0px;
  outline: none;
}
 
a,
input,
button {
  outline: none;
}
 
ul,ol,li{
  list-style: none;
}
 
a:hover, a:active, a:focus {
  text-decoration: none !important;
}
 
 
img {
    max-width: 100%;
    border: 0px;
}
 
select,
input,
img,
select {
  vertical-align: middle;
}
 
i {
  font-style: normal;
}
 /* ios解决滑动问题 */
 *,*:after,*:before{
  -webkit-overflow-scrolling: touch;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*在移动端上input和textarea边框问题*/
 /*去掉ios上阴影*/
 input,textarea{
  outline: none;
  -webkit-appearance: none;
}
 
/* 宽度 */
.w-all {
  width: 100%;
}
 
/* 添加竖直线 */
.ver-line {
  position: absolute;
  height: 100%;
  width: 1px;
  background: #eee;
  top: 0px;
  left: 100px;
}
 
/* 一行否则出现省略号 */
.line-clamp1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
 
.line-clamp2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
 
.line-clamp3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.relative {
  position: relative;
}
  
.fl {
  float: left;
}
 
.fr {
  float: right;
}
 
.flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
 
 
 
 
.text-center {
  text-align: center;
}
 
.text-left {
  text-align: left;
}
 
.text-right {
  text-align: right;
}
 
/*清除浮动*/
.clearfix {
  zoom: 1;
}
 
.clearfix:after {
  clear: both;
  content: '.';
  display: block;
  width: 0;
  height: 0;
  visibility: hidden;
}
 
.show {
  display: block !important;
}
 
.none {
  display: none !important;
}
 
.calc {
  width: 90% !important;
  width: calc(100% - 30px) !important;
  width: -moz-calc(100%-30px) !important;
  width: -webkit-calc(100%-30px) !important;
}

/*----------用来移除向下箭头----------*/
input[type="date"]::-webkit-calendar-picker-indicator {
  /* display: none; */
}

/*----------用来移除叉叉按钮----------*/
input[type="date"]::-webkit-clear-button{
  display:none;
}
input[type="date"] {
  color: #666;
}

/* 底部 */
.footer {
  
}
.footer ul {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 1rem;
  background-color: #fff;
  border-top: 1px solid #EDEDED;
  max-width: 440px;
  min-width: 320px;
  transform: translateX(-50%);
}
.footer ul li {
  flex:1;
  text-align: center;
}
.footer ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.footer ul li a img{
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  margin: 5px auto 2px;
}
.footer ul li a span {
  font-size: 10px;
  color: #999;
}
.footer ul li .rective span {
  color: #FBBAE5;
}
/* loading */
.mask-loading .loading-icon {
  -webkit-animation: rotate 1s linear infinite;
  /* -o-animation: rotate 1s linear infinite; */
  animation: rotate 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -20px 0 0 -20px;
  border-width: 5px;
  border-style: solid;
  border-color: #37c3aa #37c3aa #fff #fff;
  opacity: .9;
  border-radius: 20px;
}
@-webkit-keyframes rotate{
 0% {-webkit-transform:rotate(0)}
 100% {-webkit-transform:rotate(360deg)}
}
@keyframes rotate{
 0% {transform:rotate(0)}
 100% {transform:rotate(360deg)}
}
.mask-loading {
 position:fixed;
 top:0;
 right:0;
 bottom:0;
 left:0;
 background:0 0;
 z-index:9999;
}
/* ngtip */
.ngTip {
  width: 4rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1.6rem;
  margin-left: -2rem;
  z-index: 99999;
  font-size: 14px;
  background-color: rgba(0,0,0,0.5) !important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alert {
  padding: 10px !important;
  border-radius:6px;
}
/* 暂无数据 */
.dataNull {
  text-align: center;
  overflow: hidden;
  height: 100%;
  background-color: #fff;
}
.dataNull img {
  width: 100%;
  /* height: 100%; */
  margin: 1rem auto;
}
/* 头部 */
header {
  width: 100%;
  height: 1rem;
  line-height: 1rem;
  background-color: #FBBAE5;
  text-align: center;
  color: #fff;
  position: fixed;
  font-size: 18px;
  font-weight: 600;
  z-index: 9999;
}
header i {
  position: absolute;
  left: 0.3rem;
  top: 0.32rem;
  width: 0.18rem;
  height: 0.36rem;
  background: url('/images/back.png') no-repeat;
  background-size: 100% 100%;
}
/* 成功 */
.suBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 9999;
}
.suBg .suBox {
  width: 5rem;
  height: 4.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -2.2rem;
  margin-left: -2.5rem;
  background-color: #fff;
  border-radius: 6px;
}
.suBg img {
  display: block;
  width: 3.2rem;
  height: 2.8rem;
  margin: -1rem auto 0.2rem;
}
.suBg  p {
  font-size:28px;
  font-weight:600;
  color:rgba(242,120,248,1);
  line-height:40px;
  text-shadow:0px 2px 4px rgba(255,94,213,0.5);
  text-align: center;
  margin-bottom: 0.4rem;
}
.suBg button  {
  display: block;
  font-size:14px;
  color:rgba(255,255,255,1);
  line-height:19px;
  background: linear-gradient(#FBB9E5,#F061FF);
  border: none;
  width: 2.8rem;
  height: 0.66rem;
  border-radius: 4px;
  margin: 0 auto;
}