/*css样式重置*/
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}
html,body {
    margin: 0;
    padding: 0;
    border: 0;
    color: #808080;
    background-color: #edeef0;
    font-size: 16px;
    line-height: 1.6em;
    font-family: Helvetica,Pingfang SC,Microsoft YaHei,STHeiti,Verdana,Arial,Tahoma,sans-serif;
}
img,button,em,del,strong,var,label,cite,small,time,mark,code,textarea{
	display: inline-block;
}
ol,ul{
	list-style: none;
}
input,button,textarea {
	border: 0;
	margin: 0;
	padding: 0;
	font-size: 1em;
	line-height: 1em;
	outline: none;
	/*-webkit-appearance:none;*/
	background-color: rgba(0, 0, 0, 0);
}


/*用户自定义样式*/
body {
    min-width: 1200px;
}

a {
    color: #808080;
}
a:active, a:hover {
  outline: 0;
}
a, a:visited{
	text-decoration:none;
}

/*浮动*/
.fl {
    float: left;
}
.fr {
    float: right;
}


/*背景色*/
.bg-white {
    background-color: #fff;
}
.bg-green {
    background-color: #42ce83;
}
.bg-yellow {
    background-color: #ffc649;
}
.bg-lightblack {
    background-color: #585c65;
}
.bg-red {
    background-color: #fc5d53;
}
.bg-lightgray {
    background-color: #edeef0;
}

/*字体色*/
.clr-white {
    color: #fff;
}
.clr-green {
    color: #42ce83;
}
.clr-red {
    color: #ff5d6c;
}
.clr-yellow {
    color: #ffc149;
}
.clr-blue {
    color: #49b8ff;
}

/*字体大小*/
.fz18 {
    font-size: 18px;
}
.fz20 {
    font-size: 20px;
}
.fz24 {
    font-size: 24px;
}
.fz36 {
    font-size: 36px;
}

/*文本对齐方式*/
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}

/*外边框*/
.border-all {
    border: 1px solid #808080;
}
.border-white {
    border: 1px solid #fff;
}

/*元素显示方式*/
.d-none {
    display: none;
}
.d-block {
    display: block;
}