@charset "utf-8";
/*CSS reset*/
*{margin: 0;padding: 0;}
html{width: 100%;height: 100%;background: #f5f5f5;background-size: cover;}body{font-size: 0.3rem;font-family: 'Arial';color: #333;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;word-wrap:break-word;outline: none;-webkit-tap-highlight-color:transparent;}
body, dl, dd, h1, h2, h3, h4, h5, h6, p, form{margin:0;}   ol,li ul{margin:0; padding:0;}
body{-webkit-overflow-scrolling: touch;padding-right: calc(100vw - 100%);}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var,optgroup{font-style:inherit;font-weight:inherit;}
del,ins{text-decoration:none;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q:before,q:after{content:'';}
abbr,acronym{border:0;font-variant:normal;}
sup{vertical-align:baseline;}
sub{vertical-align:baseline;}
legend{color:#000;}

a,a:active,a:visited{text-decoration: none;color: #ccc;}
a:hover{color:#333;}
i{font-style: normal;}

/* iphone底部填充物 */
.filler{width: 100%;height: 1.5rem;}
/* 常用类名基础样式 */
/* 浮动清浮动 */
.fl{float: left;}
.fr{float: right;}
.clearfix:after {content: " ";display: block;clear: both;height: 0;}
.clearfix {zoom: 1;}
/* 显示影藏 */
.hide{display: none;}
.show{display: block;}
/* 遮罩层 */
.zec{position: fixed;height: 100%;width: 100%;left: 0;top: 0;background: rgba(0,0,0,.2);z-index: 99;}
.zec .content{ position: absolute; left: 50%;background: #fff; top: 50%; transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); -moz-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); -o-transform: translate(-50%,-50%); }
/* 超出隐藏 */
.nowap1{overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.nowap2{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;}
.nowap3{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3;overflow: hidden;}
/* 指定某个给定的区域是否允许用户操作，以及如何响应用户操作 */
/* * { touch-action: pan-y; }  */
/* 字体加粗 */
.bold{
  font-weight: bold;
}
/* 字体居 */
.right{
  text-align: right;
}
.center{
  text-align: center;
}
.left{
  text-align: left;
}
/* 定位方式 */
.absolute{
  position: absolute;
}
.realtive{
  position: relative;
}
.fixed{
  position: fixed;
}
/* 盒子外部阴影 */
.out-shadow{box-shadow: 0 0 10px #ECECEC;}
/* 图片高度自适应 */
.img-box{padding-bottom:100%;position: relative;}
.img-box img{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;}

/* 主题色彩 */
.color-fff {
  color: #fff;
}
.color{
  color: #F15C31;
}
.color-999{
  color: #999;
}
.color-666{
  color: #666;
}
.background {
  background: #F15C31;
}
.background-fff {
  background: #fff;
}
/* 改变layer的提示框位置 */
.layui-m-layer .layui-m-layer-msg{
	bottom: 0!important;
}
.index{
	min-height: 100vh;
	background-color: #fff;
	padding-bottom:1rem ;
}
.index1{
	padding-bottom:0.6rem ;
}




/* 兼容iphoneX */
@supports (bottom: constant(safe-area-inset-bottom)) {
  body:before,
  body:after {
    content: '';
    display: block;
    height: constant(safe-area-inset-bottom);
    height: env(safe-area-inset-bottom);
  }
  body:before {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: #fff;
    background-image: -webkit-linear-gradient(#eee, #fff);
    background-image: linear-gradient(#eee, #fff);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 8px;
  }
}

/*适配苹果X*/
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
  #btn{
    padding-bottom:30px !important;
}
}

/*适配苹果X smart Max*/
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) {
  #btn{
    padding-bottom:30px !important;
}
}

/*适配苹果XR */
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 2) {
  #btn{
    padding-bottom:30px !important;
}
}

@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
  #btn{
    padding-bottom:30px !important;
}
}




/* 手机客户端webview 只使用－webkit内核方式即可 */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
  font-size: 0.3rem;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
  font-size: 0.3rem;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999;
  font-size: 0.3rem;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
  font-size: 0.3rem;
}
/* CSS定义input disabled样式的三种方法 */

input:disabled{
  /* border: 1px solid #DDD; */
  /* background-color: #F5F5F5; */
  /* color:#ACA899;opacity: 1; */
  color: #0067C5;
  opacity:1
}

input[disabled]{
  /* border: 1px solid #DDD;
  background-color: #F5F5F5;
  color:#ACA899;opacity: 1; */
  color: #0067C5;
  opacity:1
}

* html input.disabled{
  /* border: 1px solid #DDD;
  background-color: #F5F5F5;
  color:#ACA899;opacity: 1; */
  color: #0067C5;
  opacity:1
}
