/* 初始化
----------------------------------------------- */

/* 图片弹窗 */
.img-modal {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.img-modal-overlay {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background-color: rgba(0, 0, 0, 0.85);
}

.img-modal-close {
	position: absolute;
	top: 20px; right: 30px;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	z-index: 10;
	line-height: 1;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.img-modal-close:hover { opacity: 1; }

.img-modal-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	border-radius: 4px;
	box-shadow: 0 5px 30px rgba(0,0,0,0.3);
	z-index: 10;
	cursor: default;
}

/* 视频弹窗 */
.video-modal {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-modal-overlay {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background-color: rgba(0, 0, 0, 0.85);
}

.video-modal-close {
	position: absolute;
	top: 20px; right: 30px;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	z-index: 10;
	line-height: 1;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.video-modal-close:hover { opacity: 1; }

.video-modal-player {
	position: relative;
	width: 80vw;
	max-width: 960px;
	z-index: 10;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 5px 30px rgba(0,0,0,0.3);
	background: #000;
}

.video-modal-video {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	outline: none;
}

@media (max-width: 768px) {
	.video-modal-player {
		width: 95vw;
	}
	.video-modal-close {
		top: 10px; right: 15px;
		font-size: 32px;
	}
}

/* 证书轮播 */
.cert-swiper-wrap {
	position: relative;
	margin-top: 30px;
}

.cert-swiper {
	overflow: hidden;
}

.cert-swiper .swiper-slide .cert-pic {
	overflow: hidden;
	border-radius: 4px;
}

.cert-swiper .swiper-slide .cert-pic img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s;
	border-radius: 5px;
}

.cert-swiper .swiper-slide:hover .cert-pic img {
	transform: scale(1.1);
}

.cert-swiper .swiper-slide .cert-txt {
	text-align: center;
	font-size: 16px;
	margin-top: 15px;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 箭头按钮 */
.cert-btn {
	position: absolute;
	top: 50%;
	width: 39px;
	height: 39px;
	border-radius: 50%;
	background-size: 100% 100%;
	cursor: pointer;
	z-index: 2;
	transform: translateY(-50%);
	background-color: rgba(0,0,0,0.35);
	transition: background-color 0.3s;
}

.cert-btn:hover {
	background-color: rgba(0,0,0,0.55);
}

.cert-btn::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 50%;
	left: 50%;
}

.cert-btn.swiper-button-disabled {
	opacity: 1;
	cursor: pointer;
	pointer-events: auto;
}

.honor-cert-prev,
.copyright-cert-prev {
	left: -55px;
}

.honor-cert-prev::after,
.copyright-cert-prev::after {
	transform: translate(-30%, -50%) rotate(-135deg);
}

.honor-cert-next,
.copyright-cert-next {
	right: -55px;
}

.honor-cert-next::after,
.copyright-cert-next::after {
	transform: translate(-70%, -50%) rotate(45deg);
}

@media (max-width: 1300px) {
	.honor-cert-prev,
	.copyright-cert-prev {
		left: -40px;
	}
	.honor-cert-next,
	.copyright-cert-next {
		right: -40px;
	}
}

@media (max-width: 992px) {
	.cert-swiper-wrap {
		margin-top: 20px;
	}

	.cert-btn {
		position: relative;
		top: auto;
		display: inline-block;
		width: 30px;
		height: 30px;
		transform: none;
		margin: 20px 10px 0;
	}

	.honor-cert-prev,
	.copyright-cert-prev {
		left: auto;
	}

	.honor-cert-next,
	.copyright-cert-next {
		right: auto;
	}

	.cert-btn::after {
		width: 8px;
		height: 8px;
	}

	.cert-swiper-wrap {
		text-align: center;
	}

	.cert-swiper .swiper-slide .cert-txt {
		font-size: 16px;
		margin-top: 10px;
	}
}
body {
	font-family: Microsoft Yahei, \5FAE\8F6F\96C5\9ED1, \5b8b\4f53, Arial, Lucida, Verdana, Helvetica, sans-serif;
	color: #333;
	background-color: #FFF;
}

body,
button,
input,
textarea {
 font-size: 16px;
 line-height: 1.531;
 outline: none;
 margin: 0;
 padding: 0;
 border: 0;
}

a {
	color: #333333;
}

a:hover {
	color: #115FAD;
	text-decoration: none;
}

p,
ul,
ol,
dl,
dt,
dd,
form,
blockquote {
	margin: 0;
	padding: 0;
}

ul,
ol {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 14px;
	margin: 50px 0;
	padding: 0;
}

input,
select {
	font-family: Microsoft Yahei;
	vertical-align: middle;
	box-sizing: border-box;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
	background-color: transparent;
	background-image: none;
	transition: background-color 50000s ease-in-out 0s;
}

em,
b,
i {
	font-style: normal;
	font-weight: normal;
}

img {
	vertical-align: middle;
	border: 0;
}

label {
	cursor: pointer;
}

video {
	width: 100%;
}

/* 主体框架
----------------------------------------------- */
#wrapper .mb {
	margin-bottom: 30px;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}

.container1 {
	text-align: center;
}

@media (max-width: 768px) {
	.about-banner {
		height: 280px !important;
	}

}

.showdz {
	font-size: 36px;
	color: #fff;
}

.showxz {
	font-size: 20px;
	color: #fff;
}

.showdz1 {
	font-size: 36px;
	color: #115FAD;
}

.showxz1 {
	font-size: 20px;
	color: #115FAD;
}

.about-banner {
    height: 600px;
}
/* 手机端，屏幕宽度768px以下高度改为300px */
@media (max-width:768px) {
    .about-banner {
		width: 100%;
        height: 300px;
    }
}

.article-banner {
    height: 600px;
}
/* 手机端，屏幕宽度768px以下高度改为300px */
@media (max-width:768px) {
    .article-banner {
        height: 300px !important;
    }
    .article-banner .container {
        padding-top: 80px !important;
    }
}

/* 头部导航
----------------------------------------------- */
/* -- top -- */
#header .top {
	background-color: rgba(204, 204, 204, 0.5);
	backdrop-filter: blur(20px) saturate(200%);
	-webkit-backdrop-filter: blur(20px) saturate(200%);
	height: 30px;
	line-height: 30px;
}

#header .top .container {
	zoom: 1;
}

/* top-nav */
#header .top .top-nav {
	float: left;
	position: relative;
	z-index: 10000;
	font-size: 14px;
	color: #999;
}

#header .top .top-nav li {
	float: left;
	text-align: center;
}

#header .top .top-nav li.lang-select {
	min-width: 80px;
}

#header .top .top-nav li a {
	display: block;
	height: 30px;
	padding: 0 10px;
	line-height: 30px;
	color: #333;
}

#header .top .top-nav li.hover {
	position: relative;
	background: #F5F5F5;
}

#header .top .top-nav ul {
	display: none;
	background: #F5F5F5;
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
}

#header .top .top-nav ul li {
	float: none;
	font-size: 14px;
}

#header .top .top-nav ul li a:hover {
	background-color: #DDD;
}

/* search */
#header .top .search {
	float: right;
	font-size: 14px;
}

#header .top .search .search-box {
	border: 1px solid #545454;
	background-color: #545454;
	box-sizing: content-box;
	position: relative;
}

#header .top .search .search-box .keyword {
	background-color: transparent;
	color: #CCCCCC;
	height: 28px;
	padding: 5px 30px 5px 10px;
}

#header .top .search .search-box .btnSearch {
	position: absolute;
	right: 0;
	top: 0;
	width: 28px;
	height: 28px;
	color: #FFF;
	background-color: transparent;
	font-size: 12px;
}

#header .top .search .search-box .btnSearch:focus {
	outline: none;
}

/* -- navbar -- */
#header .navbar {
	z-index: 1000;
}

#header .navbar.fix {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
}

@media (min-width:992px) {
	#header .navbar {
		padding: 0;
	}

	#header .navbar .container {
		height: 80px;
	}
}

#header .navbar .logo {
	display: block;
	height: 40px;
}

@media (max-width: 767px) {
	#header .navbar .logo {
		height: 30px;
		max-height: 30px;
		width: auto;
	}
}

#header .navbar .logo img {
	height: 100%;
}

#header .navbar .navbar-brand {
	height: 45px;
	overflow: hidden;
	font-size: 20px;
	color: #115FAD;
	line-height: 45px;
	font-family: "PingFang SC", "Helvetica Neue", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-variant-numeric: proportional-nums;
	padding: 0 !important;
	white-space: nowrap;
	margin-right: 10px;
}

#header .navbar .navbar-brand.site-slogan {
	text-align: left !important;
	text-align-last: left !important;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

#header .navbar .navbar-action a {
	display: inline-block;
	font-size: 30px;
	color: #115FAD;
}

/* -- main-nav -- */
#header .main-nav .dropdown-menu {
	padding: 0;
	margin: 0;
	min-width: 100%;
	font-size: 14px;
	color: #212529;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 0;
	border-radius: 0;
}

#header .main-nav .nav-item .nav-link {
	outline: none !important;
}

	.nav-item-nav {
		background-color: #115FAD;
		font-size: 16px;
		border-radius: 100px;
		padding: 0 10px;
		margin-left: 5px;
	}
	.nav-item-nav a {
		color: #fabe00;
	}

@media (min-width:992px) {

	/* LEVEL ONE */
	#header .main-nav .nav-item .nav-link {
		display: block;
		padding: 0 15px;
		height: 40px;
		line-height: 40px;
		font-size: 16px;
		text-align: center;
		color: #000;
		border-radius: 100px;
		margin-left: 5px;
	}

	#header .main-nav .nav-item .nav-link::after {
		display: none;
	}

	#header .main-nav .nav-item:hover .nav-link,
	#header .main-nav .active .nav-link {
		background-color: #115FAD;
		color: #FFF;
	}

	/* LEVEL TWO */
	#header .main-nav .dropdown:hover>.dropdown-menu {
		display: block;
	}

	#header .main-nav .dropdown-menu .dropdown-item {
		background: #E0E0E0;
		padding: 0 20px;
		height: 30px;
		line-height: 30px;
		font-size: 14px;
	}

	#header .main-nav .dropdown-menu .dropdown-item:hover {
		background: #115FAD;
		color: #FFF;
	}

	/* LEVEL THREE */
	#header .main-nav .dropdown-menu .dropdown-menu {
		left: 100%;
		top: 0;
		min-width: 98px;
		_width: 98px;
	}

	#header .main-nav .dropdown-submenu:hover>.dropdown-menu {
		display: block;
	}

	#header .main-nav .dropdown-menu .dropdown-toggle::after {
		position: absolute;
		right: 10px;
		top: 13px;
		vertical-align: 0;
		border-right: 0;
		border-top: .2em solid transparent;
		border-left: .3em solid;
		border-bottom: .2em solid transparent;
	}
}

@media (max-width:992px) {
	#header .main-nav .dropdown-toggle::after {
		position: absolute;
		right: 10px;
		top: 23px;
	}

	#header .main-nav .dropdown-menu {
		padding-left: 15px;
	}

	#header .main-nav .dropdown-menu .dropdown-item {
		position: relative;
	}

	#header .main-nav .dropdown-item,
	#header .main-nav .nav-link {
		border-bottom: 1px solid #ccc;
		padding: 1rem 0;
		background-color: transparent;
		font-size: 16px;
		text-align: center;
	}

	#header .main-nav .dropdown-menu .dropdown-item:active {
		color: #555;
		background-color: #FFF;
	}
}

/* page
----------------------------------------------- */
#page {
	padding: 10px 0;
	min-height: 400px;
}

#page h1 {
	color: #333333;
	font-size: 18px;
	font-weight: bold;
}

#page .info {
	padding: 2px 0 20px 0;
	color: #999999;
	font-size: 13px;
}

#page .content {
	color: #333;
	line-height: 200%;
	padding-top: 10px;
	text-align: justify !important;
}

#page .content img {
	max-width: 100%;
}

/* search
----------------------------------------------- */
#search-list a.search-item-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

#search-list a.search-item-link:hover {
	color: inherit;
	text-decoration: none;
}

#search-list a.search-item-link:hover dt {
	color: #115FAD;
}

#search-list dl {
	border-bottom: 1px dotted #D1D1D1;
	padding: 20px 0;
	zoom: 1;
	overflow: hidden;
	position: relative;
}

#search-list dl.last {
	border-bottom: 0;
}

#search-list dt {
	margin-bottom: 10px;
	font-size: 16px;
}

#search-list dt b {
	color: #CC0000;
	font-weight: bold;
}

#search-list dd {
	color: #999999;
	line-height: 180%;
	zoom: 1;
	overflow: hidden;
}

#search-list dd p.img {
	width: 80px;
	float: left;
}

#search-list dd p.img img {
	width: 100%;
}

#search-list dd p.desc b {
	color: #CC0000;
}

#search-list dd.have-img p.desc {
	margin-left: 90px;
	margin-right: 80px;
}

#search-list .date {
	position: absolute;
	right: 0;
	top: 20px;
	text-align: right;
}

@media (max-width: 768px) {
	#search-list dd.have-img p.desc {
		margin-right: 60px;
	}
}

#search-list .date em {
	display: block;
	color: #555;
	text-align: center;
	font-size: 36px;
}

#search-list .date p {
	font-size: 16px;
	color: #999999;
	margin-top: 5px;
}

/* 全局样式
----------------------------------------------- */
/* -- ur-here -- */
.ur-here {
	zoom: 1;
	overflow: hidden;
	border-bottom: 1px solid #DDD;
	padding: 25px 0 10px 0;
}

.ur-here .here {
	float: left;
	line-height: 20px;
	color: #999999;
	font-weight: bold;
}

@media (max-width:992px) {
	.ur-here.product-category .here {
		display: none;
	}
}

.ur-here .here a {
	color: #999999;
}

.ur-here .here b {
	margin: 0 8px;
}

.ur-here .sort {
	float: right;
}

.ur-here .sort a {
	display: inline-block;
	margin-left: 10px;
}

.ur-here .sort a.active {
	color: #115FAD;
}

.ur-here .sort a i {
	margin-left: 5px;
	font-size: 12px;
	color: #999;
}

.ur-here .sort a.active i {
	color: #115FAD;
}

/* -- tree -- */
.tree-box {
	margin-bottom: 15px;
}

.tree-box h3 {
	padding: 25px 0 10px 0;
	line-height: 20px;
	color: #999999;
	font-weight: bold;
	font-size: 14px;
	border-bottom: 1px solid #DDD;
	margin-bottom: 15px;
}

@media (max-width:992px) {
	.tree-box h3 {
		display: none;
	}
}

.tree-box li {
	padding: 8px 8px;
}

.tree-box li a {
	color: #000;
	font-size: 14px;
}

.tree-box li.cur {
	background-color: #115FAD;
}

.tree-box li.cur a {
	color: #FFF;
}

@media (max-width:992px) {
	.tree-box {
		margin-top: 10px;
	}

	.tree-box ul {
		display: inline-block;
	}

	.tree-box li {
		display: inline-block;
		padding: 0;
		margin-right: 5px;
		margin-top: 5px;
	}

	.tree-box li i {
		display: none;
	}

	.tree-box li a {
		display: block;
		border: 1px solid #EEE;
		padding: 5px 8px;
	}

	.tree-box ul ul li a {
		color: #888;
	}
}

.tree-box .search {
	display: block;
	margin: 20px 0;
}

@media (max-width: 768px) {
	.tree-box .search {
		margin: 12px 0;
	}
}

/* -- search-box -- */
.tree-box .search .search-box {
	border: 1px solid #545454;
	box-sizing: content-box;
	position: relative;
}

.tree-box .search .search-box .keyword {
	background-color: transparent;
	color: #CCCCCC;
	height: 28px;
	width: 100%;
	padding: 5px 30px 5px 10px;
}

.tree-box .search .search-box .btnSearch {
	position: absolute;
	right: 0;
	top: 0;
	width: 28px;
	height: 28px;
	background-color: transparent;
	color: #555;
	font-size: 12px;
}

.tree-box .search .search-box .btnSearch:focus {
	outline: none;
}

/* -- head-brand -- */
.head-brand {
	color: #555;
	padding: 30px 0 10px 0;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

.index-box2 {
	zoom: 1;
	padding:173px 0;
	background-image: url('/images/data/bst/tfbj.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 960px;
	display: flex;
	align-items: center;
}

@media (max-width: 992px) {
	.index-box2 {
		min-height: 500px;
		padding: 80px 0;
	}
}

@media (max-width: 767px) {
	.index-box2 {
		padding: 60px 0;
		min-height: 400px;
	}
}

/* -- index-box1 -- */
.index-box1 {
	zoom: 1;
	padding: 0;
	background-image: url('/images/data/bst/gybj.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 960px;
	display: flex;
	align-items: center;
}

.index-box1 .container {
	width: 100%;
}

.index-box1 .about {
	align-items: center;
}

@media (max-width: 992px) {
	.index-box1 {
		min-height: 500px;
		display: flex;
		align-items: center;
		background-size: cover;
		background-position: center center;
	}

	.index-box1 .container {
		width: 100%;
	}

	.index-box1 .about {
		align-items: center;
	}
}

@media (max-width: 767px) {
	.index-box1 {
		padding-top: 40px;
		min-height: 400px;
	}
}

/* -- about-title -- */
.about-title {
	text-align: left;
}

.about-title .about-line {
	display: block;
	width: 50px;
	height: 3px;
	background-color: #115FAD;
	margin-bottom: 20px;
}

.about-title .about-title-wrap {
	position: relative;
	display: inline-block;
}

.about-title em {
	display: block;
	text-transform: uppercase;
	font-size: 60px;
	color: rgba(17, 95, 173, 0.1);
	letter-spacing: 6px;
	font-style: normal;
	font-weight: 700;
	font-family: Impact, 'Arial Black', sans-serif;
	line-height: 1;
	user-select: none;
	pointer-events: none;
}

.about-title b {
	position: absolute;
	left: 0;
	bottom: -20px;
	display: block;
	color: #000000;
	font-size: 36px;
	font-weight: 400;
	white-space: nowrap;
}

.about-title b a {
	color: #333333;
	text-decoration: none;
}

.about-title b a:hover {
	color: #115FAD;
}

.about .desc {
	color: #333;
	margin: 30px 0;
	font-size: 16px;
	text-align: justify !important;
}

.about .more {
	text-align: left;
	margin-bottom: 20px;
	background: linear-gradient(to bottom, #2289df, #115FAD);
	display: inline-block;
	width: auto;
	text-align: center;
	padding: 10px 30px;
	border-radius: 100px;
}

.about .more a {
	color: #fff;
	white-space: nowrap;
}

@media (max-width: 750px) {
	.about h2,
	.about-title {
		margin-top: 30px;
	}
}

@media (max-width: 767px) {
	.about-title {
		text-align: left;
	}

	.about-title .about-line {
		margin-left: 0;
		margin-right: auto;
	}

	.about-title .about-title-wrap {
		display: block;
	}

	.about-title em {
		font-size: 36px;
		letter-spacing: 3px;
	}

	.about-title b {
		font-size: 22px;
		bottom: -10px;
	}
}

@media (max-width: 992px) {
	.about .img {
		margin-bottom: 0px;
	}

	.about .more {
		text-align: left;
		margin-bottom: 20px;
		background: linear-gradient(to bottom, #2289df, #115FAD);
		display: inline-block;
		width: auto;
		text-align: center;
		padding: 10px 30px;
		border-radius: 100px;
	}

	.about .more a {
		color: #fff;
		white-space: nowrap;
	}
}

.about .img img {
	width: 100%;
	border-radius: 5px;
}

.about h2 {
	line-height: 280%;
}

/* -- visualize-box -- */
.visualize-box p:hover,
.visualize-box h4:hover,
.visualize-box h3:hover,
.visualize-box h2:hover,
.visualize-box dt:hover,
.visualize-box dd:hover,
.visualize-box em:hover,
.visualize-box span:hover {
	background-color: rgba(243, 156, 18, .1);
}

/* -- screen -- */
.screen {
	padding-top: 20px;
}

.screen dl {
	margin-bottom: 10px;
}

.screen dl dt {
	display: inline-block;
	font-weight: bold;
}

.screen dl dd {
	display: inline-block;
}

.screen dl dd a {
	display: inline-block;
	background-color: #DDD;
	color: #555;
	padding: 2px 10px;
	margin-right: 8px;
	border-radius: 5px;
}

@media (max-width: 768px) {
	.screen dl dt {
		display: block;
	}

	.screen dl dd {
		display: block;
	}

	.screen dl dd a {
		margin-top: 8px;
	}
}

.screen dl dd a.cur {
	background-color: #115FAD;
	color: #FFF;
	border-radius: 5px;
}

/* -- swiper-button -- */
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	pointer-events: all;
}

/* -- tabs -- */
.tabs {
	border-bottom: 1px solid #EEE;
}

.tabs .nav-link {
	display: block;
	margin-bottom: -1px;
}

.tabs .nav-link.active {
	border: 1px solid #EEE;
	border-bottom: 0;
	background-color: #FFF;
}

/* 品牌文化卡片 */
.brand-culture {
	margin-top: 30px;
}

.culture-card {
	position: relative;
	width: 100%;
	height: 400px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	margin-bottom: 20px;
}

.culture-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/images/data/bst/whbj.jpg') no-repeat center center;
	background-size: cover;
	transition: all 0.5s ease;
}

.culture-card:hover .culture-bg {
	background: url('/images/data/bst/qmmsvj.jpg') no-repeat center center;
	background-size: cover;
}

.culture-content {
	position: relative;
	z-index: 2;
	padding: 40px 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	transition: all 0.5s ease;
}

.culture-card:hover .culture-content {
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	padding-top: 0;
}

.culture-content h3 {
	font-size: 24px;
	color: #115FAD;
	margin-bottom: 8px;
	font-weight: 600;
}

.culture-card:hover .culture-content h3 {
	color: #fff;
}

.culture-en {
	font-size: 12px;
	color: #999;
	margin-bottom: 20px;
}

.culture-card:hover .culture-en {
	color: rgba(255,255,255,0.7);
}

.culture-desc {
	display: none;
	font-size: 14px;
	color: #fff;
}

.culture-card:hover .culture-desc {
	display: block;
}

.culture-desc p {
	margin: 4px 0;
}

@media (max-width: 768px) {
	.culture-card {
		height: 350px;
	}
}

/* 发展历程 */
.development-history {
	margin-top: 30px;
}

.history-timeline {
	position: relative;
	padding-left: 30px;
}

.history-timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	bottom: 10px;
	width: 3px;
	background: #e0e0e0;
}

.history-item {
	position: relative;
	padding-bottom: 30px;
	cursor: pointer;
}

.history-item:last-child {
	padding-bottom: 0;
}

.history-item::before {
	content: '';
	position: absolute;
	left: -34px;
	top: 8px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #e0e0e0;
	border: 2px solid #fff;
	box-shadow: 0 0 0 2px #e0e0e0;
	transition: all 0.3s ease;
}

.history-item.active::before,
.history-item:hover::before {
	background: #115FAD;
	box-shadow: 0 0 0 2px #115FAD;
}

.history-item.active .history-year,
.history-item:hover .history-year {
	color: #115FAD;
	font-size: 60px;
}

.history-item.active .history-desc,
.history-item:hover .history-desc {
	color: #333;
}

.history-year {
	font-family: Impact, 'Arial Black', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: rgba(17, 95, 173, 0.8);
	transition: all 0.3s ease;
	line-height: 1.2;
}

.history-desc {
	font-size: 14px;
	color: #666;
	margin-top: 8px;
	line-height: 1.6;
	transition: all 0.3s ease;
}

.history-image {
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}

.history-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

.history-image-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.history-image-center img {
	max-height: 100%;
}

@media (max-width: 768px) {
	.history-image img {
		max-height: 300px;
		object-fit: contain;
	}
}

/* 核心团队 */
.team-section {
	margin-top: 30px;
}

.team-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.team-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-img {
	width: 100%;
	height: 280px;
	overflow: hidden;
}

.team-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.team-card:hover .team-img img {
	transform: scale(1.05);
}

.team-info {
	padding: 20px;
	text-align: center;
}

.team-info h3 {
	font-size: 18px;
	color: #333;
	margin-bottom: 8px;
	font-weight: 600;
}

.team-class {
	font-size: 14px;
	color: #115FAD;
	margin-bottom: 10px;
}

.team-desc {
	font-size: 13px;
	color: #666;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.history-timeline {
		padding-left: 20px;
	}
	
	.history-item::before {
		left: -24px;
	}
	
	.history-year {
		font-size: 22px;
	}
	
	.history-item.active .history-year,
	.history-item:hover .history-year {
		font-size: 32px;
	}
	
	.history-image {
		min-height: 250px;
		margin-top: 20px;
	}
	
	.team-img {
		height: 220px;
	}
}


/* -- common -- */
.cue {
	color: red;
	font-size: 14px;
}

.clear {
	clear: both;
	height: 0;
	line-height: 0;
	font-size: 0;
}

.captcha {
	text-transform: uppercase;
}

.price {
	color: #CC0000;
}

.price-line {
	color: #999;
	font-size: 14px;
	text-decoration: line-through;
}

.price-gray {
	color: #999;
	font-size: 14px;
}

.price-cue {
	background-color: #fff1eb;
	color: #ff5000;
	font-size: 11px;
	padding: 2px 6px;
	border-radius: 10px;
	margin-left: 3px;
	margin-right: 6px;
}

.none {
	display: none;
}

.pointer {
	cursor: pointer;
}

@media (max-width: 992px) {
	.m-none {
		display: none;
	}
}

@media (min-width: 992px) {
	.p-none {
		display: none;
	}
}

.nowrap {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.coupon-get-list {
	display: inline-block;
}

.coupon-get-list .get-coupon {
	display: inline-block;
	font-size: 12px;
	margin: 0 8px 8px 0;
	cursor: pointer;
}

.coupon-get-list .get-coupon em {
	display: inline-block;
	border: 1px solid #df3033;
	background-color: #df3033;
	padding: 0 7px;
	line-height: 18px;
	color: #FFF;
	border-radius: 2px;
}

.coupon-get-list .get-coupon em.n {
	border-right: 0;
}

.coupon-get-list .get-coupon em.t {
	border-left: 0;
}

.coupon-get-list .get-coupon.got em {
	background-color: #ffdedf;
	color: #df3033;
}

/* -- form -- */
.btn {
	display: inline-block;
	background-color: #115FAD;
	color: #EEE;
	padding: 6px 45px;
	text-transform: capitalize;
	cursor: pointer;
	font-weight: bold;
	text-align: center;
	-webkit-appearance: none;
	font-size: 14px;
	line-height: 1.5;
	border-radius: 0;
	border: 0;
}

.btn:active {
	box-shadow: none;
}

.btn:hover {
	text-decoration: none;
	color: #FFFFFF;
	background-color: #007AD5;
}

.btn-gray {
	display: inline-block;
	background-color: #CCC;
	border: 0;
	color: #333;
	padding: 6px 45px;
	text-transform: capitalize;
	cursor: pointer;
	font-weight: bold;
	-webkit-appearance: none;
}

.btn-payment {
	display: inline-block;
	background-color: #ff4246;
	color: #FFF;
	padding: 7px 48px;
	text-transform: capitalize;
	cursor: pointer;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	-webkit-appearance: none;
}

.btn-captcha {
	display: inline-block;
	background-color: #115FAD;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border: 0;
	color: #FFF;
	padding: 7px 22px;
	text-transform: capitalize;
	cursor: pointer;
	font-size: 13px;
}

.btn-captcha[disabled],
.btn-captcha:disabled,
.btn-captcha.disabled {
	color: #FFF;
	background-color: #b2b2b2;
	opacity: 1;
}

.btn-favorites {
	display: inline-block;
	cursor: pointer;
	font-size: 12px;
}

.btn-favorites i {
	color: #DA3638;
	margin-right: 4px;
	font-size: 13px;
}

.btn-favorites em {
	color: #777;
}

/* -- color -- */
.cRed {
	color: #F40;
}

.cOra {
	color: #f30;
}

.cGre {
	color: #0c6;
}

.cBlu {
	color: #69c;
}

.cGra {
	color: #999;
}

/* -- input -- */
.text-input {
	height: 34px;
	padding: 6px;
	font-size: 14px;
	border: 1px solid #E9E9E9;
	background-color: #FFF;
	color: #666;
	-webkit-appearance: none;
}

.text-input[disabled],
.text-input:disabled,
.text-input.disabled {
	color: #999;
}

.text-area {
	padding: 4px;
	border: 1px solid #E9E9E9;
	background-color: #FFF;
	line-height: 20px;
	-webkit-appearance: none;
}

.text-area-auto {
	border: 1px solid #E9E9E9;
	background-color: #FFF;
	padding: 0;
	font-size: 12x;
	line-height: 20px;
	resize: none;
	min-height: 40px;
	-webkit-appearance: none;
}

@media (max-width: 768px) {

	.btn,
	.btn-gray,
	.btn-payment,
	.btn-captcha,
	.text-input,
	.text-area,
	.text-area-auto,
	.inp-main {
		max-width: 100%;
	}
}

/*- input-file -*/
.input-file {
	width: 80px;
}

.input-file .input-file-show {
	height: 80px;
	line-height: 80px;
	text-align: center;
	color: #555;
	background-color: #F5F5F5;
}

.input-file .input-file-show img {
	width: 100%;
	height: 80px;
}

.input-file .input-file-btn {
	width: 100%;
	background-color: #EEE;
	color: #999;
	line-height: 25px;
	cursor: pointer;
	text-align: center;
	-webkit-appearance: none;
}

/*- table-basic -*/
.table-basic {
	color: #666666;
	border-left: 1px solid #EEE;
	border-top: 1px solid #EEE;
	border-collapse: collapse;
}

.table-basic select {
	color: #8F8F8F;
}

.table-basic td,
.table-basic th {
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
	text-align: left;
}

.table-basic td.center,
.table-basic th.center {
	text-align: center;
}

.table-basic th {
	background-color: #EEE;
}

.table-basic .child {
	background-color: #FFFFFF;
}

.table-basic td label {
	margin-right: 15px;
}

.table-basic td i {
	color: #F00;
	margin-left: 5px;
	font-weight: bold;
}

/*- form-basic -*/
.form-basic dl {
	zoom: 1;
	overflow: hidden;
	margin-bottom: 20px;
}

.form-basic dl dt {
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 13px;
}

.form-basic dl dt i {
	color: #F00;
	margin-left: 5px;
	font-weight: bold;
}

.form-basic dl dd label {
	margin-right: 15px;
	line-height: 34px;
}

/*- form-control -*/
.form-control {
	border: 1px solid #E9E9E9;
	padding: 6px 3px;
}

@media (min-width: 768px) {
	.form-control {
		display: inline-block;
		width: auto;
	}
}

/*- table-div -*/
.table-div {
	zoom: 1;
	overflow: hidden;
}

.table-div dl {
	zoom: 1;
	overflow: hidden;
	margin-bottom: 20px;
}

.table-div dl dt {
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 13px;
}

.table-div dl dt i {
	color: #F00;
	margin-left: 5px;
	font-weight: bold;
}

.table-div dl dd label {
	margin-right: 15px;
	line-height: 34px;
}

@media (max-width:992px) {
	.table-div dl dt {
		float: none;
	}
}

/* -- lift -- */
.lift {
	border-top: 1px solid #ccc;
	margin-top: 20px;
	padding-top: 20px;
	color: #999;
	font-size: 14px;
	display: flex;
	justify-content: space-between;
}

@media (max-width: 767px) {
	.lift {
		display: block;
		font-size: 12px;
	}

	.lift>* {
		display: block;
	}
}

.lift a {
	color: #999;
}

.lift a:hover {
	color: #115FAD;
}

.lift span {
	margin: 10px 0;
}

/* -- pager -- */
.pager {
	text-align: center;
	padding-top: 20px;
	color: #666;
	font-size: 14px;
}

.pager a {
	color: #666;
	text-decoration: underline;
}

/* -- pager class two -- */
.pager ul {
	display: inline-block;
	*display: inline;
	border-left: 1px solid #dddddd;
	padding: 0;
}

.pager ul li {
	display: block;
	float: left;
}

.pager ul li a,
.pager ul li em {
	display: block;
	padding: 0 12px;
	line-height: 30px;
	text-decoration: none;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-left-width: 0;
	border-radius: 0;
}

.pager ul li a:hover {
	background-color: #f5f5f5;
}

.pager ul li.active a {
	background-color: #f5f5f5;
	color: #999999;
	cursor: default;
}

.pager ul li em.total {
	margin-left: 10px;
	border-left-width: 1px;
	color: #999;
}

/* footer
----------------------------------------------- */
#footer {
	background: linear-gradient(to bottom, #ffffff, #115FAD);
	padding: 60px 0;
	margin: 0px 0;
}

@media (max-width:992px) {
	#footer {}

	#footer .foot-nav {
		margin-bottom: 15px;
		border-bottom: 1px solid #DDD;
	}
}

#footer .foot-nav .nav-parent {
	margin: 10px 0;
}

#footer .foot-nav .nav-parent a {
	font-size: 18px;
	display: block;
}

#footer .foot-nav .nav-child a {
	display: block;
	color: #999;
	margin-bottom: 5px;
}

@media (max-width:992px) {
	#footer .foot-nav .nav-parent a {
		font-size: 16px;
	}

	#footer .foot-nav .nav-child a {
		display: inline-block;
		margin-bottom: 10px;
		margin-right: 15px;
	}
}

/* -- footer search -- */
#footer .footer-search {
	margin: 10px 0 15px 0;
}

#footer .footer-search form {
	display: flex;
	align-items: center;
	gap: 10px;
}

#footer .footer-search-input {
	flex: 1;
	max-width: 600px;
	height: 44px;
	padding: 0 18px;
	border-radius: 5px;
	background: #FFFFFF;
	color: #333;
	font-size: 14px;
	outline: none;
	transition: border-color 0.3s;
}

#footer .footer-search-input::placeholder {
	color: #B0B0B0;
}

#footer .footer-search-input:focus {
	border-color: #115FAD;
}

#footer .footer-search-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 24px;
	border-radius: 22px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s;
	border: none;
	white-space: nowrap;
}

#footer .footer-search-btn-primary {
	background: #115FAD;
	color: #FFFFFF;
	border-radius: 5px;
}

#footer .footer-search-btn-primary:hover {
	background: #FFFFFF;
	color: #115FAD;
	border-radius: 10px;
}

#footer .footer-search-btn-outline {
	background: #115FAD;
	color: #FFFFFF;
	border-radius: 5px;
}

#footer .footer-search-btn-outline:hover {
	background: #FFFFFF;
	color: #115FAD;
	border-radius: 10px;
}

@media (max-width: 767px) {
	#footer .footer-search form {
		flex-wrap: wrap;
	}

	#footer .footer-search-input {
		max-width: 100%;
		width: 100%;
	}

	#footer .footer-search-btn {
		flex: none;
		padding: 0 16px;
	}
}

/* -- contact -- */
#footer .weixin {
	width: auto;
	display: inline-block;
}
#footer .weixin img {
	margin-top: 10px;
}

@media (max-width: 767px) {
    /* 让二维码的父容器也 flex 水平排列 */
    #footer .col-md-5 {
        display: flex;
        flex-direction: row;          /* 水平排列 */
        justify-content: center;      /* 居中 */
        flex-wrap: nowrap;            /* 不换行，保持一行 */
        gap: 15px;                    /* 间距 */
    }

    #footer .weixin {
        text-align: center !important;
        width: auto;                  /* 宽度自适应内容，不再 100% */
        margin-bottom: 0;             /* 去掉底部间距 */
        padding-top: 0;
    }
}


@media (max-width: 767px) {
    #footer .weixin {
        text-align: center !important;
        width: 100%;
        margin-bottom: 10px;
        padding-top: 20px;
	}

	#footer .weixin p {
		text-align: center !important;
		font-size: 20px;
	}
}

#footer .weixin img {
	width: 150px;
	height: 150px;
	background: #ffffff;
	border-radius: 5px;
	padding: 5px;
}

@media (max-width: 767px) {
	#footer .weixin img {
		width: 110px;
		height: 110px;
		background: #ffffff;
		border-radius: 5px;
		padding: 5px;
	}
}

#footer .weixin p {
	color: #333;
	font-size: 14px;
	text-align: center;
}

/* -- contact -- */
#footer .contact {
	text-align: ;
}
#footer .contact .dlogo img {
	width: 220px;

}

#footer .contact .help {
	font-size: 36px;
	margin: 5px 0;
	width: 100%;
	color: #666666;
}

#footer .contact .tel {
	font-size: 16px;
	margin: 5px 0;
	width: 100%;
	color: #fff;
}

#footer .contact .tel {
	font-size: 16px;
	margin: 5px 0;
	width: 100%;
	color: #fff;
}

@media (max-width: 767px) {
	#footer .contact .tel {
		margin-top: 20px;
	}
}

#footer .contact .tel a {
	color: #115FAD;
}

#footer .contact .online-qq {
	font-size: 16px;
	margin: 8px 0;
	width: 100%;
}

#footer .contact .online-qq a {
	color: #115FAD;
}

#footer .contact .email {
	font-size: 16px;
	margin: 8px 0;
	width: 100%;
}

#footer .contact .email a {
	color: #115FAD;
}

#footer .contact .address {
	font-size: 16px;
	margin: 8px 0;
	width: 100%;
	color: #115FAD;
}

#footer .copy-right {
	border-top: 1px solid #fff;
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: #fff;
	margin-top: 20px;
}

#footer .copy-right b a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	color: #333;
}

#footer .copy-right b a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	color: #333;
}

#footer .copy-right b a:hover {
	color: #115FAD;
	text-decoration: none;
}

@media (max-width: 767px) {
    #footer .copy-right {
        display: block;          /* 取消 flex 水平排列 */
        text-align: center;      /* 内容居中 */
    }

    #footer .copy-right .container {
        display: flex;
        flex-direction: column;  /* 垂直排列，每项独占一行 */
        align-items: center;     /* 水平居中 */
        gap: 8px;                /* 行间距 */
    }

    #footer .copy-right a {
        display: block;          /* 链接也独占一行 */
    }
}

@media (max-width: 767px) {
	#footer .copy-right b {
		display: none !important;
	}
}

#footer .copy-right p {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	color: #115FAD;
}

#footer .copy-right p a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	color: #115FAD;
}

#footer .copy-right p a:hover {
	color: #333;
	text-decoration: none;
}

#footer .copy-right a {
	font-size: 14px;
	color: #ffffff;
}

#footer .net-safe-record {
	margin-left: 10px;
}

#footer .net-safe-record img {
	vertical-align: bottom;
}

@media (max-width:992px) {
	#footer .copy-right {
		text-align: center;
	}
}

/* 移动端底部导航：仅手机显示，PC隐藏 */
.m-bottom-nav {
	display: none;
}

/* PC端隐藏全屏菜单 */
.m-menu-fullscreen {
	display: none !important;
}

/* 移动端：右上角菜单按钮 + 全屏菜单 */
@media (max-width: 767px) {
	#header .navbar .container {
		display: flex !important;
		align-items: center !important;
		justify-content: flex-start !important;
		flex-wrap: nowrap !important;
		min-width: 0 !important;
	}

	#header .navbar .container > * {
		flex-shrink: 0 !important;
	}

	#header .navbar .logo {
		flex: 0 0 auto !important;
		margin-right: 8px !important;
	}

	#header .navbar .navbar-brand {
		height: 40px !important;
		line-height: 40px !important;
		font-size: 16px !important;
		margin-right: 6px !important;
		flex: 0 0 auto !important;
		max-width: 42vw !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		white-space: nowrap !important;
		display: block !important;
	}

	#header .navbar .navbar-brand.site-slogan {
		flex: 1 1 auto !important;
		min-width: 0 !important;
		max-width: none !important;
		overflow: visible !important;
		text-overflow: clip !important;
	}

	.m-bottom-nav {
		position: relative !important;
		width: auto !important;
		height: auto !important;
		z-index: 9999;
		display: flex !important;
		align-items: center !important;
		background: transparent;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		box-shadow: none;
		padding: 0 !important;
		margin-left: auto !important;
	}

	.m-bottom-nav .m-menu-toggle {
		position: relative;
		width: 24px;
		height: 24px;
		background: rgba(17, 95, 173, 0.9);
		border: none;
		border-radius: 4px;
		cursor: pointer;
		z-index: 10000;
		padding: 6px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		box-shadow: none;
		transition: background 0.3s;
		flex-shrink: 0;
	}

	.m-bottom-nav .m-menu-toggle:hover {
		background: #115FAD;
	}

	.m-bottom-nav .m-menu-toggle span {
		display: block;
		width: 16px;
		height: 2px;
		background: #fff;
		border-radius: 1px;
		transition: all 0.3s;
	}

	.m-bottom-nav .m-menu-toggle.active span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.m-bottom-nav .m-menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.m-bottom-nav .m-menu-toggle.active span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.m-menu-fullscreen {
		display: flex !important;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.55);
		backdrop-filter: blur(25px) saturate(180%);
		-webkit-backdrop-filter: blur(25px) saturate(180%);
		z-index: 999999;
		align-items: center;
		justify-content: center;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s, visibility 0.3s;
	}

	.m-menu-fullscreen.active {
		opacity: 1;
		visibility: visible;
	}

	.m-menu-fullscreen .m-menu-close {
		position: absolute;
		top: 12px;
		right: 15px;
		width: 36px;
		height: 36px;
		line-height: 34px;
		text-align: center;
		font-size: 28px;
		color: #fff;
		background: rgba(17, 95, 173, 0.9);
		border-radius: 4px;
		cursor: pointer;
		z-index: 1000000;
	}

	.m-menu-fullscreen .m-menu-links {
		width: 100%;
		max-width: 320px;
		text-align: center;
		padding: 60px 20px 20px;
	}

	.m-menu-fullscreen .m-menu-links .nav-item {
		display: block;
		width: 100%;
		padding: 18px 0;
		font-size: 16px;
		color: #fff;
		text-decoration: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		white-space: normal;
		transition: color 0.3s;
	}

	.m-menu-fullscreen .m-menu-links .nav-item:last-child {
		border-bottom: none;
	}

	.m-menu-fullscreen .m-menu-links .nav-item.active,
	.m-menu-fullscreen .m-menu-links .nav-item:hover {
		color: #66ccff;
	}

	.m-menu-fullscreen .m-menu-links .nav-item i {
		display: none;
	}
}

/* 新闻详情页顶部空白区：移动端缩小 */
@media (max-width: 768px) {
	.about-banner.article-pg-banner {
		height: 40px !important;
	}
}