header {
	height: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
 padding: 0 .3rem;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 9999;
	background: url(../images/topbg.jpg) left bottom no-repeat;
}
.b_over {
	overflow: hidden;
}
header .return {
	width: 20%;
}
header .return i {
	color: #333;
 font-size: .42rem;
}
header .page_name {
 font-size: .36rem;
	color: #333;
	flex: 1;
	text-align: center;
}
header .nav_sea {
	width: 20%;
	display: flex;
	justify-content: flex-end;
}
header .nav_sea .sea_btn {
	color: #fff;
 font-size: .42rem;
 margin-right: .2rem;
}
header .nav_sea .sea_btn img {
	width: 30px;
}
header .nav_sea .nav_btn {
	color: #fff;
 font-size: .42rem;
}
header .log img {
	height: 1.2rem;
}
/* 基础汉堡菜单图标 */
.hamburger {
	width: 30px;
	height: 25px;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 6px
}
.hamburger span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: white;
	border-radius: 3px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: all 0.3s ease;
}
.hamburger span:nth-child(1) {
	top: 0px;
}
.hamburger span:nth-child(2) {
	top: 10px;
}
.hamburger span:nth-child(3) {
	top: 20px;
}
/* 悬停效果 */
.hamburger:hover span {
	background: #fff;
	box-shadow: 0 0 8px rgba(255, 222, 89, 0.8);
}
/* 关闭状态 */
.hamburger.close span:nth-child(1) {
	top: 10px;
	transform: rotate(135deg);
}
.hamburger.close span:nth-child(2) {
	opacity: 0;
	left: -60px;
}
.hamburger.close span:nth-child(3) {
	top: 10px;
	transform: rotate(-135deg);
}
.hamburger.thin span {
	height: 3px;
}
.arrow-line {
	width: 40px;
	height: 40px;
	border: 2px solid #3498db;
	border-top: none;
	border-left: none;
	transform: rotate(45deg);
	transition: all 0.3s ease;
}
/* 动画汉堡图标 */
.hamburger.animated:hover span:nth-child(1) {
	transform: translateY(4px);
}
.hamburger.animated:hover span:nth-child(3) {
	transform: translateY(-4px);
}
 @media (max-width: 600px) {
.icon-showcase {
	gap: 20px;
}
.hamburger {
	width: 30px;
	height: 25px;
}
.hamburger.circle {
	width: 30px;
	height: 30px;
}
}
.slide-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 30px;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	color: white;
	z-index: 10;
}
.slide-title {
	font-size: 14px;
	font-weight: 200;
	margin-bottom: 15px;
}
.mask {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	left: 0;
	top: 0;
	z-index: 888;
	display: none;
}
nav {
	position: fixed;
	z-index: 10000;
	top: 1.5rem;
	width: 40%;
	right: -40%;
	transition: right .3s;
	background: #f9f9f9;
	height: calc(100vh - 1rem);
	overflow-y: scroll;
}
nav dl dt {
	border-bottom: 1px solid #e3e3e3;
}
nav dl dt a {
	height: 1rem;
	display: flex;
	align-items: center;
 padding: 0 .2rem;
	justify-content: space-between;
}
nav dl dt a .left_box {
	display: flex;
	align-items: center;
	color: #333333;
 font-size: .33rem;
}
nav dl dt a .left_box img {
 margin-right: .2rem;
 max-width: .33rem;
 max-height: .33rem;
}
nav dl dt a .iconfont {
	color: #333333;
	transition: .3s;
}
nav .dd_box {
	display: none;
}
nav dl dd {
	display: block;
	border-bottom: 1px #f1f1f1 solid;
}
nav dl dd span {
	display: blockl;
}
nav dl dd span a {
 height: .9rem;
	display: block;
 line-height: .9rem;
	display: block;
 padding-left: .38rem;
	color: #3c3c3c;
 font-size: .3rem;
	font-weight: 550;
}
nav dl dd .t_a a {
	color: #575757;
 font-size: .3rem;
 line-height: .66rem;
	display: block;
 padding-left: .5rem;
}
nav dl dd .t_a .more {
	color: #339eb9;
 font-size: .3rem;
}
nav .on dt a .iconfont {
	transform: rotate(90deg);
}
.icon-arrow-right-copy-copy {
}
.nav-show {
	right: 0;
}
.search_pop {
	height: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
 padding: 0 .3rem;
	position: fixed;
	width: 100%;
	left: 0;
	top: -100%;
	z-index: 10000;
	background: #fff;
	border-bottom: 1px solid #e3e3e3;
	transition: .66s;
}
.search_pop .input_box {
 height: .8rem;
	border: 1px solid #999;
	width: 6.4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
 padding: 0 .3rem;
 border-radius: .1rem;
}
.search_pop .input_box .tet {
	width: 5rem;
	border: none;
}
.search_pop .input_box .sub {
	color: #333;
 font-size: .42rem;
}
.search_pop .close_search_btn {
 font-size: .42rem;
}
.search_pop_show {
	top: 0;
}
.pub_wrap {
	background-color: #fcfcfc;
 padding-bottom: .3rem;
}
.pub_wrap .head {
	display: flex;
	justify-content: space-between;
	align-items: center;
 padding: .5rem 0;
}
.pub_wrap .head .share a {
 width: .73rem;
 height: .73rem;
	background-color: #a8a8a8;
	text-align: center;
	display: inline-block;
 line-height: .73rem;
	border-radius: 50%;
	color: #fff;
}
.pub_wrap .head .rx {
	width: 4.55rem;
 height: .73rem;
	background-color: #fcfcfc;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.08);
 border-radius: .37rem;
 font-size: .28rem;
	display: flex;
	align-items: center;
	color: #666666;
	justify-content: center;
}
.pub_wrap .head .rx i {
	color: #a8a8a8;
 margin-right: .1rem;
}
.pub_wrap .head .top img {
	width: 1.2rem;
}
.pub_wrap dl {
 margin-bottom: .3rem;
}
.pub_wrap dl dt {
	color: #333333;
 font-size: .32rem;
 margin-bottom: .3rem;
}
.pub_wrap dl dt i {
	display: inline-block;
 margin-left: .3rem;
 font-size: .36rem;
}
.pub_wrap dl dd {
	display: flex;
	flex-wrap: wrap;
}
.pub_wrap dl dd a {
	display: block;
	width: 32%;
	margin-right: 1%;
	color: #666666;
 line-height: .6rem;
 font-size: .28rem;
}
.search_pop {
	height: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
 padding: 0 .3rem;
	position: fixed;
	width: 100%;
	left: 0;
	top: -100%;
	z-index: 10000;
	background: #fff;
	border-bottom: 1px solid #e3e3e3;
	transition: .66s;
}
.search_pop .input_box {
 height: .8rem;
	border: 1px solid #999;
	width: 6.4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
 padding: 0 .3rem;
 border-radius: .1rem;
}
.search_pop .input_box .tet {
	width: 5rem;
	border: none;
}
.search_pop .input_box .sub {
	color: #333;
 font-size: .42rem;
}
.search_pop .close_search_btn {
 font-size: .42rem;
}
.search_pop_show {
	top: 0;
}
.index .banner_swiper .swiper-pagination-bullet {
 width: .2rem;
 height: .2rem;
	background-color: #ffffff;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
	opacity: 1;
}
.index .banner_swiper .swiper-pagination {
}
.index .banner_swiper .swiper-pagination-bullet-active {
	background-color: #ef8e10;
}
.index .banner_swiper .swiper-slide {
	position: relative;
}
.index .banner_swiper .swiper-slide .tet {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 30%;
}
.index .banner_swiper .swiper-slide .tet .a-f {
	color: #ffffff;
 font-size: .68rem;
	font-weight: 550;
}
.index .banner_swiper .swiper-slide .tet .a-g {
	color: #ffffff;
 font-size: .28rem;
 margin-top: .2rem;
}
.index .nav_wrap {
	display: flex;
	transform: translateY(-0.8rem);
	position: relative;
	z-index: 2;
	margin-top: 0.6rem;
	margin-bottom: 0rem;
}
.index .nav_wrap a {
	display: block;
	width: 33.3333%;
	text-align: center;
}
.index .nav_wrap a img {
	width: 1.65rem;
}
.index .nav_wrap a p {
	color: #132936;
	font-size: 13px;
	line-height: 22px;
	margin-top: 0rem;
}
.index .pub_tit {
	text-align: center;
 padding: .7rem 0;
}
.index .pub_tit h6 {
	color: #333333;
 font-size: .37rem;
	font-weight: 550;
}
.index .pub_tit p {
 margin-top: .1rem;
}
.index .pub_tit p span {
	position: relative;
	color: #303030;
 font-size: .29rem;
	font-weight: 550;
}
.index .pub_tit p span::after {
	position: absolute;
	width: 1rem;
	height: 3px;
	background-color: #339eb9;
	content: '';
	left: 0;
	bottom: -30%;
}
.index .wrap_01 {
 padding-bottom: .8rem;
	background: url(../images/hdbg.jpg) bottom center no-repeat;
	padding: 10px 10px 50px 10px;
}
.index .wrap_01 .solu_swiper .swiper-slide .tet_box {
 border-radius: 0 0 .25rem .25rem;
	background: #fff;
 padding: 0 0rem .3rem;
}
.index .wrap_01 .solu_swiper .swiper-slide .tet_box h6 {
	color: #100f0e;
 font-size: .3rem;
 padding: .25rem 0;
}
.index .wrap_01 .solu_swiper .swiper-slide .tet_box p {
	color: #666666;
 font-size: .26rem;
 line-height: .36rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.index .wrap_02 {
	background-color: #339eb9;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
 padding-bottom: .9rem;
}
.index .wrap_02 .pub_tit h6 {
	color: #ffffff;
}
.index .wrap_02 .pub_tit p span {
	color: #ffffff;
}
.index .wrap_02 .pub_tit p span::after {
	background: #fff;
}
.index .wrap_02 .info_swiper .swiper-pagination-bullet {
 width: .2rem;
 height: .2rem;
	background-color: #ffffff;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
	opacity: 1;
}
.index .wrap_02 .info_swiper .swiper-pagination-bullet-active {
	background-color: #ef8e10;
}
.index .wrap_02 .x_t {
 padding: .5rem;
	text-align: center;
	color: #ffffff;
 font-size: .36rem;
 line-height: .58rem;
	height: 2.7rem;
	padding-top: 0.4rem
}
.index .wrap_02 .x_t p {
	display: none;
}
.index .wrap_02 .c_box {
 padding: 0 .25rem;
 margin-bottom: .5rem;
}
.index .wrap_02 .c_box .cc {
	background-color: #ffffff;
	border-radius: 4px;
	overflow: hidden;
}
.index .wrap_02 .c_box .cc .choice {
	display: flex;
}
.index .wrap_02 .c_box .cc .choice .item {
	background-color: #dff9ff;
	color: #666;
 height: .86rem;
 line-height: .86rem;
	width: 50%;
	text-align: center;
	font-size: 18px
}
.index .wrap_02 .c_box .cc .choice .on {
	color: #339eb9;
	background: #fff;
	font-size: 18px;
	font-weight: bold
}
.index .wrap_02 .c_box .cc .list ul {
 padding: 0 .3rem;
	display: none;
}
.index .wrap_02 .c_box .cc .list ul li {
	border-bottom: 1px dashed #ccc;
}
.index .wrap_02 .c_box .cc .list ul li:last-child {
	border-bottom: none;
}
.index .wrap_02 .c_box .cc .list ul li a {
 padding: .35rem 0;
	display: block;
}
.index .wrap_02 .c_box .cc .list ul li a h6 {
	color: #555555;
	font-size: 16px;
	display: flex;
	/*align-items: center;*/
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-height: 28px;
	;
}
.index .wrap_02 .c_box .cc .list ul li a .time {
	display: flex;
	align-items: center;
 margin-top: .2rem;
}
.index .wrap_02 .c_box .cc .list ul li a .time img {
 width: .25rem;
 margin-right: .15rem;
}
.index .wrap_02 .c_box .cc .list ul li a .time span {
	color: #a3a3a3;
 font-size: .22rem;
}
.index .wrap_02 .more_btn {
	width: 2.5rem;
 height: .7rem;
	background-color: #ffffff;
	box-shadow: 0px 4px 0.15rem 0px rgba(156, 235, 255, 0.1), 0px 8px 0.3rem 0px rgba(169, 237, 255, 0.19);
	border-radius: 3px;
	display: block;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #339eb9;
 font-size: .24rem;
}
.index .wrap_03 .c_box {
	background-image: url("../images/52.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 1rem 0;
}
.index .wrap_03 .c_box .t_b {
	text-align: center;
}
.index .wrap_03 .c_box .t_b img {
 width: .72rem;
}
.index .wrap_03 .c_box .t_b h6 {
	color: #333333;
 margin: .3rem 0;
 font-size: .8rem;
	font-weight: 600;
}
.index .wrap_03 .c_box .t_b h6 span {
 font-size: .7rem;
	vertical-align: top;
}
.index .wrap_03 .c_box .t_b p {
	color: #333333;
 font-size: .3rem;
}
.index .wrap_03 .c_box .data_swiper {
 padding: 1.2rem 0 .8rem 0;
}
.index .wrap_03 .c_box .data_swiper .swiper-slide {
	color: #333333;
 font-size: .3rem;
	text-align: center;
 padding: 0 .6rem;
}
.index .wrap_03 .c_box .data_swiper .swiper-slide img {
 width: .72rem;
}
.index .wrap_03 .c_box .data_swiper .swiper-slide h6 {
	color: #333333;
 margin: .3rem 0;
 font-size: .8rem;
	font-weight: 600;
}
.index .wrap_03 .c_box .data_swiper .swiper-slide h6 span {
 font-size: .7rem;
	vertical-align: top;
}
.index .wrap_03 .c_box .data_swiper .swiper-slide p {
	color: #333333;
 font-size: .3rem;
}
.index .wrap_03 .c_box .data_swiper .swiper-pagination-bullet {
 width: .2rem;
 height: .2rem;
	background-color: #ffffff;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
	opacity: 1;
}
.index .wrap_03 .c_box .data_swiper .swiper-pagination-bullet-active {
	background-color: #ef8e10;
}
.index .wrap_04 {
	background: #f6f9fc;
}
.c-k {
	color: #100f0e;
 font-size: .3rem;
 padding: .25rem 0;
}
.c-k {
	height: 120px;
	padding: 0 30px;
	line-height: 120px;
}
/*# sourceMappingURL=css.css.map */
.pub_wrap dl dd {
	justify-content: left;
	flex-wrap: wrap;
}
.pub_wrap dl dd a {
	display: block;
	width: 32%;
	margin-right: 1%;
	color: #666666;
 line-height: .6rem;
 font-size: .28rem;
}
.pd3 {
padding: 0 .3rem 0.3REM;;
	box-sizing: border-box;
	background: #FFF
}
.i_atxt {
padding-top: .06rem;
	color: #666;
line-height: .52rem;
	text-align: left;
	font-size: 16px;
	line-height: 28px;
}
.i_atxt div {
	width: 100%;
	margin-bottom: 15px;
}
.i_atxt div img {
	width: 100%;
}
.i_alist {
padding: .48rem 0 .7rem;
}
.i_alist li {
	text-align: center;
	float: left;
	width: 1.5rem;
	margin-right: calc((100% - 6.01rem)/3);
}
.i_alist li:nth-child(4n) {
	margin-right: 0;
}
.i_alist li .img {
	width: 1.5rem;
	height: 1.5rem;
	line-height: 1.5rem;
	font-size: 0;
	border-radius: 50%;
margin-bottom: .14rem;
	border: 1px solid #d5d5d5;
	box-sizing: border-box;
}
.i_alist li img {
width: .65rem;
}
.i_alist li p {
line-height: .48rem;
	color: #666;
	white-space: pre;
}
.i_alist li.active .img {
	background-color: #1e3585;
	border-color: #1e3585;
}
.i_alist li.active p {
	color: #1e3585;
}
.g_antit {
	background: #f9f9f9;
	padding-top: 25px;
	height: 350px;
}
.g_antit h2 {
	height: 90px;
	text-align: center;
	font-size: 25px;
	font-weight: bold;
	color: #000000;
	width: 1200px;
	margin: 0 auto;
}
.g_antit h2 a {
	color: #005ca2;
}
.g_antit h2 b {
	color: #30b014
}
.g_antit h2 i {
	display: inline-block;
	font-size: 20px;
	font-style: normal;
	position: relative;
	padding: 0 6px;
	top: 0px;
}
.g_antit h2 em {
	display: block;
	font-size: 15px;
	color: #545657;
	font-weight: normal;
	position: relative;
	margin-top: 2px;
	text-transform: uppercase
}
.g_antit h2 em:before {
	content: "";
	position: absolute;
	width: 50px;
	height: 1px;
	background: #30b014;
	left: 466px;
	top: 11px;
}
.g_antit h2 em:after {
	content: "";
	position: absolute;
	width: 50px;
	height: 1px;
	background: #30b014;
	right: 466px;
	top: 11px;
}
.nav {
	width: 100%;
	background: #fff;
}
.nav img {
	display: block;
	width: 100%;
}
.nav a {
	display: block;
	width: 20%;
	float: left;
	border-left: 1px solid #ededed;
	box-sizing: border-box;
	height: 7.2em;
	padding-top: 1em;
	padding-bottom: 1.5em;
	text-align: center;
}
.nav a img {
	width: 60%;
	margin: 0 auto;
	border: 1px #CCCCCC solid;
	padding: 3px;
	border-radius: 50%;
}
.nav a:nth-child(1), nav a:nth-child(2), nav a:nth-child(3), nav a:nth-child(4), nav a:nth-child(5) {
	border-bottom: 1px solid #ededed;
}
.nav a:nth-child(5n+1) {
	border-left: none;
}
.nav a em {
	font-size: 13px;
	color: #333333;
	display: block;
	margin-top: 0.8em;
	font-weight: normal;
	font-style: normal
}
.swiper-slide {
	width: 100%
}
.swiper-slide li {
	width: 48%;
	float: left;
	margin: 0 1%;
	list-style: none
}
.swiper-slide li p {
	height: 30px;
}
.foot-nav {
	position: fixed;
	z-index: 999999;
	left: 0;
	bottom: 0;
	width: 100%;
	background: #0159A8;
}
.foot-nav ul {
	display: flex;
}
.foot-nav li {
	flex: 1;
	text-align: center;
	padding: 2.5vw 0;
	border-right: #0A66B8 solid 1px;
}
.foot-nav li i {
	display: block;
	margin: 0 auto;
	width: 5vw;
	height: 5vw;
}
.foot-nav li i img {
	display: block;
	width: 100%;
}
.foot-nav li p {
	padding-top: 1vw;
	color: #fff;
	font-size: 3vw;
	line-height: 1.5;
}
.position {
	padding: 15px 0 15px 30px;
	border-bottom: #f0f0f0 solid 2px;
	background: url(../images/home.png) 10px center no-repeat #FFF;
}
.position a{ color:#333}
.m-container {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.m-title {
	text-align: center;
	margin-bottom: 30px;
	font-size: 15px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.m-swiper-container {
	width: 96%;
	height: 200px;
	border-radius: 0px;
	overflow: hidden;
	position: relative;
	margin: 10px auto 10px
}
.m-slide-content {
	position: absolute;
	bottom: 10px;
	left: 10px;
	color: white;
	z-index: 10;
	max-width: 100%;
}
.m-slide-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
/* 标题动画效果 */
.swiper-slide-active .m-slide-title {
	opacity: 1;
	transform: translateY(0);
}
/* 自定义分页器样式 - 修改位置 */
.m-pagination {
	position: absolute;
	bottom: 0px !important;
	top: auto !important;
	z-index: 20;
	margin: 0 auto
}
.m-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0);
	opacity: 1;
	margin: 0 8px !important;
}
.m-pagination-bullet-active {
	background: #fff;
	transform: scale(1.3);
}
/* 导航按钮样式 */
.m-button-next, .m-button-prev {
	color: white;
	background: rgba(0, 0, 0, 0.4);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: background 0.3s ease;
}
.m-button-next:after, .m-button-prev:after {
	font-size: 22px;
	font-weight: bold;
}
.m-button-next:hover, .m-button-prev:hover {
	background: rgba(0, 0, 0, 0.7);
}
.m-code-container {
	margin-top: 40px;
	background: rgba(0, 0, 0, 0.7);
	padding: 25px;
	border-radius: 10px;
	width: 100%;
	max-width: 1000px;
	overflow-x: auto;
}
.m-code-title {
	margin-bottom: 15px;
	color: #fdbb2d;
}
pre {
	color: #f8f8f2;
	font-size: 14px;
	line-height: 1.5;
}
/*新闻部分*/
.news-middle {
	width: 96%;
	margin: 0 auto
}
.news-block {
	background: #fff;
	padding: 1px;
	margin-bottom: 10px;
}
.block-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #b5c8de;
	padding: 0px 10px;
	margin-bottom: 5px;
	height: 41px;
	line-height: 41px;
}
.block-title {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #0a4891;
	font-weight: bold;
}
.block-title i {
	margin-right: 8px;
	font-size: 20px;
}
.brand-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 10px;
	margin-bottom: 25px;
	height: 41px;
	line-height: 41px;
}
.brand-title {
	display: flex;
	align-items: center;
	font-size: 22px;
	color: #0a4891;
	font-weight: bold;
}
.brand-title i {
	margin-right: 8px;
	font-size: 20px;
	margin-top: 5px;
}
.more-link {
	color: #eaa546;
	text-decoration: none;
	font-size: 11px;
	margin-right: 0px
}
.more-link:hover {
	color: #0066cc;
}
.morex {
	color: #333333;
	text-decoration: none;
	font-size: 16px;
	margin-right: 10px;
	font-weight: 400
}
a.morex {
	color: #333333;
	text-decoration: none;
	font-size: 16px;
	margin-right: 10px;
	font-weight: 400
}
morex :hover {
	color: #0066cc;
}
.highlight-news {
	color: #ff9900;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 8px;
}
.news-list {
	list-style: none;
}
.news-list li {
	line-height: 30px;
}
.news-list li:before {
	content: "•";
	color: #0066cc;
	margin-right: 8px;
}
.news-list li a {
	color: #333;
	text-decoration: none;
}
.news-list li a:hover {
	color: #e9a746;
}
.news-summary {
	color: #666;
	font-size: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-top: 5px;
}
.join-image {
	width: 49%;
	float: left;
	margin-bottom: 3px;
}
.contact-image {
	width: 49%;
	float: right;
	margin-bottom: 3px;
}
.grid-links {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(4, 1fr);
	gap: 4px;
}
.grid-item {
	background: #0066cc;
	color: #fff;
	text-align: center;
	padding: 15px 10px;
	border-radius: 0px;
	text-decoration: none;
	font-weight: bold;
	transition: background 0.3s;
}
.grid-item:hover {
	background: #004d99;
}
/* 通知公告部分 */
.announcement-section {
	width: 96%;
	margin: 8px auto;
}
.button-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 8px;
}
.button-grid a {
	text-decoration: none;
	display: block;
	height: 100%;
}
.grid-button {
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	color: white;
	font-size: 20px;
	font-weight: bold;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	background-size: cover;
	background-position: center;
	cursor: pointer;
	text-align: center;
	padding: 10px;
}
.grid-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
        
        /* 响应式设计 */
        @media (max-width: 480px) {
.button-grid {
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
}
.grid-button {
	height: 80px;
	font-size: 18px;
}
}
.announcement-list {
	flex: 2;
	background: #fff;
	padding: 0px;
	border: 1px #b3c8dd solid;
	margin: 20px auto
}
.announcement-list h2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #b3c8dd;
	padding: 0px 10px;
	margin-bottom: 5px;
	height: 45px;
	line-height: 45px;
	padding: 5px 20px;
}
.announcement-list ul {
	list-style: none;
	margin: 10px;
}
.announcement-list li {
	padding: 0px 0;
	display: flex;
	justify-content: space-between;
	line-height: 40px;
}
.announcement-list li:before {
	content: "•";
	color: #333;
	margin-right: 8px;
}
.announcement-list li a {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 16px;
	color: #333
}
.announcement-list li a:hover {
	color: #eba744;
}
.announcement-date {
	color: #eba744;
	font-size: 14px;
}
.announcement-title {
	display: flex;
	align-items: center;
	font-size: 18px;
	color: #0a4891;
	font-weight: bold;
}
.announcement-title i {
	margin-right: 16px;
	margin-top: 0px;
	font-size: 20px;
}
.feature {
	width: 96%;
	margin: 0 auto 20px
}
.feature-section {
	width: 100%;
}
.feature-list {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
	list-style: none;
}
.feature-item {
	grid-column: span 3;
	background: url(../images/qbg.jpg) center center no-repeat;
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding: 10px 15px 20px;
}
.feature-item:hover {
	background: url(../images/qbg1.jpg) center center no-repeat;
	background-size: 100%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.feature-item:nth-child(n+3) {
	grid-column: span 2;
}
.feature-icon {
	width: 40px;
	height: 40px;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
}
.feature-icon img {
	width: 100%;
}
.feature-title {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	margin-top: 40px;
	text-align: center
}
.feature-item:nth-child(1) {
	padding: 20px 15px 10px;
}
.feature-item:nth-child(2) {
	padding: 20px 15px 10px;
}
.feature-item a {
	text-decoration: none;
	display: block;
	color: inherit;
}
.brand-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 34px 10px;
	margin-bottom: 0px;
	height: 41px;
	line-height: 41px;
}
.brand-title {
	display: flex;
	align-items: center;
	font-size: 22px;
	color: #0a4891;
	font-weight: bold;
}
.brand-title i {
	margin-right: 8px;
	font-size: 20px;
	margin-top: 0px;
}
.h-container {
	max-width: 1200px;
	width: 100%;
	padding: 20px;
}
.h-title {
	text-align: center;
	margin-bottom: 30px;
	color: #2c3e50;
	font-size: 2.5rem;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.h-carousel {
	position: relative;
	overflow: hidden;
	padding: 0px 0;
}
.h-carousel-container {
	display: flex;
	transition: transform 0.5s ease;
	padding: 0 10px;
}
.h-slide {
	flex: 0 0 calc(50% - 20px);
	margin: 0 10px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.h-slide:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.h-slide-img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
}
.h-slide-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 15px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}
.h-slide:hover .h-slide-content {
	transform: translateY(0);
}
.h-slide-title {
	font-size: 1.2rem;
	margin-bottom: 8px;
}
.h-slide-desc {
	font-size: 0.9rem;
	opacity: 0.9;
}
.h-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	padding: 0 20px;
}
.h-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 10;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}
.h-arrow:hover {
	background: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.h-arrow-left {
	left: 15px;
}
.h-arrow-right {
	right: 15px;
}
.h-arrow i {
	font-size: 1.5rem;
	color: #3498db;
}
.h-indicators {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin: 0 60px;
}
.h-indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #bbb;
	cursor: pointer;
	transition: all 0.3s ease;
}
.h-indicator.active {
	background: #3498db;
	transform: scale(1.3);
}
        
        /* 响应式设计 */
        @media (max-width: 768px) {
.h-slide {
	flex: 0 0 calc(100% - 20px);
}
.h-arrow {
	width: 40px;
	height: 40px;
}
.h-title {
	font-size: 2rem;
}
}
 @media (max-width: 480px) {
.h-arrow {
	width: 35px;
	height: 35px;
}
.h-arrow i {
	font-size: 1.2rem;
}
.h-title {
	font-size: 1.8rem;
}
.h-slide-img {
	height: 250px;
}
}
.carousel-container {
	max-width: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.carousel-wrapper {
	overflow: hidden;
}
.carousel-track {
	display: flex;
	transition: transform .3s ease;
	will-change: transform;
}
.carousel-slide {
	flex: 0 0 50%;
	padding: 5px;
}
.carousel-slide img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 0px;
}
/* 箭头 */
.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	border: none;
	font-size: 24px;
	padding: 0px 0 0 10px;
	cursor: pointer;
	z-index: 10;
	border-radius: 0px;
	background: none
}
.carousel-arrow:hover {
}
.prev {
	left: 10px;
}
.prev img {
	width: 30px
}
.next {
	right: 10px;
}
.next img {
	width: 30px
}
/* 指示点 */
.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 20px;
}
.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
}
.dot.active {
	background: #333;
}

/* ===== 移动设备样式（h- 前缀） ===== */
@media (max-width: 768px) {
h-body {
	padding: 10px;
}
h-.carousel-slide {
	flex: 0 0 100%;
	padding: 5px;
}
h-.carousel-slide img {
	height: 200px;
}
h-.carousel-arrow {
	font-size: 18px;
	padding: 10px 15px;
}
h-.prev {
	left: 5px;
}
h-.next {
	right: 5px;
}
}
