:root {

	--main-color: #4c91eb;
	--main-color2: #3BC1C4;
	--main-color3: #3bc1c4;
	/* --main-color: #55aaff; */
}

* {
	margin: 0;
	padding: 0;	
	color: #333;
	font-family: '微软雅黑';
}
body{ background: #f8f8f8;}

div{font-size: 12px;}

input:-webkit-autofill {
	box-shadow: 0 0 0px 1000px white inset;
}

a {
	text-decoration: none;
	outline: none;
}
a{cursor: pointer}
a:active {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
	height: 100%;
	/* background: #F8F8F8; */
}

input {
	border: none;
	outline: none;
}

/* 边框样式 */
.shadow {
	box-shadow: 0 0 5px #eee;
}

.bg_white {
	background: #fff;
}

.bg_gray {
	background: #f2f5f5;
}

.bg_main {
	background: var(--main-color);
}

.radius {
	border-radius: .5em;
}

.radius_big {
	border-radius: 1.5em;
}

.line {
	background: #eee;
	height: 1px;
	width: 100%
}

/* 公用高度宽度 */
.wh100 {
	width: 100%;
	height: 100%;
}

.w100 {
	width: 100%;
}

.w90 {
	width: 90%;
}

.w85 {
	width: 85%;
}

.w80 {
	width: 80%;
}
.w75 {
	width: 75%;
}

.w70 {
	width: 70%;
}

.w60 {
	width: 60%;
}

.w55 {
	width: 55%;
}

.w50 {
	width: 50%;
}

.w45 {
	width: 45%;
}

.w40 {
	width: 40%;
}
.w33 {
	width: 33%;
}

.w32 {
	width: 32%;
}

.w30 {
	width: 30%;
}

.w25 {
	width: 25%;
}

.w20 {
	width: 20%;
}

.w10 {
	width: 10%;
}

.w95c {
	width: 95%;
	margin: 0 auto;
}

.w90c {
	width: 90%;
	margin: 0 auto;
}

.w85c {
	width: 85%;
	margin: 0 auto;
}

.w80c {
	width: 80%;
	margin: 0 auto;
}
.h30 {
	height: 30%;
}
.h40 {
	height: 40%;
}
.h60 {
	height: 60%;
}
.h100 {
	height: 100%;
}

/* 公用内边距 */
.p_in_05 {
	padding: 0.5em;
	box-sizing: border-box;
}

.p_in_10 {
	padding: 1em;
	box-sizing: border-box;
}

.p_in_15 {
	padding: 1.5em;
	box-sizing: border-box;
}

.p_in_20 {
	padding: 2em;
	box-sizing: border-box;
}

.p_lr_05 {
	padding-left: 0.5em;
	padding-right: 0.5em;
	box-sizing: border-box;
}

.p_lr_10 {
	padding-left: 1em;
	padding-right: 1em;
	box-sizing: border-box;
}

.p_left_05 {
	padding-left: 0.5em;
	box-sizing: border-box;
}

.p_left_10 {
	padding-left: 1em;
	box-sizing: border-box;
}

.p_right_05 {
	padding-right: 0.5em;
	box-sizing: border-box;
}

.p_right_10 {
	padding-right: 1em;
	box-sizing: border-box;
}

.p_tb_03 {
	padding-top: 0.3em;
	padding-bottom: .3em;
}

.p_tb_05 {
	padding-top: 0.5em;
	padding-bottom: .5em;
}

.p_tb_08 {
	padding-top: 0.8em;
	padding-bottom: .8em;
}

.p_tb_10 {
	padding-top: 1em;
	padding-bottom: 1em;
}

.p_tb_15 {
	padding-top: 1.5em;
	padding-bottom: 1.5em;
}

.p_t_02 {
	padding-top: .2em;
}

.p_t_05 {
	padding-top: .5em;
}

.p_t_10 {
	padding-top: 1em;
}

.p_b_05 {
	padding-bottom: 0.5em;
	box-sizing: border-box;
}

.p_b_10 {
	padding-bottom: 1em;
	box-sizing: border-box;
}

.p_b_20 {
	padding-bottom: 2em;
	box-sizing: border-box;
}

/* 公用外边距 */
.m_top_03 {
	margin-top: 0.3em;
}

.m_right_05 {
	margin-right: 0.5em;
}

.m_right_10 {
	margin-right: 1em;
}

.m_top_05 {
	margin-top: 0.5em;
}

.m_top_10 {
	margin-top: 1em;
}

.m_top_20 {
	margin-top: 2em;
}

.m_bottom_05 {
	margin-bottom: .5em;
}

.m_bottom_10 {
	margin-bottom: 1em;
}

.m_bottom_20 {
	margin-bottom: 2em;
}

.m_bt_05 {
	margin: 0.5em 0
}

.m_bt_10 {
	margin: 1em 0
}

.m_left_05 {
	margin-left: .5em;
}

.m_left_10 {
	margin-left: 1em;
}

.m_left_20 {
	margin-left: 2em;
}

/* 公用文本 */
.txt_light_c {
	color: #ccc;
}

.txt_light_8 {
	color: #888;
}

.txt_light_4 {
	color: #444;
}

.txt_main {
	color: var(--main-color);
}

.txt_red {
	color: #fa5c7e;
}

.txt_red_1 {
	color: #fa8496;
}

.txt_green {
	color: #39a032;
}

.txt_white {
	color: #fff;
}

.txt_warning {
	color: #f79240;
}

.txt_center {
	text-align: center;
}

.txt_right {
	text-align: right;
}
.txt_d{
	color: #1ff4e7;
}

.bold {
	font-weight: bold;
}

.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.justify {
	text-align: justify;
}

/* 文本大小 */
.font_10 {
	font-size: 12px;
}

.font_12 {
	font-size: 1.2em;
}

.font_13 {
	font-size: 1.3em;
}

.font_15 {
	font-size: 1.5em;
}

.font_18 {
	font-size: 1.8em;
}

.font_20 {
	font-size: 2em;
}

.font_25 {
	font-size: 2.5em;
}

.font_30 {
	font-size: 3em;
}

.font_35 {
	font-size: 3.5em;
}

.font_40 {
	font-size: 4em;
}

.font_50 {
	font-size: 5em;
}

/* 浮动布局 */
.flex {
	display: flex;
}

.flex1 {
	flex: 1;
}

.flex_wrap {
	display: flex;
	flex-wrap: wrap;
}

.flex_end {
	display: flex;
	justify-content: flex-end;
}

.flex_center {
	display: flex;
	justify-content: center;
}

.flex_column {
	display: flex;
	flex-direction: column;
}

.v_align {
	align-items: center;
}

.shr {
	flex-shrink: 0
}
.flex_wrap_align{
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;}


/* 二级页面 */

.title {
	border-bottom: 1px #ddd solid;
}

.title div {
	padding: 10px 5px;
	margin-right: 30px;
	font-size: 1.2em;
}

.title div.checked {
	color: var(--main-color3);
	font-weight: bold;
	position: relative;
}

.title div.checked::after,
.title div::after {
	display: block;
	width: 100%;
	height: 5px;
	border-radius: 10px;
	content: '';
	clear: both;
	background: var(--main-color3);
	position: absolute;
	bottom: 0;
	left: 0;
}

.title div::after {
	background: transparent;
}

.card {
	background: #4dbd73;
	color: #fff;
	padding: 8px 14px;
	margin-right: 10px;
}

.btn1 {
	background: linear-gradient(#56e17d, #4cd4a4);
}

.btn2 {
	background: linear-gradient(#f9b923, #fc7a3b);
}

.btn3 {
	background: linear-gradient(#48a6ff, #4871ff);
}

.btn4 {
	background: linear-gradient(#56dffb, #31aeea);
}

.btn5 {
	background: linear-gradient(#fe9256, #fc2a0a);
}
.btn6 {
	background: linear-gradient(#f394c4, #ea3892);
}

.btn2_line {
	border: 1px #fc7a3b solid;
	color: #fc7a3b;
	border-radius: 5px ;
}
.btn4_line {
	border: 1px #31aeea solid;
	color: #31aeea;
	border-radius: 5px ;
}

.p_15_20 {
	padding: 15px 20px;
	box-sizing: border-box;
}

.bgBlue{background: #0090ff;}
.w1200{width: 1200px; margin: 0 auto;}
.menu a{width: 100%;height:3.5em; line-height: 3.5em; font-weight: bold; font-size: 16px; color: #fff; text-align: center; position: relative;}
.menu a.checked::after{
content: " ";
display: block;
clear: both;
 position: absolute;
 bottom:0; 
 left: 50%;
    width: 0;
    height: 0;
    border-bottom: 10px solid #f8f8f8;
	transform: translateX(-50%);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

.tag {
	width: 6px;
	height: 20px;
	background: linear-gradient(#3e62ff,#14fcff);
	border-radius:6px;
}

.tag_txt {
	color: #555;
	flex:1;
	font-weight: bold;
	font-size: 17px;
	padding-left: 10px
}
.min{ min-height: 150px;}
.cz{width: 102px; height: 132px;  border:1px #eeeeee solid; margin: 15px auto 8px; padding: 5px; box-sizing: border-box;}
.cz img{width:90px; height: 120px;}

.seeAll{ width: 95%; margin: 20px auto 0; display: block; border:1px #eee solid;  padding: 10px 0; font-size: 14px; color: #555; text-align: center;border-radius: 5px;}
.seeAll:hover{ border-color: var(--main-color); color: var(--main-color);}
.photo,.fk div{ width: 120px; height: 120px; background: #f8f8f8; border:1px #ddd solid; border-radius: 200%; overflow: hidden; display: flex; align-items: center; margin:25px auto;}
.photo img,.fk img{ width: 100%;}

.fk div{ width: 60px; height: 60px; margin:15px auto 0;}
.news div,.news a{ font-size: 14px !important;}
.ixon{ width: 20px;}
.aBlock{ display: block;}

.cgImg,.zyImg,.bbsImg{width: 170px; height: 135px; overflow: hidden; display: flex;align-items: center; margin: 0 auto; background: #f9f9f9;}
.zyImg{ width: 270px; height: 220px; background: #f9f9f9;}
.msImg{ width: 100%; height: 150px; overflow: hidden;}
.bbsImg{ width: 42px; height: 42px; overflow: hidden; border-radius: 42px;
}
.cgImg img,.zyImg img,.msImg img,.bbsImg img,.photo1 img{width: 100%;}

.bbsContent { border-bottom: 1px #ddd dashed; padding-bottom: 1em;}
.bbs{ padding: 1em 0;}
.bbs :last-child .bbsContent{ border:none}
.top{ width: 100%; height: 360px; background: url(img/banner.jpg) no-repeat 50% 50%; }
.photo1{ width: 140px; height: 140px; background: #f8f8f8; border:2px #fff solid; border-radius: 200%; overflow: hidden; display: flex; align-items: center; margin:0px auto 25px;box-shadow: 0 0 10px #eee;}




