@charset "utf-8";

/* CSS Document */
* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: 0;
}


html,
body {
	width: 100%;
	font-family: 'Microsoft Yahei', Arial, Helvetica, sans-serif;
	color: #333;
	font-size: 10px;
	margin: 0px;
	padding: 0px;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width:0) and (max-width:500px) {
	html {
		font-size: 7.5px;
	}
}
@media screen and (min-width:500px) and (max-width:960px) {
	html {
		font-size: 8px;
	}
}

@media screen and (min-width:960px) and (max-width:1280px) {
	html {
		font-size: 10px;
	}
}

@media screen and (min-width:2560px) and (max-width:1000000px) {
	html {
		font-size: calc(3px + 6 * (100vw - 1000px) / 1000);
	}
}


ul,
ul li,
dl,
dl dt,
dl dd,
ol {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

/*ul,dl{display: flex;justify-content: space-between;}*/
input,
textarea {
	border: 0px;
	outline: 0;
	-webkit-appearance: none;
	resize: none;
	font-family: 'Microsoft Yahei', Arial, Helvetica, sans-serif;
}

img {
	border: 0px;
	outline: 0;
	image-rendering: optimizeQuality;
	-ms-interpolation-mode: bicubic;
	/* max-width:100%;*/
	display: inline-block;
}

a {
	color: #333;
	display: inline-block;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

/*div{ display:block;}*/
/* a:hover {
	color: #f08000;
} */

a,
a:hover,
a:link,
a:focus,
a:active {
	text-decoration: none;
	outline: none
}

/*IE下a:hover 背景闪烁*/
*html {
	overflow: -moz-scrollbars-vertical;

	zoom:expression(function(ele) {
			ele.style.zoom="1"; document.execCommand("BackgroundImageCache", false, true)
		}

		(this))
}

/*HTML5 reset*/
header,
footer,
section,
aside,
details,
menu,
article,
section,
nav,
address,
hgroup,
figure,
figcaption,
legend {
	display: block;
	margin: 0;
	padding: 0
}

time {
	display: inline
}

audio,
canvas,
video {
	display: inline-block;
	*display: inline;
	*zoom: 1
}

audio:not([controls]) {
	display: none
}

legend {
	width: 100%;
	margin-bottom: 20px;
	font-size: 21px;
	line-height: 40px;
	border: 0;
	border-bottom: 1px solid #e5e5e5
}

legend small {
	font-size: 15px;
	color: #999
}

svg:not(:root) {
	overflow: hidden
}

fieldset {
	border-width: 0;
	padding: 0.35em 0.625em 0.75em;
	margin: 0 2px;
	border: 1px solid #c0c0c0
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto
}

input[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	/* 2 */
	box-sizing: content-box
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.clearboth {
	clear: both;
}

.bigzm {
	text-transform: uppercase;
}

.clearbox:after {
	clear: both;
	content: "";
}

.set_box_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.set_box {
	display: flex;
	justify-content: space-between;
}

.set_box_wrapstart {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

:-moz-placeholder {
	color: #999;
}

::-moz-placeholder {
	color: #999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #999;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #999;
}

/* 去除iphone按钮默认样式代码 */
input[type=button],
input[type=submit],
input[type=file],
button {
	cursor: pointer;
	-webkit-appearance: none;
}

/* 通用滚动条代码 */
/* ::-webkit-scrollbar {
	width: 5px;
	height: 1px;
}

::-webkit-scrollbar-thumb {

	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	background: rgba(0, 0, 0, .5);
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	background: rgba(0, 0, 0, .1);
} */

.thumrelative {
	position: relative;
	overflow: hidden;
}

.picimg {
	background: center center no-repeat;
	background-size: cover;
	-webkit-transition: all .5s;
}

/* 通用处理单行文字溢出代码 */
.singleLine {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


/* 通用处理多行文字溢出代码 */
.multiLine {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	white-space: break-spaces;
	-webkit-box-orient: vertical;
	line-height: 1.7;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
}

input[type="number"] {
	-moz-appearance: textfield;
}

/* 图片放大动画 */
.fang {
  overflow: hidden;
  display: flex;
}

.fang img {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  display: flex;
}

.fang:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}