* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Microsoft YaHei', sans-serif;
}

body {
	background: #f5f5f5;
	color: #333;
	line-height: 1.6;
}

/* 顶部标题区域 */
.header {
	/*background: linear-gradient(135deg, #1658A0, #9b0c1c);
	color: white;
	text-align: center;
	padding: 20px 0;
	position: relative;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);*/
}

.header>img{
	width: 100%;
    height: 100%;
}

.header h1 {
	font-size: 3em;
	letter-spacing: 8px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header .subtitle {
	font-size: 1.2em;
	margin-top: 10px;
	font-weight: bold;
	letter-spacing: 3px;
}

.header .date {
	font-size: 1.1em;
	margin-top: 10px;
	font-weight: 500;
}

/* 导航选项卡区域 */
.tabs-container {
	background: #fff;
	padding: 15px;
}

.tab-row {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.tab-btn {
	flex: 1;
	padding: 0 ;
	text-align: center;
}

.tab-btn:hover {
}

.tab-btn.active {
}

.tab-btn i {
	margin-right: 8px;
}

.tab-nav-pc .tab-btn{
	display: none;
}
.tab-nav-mob .tab-btn {
	display: block;
}


/* 内容区域 */
.content-container {
	background: white;
	border-radius: 10px;
	margin: 20px;
	padding: 25px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	min-height: 500px;
	position: relative;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
	animation: fadeIn 0.6s ease;
}

/* 分组标签样式 */
.group-tabs, .car-tabs {
	display: flex;
	margin-bottom: 20px;
	border-bottom: 2px solid #eee;
}

.group-tab, .car-tab {
	padding: 10px 25px;
	cursor: pointer;
	font-weight: bold;
	border-bottom: 3px solid transparent;
	transition: all 0.3s ease;
}

.group-tab.active, .car-tab.active {
	border-bottom: 3px solid #1658A0;
	color: #1658A0;
}

.group-tab:hover, .car-tab:hover {
	background: #f8f8f8;
}

/* 分组内容样式 */
.group-content, .car-content {
	display: none;
	background: #fafafa;
	border-radius: 8px;
}

.group-content.active, .car-content.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

.schedule-item {
	padding: 12px;
	margin-bottom: 15px;
	background: white;
	border-radius: 6px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	border-left: 3px solid #1658A0;
}

.schedule-time {
	font-weight: bold;
	color: #1658A0;
	margin-bottom: 5px;
}

.schedule-detail {
	padding-left: 10px;
	border-left: 2px solid #eee;
}

/* 人员信息表格样式 */
.members-section {
	margin-bottom: 30px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.section-title {
	background: linear-gradient(135deg, #1658A0, #1658A0);
	color: white;
	padding: 12px 20px;
	font-size: 1.3em;
	font-weight: bold;
	letter-spacing: 1px;
}

.members-table {
	width: 100%;
	border-collapse: collapse;
}

.members-table th {
	background-color: #f8f0f0;
	color: #1658A0;
	padding: 12px 15px;
	text-align: left;
	border-bottom: 2px solid #1658A0;
	font-weight: bold;
}

.members-table td {
	padding: 10px 15px;
	border-bottom: 1px solid #e8e8e8;
}

.members-table tr:nth-child(even) {
	background-color: #eef4fc;
}

.members-table tr:hover {
	background-color: #fff2f2;
}

.group-badge {
	background-color: #1658A0;
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 0.85em;
	font-weight: bold;
}

.members-container {
	max-height: 500px;
	overflow-y: auto;
	padding-right: 5px;
}

/* 乘车安排页面样式 */
.transport-section {
	margin: 25px 0;
	padding: 20px;
	border-radius: 8px;
	background-color: #eef4fc;
	border-left: 4px solid #1658A0;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.transport-heading {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	color: #1658A0;
	border-bottom: 2px solid #6da0d5;
	padding-bottom: 10px;
}

.transport-heading i {
	margin-right: 10px;
	font-size: 1.5em;
}

.bus-card-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.bus-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #6da0d5;
}

.bus-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.bus-header {
	background: linear-gradient(to right, #1658A0, #b71c1c);
	color: white;
	padding: 15px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bus-group {
	font-size: 1.1em;
}

.bus-number {
	display: inline-block;
	background: white;
	color: #1658A0;
	border-radius: 20px;
	padding: 5px 15px;
	font-weight: bold;
	font-size: 1.1em;
}

.bus-body {
	padding: 20px;
}

.bus-info {
	margin-bottom: 15px;
	line-height: 1.8;
}

.bus-info-title {
	font-weight: bold;
	color: #1658A0;
	margin-bottom: 5px;
	font-size: 1.1em;
	display: flex;
	align-items: center;
}

.bus-info-title i {
	margin-right: 10px;
	font-size: 1.1em;
}

.bus-members {
	margin-top: 15px;
	max-height: 200px;
	overflow-y: auto;
}

.bus-member-item {
	padding: 8px 10px;
	border-bottom: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
}

.bus-member-item:last-child {
	border-bottom: none;
}

.bus-member-item i {
	margin-right: 10px;
	color: #1658A0;
}

.bus-driver {
	background-color: #ffecb3;
	padding: 10px;
	border-radius: 4px;
	margin-top: 15px;
	display: flex;
	align-items: center;
	font-weight: 500;
	color: #333;
}

.bus-driver i {
	margin-right: 10px;
	color: #1658A0;
}


.car-schedule {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px 15px;
    font-size: 0.8rem;
}
.car-schedule h2 {
    background-color: #1658A0;
    color: white;
    padding: 10px;
    border-radius: 4px;
    margin: -20px -20px 20px -20px;
}
.car-schedule table {
    width: 100%;
    border-collapse: collapse;
}
.car-schedule th, .car-schedule td {
    border: 1px solid #ddd;
    padding: 5px;
    text-align: center;
}
.car-schedule th {
    background-color: #f2f2f2;
}
.car-schedule .driver {
    font-weight: bold;
}
.car-schedule .contact {
    color: #d32f2f;
}


/* 注意事项样式 */
.transport-notes {
	background: #fff8e1;
	padding: 20px;
	border-radius: 8px;
	margin-top: 30px;
	border: 1px solid #ffd54f;
}

.transport-notes h3 {
	color: #1658A0;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.transport-notes ul {
	padding-left: 30px;
}

.transport-notes li {
	margin-bottom: 10px;
	line-height: 1.6;
	position: relative;
	padding-left: 25px;
}

.transport-notes li:before {
	content: "•";
	color: #1658A0;
	font-weight: bold;
	font-size: 1.5em;
	position: absolute;
	left: 0;
	top: -5px;
}
		
/* 辅助样式 */
.route {
	padding: 15px;
	border-radius: 6px;
	margin-top: 15px;
	font-weight: bold;
}

.route-title {
	margin-bottom: 10px;
}

.route-path {
	font-size: 1.1em;
}

/* 会议时间特殊样式 */
.important-time {
	background: #fff8e1;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	margin: 25px 0;
	border: 2px solid #ffd54f;
	animation: pulse 2s infinite;
}
/* 用餐安排页面样式 */
.dining-section {
	margin: 25px 0;
	border-radius: 8px;
	background-color: #eef4fc;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	font-size: 1rem;
	font-weight: bold;
}

.dining-heading {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	color: #1658A0;
	border-bottom: 2px solid #6da0d5;
	padding-bottom: 10px;
}

.dining-heading i {
	margin-right: 10px;
	font-size: 1.5em;
}

.meal-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 25px;
	margin: 30px 0;
}

.meal-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
	border-top: 3px solid #1658A0;
}

.meal-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.meal-header {
	background: linear-gradient(90deg, #eef5fd, #6da0d5);
	color: #1658A0;
	padding: 15px;
	font-size: 1.4em;
	font-weight: bold;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.meal-body {
	padding: 25px 20px 20px;
}

.meal-time {
	background: #eef4fc;
	padding: 12px;
	border-radius: 8px;
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	color: #1658A0;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.meal-time i {
	margin-right: 10px;
	font-size: 1.2em;
}

.group-location {
	margin-bottom: 20px;
	padding: 0;
	display: flex;
}

.group-badge {
	width: 30px;
	height: 30px;
	background: #1658A0;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	flex-shrink: 0;
	margin-right: 15px;
}

.group-info {
	flex-grow: 1;
	border-bottom: 1px dashed #e0e0e0;
	padding-bottom: 15px;
}

.location {
	font-weight: bold;
	color: #333;
	font-size: 1.1em;
}

.detail {
	color: #666;
	margin-top: 5px;
	font-size: 0.95em;
}

.group-location:last-child .group-info {
	border-bottom: none;
	padding-bottom: 0;
}

.dining-map {
	margin-top: 30px;
	background: #f9f9f9;
	border-radius: 8px;
	padding: 20px;
	border: 2px solid #6da0d5;
	display: flex;
	align-items: center;
}

.map-icon {
	width: 50px;
	height: 50px;
	background: #1658A0;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5em;
	margin-right: 20px;
	flex-shrink: 0;
}

.map-text {
	font-weight: bold;
	font-size: 1em;
}

.map-text span {
	color: #1658A0;
}

.dining-notes {
	background: #fff8e1;
	padding: 20px;
	border-radius: 8px;
	margin-top: 30px;
	border: 1px solid #ffd54f;
	font-size: 1em;
}

.dining-notes h3 {
	color: #1658A0;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.dining-notes h3 i {
	margin-right: 10px;
}

.dining-notes ul {
	padding-left: 30px;
}

.dining-notes li {
	margin-bottom: 10px;
	line-height: 1.6;
	position: relative;
	padding-left: 25px;
}

.dining-notes li:before {
	content: "•";
	color: #1658A0;
	font-weight: bold;
	font-size: 1.5em;
	position: absolute;
	left: 0;
	top: -5px;
}

/* 住宿安排页面样式 */
.accommodation-section {
	margin: 30px 0;
}

.section-header {
	background: linear-gradient(90deg, #1658A0, #1658A0);
	color: white;
	padding: 12px 20px;
	border-radius: 6px;
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.section-header i {
	margin-right: 10px;
	font-size: 1.2em;
}

.hotel-info {
	background: #eef4fc;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 30px;
	border-left: 4px solid #1658A0;
}

.hotel-name {
	font-size: 1.8em;
	color: #1658A0;
	margin-bottom: 15px;
	font-weight: bold;
}

.hotel-detail {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
}

.hotel-card {
	background: white;
	padding: 15px;
	border-radius: 8px;
	flex: 1;
	min-width: 280px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.hotel-card h4 {
	color: #1658A0;
	margin-bottom: 10px;
	border-bottom: 1px solid #6da0d5;
	padding-bottom: 8px;
	font-size: 1.2em;
	display: flex;
	align-items: center;
}

.hotel-card h4 i {
	margin-right: 8px;
}

.hotel-card p {
	margin: 8px 0;
	line-height: 1.5;
}

.room-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-bottom: 30px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.room-table th {
	background: #1658A0;
	color: white;
	padding: 15px;
	text-align: left;
	font-weight: normal;
}

.room-table th:first-child {
	width: 25%;
}

.room-table td {
	padding: 12px 15px;
	border-bottom: 1px solid #f0f0f0;
}

.room-table tbody tr {
	background: #fff;
	transition: background-color 0.3s;
}

.room-table tbody tr:nth-child(even) {
	background: #fef8f8;
}

.room-table tbody tr:hover {
	background: #fff2f2;
}

.room-type {
	font-weight: bold;
	color: #1658A0;
}

.room-number {
	background: #eef4fc;
	padding: 4px 8px;
	border-radius: 4px;
	display: inline-block;
	font-weight: bold;
}

.building-note {
	background: #ffecb3;
	padding: 12px;
	border-radius: 6px;
	margin: 20px 0;
	font-size: 0.9em;
}

.accommodation-notes {
	background: #fff8e1;
	padding: 20px;
	border-radius: 8px;
	margin-top: 30px;
	border: 1px solid #ffd54f;
}

.accommodation-notes h3 {
	color: #1658A0;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.accommodation-notes h3 i {
	margin-right: 10px;
}

.accommodation-notes ul {
	padding-left: 30px;
}

.accommodation-notes li {
	margin-bottom: 10px;
	line-height: 1.6;
	position: relative;
	padding-left: 25px;
}

.accommodation-notes li:before {
	content: "•";
	color: #1658A0;
	font-weight: bold;
	font-size: 1.5em;
	position: absolute;
	left: 0;
	top: -5px;
}


/* 市县概况页面样式 */
.overview-section {
	margin: 25px 0;
}

.section-header {
	background: linear-gradient(90deg, #1658A0, #1658A0);
	color: white;
	padding: 12px 20px;
	border-radius: 6px;
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.section-header i {
	margin-right: 10px;
	font-size: 1.2em;
}

.slider-container {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.slider {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.county-card {
	min-width: 100%;
	padding: 30px;
	background: linear-gradient(to bottom, #fff, #eef4fc);
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	scroll-snap-align: start;
}

.county-header {
	text-align: center;
	margin-bottom: 25px;
	position: relative;
}

.county-header:after {
	content: "";
	position: absolute;
	width: 100px;
	height: 4px;
	background: #1658A0;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

.county-title {
	font-size: 2.5em;
	color: #c50e1极;
	margin-bottom: 10px;
}

.county-location {
	font-size: 1.1em;
	color: #777;
	font-style: italic;
}

.county-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 20px;
}

.county-info {
	flex: 1;
	min-width: 300px;
}

.info-item {
	display: flex;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #6da0d5;
}

.info-icon {
	width: 40px;
	height: 40px;
	background: #eef4fc;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1658A0;
	font-size: 1.2em;
	margin-right: 15px;
	flex-shrink: 0;
}

.info-text {
	flex-grow: 1;
}

.info-title {
	font-weight: bold;
	font-size: 1.1em;
	color: #333;
	margin-bottom: 5px;
}

.info-detail {
	color: #555;
	line-height: 1.5;
}

.county-description {
	background: #dfebfa;
	padding: 20px;
	border-radius: 8px;
	border-left: 4px solid #1658A0;
	line-height: 1.8;
	color: #444;
	font-size: 1.05em;
	margin-top: 20px;
}

.county-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin: 20px 0;
}

.feature-card {
	background: #fff;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.feature-title {
	color: #1658A0;
	font-size: 1.4em;
	margin-bottom: 10px;
	font-weight: bold;
	display: flex;
	align-items: center;
}

.feature-title i {
	margin-right: 10px;
}

.feature-content {
	color: #555;
}

.feature-card:nth-child(1) .feature-title {
	color: #6da0d5;
}

.feature-card:nth-child(2) .feature-title {
	color: #27ae60;
}

.feature-card:nth-child(3) .feature-title {
	color: #2980b9;
}

.feature-card:nth-child(4) .feature-title {
	color: #d35400;
}

.feature-stat {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
	font-size: 0.95em;
	color: #7f8c8d;
}

.stats-container {
	margin-top: 30px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
}

.stat-card {
	background: #f9f9f9;
	border-radius: 8px;
	padding: 15px;
	text-align: center;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
	border-left: 3px solid #1658A0;
}

.stat-value {
	font-size: 1.8em;
	font-weight: bold;
	color: #1658A0;
	margin-bottom: 5px;
}

.stat-label {
	color: #7f8c8d;
	font-size: 0.9em;
}

.honors {
	background: #ffedee;
	padding: 20px;
	border-radius: 8px;
	margin: 30px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
}

.honor-item {
	background: #6da0d5;
	color: #1658A0;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 0.95em;
	font-weight: bold;
}

.slider-dots {
	display: flex;
	justify-content: center;
	margin: 20px 0;
	gap: 10px;
}

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: all 0.3s ease;
}

.slider-dot.active {
	background: #1658A0;
	transform: scale(1.2);
}

.swipe-hint {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	color: #1658A0;
	font-size: 1.2em;
	animation: hintPulse 2s infinite;
}

.swipe-hint i {
	margin: 0 10px;
	font-size: 1.5em;
}

/* 考察点页面样式 */
.spots-section {
	margin: 25px 0;
}

.section-header {
	background: linear-gradient(90deg, #1658A0, #1658A0);
	color: white;
	padding: 12px 20px;
	border-radius: 6px;
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.section-header i {
	margin-right: 10px;
	font-size: 1.2em;
}

.slider-container {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.slider {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.spot-card {
	min-width: 100%;
	padding: 30px;
	background: linear-gradient(to bottom, #fff, #eef4fc);
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

.spot-header {
	text-align: center;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 20px;
}

.spot-header:after {
	content: "";
	position: absolute;
	width: 100px;
	height: 4px;
	background: #1658A0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

.spot-title {
	font-size: 2.2em;
	color: #1658A0;
	margin-bottom: 10px;
}

.spot-subtitle {
	font-size: 1.3em;
	color: #555;
	font-style: italic;
	margin-bottom: 10px;
}

.spot-date {
	font-size: 1.1em;
	color: #777;
	margin-bottom: 5px;
}

.spot-content {
	line-height: 1.8;
	color: #444;
	font-size: 1.05em;
}

.spot-content p {
	margin-bottom: 20px;
}

.spot-highlight {
	background: #eef4fc;
	padding: 15px;
	border-left: 4px solid #1658A0;
	margin: 20px 0;
	border-radius: 0 8px 8px 0;
}

.spot-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.feature-box {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid #6da0d5;
}

.feature-title {
	color: #1658A0;
	font-size: 1.4em;
	margin-bottom: 15px;
	font-weight: bold;
	display: flex;
	align-items: center;
	padding-bottom: 10px;
	border-bottom: 2px dashed #6da0d5;
}

.feature-title i {
	margin-right: 10px;
}

.feature-content {
	color: #555;
}

.stats-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

/* 温馨服务页面样式 */
.service-section {
	margin: 25px 0;
}

.section-title {
	text-align: center;
	font-size: 1.8em;
	color: #1658A0;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 15px;
}

.section-title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: #1658A0;
	border-radius: 3px;
}

.services-container {
	max-width: 900px;
	margin: 0 auto;
}

.service-card {
	background: linear-gradient(to right, #fff, #eef4fc);
	border-radius: 8px;
	padding: 25px;
	margin-bottom: 25px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	border-left: 4px solid #1658A0;
}

.card-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px dashed #6da0d5;
}

.card-icon {
	width: 60px;
	height: 60px;
	background: #eef4fc;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8em;
	color: #1658A0;
	margin-right: 20px;
	flex-shrink: 0;
}

.card-title {
	font-size: 1.6em;
	color: #1658A0;
	font-weight: bold;
}

.service-content {
	padding: 10px 15px;
}

.service-content p {
	margin-bottom: 15px;
	line-height: 1.8;
	color: #444;
}

.notice-list {
	list-style: none;
	margin-bottom: 15px;
}

.notice-list li {
	margin-bottom: 10px;
	padding-left: 25px;
	position: relative;
}

.notice-list li:before {
	content: "•";
	color: #1658A0;
	font-size: 1.4em;
	position: absolute;
	left: 0;
	top: -5px;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.contact-item {
	background: #dfebfa;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.contact-name {
	font-weight: bold;
	font-size: 1.1em;
	color: #1658A0;
	margin-bottom: 5px;
}

.contact-phone {
	font-size: 1.1em;
	color: #333;
	font-weight: 500;
}

.wifi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 15px;
}

.wifi-item {
	background: #fff;
	border: 1px solid #6da0d5;
	border-radius: 8px;
	padding: 15px;
}

.wifi-location {
	font-weight: bold;
	color: #555;
	margin-bottom: 8px;
	padding-left: 25px;
	position: relative;
}

.wifi-location i {
	position: absolute;
	left: 0;
	top: 0;
	color: #1658A0;
	font-size: 1.2em;
}

.wifi-info {
	font-size: 0.95em;
}

.staff-weather-container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 30px;
}

.staff-container, .weather-container {
	flex: 1;
	min-width: 300px;
	background: #fff;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.staff-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}

.staff-item {
	background: #dfebfa;
	padding: 15px;
	border-radius: 8px;
	text-align: center;
	transition: all 0.3s ease;
}

.staff-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.staff-name {
	font-size: 1.1em;
	font-weight: bold;
	color: #1658A0;
	margin-bottom: 5px;
}

.staff-phone {
	font-size: 1em;
	color: #555;
}

.weather-container {
	text-align: center;
}

.weather-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 20px;
}

.weather-day {
	background: #fff;
	border-radius: 8px;
	padding: 15px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.weather-date {
	font-size: 1.1em;
	font-weight: bold;
	margin-bottom: 10px;
}

.weather-icon {
	font-size: 2.5em;
	color: #4dabf7;
	margin-bottom: 10px;
}

.weather-temp {
	font-size: 1.4em;
	font-weight: bold;
	color: #333;
}

.weather-desc {
	color: #666;
	font-size: 0.95em;
	margin-top: 5px;
}


/* 动画效果 */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(255, 213, 79, 0.4); }
	70% { box-shadow: 0 0 0 10px rgba(255, 213, 79, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 213, 79, 0); }
}

/* 响应式设计 */
@media (min-width: 800px) {
	.tab-nav-pc .tab-btn{
		display: block;
	}
	.tab-nav-mob .tab-btn {
		display: none;
	}
}

@media (max-width: 768px) {
	.tab-row {
		gap: 10px;
	}
	
	.tab-btn {
	}
	
	.header h2 {
		font-size: 1.5em;
	}
	
	.header .subtitle {
		font-size: 1.4em;
	}
	
	.tab-nav-pc .tab-btn{
		display: none;
	}
	.tab-nav-mob .tab-btn {
		display: block;
	}
	
	.gutiang-icon {
		font-size: 70px;
		right: 10px;
		top: 10px;
	}
	
	.content-container {
		margin: 10px;
		padding: 15px;
	}
	
	.members-table {
		font-size: 0.9em;
	}
	.members-table th{
		font-weight: bold;
		font-size: 14px;
	}
	.members-table td {
		font-size: 14px;
	}
	.section-title {
		font-size: 1.1em;
	}	
	
	.county-content {
		flex-direction: column;
	}
	
	.county-title {
		font-size: 2em;
	}
	
	.county-features {
		grid-template-columns: 1fr;
	}
	
	.stats-grid {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	}
	.spot-features {
		grid-template-columns: 1fr;
	}
	
	.spot-title {
		font-size: 1.2em;
	}
	.gutiang-icon {
		font-size: 70px;
		right: 10px;
		top: 10px;
	}
	
	.content-container {
		margin: 10px;
		padding: 15px;
	}
	
	.card-header {
		flex-direction: column;
		text-align: center;
	}
	
	.card-icon {
		margin: 0 auto 15px;
	}
	
	.staff-weather-container {
		flex-direction: column;
	}
	
	.weather-grid {
		grid-template-columns: 1fr;
	}	
	
}
@media (max-width: 480px) {

	.staff-list {
		grid-template-columns: 1fr;
	}
}
