header, section, footer, aside, nav, main, article, figure {
    display: block;
}
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td{
    margin:0;
    padding:0;
}
body,button,input,select,textarea{
    font:12px/1.5tahoma,arial,\5b8b\4f53;
}
h1,h2,h3,h4,h5,h6{
    font-size:100%;
}
address,cite,dfn,em,var{
    font-style:normal;
}
code,kbd,pre,samp{
    font-family:"Courier New";
}
small{
    font-size:12px;
}
ul,ol,li{
    list-style:none;
}
a{
    text-decoration: none;
}
sup{
    vertical-alignt:text-top;
}
html{
    
}
button{
    outline: none
}
body{
	min-width: 1337px;
	background-color: #FFFFFF;
}
.clear{
    display: block;
    clear:both;
}
.finger{
	cursor:pointer
}
.width50{
	width: 50%;
}
.width100{
	width: 100%;
}
.width33{
	width: 33.33%;
}
.height100{
	height: 100%;
}
.wh100{
	width: 100vw;
	height: 100vh;
}
/***主要按钮样式***/
.main-but{
    border: none;
    color: white;
    overflow: hidden;
    width: 100px;
    height: 32px;
    cursor: pointer;
    font-size: 12px;
    border-radius: 50px;
}
.main-but:hover{
    transform:scale(0.95,0.95);
}
.bottom-but{
    position: fixed;
	left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    border: none;
    background-color:rgba(246, 119, 79,1);
    color: white;
}
.image-but{
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	font-size: 12px;
	padding: 4px;
	box-sizing: border-box;
	color: rgba(153, 153, 153,1);
}
.image20{
	width: 20px;
	height: 20px;
}
.image28{
	width: 28px;
	height: 28px;
}
.image32{
	width: 32px;
	height: 32px;
}
.image-but>img{
	width: 24px;
	height: 24px;
}
/***常用字号***/
.font-size12{
	font-size: 12px;
}
.font-size14{
	font-size: 14px;
}
/***常用颜色***/
.but-color{
    background-color: rgba(246, 119, 79,1);
}
.black333-color{
    color: #333333;
}
.color666{
	color: #666666;
}
.red-color{
    color:rgba(255, 0, 0,1);
}
.orange-color{
    color: rgba(241, 134, 30,1);
}
.green-color{
    color: rgba(74, 167, 90,1);
}
.gray-color{
    color: rgba(153, 153, 153,1);
}
.white-back{
	background-color: rgba(255, 255, 255,1);
}
.orange-back{
    background-color: rgba(241, 134, 30,1);
}
.green-back{
    background-color: rgba(74, 167, 90,1);
}
.gray-back{
    background-color: rgba(153, 153, 153,1);
}
.text-right{
    text-align: right;
}
.main-color{
	color: rgba(212, 181, 114,1);
}
.font-bold{
	font-weight: bold;
}
.font-none{
	font-weight: normal;
}
/***弹性盒子对齐方式***/
.flex-center{
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
}
.flex-start{
    display:flex;
    flex-direction:row;
    justify-content:flex-start;
    align-items:center;
}
.flex-between{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
}
.flex-wrap{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
}
.flex-around{
    display:flex;
    flex-direction:row;
    justify-content:space-around;
    align-items:center;
}
.flex-reverse-between{
    display:flex;
    flex-direction:row-reverse;
    justify-content:space-between;
    align-items:center;
}

/***常用样式***/
.display-block{
    display: block;
}
.display-none{
    display: none;
}
.border-bottom{
    border-bottom: 1px solid rgba(204, 204, 204,1);
}
.m-l-20{
	margin-left: 20px;
}
.m-l-40{
	margin-left: 40px;
}
.m-l-60{
	margin-left: 60px;
}
.m-r-2{
	margin-right: 2px;
}
.m-r-10{
	margin-right: 10px;
}
.m-r-40{
	margin-right: 40px;
}
.m-b-10{
	margin-bottom: 10px;
}
.m-b-40{
	margin-bottom: 40px;
}
.m-b-4h{
	margin-bottom: 4vh;
}
.m-b-100{
	margin-bottom: 100px;
}
[v-cloak] {
    display:none !important;
}

.image100{
	width: 100%;
	height: 100%;
}

/***蒙版***/
.masking{
    position: fixed;
    top:0;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.2);
	background-size: cover;
}
/***没有数据时的样式***/
.notDataBody{
    position: fixed;
    top:0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    z-index: -1;
}
.notDataImg>img{
    width: 180px;
    height: 180px;
}
.notDataImg>p{
    text-align: center;
}
