@charset "utf-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Microsoft YaHei', Arial, sans-serif;
}
body {
	background-color: #ffffff;
	color: #333;
	line-height: 1.6;
}
/* 顶部信息栏 */
.top-bar {
	background: url(../images/topbg.jpg) center top no-repeat;
	padding: 44px 0;
	height: 200px;
}
.header-container {
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo-section {
	display: flex;
	align-items: center;
}
.logo {
	width: 60px;
	height: 60px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	font-weight: bold;
	color: #0066cc;
}
.site-name {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.top-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.language-bar {
	margin-bottom: 10px;
}
.language-bar a {
	color: #fff;
	text-decoration: none;
	margin-left: 15px;
	font-size: 14px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}
.language-bar a:hover {
	text-decoration: underline;
}
.search-box {
	display: flex;
	background: #fff;
	border-radius: 30px;
	padding: 8px 15px;
	width: 300px;
}
.search-box i {
	font-size: 18px;
	color: #094990
}
.search-box input {
	border: none;
	outline: none;
	flex: 1;
	padding: 0px;
	font-size: 16px;
}
.search-box button {
	background: none;
	border: none;
	cursor: pointer;
}
/* 导航栏 */
.nav-bar {
	background: #0a4891;
	position: relative;
}
.nav-container {
	max-width: 1268px;
	margin: 0 auto;
}
.nav-menu {
	display: flex;
	justify-content: space-between;
	list-style: none;
	position: relative;
}
.nav-menu > li {
	flex: 1;
	text-align: center;
	position: relative;
}
.nav-menu > li > a {
	display: block;
	color: white;
	text-decoration: none;
	padding: 18px 0px;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}
.nav-menu li:hover > a {
	background-color: #e9a746;
}
.nav-menu > li > a:hover {
	color: #fff;
}
.nav-menu > li > a::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 0;
	background: #e9a746;
	transition: all 0.3s ease;
	z-index: -1;
}
.nav-menu > li:first-child > a:hover {
	margin-left: 34px
}
.nav-menu > li:last-child > a:hover {
	margin-right: 34px
}
.nav-menu > li > a::before {
	left: 50%;
	transform: translateX(-50%);
}
.nav-menu > li > a:hover::before {
	width: 100%;
}
.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 142px;
	background: white;
	list-style: none;
	border-radius: 0 0 0px 0px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-30px);
	transition: all 0.5s ease;
	z-index: 100;
}
.nav-menu > li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.dropdown li {
	padding: 0;
	border-bottom: 1px solid #f1f1f1;
}
.dropdown li:last-child {
	border-bottom: none;
}
.dropdown li a {
	display: block;
	padding: 12px 20px;
	color: #555;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 14.5px;
}
.dropdown li a:hover {
	background: #f8f9fa;
	color: #2196f3;
	padding-left: 25px;
}
/* 新闻部分 */
.news-section {
	width: 1200px;
	margin: 30px auto;
	display: flex;
	gap: 20px;
}
.news-left {
	width: 520px;
	margin-right: 6px;
}
.news-middle {
	width: 400px;
}
.news-right {
	width: 239px;
	margin-left: 6px;
}
.carousel {
	position: relative;
	width: 520px;
	height: 320px;
	overflow: hidden;
	border-radius: 0px;
}
.carousel-inner {
	width: 100%;
	height: 100%;
	position: relative;
}
.carousel-item {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease;
}
.carousel-item.active {
	opacity: 1;
}
.carousel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.carousel-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 15px;
}
.carousel-indicators {
	position: absolute;
	bottom: 15px;
	right: 15px;
	display: flex;
	gap: 8px;
}
.carousel-indicators span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1);
	cursor: pointer;
}
.carousel-indicators span.active {
	background: #0065cc;
	border-radius: 18px;
	width: 36px;
	height: 12px;
}
.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;
	margin-top: 6px;
	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: 6px;
}
.more-link {
	color: #eaa546;
	text-decoration: none;
	font-size: 11px;
	margin-right: 10px
}
.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;
}
.highlight-news a {
	color: #ff9900;
	text-decoration: none
}
.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, .contact-image {
	width: 100%;
	margin-bottom: 3px;
}
.grid-links {
	display: grid;
	grid-template-columns: 1fr 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: 1200px;
	margin: 30px auto;
	display: flex;
	gap: 20px;
}
.button-grid {
	display: grid;
	grid-template-rows: repeat(4, 1fr);
	gap: 7px;
	margin-right: 13px;
}
.button-grid a {
	color: #FFF;
	text-decoration: none
}
.grid-button {
	width: 250px;
	height: 105px;
	background-size: cover;
	background-position: center;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	transition: transform 0.3s;
	background: #0067e1
}
.grid-button:hover {
	transform: translateY(-5px);
	background: #e9a746
}
/* 各个按钮的背景样式 */
.button-1 {
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../images/left01.jpg?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
	background-size: cover;
	background-position: center;
}
.button-2 {
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../images/left01.jpg');
	background-size: cover;
	background-position: center;
}
.button-3 {
	background: #0067e1;
}
.button-4 {
	background: #0067e1;
}
/* 悬停效果 */
.grid-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
	background: #e9a746 !important;
}
.announcement-list {
	flex: 2;
	background: #fff;
	padding: 0px;
	border: 1px #b3c8dd solid;
}
.announcement-list h2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #b3c8dd;
	padding: 0px 10px;
	margin-bottom: 5px;
	height: 75px;
	line-height: 75px;
	padding: 5px 20px 5px 40px;
}
.announcement-list ul {
	list-style: none;
	margin: 15px 35px;
}
.announcement-list li {
	padding: 0px 0;
	display: flex;
	justify-content: space-between;
	line-height: 48px;
}
.announcement-list li:before {
	content: "•";
	color: #333;
	margin-right: 8px;
}
.announcement-list li a {
	color: #333;
	text-decoration: none;
	flex: 1;
}
.announcement-list li a:hover {
	color: #eba744;
}
.announcement-date {
	color: #eba744;
	font-size: 14px;
}
.announcement-title {
	display: flex;
	align-items: center;
	font-size: 22px;
	color: #0a4891;
	font-weight: bold;
}
.announcement-title i {
	margin-right: 16px;
	margin-top: 5px;
	font-size: 20px;
}
/* 功能方块部分 */
        
.feature {
	width: 100%;
	padding: 90px 0;
	background: #e9e9e9
}
.feature-section {
	width: 1200px;
	margin: 30px auto;
}
.feature-list {
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin-top: 20px;
}
.feature-item a {
	width: 220px;
	height: 220px;
	background: url(../images/qbg.jpg) center center no-repeat;
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: background 0.3s, transform 0.3s;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.feature-item a:hover {
	background: url(../images/qbg1.jpg) center center no-repeat;
}
.feature-icon {
	font-size: 48px;
	margin-bottom: 25px;
	margin-top: 12px;
}
.feature-title {
	font-size: 18px;
}
/* 品牌活动部分 */
.brand {
	background: url(../images/hdbg.jpg) center top no-repeat;
	padding: 36px 0 117px
}
.brand-section {
	width: 1200px;
	margin: 0px auto;
	padding: 0px;
}
.carousel-container {
	position: relative;
	margin-top: 20px;
}
.brand-carousel {
	display: flex;
	overflow: hidden;
	gap: 20px;
	padding: 10px 0;
}
.brand-item {
	flex: 0 0 calc(25% - 15px);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s;
}
.brand-item:hover {
	transform: scale(1.03);
}
.brand-item img {
	width: 100%;
	height: 450px;
	object-fit: cover;
}
.carousel-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
}
.carousel-control.prev {
	left: -20px;
}
.carousel-control.next {
	right: -20px;
}
.container {
	width: 1200px;
	margin: 0 auto;
}
/*活动滚动*/
.slider-container {
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
	position: relative;
}
.slider {
	width: 100%;
	height: 450px;
	overflow: hidden;
	position: relative;
}
.slider-track {
	display: flex;
	height: 100%;
	transition: transform 0.5s ease;
}
.slide {
	flex: 0 0 calc(25% - 11.25px);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}
.slide:last-child {
	margin-right: 0;
}
.slide-content {
	width: 281px;
	height: 450px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 500;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
	position: relative;
}
.slide-content:hover {
	transform: translateY(-5px);
}
.slide-content img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slide-number {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 14px;
	font-weight: bold;
}
.control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	font-size: 24px;
	color: #3498db;
}
.control:hover {
	color: white;
}
.control:hover img {
	opacity: 0.5;
}
.control.prev {
	left: 0;
}
.control.next {
	right: 0;
}
.indicator {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	gap: 8px;
}
.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #bdc3c7;
	cursor: pointer;
	transition: background 0.3s ease;
}
.dot.active {
	background: #3498db;
}
.instructions {
	max-width: 1200px;
	margin: 30px auto 0;
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.instructions h2 {
	color: #2c3e50;
	margin-bottom: 15px;
}
.instructions p {
	margin-bottom: 10px;
	color: #34495e;
	line-height: 1.5;
}
/* 面包屑导航 */
.breadcrumb {
	background-color: #f0f1f5;
	height: 60px;
	line-height: 60px;
}
.breadcrumb-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.current-location {
	font-size: 16px;
	color: #000;
	font-weight: bold;
}
.breadcrumb-nav {
	color: #000100;
	font-size: 14px;
}
.breadcrumb-nav a {
	color: #000100;
	text-decoration: none;
	margin-right: 5px;
	margin-left: 4px;
}
.breadcrumb-nav a:hover {
	color: #333;
	text-decoration: underline;
}
/* 主要内容区域 */
.main-content {
	display: flex;
	margin-top: 0px;
	margin-bottom: 30px;
}
/* 左侧导航 */
.left-nav {
	width: 190px;
	margin-right: 20px;
	flex-shrink: 0;
}
.left-nav-title {
	background-color: #0a4891;
}
.left-nav-title h2 {
	color: #fff;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	border-radius: 0px;
	padding-top: 39px;
	padding-bottom: 27px;
	margin: 0 15px;
	border-bottom: 1px #073364 solid;
}
.left-nav-menu {
	background-color: #0a4891;
	padding: 28px 0 27px;
	border-radius: 0px;
}
.left-nav-menu ul {
	list-style: none;
}
.left-nav-menu li {
	padding: 7px 20px 8px;
	;
	margin: 5px 10px;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s;
	border-radius: 35px;
	text-align: center
}
.left-nav-menu li:hover {
	background-color: #0067e0;
}
.left-nav-menu li.active {
	background-color: #0067e0;
	color: #fff;
	font-weight: bold;
}
.left-nav-menu li a {
	color: #fff;
	text-decoration: none
}
.jn {
	padding-bottom: 100px
}
.topic-image {
	margin-top: 0px;
	width: 100%;
}
/* 右侧内容 */
.right-content {
	flex-grow: 1;
	background-color: #fff;
	padding: 20px 0 20px 20px;
}
.article-list {
	list-style: none;
}
.article-list li {
	display: flex;
	justify-content: space-between;
	padding: 7px 15px 6px 20px;
	;
	background: url(../images/dot.png) left center no-repeat;
	margin: 7px 0
}
.article-list li a {
	color: #333;
	text-decoration: none;
}
.article-list li:hover {
	background: #e9a746;
	color: #fff;
	border-radius: 4px;
	text-decoration: none;
}
.article-list li:hover a {
	color: #fff;
	border-radius: 4px;
	text-decoration: none;
}
.article-list li a:hover {
	color: #fff;
	text-decoration: none;
}
.article-title {
	display: flex;
	align-items: center;
}
.article-date {
	color: #999;
	font-size: 14px;
}
.article-list li:hover .article-date {
	color: #fff;
}
.ab-content {
	font-size: 16px;
	line-height: 35px;
	color: #333
}
.ab-content p {
	font-size: 16px;
	line-height: 35px;
	color: #333
}
.ab-content img {
	max-width: 100%;
}
/* 分页 */
.pagination-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 880px;
	background: white;
	padding: 18px 25px;
	margin-top: 50px;
}
.total-items {
	color: #333;
	font-size: 16px;
}
.pagination {
	display: flex;
	align-items: center;
}
.page-nav, .page-item {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 32px;
	min-width: 32px;
	margin: 0 10px;
	padding: 0 8px;
	font-size: 16px;
	color: #333;
	border-radius: 4px;
	cursor: pointer;
	
}
.page-nav a, .page-item a{
	color:#333; text-decoration:none
}

.page-nav:hover, .page-item:hover {
	color: #fff;
	background: #e9a746;
}
.page-nav a:hover, .page-item a:hover {
	color: #fff;
	background: #e9a746;
}
.page-nav:hover  a, .page-item:hover  a {
	color: #fff;
	background: #e9a746;
}

.page-item.active {
	color: white;
	background: #e9a746;
	font-weight: 500; text-decoration:none
}
.page-item.active:hover {
	color: #fff;
	background: #e9a746;
}
.ellipsis {
	padding: 0 6px;
	color: #c0c4cc;
}
.page-jump {
	display: flex;
	align-items: center;
	margin-left: 15px;
}
.page-jump-text {
	font-size: 13px;
	color: #606266;
	margin-right: 8px;
}
.jump-select {
	width: 80px;
	height: 32px;
	padding: 0 10px;
	border: 1px solid #dcdfe6;
	border-radius: 4px;
	color: #606266;
	font-size: 13px;
	outline: none;
	cursor: pointer;
	transition: border 0.2s;
}
.jump-select:focus {
	border-color: #409EFF;
}
/*详情页*/
.n-article-container {
	width: 1200px;
	margin: 0 auto;
	padding: 50px 40px;
	overflow: hidden;
}
.n-article-header {
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 25px;
	margin-bottom: 30px;
}
.n-article-title {
	font-size: 28px;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.3;
	text-align: center
}
.n-article-meta {
	align-items: center;
	color: #7f8c8d;
	font-size: 14px;
}
.n-meta-item {
	align-items: center;
	margin-right: 20px;
	text-align: center
}
.n-meta-item i {
	margin-right: 8px;
	color: #7f8c8d;
}
.n-article-content {
	font-size: 16px;
	color: #2c3e50;
	line-height: 1.8;
}
.n-article-content p {
	margin-bottom: 20px;
	text-align: justify;
}
.n-article-image {
	width: 100%;
	margin: 25px 0;
	border-radius: 8px;
	overflow: hidden;
}
.n-article-image img {
	width: 100%;
	display: block;
}
.image-caption {
	text-align: center;
	font-style: italic;
	color: #7f8c8d;
	margin-top: 8px;
	font-size: 14px;
}
.article-footer {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #eaeaea;
	display: flex;
	justify-content: space-between;
	color: #7f8c8d;
	font-size: 14px;
}
.tag {
	display: inline-block;
	background-color: #e1f0fa;
	color: #3498db;
	padding: 4px 10px;
	border-radius: 4px;
	margin-right: 8px;
	font-size: 13px;
}
/*联系我们*/
.lx-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px 20px 20px;
}
.lx-header {
	text-align: center;
	margin-bottom: 40px;
	padding: 20px 0;
}
.lx-header h1 {
	color: #2c3e50;
	font-size: 2.5rem;
	margin-bottom: 10px;
}
.lx-header p {
	color: #7f8c8d;
	font-size: 1.2rem;
}
.lx-contact-banner {
	display: flex;
	flex-wrap: wrap;
	padding: 0px;
	color: #333;
	margin-bottom: 40px;
}
.lx-contact-title {
	flex: 1;
	min-width: 300px;
}
.lx-contact-title h2 {
	font-size: 28px;
	margin-bottom: 0px;
	font-weight: 400
}
.lx-contact-title p {
	font-size: 1.2rem;
	opacity: 0.9;
	font-weight: bold
}
.lx-contact-icons {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex: 0.2;
	width: 100px;
}
.lx-icon-item {
	text-align: center;
	padding: 15px;
}
.lx-icon-item i {
	font-size: 2.5rem;
	margin-bottom: 10px;
	color: #ffbe76;
}
.lx-icon-item p {
	font-size: 1rem;
}
.lx-contact-info {
	background: white;
	border-radius: 0px;
	padding: 0px;
	margin-bottom: 40px;
	border-top: 1px #f0f0f0 solid;
}
.lx-contact-info h3 {
	color: #4a69bd;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f1f1f1;
	font-size: 1.5rem;
}
.lx-contact-list {
	list-style: none;
}
.lx-contact-list li {
	padding: 15px 10px;
	border-bottom: 1px solid #f1f1f1;
	display: flex;
	align-items: center;
	font-size: 1.1rem;
}
.lx-contact-list li:last-child {
	border-bottom: none;
}
.lx-contact-list i {
	width: 30px;
	color: #6a89cc;
	font-size: 1.3rem;
}
.lx-map-container {
	height: 450px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
}
.lx-map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}
.pp-container {
	width: 1200px;
	overflow: hidden;
	padding: 40px 0 0 0px;
	margin: 0 auto
}
.pp-header {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
}
.pp-icon {
	width: 8px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 24px;
	margin-top: 5px;
	margin-right: 20px;
}
.pp-title {
	font-size: 22px;
	font-weight: 700;
	color: #0a4891;
}
.pp-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	justify-content: flex-start;
}
.pp-gallery-item {
	width: 281px;
	height: 450px;
	list-style: none;
	border-radius: 0px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}
.pp-gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.pp-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.pp-image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	padding: 20px;
	color: white;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}
.pp-gallery-item:hover .pp-image-overlay {
	transform: translateY(0);
}
.pp-image-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}
.pp-image-desc {
	font-size: 14px;
	opacity: 0.9;
}
.pp-pagination {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	gap: 10px;
}
.pp-page-btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #f1f2f6;
	color: #2d3436;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}
.pp-page-btn:hover {
	background: #6c5ce7;
	color: white;
}
.pp-page-btn.active {
	background: #6c5ce7;
	color: white;
}
/* 底部信息 */
.footer {
	background: #004d99;
	color: #fff;
	padding: 40px 0 0px;
}
.footer-container {
	width: 1200px;
	margin: 0 auto;
}
.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-logo {
	display: flex;
	align-items: center;
}
.footer-logo .logo {
	background-color: #fff;
	color: #004d99;
}
.friend-links {
	display: flex;
	gap: 14px;
	width: 778px
}
.friend-link-item {
	position: relative;
	width: 250px;
	background: #235b9c;
	text-align: center;
	height: 40px;
	line-height: 40px;
}
.friend-link-title {
	cursor: pointer;
	align-items: center;
	text-align: center;
}
.friend-link-title i {
	margin-left: 5px;
}
.friend-link-dropdown {
	position: absolute;
	top: 40px;
	left: 0;
	background: #235b9c;
	min-width: 250px;
	display: none;
	z-index: 10;
	border-radius: 0px;
	overflow: hidden;
}
.friend-link-dropdown a {
	display: block;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}
.friend-link-dropdown a:hover {
	background: #f0f0f0;
	color: #004d99;
}
.friend-link-item:hover .friend-link-dropdown {
	display: block;
}
.footer-middle {
	display: flex;
	justify-content: space-between;
	padding: 30px 0;
}
.contact-info {
	flex: 2;
}
.contact-title {
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 400;
}
.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.contact-item {
	margin-bottom: 15px;
}
.contact-item p {
	font-size: 14px;
	color: #a5b3cd
}
.contact-label {
	font-size: 14px;
	opacity: 0.8;
	margin-bottom: 5px;
}
.contact-detail {
	font-size: 16px;
}
.qr-code {
	text-align: center;
	background: #fff;
	width: 120px;
	margin-left: 200px;
	height: 150px;
}
.qr-code img {
	width: 120px;
	padding: 10px 10px 0px 10px;
}
.qr-code p {
	margin-top: 0px;
	line-height: 20px;
	color: #333
}
.footer-bottom {
	background: #333;
	display: flex;
	justify-content: space-between;
	padding-top: 0px;
	font-size: 14px;
	opacity: 0.8;
	height: 100px;
	line-height: 100px;
}
.record {
	float: left;
	color: #CCC
}
.record a {
	color: #CCC
}
.copyright {
	float: right;
	color: #CCC
}
.sq-container {
	width: 100%;
	max-width: 1200px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	margin: 35px auto
}
.header {
	background: #0a4891;
	color: white;
	padding: 15px 30px;
	text-align: center;
}
.header h1 {
	font-size: 20px;
	margin-bottom: 5px;
	letter-spacing: 2px;
}
.header p {
	opacity: 0.8;
}
.form-body {
	padding: 30px 100px;
}
.form-group {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
	align-items: center;
}
.form-group label {
	width: 150px;
	font-weight: 600;
	color: #2c3e50;
}
.form-group .input-container {
	flex: 1;
	min-width: 250px;
}
.input-container input {
	width: 100%;
	padding: 14px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 16px;
	transition: all 0.3s;
}
.input-container input:focus {
	outline: none;
	border-color: #3498db;
	box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}
.captcha-container {
	display: flex;
	gap: 10px;
	align-items: center;
}
.captcha-code {
	background: none;
	padding: 0px;
	border-radius: 6px;
	font-weight: bold;
	letter-spacing: 2px;
	font-size: 18px;
	color: #2c3e50;
	user-select: none;
	border: #f1f5f9 1px solid
}
.refresh-btn {
	background: #e74c3c;
	color: white;
	border: none;
	padding: 10px 12px;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s;
}
.refresh-btn:hover {
	background: #c0392b;
}
.submit-btn {
	background: #2c3e50;
	color: white;
	border: none;
	padding: 15px 25px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	display: block;
	margin: 30px auto 10px;
	width: 200px;
}
.submit-btn:hover {
	background: #3498db;
}
.required::after {
	content: " *";
	color: #e74c3c;
}
.error-message {
	color: #e74c3c;
	font-size: 14px;
	margin-top: 5px;
	display: none;
}
