﻿@charset "utf-8";

* {
	box-sizing: border-box;
	outline: 0;
	padding: 0;
	margin: 0;
}

body {
	min-height: 100%;
	font-size: 12px;
	font-family: Roboto, Helvetica, Tahoma, Arial, "Microsoft YaHei";
	color: #333;
	background: #F5F5F5;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
fieldset,
lengend,
button,
input,
textarea,
th,
td {
	margin: 0;
	padding: 0;
}

ol,
ul,
li {
	list-style: none;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var,
i {
	font-weight: normal;
	font-style: normal;
}

a {
	text-decoration: none;
	color: #333;
	display: inline-block;
	-webkit-transition-duration: .3s;
	-moz-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
}

img {
	border: 0;
	vertical-align: middle;
}

a,
span,
em,
i {
	display: inline-block;
}

select,
input,
textarea {
	border: 0;
	font-family: "Arial";
	outline: none;
	resize: none;
	box-shadow: none;
}

select {
	background: #FFF;
}

.h_list_two {
	margin-left: 90px;
}


input::-webkit-input-placeholder {
	color: #999;
}

input::-moz-placeholder {
	color: #999;
}

input:-moz-placeholder {
	color: #999;
}

textarea::-webkit-input-placeholder {
	color: #999;
}

textarea::-moz-placeholder {
	color: #999;
}

textarea:-moz-placeholder {
	color: #999;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	font-size: 100%;
}

div,
dl,
dt,
dd,
ol,
ul,
li {
	zoom: 1;
}

caption,
th {
	text-align: left;
}

q:before,
q:after {
	content: '';
}

abbr,
acronym {
	border: 0;
}

input[type="button"],
input[type="submit"] {
	cursor: pointer;
}

a:hover {
	text-decoration: none;
}

input,
textarea {
	box-sizing: border-box;
}

input[type="text"] {
	-webkit-appearance: none;
}

textarea {
	-webkit-appearance: none;
}

/*合并表格边框，设置边框距为零*/

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*清除浮动*/

/*clearfix写在浮动元素的上层*/

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
	font-size: 0;
}

.clearfix {
	*zoom: 1;
}

/*文字对齐*/

.textL {
	text-align: left;
}

.textC {
	text-align: center;
}

.textR {
	text-align: right;
}

.fontWe {
	font-weight: 700;
}

/*强制换行   禁止换行*/

.break_word {
	word-wrap: break-word;
	word-break: break-all;
}

.keep_all {
	word-break: keep-all;
	white-space: nowrap;
}

/*超出省略号，仅限单行，并且需要设定一个宽度*/

.ellipsis {
	/* overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	white-space: nowrap; */
	width: 194px;
}
.ellipsis_1 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.ellipsis_2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.ellipsis_3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.ellipsis_4 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.ellipsis_7 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
}

/*me*/

.wrap {
	width: 1500px;
	margin: 0 auto;
}

.hide {
	display: none;
}

.show {
	display: block;
}

.bg_fff {
	background: #fff;
}

fieldset {
	padding: 0;
	margin: 0;
	border: 0;
}

/******* 状态 ******/

.fl {
	float: left;
}

.fr {
	float: right;
}

.pr {
	position: relative;
}

.pa {
	position: absolute;
}

.none {
	display: none;
}

.hidden {
	overflow: hidden;
}

.cont_flex {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.cont_flex_1 {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
}

textarea {
	-webkit-appearance: none;
}

/* 鼠标划过图片样式 */

.defo_img img {
	transition: all 1s;
	-ms-transition: all 1s;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	cursor: pointer;
}

.defo_img img:hover {
	transform: scale(1.2);
	-ms-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2);
	opacity: 0.6;
}

.defo_img2 img {
	transition: all 1s;
	-ms-transition: all 1s;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	cursor: pointer;
}

.defo_img2 img:hover {
	transform: scale(1.05);
	-ms-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-o-transform: scale(1.05);
}

/* 弹窗 */
.piao {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#5f000000, endcolorstr=#5f000000);
	z-index: 110;
}

/* 分页 */

.page {
	font-size: 0;
	text-align: center;
	margin-top: 50px;
}

.page>a,
.page>span {
	display: inline-block;
	background: #fff;
	border: 1px solid rgba(213, 213, 213, 1);
	border-radius: 5px;
	line-height: 40px;
	font-size: 16px;
	color: #767575;
	padding: 0 14.6px;
	margin-right: 10px;
	transition: all .4s;
}

.page>a:last-child {
	margin-right: 0;
}

.page>a:hover,
.page>span {
	background: #0995D6;
	color: #fff;
	border: 1px solid #0995D6;
}

.page>i {
	font-size: 16px;
	color: #666666;
	margin-right: 10px;
}

.page>i>em {
	color: #0995d6;
}

.page a em {
	font-size: 14px;
	color: #0995d6;
	font-weight: bold;
	border-radius: 6px;
	background-color: rgb(223, 241, 250);
	width: 30px;
	height: 30px;
	line-height: 30px;
	margin-left: 15px;
	display: inline-block;
	vertical-align: middle;
}

.aud_fen .login_state {
	margin-left: 50px;
}

.aud_fen {
	margin-top: 12px;
}

.aud_fen .h_top_fr {
	margin-top: 15px;
}

.aud_dataa_h1 {
	position: relative;
	font-size: 0;
}

.aud_dataa_h1 em {
	padding-right: 15px;
	font-size: 24px;
	color: #121518;
	text-transform: capitalize;
	float: left;
}

.aud_dataa_h1 span {
	width: 1137px;
	height: 1px;
	background: rgba(218, 218, 219, 1);
	float: left;
	margin-top: 15px;
}

.f_des_skip {
	/*overflow: hidden;*/
}

.all_zong,
.all_zong2,
.all_zong3 {
	display: none;
}




.trs {
	-webkit-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}

/*字体加粗*/
.fontW {
	font-weight: bold;
}


.font12 {
	font-size: 12px;
}

.bgf {
	background-color: #ffffff;
}

.bgf5 {
	background-color: #f5f5f5;
}

.bg43 {
	background-color: #434951;
}

.bg4e {
	background-color: #4d5560;
}

.bgf2 {
	background-color: #f2f3f5;
}

.bg07 {
	background-color: #07abce;
}

.bg1b9 {
	background-color: #1b99e2;
}

.bg1b7 {
	background-color: #1b74e2;
}

.bg2d {
	background-color: #2d3137;
}

.bgee {
	background-color: #eef2f6;
}


.color0 {
	color: #000000;
}

.color8e {
	color: #8e96a2;
}

.colorf {
	color: #ffffff;
}

.color4e {
	color: #4e4c4c;
}

.color5e {
	color: #5e6366;
}

.color2f {
	color: #2fb79c;
}

.color75 {
	color: #75787b;
}

.color07 {
	color: #076ed5;
}

.colordd {
	color: #dd2804;
}

.color04 {
	color: #0496bb;
}

.curs {
	cursor: pointer;
}


.header {
	padding-top: 0 !important;
}

.header_con {
	position: inherit !important;
}

.m_input_fl ul {
	z-index: 2;
}

.w100 {
	width: 100%;
}

.cke_contents {
	height: 500px !important;
}

.cred {
	color: red;
	text-align: center;
	padding: 20px;
}

.noned {
	display: none;
}

.n_page_p {
	line-height: 30px;
}

option {
	padding: 0px 2px 1px;
	min-height: 1.2rem !important;
}

.nonei {
	display: none !important;
}

.noned {
	display: none;
}

@media screen and (max-width: 1440px) {
	.list {
		padding-bottom: 6px;
	}

	.modal-main {
		width: 670px;
		height: 600px;
		position: absolute;
		top: 0;
		transform: translateY(0%);
		left: 0;
		right: 0;
		margin: auto;
		overflow-y: auto;
		bottom: 0;
	}
}
