/* 公共样式 */
html,
body,
div,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
form,
input,
textarea,
th,
td,
select {
	margin: 0;
	padding: 0;
}

* {
	box-sizing: border-box;
}

html,
body {
	min-height: 100%;
	2018-11-03
}

body {
	font-family: "Microsoft YaHei";
	font-size: 14px;
	color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

ul,
ol {
	list-style: none;
}

img {
	border: none;
	vertical-align: middle;
}

a {
	text-decoration: none;
	color: #232323;
}

table {
	border-collapse: collapse;
	table-layout: fixed;
}

input,
textarea {
	outline: none;
	border: none;
}

textarea {
	resize: none;
	overflow: auto;
}

.clearfix {
	zoom: 1;
}

.clearfix:after {
	content: ".";
	width: 0;
	height: 0;
	visibility: hidden;
	display: block;
	clear: both;
	overflow: hidden;
}

/*display*/
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

/*伸缩流方向*/
.flex-column {
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}

/*主轴对齐*/
.justify-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.justify-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

.justify-justify {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.justify-around {
	-webkit-box-pack: distribute;
	-ms-flex-pack: distribute;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

/*侧轴对齐*/
.align-items_flex-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.align-items_flex-end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

.align-items_center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.align-items_baseline {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	-webkit-align-items: baseline;
	align-items: baseline;
}

/*伸缩性*/
.flex_auto {
	-webkit-box-flex: 1;
	-ms-flex: auto;
	-webkit-flex: auto;
	flex: auto;
}

.flex_1 {
	width: 0;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	-webkit-flex: 1;
	flex: 1;
}

/*显示顺序*/
.order_2 {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
}

.order_3 {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 3;
	-webkit-order: 3;
	order: 3;
}

.flex-wrap {
	/* 09版 */
	/*-webkit-box-lines: multiple;*/
	/* 12版 */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

/*样式开始 */
.left {
	flex: 1;
	background: #019ac6 url(../images/2058_01.png)no-repeat right top;
	height: auto;
	width: 100%;
	background-size: auto;
}

.right {
	flex: 1;
	background: #d37201;
	background-image: url(../images/right_01.png), url(../images/right_02.png);
	height: auto;
	width: 100%;
	background-size: auto;
	background-repeat: no-repeat;
	background-position: top right, left top 23%;
}

.main {
	flex: 3;
	max-width: 1024px;
	background: #fff;
	flex-shrink: 0;
}

.banner {
	width: 100%;
}

.banner img {
	width: 100%;
}

.content {
	width: 100%;
	padding: 20px 0;
}

.content_l {
	flex: 2;
	border-right: 2px solid #000;
	padding-right: 10px;
}

.content_r {
	flex: 1;
	padding: 0 10px;
	flex-shrink: 0;
}

.report {
	padding-left: 10px;
}

.report img {
	width: 100%;
}

.Carousel {
	width: 100%;
	padding-top: 10px;
}

.Carousel img {
	width: 100%;
	height: auto;
}

.report2 img {
	width: 100%;
}

.r_videro img {
	width: 100%;
	margin-top: 10px;
}

.new_wrap {
	padding-left: 10px;
}

.new_wrap li {
	border-bottom: 1px solid #7f7f7f;
	padding: 30px 10px;
}

.new_wrap li h5 {
	font-size: 24px;
	color: #2889bc;
	padding-bottom: 10px;
}

.new_wrap li p {
	font-size: 16px;
	color: #7F7F7F;
	line-height: 24px;
}

@media screen and (max-width:768px) {
	.content {
		display: block
	}

	.content_l {
		border: none;
	}

	.left,
	.right {
		display: none;
	}

	.new_wrap li {
		padding: 10px 5px;
	}

	.new_wrap li h5 {
		font-size: 18px;
	}

	.new_wrap li p {
		font-size: 14px;
		;
	}
}
