/* img重置 */
/* img{ */
    /* width:100%; */
/* } */
*{list-style: none;-webkit-tap-highlight-color: rgba(0,0,0,0);-webkit-tap-highlight-color:transparent;}
body{
    background-color:#fff;
}
/* 内容上垂直居中 */
.center-v{
    display: flex;
    align-items: center;
}
/* 内容上下水平居中 */
.center-vh{
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 内容两侧分布,水平居中 */
.space-between{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* 间距相同 && 自动换行 */
.space-between-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap:wrap;
}
/* 头部导航部分 */
#header{
    padding-left:0.533334rem;
    padding-right:0.533334rem;
    height:1.1466681rem;
    line-height:1.1466681rem;
}
#header .header-con-box-left{
    display:flex;
    justify-items: center;
    width:2.666667rem;
}
#header .header-con-box-right{
    width:2.666667rem;
    text-align:right;
    white-space: nowrap;
}
#header img{
    width:0.533334rem;
}
#header span.title{
    width:100%;
    font-size:18px;
    font-family:PingFangSC-Medium;
    font-weight:500;
    color:rgba(0,0,0,1);
    text-align: center;
}
#header span.tool{
    font-size:15px;
    font-family:PingFangSC-Regular;
    font-weight:400;
    color:rgba(126,133,145,1);
}
.orange{
    color:rgba(250, 100, 0, 1)!important;
}
/* 弱提示样式 */
#weakTip{
    display:none;
    position: fixed;
    top:50%;
    left:50%;
    transform:translateX(-50%);
    padding:0.42666672rem 1.3333335rem;
    background-color:rgba(0,0,0,0.4);
    font-size:17px;
    font-family:PingFangSC-Medium;
    font-weight:500;
    color:rgba(255,255,255,1);
    border-radius:0.21333336rem;
    white-space: nowrap;
}

input{
    outline-style: none ;
	outline-width: 0px ;
	border: none ;
	border-style: none ;
	text-shadow: none ;
	-webkit-appearance: none ;
	-webkit-user-select: text ;
	outline-color: transparent ;
	box-shadow: none;
}