@charset "utf-8";

/*=========================Reset_start==========================*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
dl,
dt,
dd,
ol,
ul,
li,
form,
table,
th,
td,
a,
img,
span,
strong,
var,
em,
input,
textarea,
select,
option,
button,
iframe {
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
}

html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-align: left;
	overflow: auto;
}

ul,
ol {
	list-style: none;
}

strong,
b {
	font-weight: 600;
}

img {
	border: 0;
}

input,
select,
textarea {
	outline: 0;
}

textarea {
	resize: none;
	overflow: auto;
	padding-left: 10px;
	padding-top: 3px;
	box-sizing: border-box;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th,
strong,
var,
em {
	font-weight: normal;
	font-style: normal;
}

a {
	text-decoration: none;
	outline: none;
	color: #3e3e3e;
}

a:hover {
	text-decoration: none;
}

a:active,
input:active {
	star: expression(this.onFocus=this.blur());
}
a:focus, *:focus {
noFocusLine: expression(this.onFocus=this.blur());
}


table a:hover {
	color: #f90;
}

/*可设置奇数行背景*/
/* table tr:nth-child(odd) {
	background: #fafafa;
}

 */

/*偶数行背景时使用样式
table tr:nth-child(even) {
	background: #e6ebf4;
}*/
/*==========================Reset_End===========================*/

::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 4px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 1px;
}

::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	border-radius: 2px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: #535353;
}

::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 2px;
	background: #EDEDED;
}
/* 隐藏滚动条 */
::-webkit-scrollbar { width: 0 !important }
.flex {
	display: flex;
	/* align-items: center; */
}

/* 超小型设备（电话，600px 及以下） */
@media only screen and (max-width: 600px) { } 

/* 小型设备（纵向平板电脑和大型手机，600 像素及以上） */
@media only screen and (min-width: 600px) { } 

/* 中型设备（横向平板电脑，768 像素及以上） */
@media only screen and (min-width: 768px) { } 

/* 大型设备（笔记本电脑/台式机，992px 及以上） */
@media only screen and (min-width: 992px) { } 

/* 超大型设备（大型笔记本电脑和台式机，1200px 及以上） */
@media only screen and (min-width: 1200px) { }

/* 手机和小型设备 */
@media screen and (max-width: 600px) {
    /* CSS规则 */
}
/* 平板 */
@media screen and (min-width: 601px) and (max-width: 768px) {
    /* CSS规则 */
}
/* 小型笔记本电脑到大型笔记本电脑和桌面显示器 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* CSS规则 */
}
/* 大型笔记本电脑和桌面显示器 */
@media screen and (min-width: 1025px) {
    /* CSS规则 */
}
/* 针对超大屏幕的设备，宽度超过 1440px */
@media (min-width: 1441px) {
    /* CSS规则 */
}
