/* 全局样式 */
:root {
 --primary-color: #4A6741;
 --secondary-color: #8BA888;
 --text-color: #333;
 --light-bg: #F5F5F5;
 --spacing-unit: 20px;
}
.container {
	max-width: 2560px;
}
.brand {
	display: none;
}
.tprices {
    border: 1px solid #333333;
    padding: 1%;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-top: -1px !important;
}

.theme-desc a {
	background-color: #5b7553;
	padding: 1% 2%;
	color: #ffffff;
	margin: 1% 0%;
	display: block;
	width: fit-content;
	float: left;
	border-right: 3px solid;
}
.theme-desc {
	color: #666;
	font-size: 1.1em;
	margin-bottom: 18px;
	display: block;
	float: left;
	width: 100%;
}
body {
	font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	margin: 0;
	padding: 0;
}
/* 主视觉区域 */
.mainimg {
	width: 100%;
	position: relative;
	overflow: hidden;
	perspective: 1px;
	transform-style: preserve-3d;
}
.mainimg img {
	width: 100%;
}
.more {
    background-color: #78b116;
    color: #ffffff;
    width: 46%;
    display: block;
    text-align: center;
    padding: 1%;
    border-radius: 15px;
    margin: 3% auto;
    transition: 1s all;
    float: left;
    margin: 2% 1%;
}
.chackbtn{
    background-color: #008B0C;
}
.more:hover {
	background-color: #4E7904;
	color: #ffffff;
}
.mobile-img {
	display: none;
}
/* 背景图片 */
.mbg {
	z-index: 10;
	height: max-content;
	top: 10%;
	width: 100%;
	visibility: hidden;
	transform: translateZ(-1px) scale(2);
}
/* 主要内容区域 */
.main-content, .activity-theme {
	max-width: 1200px;
	margin: 0 auto;
	padding: var(--spacing-unit);
}
/* 区块标题样式 */
.section-title {
	text-align: center;
	font-size: 2.5em;
	color: var(--primary-color);
	margin: 40px 0;
	position: relative;
}
.gift-content h3 {
	font-size: 26px;
}
.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: var(--primary-color);
	margin: 10px auto;
}
.theme-info td {
	vertical-align: middle !important;
	border: 1px solid #666666;
	vertical-align: middle;
	padding: 1%
}
.theme-info tr:nth-child(1) {
	background-color: #6daca7;
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
}
/* 精选好礼区块 */
.gifts-section {
	margin-bottom: 60px;
}
.tab-container {
	max-width: 1200px;
	margin: 0 auto;
}
.tab-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
.tab-btn {
	padding: 10px 20px;
	background-color: #fff;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1.1em;
	min-width: 120px;
}
.tab-btn:hover {
	background-color: var(--primary-color);
	color: #fff;
}
.tab-btn.active {
	background-color: var(--primary-color);
	color: #fff;
}
.tab-content {
	position: relative;
}
.tab-pane {
	display: none;
	animation: fadeIn 0.5s ease;
}
.tab-pane.active {
	display: block;
}
.gift-item {
	display: flex;
	flex-direction: row;
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
	align-items: center;
}
.gift-item:hover {
	transform: translateY(-5px);
}
.gift-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40%;
	min-width: 180px;
	min-height: 200px;
	height: auto;
	margin: 1%;
	overflow: hidden;
	border-radius: 20px;
}
.gift-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.gift-content {
	flex: 1;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.gift-description {
	font-style: italic;
	color: var(--secondary-color);
	margin: 15px 0;
	font-weight: 800;
	font-size: 20px;
}
.gift-howto ul {
	list-style: none;
	padding: 0;
}
.gift-howto li {
	margin: 10px 0;
	padding-left: 20px;
	position: relative;
}
.gift-howto li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--primary-color);
}
/* 手作DIY区块 */
.workshop-section {
	background-color: var(--light-bg);
	padding: 40px 0;
	margin: 40px 0;
}
.workshop-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}
.workshop-item {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.workshop-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
}
.workshop-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.workshop-content {
	padding: 20px;
}
.workshop-info {
	margin: 15px 0;
	color: var(--secondary-color);
}
.btn-register {
	display: inline-block;
	padding: 10px 25px;
	background-color: var(--primary-color);
	color: white;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}
.btn-register:hover {
	background-color: var(--secondary-color);
}
/* 市集信息区块 */
.market-section {
	margin: 60px 0;
}
.market-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.market-map img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.market-info {
	padding: 20px;
}
.traffic-info ul {
	list-style: none;
	padding: 0;
}
.traffic-info li {
	margin: 10px 0;
	padding-left: 20px;
	position: relative;
}
.traffic-info li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--primary-color);
}
.areainfo h3{
	text-align: center;
}
.shop-info td{width:50%;	
}
.shoplink{
	background-color: #4a6741;
	width: 100%;
	display: block;
	margin: 1% 0%;
	color: #000000;
	text-align: center;
	padding: 1% 0%;
	border-radius: 10px;
}

.shop-info a,.shop-info td{color:#000000!important;}
/* 页脚样式 */
.site-footer {
	background-color: var(--primary-color);
	color: white;
	padding: 40px 0;
	margin-top: 60px;
}
.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	padding: 0 var(--spacing-unit);
}
/* Tab 样式 */
.tab-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 12px;
}
.tab-buttons,.shop-tab-buttons,.traffic-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0px;
    margin-bottom: 2%;
}
.tab-btn,.shop-tab-btn,.traffic-tab-btn {
	padding: 10px 30px;
	font-size: 1.2em;
	border: none;
	background: none;
	color: var(--text-color);
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	min-width: 120px;
	text-align: center;
}
.tab-btn::after,.shop-tab-btn::after,.traffic-tab-btn::after{
	content: '';
	position: absolute;
	bottom: -12px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--primary-color);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}
.tab-btn.active,.shop-tab-btn.active,.traffic-tab-btn.active {
	color: var(--primary-color);
	font-weight: bold;
	background: #ffffff;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-width: 2px;
	border-color: var(--primary-color);
	border: solid;
	border-bottom: 0px;
}
.tab-btn.active::after {
	transform: scaleX(1);
}
.tab-content {
	position: relative;
}
.tab-pane {
	display: none;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.tab-pane.active {
	display: block;
	opacity: 1;
	transform: translateY(0);
}
.areainfo {
	padding: 20px;
}
/* 表格样式 */
.areainfo table {
	width: 50%;
	border-collapse: collapse;
	margin: 20px auto;
	background: #fff;
	border: 5px solid #666666;
	border-radius: 30px;
	overflow: hidden;
}
.areainfo table td {
	padding: 12px 15px;
	border: 1px solid #e0e0e0;
	vertical-align: top;
	text-align: center;
}
.areainfo table td:nth-child(1), .areainfo table td:nth-child(2) {
	background-color: #9dcaa0;
	color: #ffffff;
	font-weight: 600 !important;
	font-size: 16px;
	letter-spacing: 2px;
}
.areainfo table td:nth-child(3) {
	font-size: 16px;
	letter-spacing: 2px;
	color: #0E4D00;
}
.areainfo table tr:first-child td {
	font-weight: bold;
	text-align: center;
}
.traffic-section h4 {
	font-size: 18px;
	line-height: 16px;
	text-align: center;
	background-color: #d3f8e2;
	padding: 1%;
	color: #4a6741;
}
.areainfo table p {
	margin: 0;
	line-height: 1.6;
}
.areainfo p {
	text-align: center;
}
/* 地图容器样式 */
.areainfo iframe {
	border-radius: 8px;
	margin-top: 20px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* 活动主题区域 */
.activity-theme {
	padding: 60px 20px;
	position: relative;
	overflow: visible;
	max-width: 1200px;
	margin: 60px auto 0 auto;
}
.theme-grid {
	display: block;
	grid-template-columns: 1fr 1fr;
	gap: 40px 30px;
	max-width: 1200px;
	margin: 0 auto;
}
.theme-item {
	display: block;
	align-items: center;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	overflow: hidden;
	padding: 32px 24px;
	gap: 32px;
	transition: box-shadow 0.3s;
}
.theme-item:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.theme-content {
	flex: 1;
	width: 48%;
	float: right;
	padding: 1%;
}
.theme-content h3 {
	font-size: 2em;
	color: var(--primary-color);
	font-weight: bold;
	padding: 16px 0px!important;
}
.theme-content p {
	margin: 0px;
}
.theme-desc {
	color: #666;
	font-size: 1.1em;
	margin-bottom: 18px;
}
.theme-info {
	display: block;
	gap: 32px;
	margin-bottom: 18px;
}
.theme-info .info-label {
	color: var(--secondary-color);
	font-weight: bold;
	margin-right: 6px;
}
.theme-info .info-value {
	color: #333;
}
.theme-btn {
	display: inline-block;
	padding: 10px 28px;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	border-radius: 25px;
	background: #fff;
	font-weight: bold;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
	margin-top: 8px;
}
.theme-btn:hover {
	background: var(--primary-color);
	color: #fff;
}
.theme-image {
	height: auto;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	flex-shrink: 0;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48%;
	padding: 1%;
}
.theme-image img,.theme-image2 img {
	width: 100%;
	border-radius: 12px;
}
#trip-lowcarbon div.theme-image, #trip-lowcarbon div.theme-content, #trip-school div.theme-content, #trip-school div.theme-image {
	width: 98%
}
/* 茶鄉小旅行區塊 */
.tea-trip {
	position: relative;
	overflow: visible;
	max-width: 1200px;
	margin: 60px auto 0 auto;
	padding: 40px 0 0 0;
}
.trip-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}
.trip-category {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.trip-category h3 {
	color: var(--primary-color);
	font-size: 2.3em;
	margin-bottom: 18px !important;
	font-weight: bold;
	text-align: center;
	width: 100%;
}
.trip-list {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}
.trip-list li {
	background: #f5f5f5;
	border-radius: 10px;
	margin-bottom: 18px;
	padding: 18px 16px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	transition: box-shadow 0.2s;
}
.trip-list li:last-child {
	margin-bottom: 0;
}
.trip-title {
	color: var(--primary-color);
	font-weight: bold;
	font-size: 2.15em;
	margin-bottom: 15px;
}
.trip-desc {
	color: #666;
	font-size: 1em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
}
/* 茶鄉小旅行分類縮圖 */
.trip-category-thumbs {
	display: block;
	gap: 16px;
	margin-bottom: 40px;
	width: 100%;
}
.trip-category-thumbs img {
	width: 100%;
	height: 100px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	background: #f5f5f5;
}
/* 活動項目圖片與資訊 */
.trip-list li {
	display: flex;
	align-items: flex-start;
	gap: 18px;
}
.trip-list li:nth-child(even) {
	flex-direction: row-reverse;
}
.trip-list li:nth-child(even) .trip-item-info {
	text-align: right;
}
.trip-item-img {
	width: 100px;
	height: 140px;
	border-radius: 10px;
	overflow: hidden;
	background: #f5f5f5;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -45px;
	box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.3);
}
.trip-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}
.trip-item-info {
	flex: 1;
}
.trip-meta {
	margin-top: 8px;
	display: flex;
	gap: 18px;
	font-size: 0.98em;
	color: var(--secondary-color);
}
.trip-date, .trip-time {
	background: #eaf3ea;
	border-radius: 6px;
	padding: 2px 10px;
	color: var(--primary-color);
	font-weight: bold;
}
.tea-trip-title {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.icon03 {
	position: absolute;
	right: 6%;
	top: 16%;
	transform: translate(40%, -52%);
	width: 180px;
	max-width: 30vw;
	z-index: 1;
	pointer-events: none;
}
.icon02 {
	position: absolute;
	left: 0%;
	top: 10%;
	/* transform: translate(40%, -52%); */
	width: 180px;
	max-width: 30vw;
	z-index: 1;
	pointer-events: none;
}
.store li {
    background-color: #eff4e1;
    padding: 1%;
    width: auto;
    float: left;
    margin: 1%;
    list-style: none;
    border-radius: 10px;
    letter-spacing: 2px;
}
.store{
    padding: 0;
    margin: 0 0 9px 0px;
}
@media (max-width: 900px) {
.theme-grid {
	grid-template-columns: 1fr;
}
.theme-item {
	flex-direction: column;
	padding: 24px 12px;
	gap: 18px;
}
.theme-image {
	width: 100%;
	height: 180px;
}
.trip-grid {
	grid-template-columns: 1fr;
	gap: 24px;
}
.trip-category {
	padding: 20px 8px;
}
.trip-category-thumbs {
	justify-content: center;
}
.trip-list li,  .trip-list li:nth-child(even) {
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
}
.trip-list li .trip-item-info {
	text-align: left;
}
.tea-trip-title .icon03 {
	width: 60px;
	transform: translate(20%, -30%);
	right: 0;
	top: 60%;
}
}
/* 响应式设计 */
@media (max-width: 768px) {
.market-container {
	grid-template-columns: 1fr;
}
.section-title {
	font-size: 2em;
}
.main-content {
	padding: 10px;
}
.desktop-img {
	display: none;
}
.mobile-img {
	display: block;
}
	
.theme-tab-buttons {
	flex-wrap: wrap;
	gap: 10px;
}
.theme-tab-btn {
	padding: 8px 20px;
	font-size: 1em;
	min-width: 100px;
}
}

@media (max-width: 480px) {
	.tab-btn {
    padding: 10px 10px;
    font-size: 1em;
    min-width: fit-content;
}
	.areainfo table {
    width: 100%;
}
.gifts-container,  .workshop-container {
	grid-template-columns: 1fr;
}
	    .activity-theme {
        padding: 0px 0px!important;
        margin: 0px auto;
    }
	    .theme-image {
        height: auto;
    }
.theme-content {
	width: 100%!important;
	float: left;
}
.section-title {
	font-size: 1.8em;
}
.m01 {
	width: 89%;
	top: 20vh;
	left: 6%;
}
.icon03 {
	right: 50px;
	top: 2%;
	width: 180px;
}
.icon02 {
	left: 60%;
	top: -6%;
	width: 180px;
}
.mainimg {
	height: auto;
}
.logo {
	width: 70px;
}
.brand {
	position: absolute;
	top: 20px;
	left: 40%;
}
.m02 {
	width: 100%;
}
.m04 {
	right: 15%;
	bottom: 42px;
}
.m08 {
	width: 36%;
	right: 66%;
	bottom: 10%;
}
.m09 {
	width: 15%;
	right: 53%;
	bottom: 16%;
}
    .gift-item {
        flex-direction: column;
        padding: 5%;
    }
.gift-content {
	flex: unset !important;
	height: auto !important;
	min-height: unset !important;
	max-height: unset !important;
	box-sizing: border-box;
	padding: 0 !important;
}
	.gift-image {
    width: 85%;
}
.gift-content > * {
	margin-bottom: 10px;
	padding: 0;
}
.gift-image img {
	height: auto !important;
	max-height: 200px;
	width: 100%;
	object-fit: contain;
}
.tea-trip {
	margin: 0px auto;
	padding: 0px;
}
.trip-item-img {
	width: 60%;
	height: 140px;
	margin: 0 auto;
	position: relative;
	left: 30%;
	transform: translateX(-50%);
}
.activity-theme {
	padding: 0px 20px;
	margin: 0px auto;
}
.trip-title {
	text-align: center;
}
.theme-info {
	display: block;
}
.theme-content h3 {
	padding: 16px 0 16px 0;
}
}
/* 活动主题 TAB 样式 */
.theme-tabs {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}
.theme-tab-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
	border-bottom: 2px solid var(--primary-color);
	padding-bottom: 0;
}
.theme-tab-btn,.shop-tab-btn {
	padding: 12px 30px;
	font-size: 1.2em;
	border: none;
	background: none;
	color: var(--text-color);
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	min-width: 120px;
	text-align: center;
}
.theme-tab-btn::after,.shop-tab-btn::after,.traffic-tab-btn::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--primary-color);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}
.theme-tab-btn.active,.shop-tab-btn.active {
	color: var(--primary-color);
	font-weight: bold;
	background: #ffffff;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border: 2px solid var(--primary-color);
	border-bottom: none;
}
.theme-tab-btn.active::after,.shop-tab-btn.active::after{
	transform: scaleX(1);
}


.theme-tab-content {
	position: relative;
}
.theme-tab-pane {
	display: none;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.theme-tab-pane.active {
	display: block;
	opacity: 1;
	transform: translateY(0);
}
.performancedtl{width:33.333333%;
	display: block;
	float: left;
}
.performancedtl strong {
    font-size: 16px;
    text-align: center;
    width: 100%;
    display: block;
}
.performance h3{
	width: 100%;
	display: block;
	text-align: center;
	background-color: #d2dea3;
	line-height: 20px;
	height: 20px;
	padding: 1% 0%!important;
	border-radius: 10px;
}
.theme-image2 {
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    padding: 1%;
    margin: 0 auto;
}
@media (max-width: 768px) {
}
/* 茶鄉小旅行 TAB 样式 */
.trip-tabs {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}
.trip-tab-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
	border-bottom: 2px solid var(--primary-color);
	padding-bottom: 0;
}
.trip-tab-btn {
	padding: 12px 30px;
	font-size: 1.2em;
	border: none;
	background: none;
	color: var(--text-color);
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	min-width: 120px;
	text-align: center;
}
.trip-tab-btn::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--primary-color);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}
.trip-tab-btn.active {
	color: var(--primary-color);
	font-weight: bold;
	background: #ffffff;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border: 2px solid var(--primary-color);
	border-bottom: none;
}
.trip-tab-btn.active::after {
	transform: scaleX(1);
}
.trip-tab-content {
	position: relative;
}
.trip-tab-pane {
	display: none;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.trip-tab-pane.active {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 768px) {
.trip-tab-buttons {
	flex-wrap: wrap;
	gap: 10px;
}
.trip-tab-btn {
	padding: 8px 20px;
	font-size: 1em;
	min-width: 100px;
}
}
/* 子 TAB 样式 */
.sub-tabs {
	margin-top: 20px;
}
.sub-tab-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 20px;
}
.sub-tab-btn {
	padding: 8px 20px;
	font-size: 1.1em;
	border: none;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	border-radius: 15px;
	
	background: #ffffff;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}
.sub-tab-btn.active {
	background: var(--primary-color);
	color: #ffffff;
}
.sub-tab-content {
	position: relative;
}
.sub-tab-pane {
	display: none;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.sub-tab-pane.active {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 768px) {
.sub-tab-buttons {
	flex-wrap: wrap;
	gap: 10px;
}
.sub-tab-btn {
	padding: 6px 15px;
	font-size: 1em;
}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.performance-tabs {
    margin: 20px 0;
}

.performance-tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.performance-tab-btn {
    padding: 8px 15px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.performance-tab-btn:hover {
    background: #e0e0e0;
}

.performance-tab-btn.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.performance-tab-content {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
}

.performance-tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.performance-tab-pane.active {
    display: block;
    opacity: 1;
}

/* 交通信息区块 */
.traffic-tab-container,.shop-info {
	max-width: 1200px;
	margin: 0 auto;
}
.traffic-tab-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
.traffic-tab-content {
	position: relative;
}
.traffic-tab-pane {
	display: none;
	animation: fadeIn 0.5s ease;
}
.traffic-tab-pane.active {
	display: block;
}

/* 特约店家样式 */
.store-tab-container {
    max-width: 1200px;
    margin: 0 auto;
}

.store-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.store-tab-btn {
    padding: 10px 30px;
    background-color: #f5f5f5;
    border: 2px solid #4a6741;
    border-radius: 5px;
    color: #4a6741;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.store-tab-btn:hover {
    background-color: #4a6741;
    color: #fff;
}

.store-tab-btn.active {
    background-color: #4a6741;
    color: #fff;
}

.store-tab-content {
    position: relative;
}

.store-tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.store-tab-pane.active {
    display: block;
}

.store-info {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.store-info table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.store-info table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.store-info table tr:first-child td {
    background-color: #4a6741;
    color: #fff;
    font-weight: bold;
}

@media (max-width: 768px) {
    .store-tab-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .store-tab-btn {
        padding: 8px 20px;
        font-size: 1em;
        min-width: 100px;
    }
    
    .store-info table {
        font-size: 0.9em;
    }
}

/* 特约店家样式 */
.shop-tab-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.shop-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}



.shop-tab-content {
    position: relative;
}

.shop-tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.shop-tab-pane.active {
    display: block;
}



.shop-info table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.shop-info table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}


@media (max-width: 768px) {
    .shop-tab-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .shop-tab-btn {
        padding: 8px 20px;
        font-size: 1em;
        min-width: 100px;
    }
    
    .shop-info table {
        font-size: 0.9em;
    }
}
