@charset "utf-8";

/* 引入图标库 */
/* @import url(https://at.alicdn.com/t/font_3304945_fcazwn0c5ve.css); */
/* CSS Document */
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
i,
b,
img,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
canvas,
footer,
header,
nav,
menu,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	outline: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

button,
select,
input,
textarea {
	font-size: 14px;
	font-family: STHeiti-Light, "Hiragino Sans GB", "Microsoft Yahei", Arial;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #aaa;
}

html,
body {
	height: 100%;
	background: #f1f4f8;
}

body {
	font-size: 14px;
	font-family: STHeiti-Light, "Hiragino Sans GB", "Microsoft Yahei", Arial;
	color: #333;
	line-height: 1.8;
	display: flex;
	flex-direction: column;
}

ul,
ol {
	list-style: none;
}

img {
	border: 0;
}

button,
input {
	line-height: normal;
	overflow: visible;
}

input,
textarea {
	outline: none;
	resize: none;
}

div:active {
	outline: none;
	text-decoration: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	max-width: 100%;
	vertical-align: top;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
	/* image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;  */
}

input {
	border: none;
}

input:focus {
	border: none;
	outline: none;
}

a {
	color: #333;
	text-decoration: none;
	transition: 0.2s;
	cursor: pointer;
}

a:hover {
	color: #0772fc;
}

/* scrollbar */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-track:hover {
	background: #eee;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: #b9b9b9;
}

::-webkit-scrollbar-thumb:hover {
	background: #747474;
}

::-webkit-scrollbar-thumb:active {
	background: #555;
}

/* flex布局 */
.flex_row {
	display: flex;
}

.flex_row_center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex_row_right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.flex_row_between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.flex_row_start {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.flex_row_end {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.flex_warp{
	display: flex;
	flex-wrap: wrap;
}
.flex_alc {
	display: flex;
	align-items: center;
}

.flex_spb {
	display: flex;
	justify-content: space-between;
}


/* 头部样式 */
header {
	width: 100%;
	flex: 0 0 auto;
	background: #fff;
	min-width: 1200px;
}

header .content {
	width: 1200px;
	margin: auto;
	height: 90px;
}

header .logo{
	display: block;
	width: 400px;
	height: 90px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 400px 90px;
}

header .search_box {
	width: 520px;
	border: 1px solid #0092FF;
	display: flex;
}

header .search_box .layui-input {
	font-size: 15px;
	height: 40px;
	border: none;
}

header .search_box .layui-btn {
	color: #fff;
	font-size: 16px;
	text-indent: 25px;
	width: 90px;
	height: 40px;
	border: none;
	border-radius: 0;
	background: #0092FF url(../images/ico_search.png) 15px no-repeat;
	padding: 0;
	flex-shrink: 0;
}

header .nav_block {
	width: 100%;
	min-width: 1200px;
	height: 50px;
	background: #0092FF;
}

header .nav_block .nav {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

header .nav_block .nav>li {
	position: relative;
}

header .nav_block .nav>li a {
	color: #fff;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	padding: 0 20px;
	display: inline-block;
	white-space: nowrap;
}

header .nav_block .nav a:hover,
header .nav_block .nav .active a {
	background: #0083E5;
}

header .nav_block .nav>li>ul {
	display: none;
	background: #0092FF;
	position: absolute;
	z-index: 50;
}

header .nav_block .nav>li>ul li a {
	display: block;
}

header .nav_block .nav>li:hover>ul {
	display: block;
}

/* 内容 */
.container {
	width: 100%;
	background: #F1F4F8;
}

.main_box {
	width: 1200px;
	margin: auto;
	background: #F1F4F8;
}

.mt10 {
	margin-top: 10px;
}

.p20_15{
	padding: 20px 15px 10px 15px;
}
/* 模板标头（蓝色） */
.modal_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.modal_header span {
	display: block;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	padding-left: 12px;
}

.modal_header span::before {
	content: '';
	width: 4px;
	height: 20px;
	background: #0092FF;
	position: absolute;
	top: 3px;
	left: 0;
}

.modal_header a {
	display: block;
	font-size: 14px;
}
/* 模板分类 (标题) */
.modal_class{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 10px;
	border-bottom: 1px solid #E9E9E9;
}
.modal_class span{
	color: #0092FF;
	font-size: 22px;
	font-weight: bold;
}
.modal_class a{
	display: block;
	color: #666666;
}


/* 内容 */
.container {
	width: 100%;
	background: #F1F4F8;
}

/* 列表数据样式 */
.data_list {
	margin-top: 10px;
	width: 100%;
}

.data_list li {
	line-height: 1.95rem;
	display: flex;
	align-items: center;
}

.data_list li a {
	display: inline-block;
	width: 85%;
	text-align: left;
	padding-left: 8px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.data_list li:first-child {
	margin-top: 10px;
}

.data_list li::before {
	content: '';
	width: 6px;
	height: 6px;
	background: #E4E4E4;
	border-radius: 50%;
}

.data_list li .time {
	display: block;
	width: 15%;
	text-align: right;
	color: #aaaaaa;
	font-size: 14px;
}

/* 分页样式 */
.pages {
	padding: 10px 15px;
	text-align: center;
}

.pages a,
.pages span {
	display: inline-block;
	height: 32px;
	line-height: 22px;
	padding: 5px 10px;
	margin: 3px;
	border: 1px solid #eee;
	background-color: #ffffff;
}

.pages a.active,
.pages a:hover {
	color: #ffffff;
	background: #00bc66;
	border: 1px solid #00bc66;
}

/* 底部导航栏样式 */
footer {
	width: 100%;
	background: #333d3c;
	flex: 0 0 auto;
	min-width: 1200px;
}

footer .menu_foot {
	width: 100%;
	height: 90px;
	line-height: 90px;
	border-bottom: 1px solid #636766;
	display: flex;
	justify-content: center;
}

footer .menu_foot a {
	color: #ccc;
	font-size: 15px;
	margin: 0 20px;
}

footer .copyright {
	color: #999;
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	background: #333d3c;
}

footer .copyright a {
	color: #999999;
	padding-right: 10px;
}


.news_box {
	width: 100%;
	height: 455px;
	padding: 25px 15px 20px 15px;
	background: #fff;
}

.news_img {
	width: 400px;
}

.img_box {
	position: relative;
	width: 400px;
	display: block;
}

.img_box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: inset 0 -50px 50px -50px rgba(0, 0, 0, 1);
}

.img_box img {
	width: 100%;
	height: auto;
	max-height: 267px;
	min-height: 267px;
}

.img_box .desc {
	position: absolute;
	bottom: 5px;
	left: 10px;
	color: #fff;
	font-size: 14px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	z-index: 5;
}

.w380 {
	width: 360px;
}

.w174 {
	width: 174px;
}

.bto_imgs {
	margin-top: 15px;
}

.bto_imgs .img_box {
	width: 193px;
	height: auto;
}

.bto_imgs .img_box img {
	width: 100%;
	height: auto;
	max-height: 128px;
	min-height: 128px;
}

/* 顶层模块新闻信息 */
.news_info {
	margin-left: 20px;
	width: 420px;
}

.news_info .title {
	text-align: center;
	margin: auto;
	font-size: 20px;
	font-weight: bold;
	width: 83%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news_info .desc {
	margin-top: 10px;
	text-indent: 1.6rem;
	font-size: 13px;
	line-height: 1.5rem;
	position: relative;
	display: -webkit-box;
	overflow: hidden;
	white-space: normal !important;
	text-overflow: ellipsis;
	word-wrap: break-word;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical
}

.news_info .desc a {
	display: block;
}

/* .news_info .desc ::after {
    content: '......';
    position: absolute;
    font-weight: bold;
    display: inline-block;
    transform: rotate(180deg);
    text-align: right;
    height: 30px;
    bottom: -10px;
    right: 0px;
    background: #fff;
    width: 20%;
    font-size: 14px;
    z-index: 5;
} */

.news_info .lists {
	border-top: 1px dashed #d9d9d9;
}

.news_info .lists li {
	line-height: 1.8rem !important;
}
.news_info .lists li .time {
	font-size: 13px;
}

/* 院校推荐 */
.news_academy {
	width: 315px;
	margin-left: 20px;
}

.news_academy ul li {
	padding: 0;
}

.news_academy ul li a {
	display: inline-flex;
	width: 100%;
	align-items: center;
	padding-top: 7px;
}

.news_academy ul li:first-child {
	padding-top: 10px;
}

.news_academy ul li a img {
	display: block;
	width: 66px;
	height: 66px;
	border-radius: 50%;
}

.academy_info span {
	display: block;
	font-size: 12px;
	color: #666666;
	line-height: 20px;
	margin-left: 15px;
}

.academy_info span:first-child {
	color: #333;
	font-size: 15px;
}

.academy_info span:last-child {
	width: 230px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

/* 首页分类样式模板 */
.category {
	background-color: #fff;
	height: 465px;
	padding: 20px 15px;
}

.category:last-child {
	margin-bottom: 30px;
}

.tip_title {
	padding-bottom: 10px;
	border-bottom: 1px solid #d9d9d9;
}

.tip_title span {
	font-size: 22px;
	color: #0092ff;
	font-weight: bold;
}

.tip_title a {
	color: #666666;
}

.tip_content {
	width: 100%;
	padding-top: 15px;
}

.information {
	width: 805px;
}

.information .flex_row {
	border-bottom: 1px solid #E9EBEF;
	padding-bottom: 15px;
}

.information .inform_img {
	width: 166px;
	min-width: 166px;
	margin-right: 15px;
}

.information .inform_img img {
	width: 100%;
	height: auto;
	max-height: 110px;
	min-height: 110px;
}

.information .headline {
	text-align: left;
	font-size: 18px;
	width: 85%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-top: 2px;
}

.information .intro {
	margin-top: 15px;
	font-size: 14px;
	line-height: 1.5rem;
	color: #777777;
	display: -webkit-box;
	overflow: hidden;
	white-space: normal !important;
	text-overflow: ellipsis;
	word-wrap: break-word;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	position: relative;
	letter-spacing: normal;
}

.more_list {
	padding-top: 20px;
}

.more_list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.more_list ul li {
	width: 50%;
	line-height: 2.05rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.more_list ul li:nth-child(odd) {
	padding-right: 15px;
}
.more_list ul li:nth-child(even) {
	padding-left: 15px;
}
.more_list ul li a {
	width: 80%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.more_list ul li span {
	color: #888888;
	font-size: 13px;
}

.hotspot_list {
	margin-left: 25px;
	width: 330px;
}

.hotspot_list .page_list .time {
	font-size: 14px !important
}


.news_block{
	width: 100%;
	background: #fff;
	padding: 15px 20px;
}
.title_01{
	width: 100%;
	margin-left: -20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.title_01 span{
	color: #333;
	font-size: 18px;
	font-weight: bold;
	height: 20px;
	line-height: 20px;
	border-left: 6px solid #0092ff;
	padding-left: 15px;
}

.linker_block{
	background-color: #fff;
	padding: 15px 20px;
}
.linker_block>.layui-tab-title .layui-this{
	color: #4498ee !important;
	font-size: 16px;
	font-weight: bold;
}
.linker_block>.layui-tab-title .layui-this:after{
	border-bottom: 2px solid #4498ee !important;;
}
.linker_block>.layui-tab-content a{
	font-size: 15px;
	margin-right: 20px;
}

.mb30{
	margin-bottom: 30px;
}