﻿/* reset */
body {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
	font-family: 'Microsoft YaHei'
}

p {
	margin: 0px;
	padding: 0;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: #000;
}

	a:focus, a:hover {
		text-decoration: none;
		cursor: pointer;
	}

.flex {
	display: flex;
}

.flex-center {
	justify-content: center;
}

.flex-between {
	justify-content: space-between;
}

.flex-align-center {
	align-items: center
}

.flex-column {
	flex-direction: column; /* 垂直*/
}

.flex-end {
	justify-content: flex-end;
}

.flex-shrink0 {
	flex-shrink: 0;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-align-start {
	align-items: flex-start;
}

.max-width {
	width: 1600px;
	margin: 0px auto;
}

.font-12 {
	font-size: 12px;
}

.font-14 {
	font-size: 14px;
}

.font-16 {
	font-size: 16px;
}

.font-18 {
	font-size: 18px;
}

.font-20 {
	font-size: 20px;
}

.font-22 {
	font-size: 22px;
}

.font-24 {
	font-size: 24px;
}

.font-30 {
	font-size: 30px;
}

.font-32 {
	font-size: 32px;
}

.font-weight {
	font-weight: bold;
}

.color-0 {
	color: #000;
}

.color-f {
	color: #fff;
}
.color-3{
	color:#333;
}
.color-9 {
	color: #999;
}

.color-red {
	color: #9E2524
}

.color-7 {
	color: #777;
}

.text-center {
	text-align: center;
}

.empty {
	width: 100%;
	/*box-shadow: 0px 2px 27px 0px rgba(0,0,0,0.05);*/
	border-radius: 10px;
	background-color: rgba(255,255,255,0.64);
	border: 1px solid #e1e1e1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 500px;
}

.modal-overlay, .modal-videooverlay, .modal-imgoverlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
	z-index: 1000;
}

.modal-content, .modal-videocontent, .modal-imgcontent {
	width: 100%;
	height: 100%;
}

.modal-videooverlay video, .modal-imgoverlay img {
	max-width: 1400px;
	max-height: 800px;
}

.modal-overlay video, .modal-overlay img {
	max-width: 1400px;
	max-height: 800px;
}

/*input样式*/
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"] {
	-webkit-appearance: none;
	appearance: none;
	border: none;
	outline: none;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	padding: 0;
	margin: 0;
	font: inherit;
	color: inherit;
}

/* 阻止 Chrome Autofill 样式 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
	background-color: transparent !important;
	background-image: none !important;
	border: none !important;
	box-shadow: none !important;
}

/* Firefox 兼容 */
input:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #000;
}
