.indoor-map-container {
margin: 20px 0;
max-width: 100%;
}
.indoor-map-title {
font-size: 24px;
font-weight: bold;
margin: 0 0 10px 0;
color: #333;
}
.indoor-map-description {
font-size: 16px;
color: #666;
margin: 0 0 20px 0;
line-height: 1.5;
} .indoor-map-wrapper {
background: #fff;
border: 1px solid #ddd;
border-radius: 8px;
padding: 20px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
overflow: auto;
text-align: center;
}
.indoor-map-svg {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
border-radius: 4px;
} .room-rect:hover {
filter: brightness(0.95);
stroke-width: 3;
}
.room-rect:focus {
outline: none;
stroke-width: 3;
filter: drop-shadow(0 0 6px rgba(33, 150, 243, 0.5));
} .indoor-map-info {
margin-top: 15px;
text-align: center;
}
.room-count {
font-size: 14px;
color: #666;
margin: 0;
} .indoor-map-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
}
.modal-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(2px);
}
.modal-content {
position: relative;
background: #fff;
border-radius: 8px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
max-width: 500px;
width: 90%;
max-height: 80vh;
overflow: hidden;
animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
from {
opacity: 0;
transform: scale(0.9) translateY(-20px);
}
to {
opacity: 1;
transform: scale(1) translateY(0);
}
}
.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 20px 0 20px;
border-bottom: 1px solid #eee;
margin-bottom: 20px;
}
.modal-header h3 {
margin: 0;
font-size: 20px;
color: #333;
}
.modal-close {
background: none;
border: none;
font-size: 24px;
cursor: pointer;
color: #999;
padding: 0;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: all 0.2s ease;
}
.modal-close:hover {
background: #f5f5f5;
color: #333;
}
.modal-body {
padding: 0 20px 20px 20px;
} .loading-spinner {
text-align: center;
padding: 40px 20px;
}
.spinner {
width: 40px;
height: 40px;
border: 4px solid #f3f3f3;
border-top: 4px solid #2196F3;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 0 auto 15px auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.loading-spinner p {
color: #666;
margin: 0;
} .error-message {
text-align: center;
padding: 40px 20px;
color: #d32f2f;
}
.error-message p {
margin: 0;
} .indoor-map-button {
display: inline-block;
background: #2196F3;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 4px;
font-size: 14px;
font-weight: 500;
transition: background 0.3s ease;
}
.indoor-map-button:hover {
background: #1976D2;
color: #fff;
text-decoration: none;
} .status-marker-bg {
filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.status-marker {
font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
} .room-status-info {
font-size: 14px;
line-height: 1.4;
}
.room-status-info strong {
display: flex;
align-items: center;
gap: 8px;
} .status-legend {
margin-top: 20px;
padding: 15px;
background: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 6px;
}
.status-legend h4 {
margin: 0 0 12px 0;
font-size: 16px;
color: #333;
font-weight: 600;
}
.legend-items {
display: flex;
flex-wrap: wrap;
gap: 15px;
align-items: center;
}
.legend-item {
display: flex;
align-items: center;
gap: 6px;
font-size: 14px;
color: #555;
}
.legend-marker {
font-size: 16px;
line-height: 1;
}
.legend-text {
font-weight: 500;
} .status-occupied {
background: #ffcdd2 !important;
border-color: #f44336 !important;
}
.status-available {
background: #c8e6c9 !important;
border-color: #4caf50 !important;
}
.status-maintenance {
background: #fff3e0 !important;
border-color: #ff9800 !important;
}
.status-reserved {
background: #e1f5fe !important;
border-color: #03a9f4 !important;
}
.status-custom {
background: #f3e5f5 !important;
border-color: #9c27b0 !important;
} .comment-found-marker-bg {
filter: drop-shadow(0 2px 4px rgba(255,107,53,0.3));
animation: commentFoundPulse 2s infinite;
}
.comment-found-marker {
font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
font-weight: bold;
} @keyframes commentFoundPulse {
0%, 100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.7;
transform: scale(1.1);
}
} .room-comment-found-info {
font-size: 14px;
line-height: 1.4;
animation: commentInfoSlideIn 0.3s ease;
}
@keyframes commentInfoSlideIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
} .comment-found-legend .legend-marker {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 20px;
height: 20px;
} .room-group:hover .status-marker-bg {
transform: scale(1.1);
transition: transform 0.2s ease;
}
.room-group:hover .status-marker {
transform: scale(1.1);
transition: transform 0.2s ease;
}
.room-group:hover .comment-found-marker-bg {
transform: scale(1.1);
transition: transform 0.2s ease;
}
.room-group:hover .comment-found-marker {
transform: scale(1.1);
transition: transform 0.2s ease;
} @media (max-width: 768px) {
.indoor-map-container {
margin: 15px 0;
}
.indoor-map-wrapper {
padding: 15px;
}
.indoor-map-title {
font-size: 20px;
}
.modal-content {
width: 95%;
margin: 20px;
}
.modal-header,
.modal-body {
padding-left: 15px;
padding-right: 15px;
} .room-number {
font-size: 12px !important;
}
.room-name {
font-size: 10px !important;
} .status-marker-bg {
r: 8;
}
.status-marker {
font-size: 10px !important;
}
}
@media (max-width: 480px) {
.indoor-map-wrapper {
padding: 10px;
}
.room-number {
font-size: 10px !important;
}
.room-name {
font-size: 8px !important;
}
} @media print {
.indoor-map-modal {
display: none !important;
}
.indoor-map-wrapper {
box-shadow: none;
border: 1px solid #000;
}
} .indoor-map-error {
background: #ffebee;
border: 1px solid #f44336;
border-radius: 4px;
padding: 15px;
margin: 20px 0;
color: #c62828;
text-align: center;
}
.indoor-map-error p {
margin: 0;
font-weight: 500;
} .indoor-map-error-toast {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
animation: slideInRight 0.3s ease;
}
@keyframes slideInRight {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
} @media (prefers-contrast: high) {
.room-rect {
stroke-width: 3 !important;
}
.modal-overlay {
background: rgba(0, 0, 0, 0.8);
}
.indoor-map-error {
border-width: 2px;
font-weight: bold;
}
} @media (prefers-reduced-motion: reduce) {
.room-rect,
.modal-content,
.indoor-map-button {
transition: none !important;
animation: none !important;
}
.spinner {
animation: none !important;
}
}.timeline-event-card {
border-left: 4px solid #1e73be;
padding: 20px;
margin-bottom: 20px;
background-color: #fff;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}
.timeline-event-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}
.event-title {
color: #1e73be;
font-weight: 600;
font-size: 24px;
margin-bottom: 15px;
}
.event-meta {
color: #555;
margin-bottom: 15px;
}
.event-meta > div {
margin-right: 15px;
margin-bottom: 10px;
display: inline-block;
}
.lead {
font-size: 1.1rem;
color: #333;
}
.border-left {
border-left: 4px solid #1e73be;
padding-left: 10px;
}
.event-details .mb-2 i, 
.event-impacts .mb-2 i {
color: #1e73be;
width: 20px;
text-align: center;
}
.mb-2 {
margin-bottom: 10px;
}
.mb-3 {
margin-bottom: 15px;
}
.mr-1 {
margin-right: 5px;
}
.detailed-content {
background: #f9f9f9;
padding: 20px;
border-radius: 5px;
margin-bottom: 20px;
}
.map-container {
margin-bottom: 20px;
}
.col-md-6 {
width: 48%;
display: inline-block;
vertical-align: top;
}
@media (max-width: 768px) {
.col-md-6 {
width: 100%;
}
}
.row {
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
.container {
width: 100%;
max-width: 1140px;
margin: 0 auto;
padding: 0 15px;
} .ditu-rensheng-timeline-list {
list-style: none;
padding-left: 30px;
position: relative;
}
.ditu-rensheng-timeline-list:before {
content: '';
position: absolute;
top: 0;
left: 8px;
height: 100%;
width: 4px;
background: #e9ecef;
}
.ditu-rensheng-timeline-item {
position: relative;
margin-bottom: 20px;
padding-left: 20px;
}
.ditu-rensheng-timeline-item:before {
content: '';
position: absolute;
left: -22px;
top: 5px;
width: 12px;
height: 12px;
border-radius: 50%;
background: #1e73be;
border: 2px solid #fff;
box-shadow: 0 0 0 2px #1e73be;
}
.ditu-rensheng-event {
color: #6c757d;
}
.ditu-rensheng-date {
font-style: italic;
color: #6c757d;
} .timeline-popup {
max-width: 300px;
}
.timeline-popup h3 {
font-size: 16px;
margin: 0 0 5px;
color: #1e73be;
}
.timeline-popup p {
margin: 5px 0;
font-size: 14px;
}
.timeline-popup a {
display: inline-block;
margin-top: 10px;
color: #1e73be;
text-decoration: none;
}   .tdt-infowindow-content {
font-family: "Microsoft YaHei", "Segoe UI", sans-serif !important;
}
.tdt-infowindow-content-wrapper {
border-radius: 8px !important;
overflow: hidden !important;
box-shadow: 0 3px 14px rgba(0,0,0,0.2) !important;
}
.tdt-infowindow-close {
top: 5px !important;
right: 5px !important;
color: #666 !important;
font-weight: bold !important;
width: 22px !important;
height: 22px !important;
font-size: 22px !important;
line-height: 22px !important;
opacity: 0.7 !important;
border-radius: 50% !important;
transition: all 0.2s ease !important;
}
.tdt-infowindow-close:hover {
background-color: #f5f5f5 !important;
opacity: 1 !important;
} .tdt-infowindow-tip {
opacity: 0.9 !important;
} .ditu-rensheng-no-data,
.ditu-rensheng-error,
.map-loading,
.map-error {
padding: 20px;
text-align: center;
color: #666;
background-color: #f9f9f9;
border: 1px dashed #ddd;
margin: 10px;
border-radius: 6px;
font-size: 14px;
line-height: 1.5;
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.ditu-rensheng-error,
.map-error {
color: #721c24;
background-color: #f8d7da;
border-color: #f5c6cb;
}
.map-loading {
color: #004085;
background-color: #cce5ff;
border-color: #b8daff;
} .ditu-rensheng-map-container {
position: relative;
margin-bottom: 30px;
border: 1px solid #eaeaea;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
} 
.ditu-infowindow {
width: auto !important;    } .ditu-enhanced-infowindow {
width: 320px;
max-width: 100%;
max-height: 400px;
overflow: auto;
position: relative;
padding: 0;
margin: 0;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
} .ditu-infowindow-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
filter: brightness(0.7);
z-index: 1;
opacity: 0.7;
} .ditu-infowindow-content {
position: relative;
z-index: 2;
padding: 15px;
background-color: rgba(255, 255, 255, 0.85);
border-radius: 8px;
margin: 0;
} .ditu-infowindow-content h3 {
margin: 0 0 10px 0;
padding: 0;
font-size: 18px;
color: #333;
text-shadow: 0 1px 1px rgba(255,255,255,0.8);
} .ditu-infowindow-content p {
margin: 5px 0;
line-height: 1.5;
color: #333;
} .ditu-infowindow-content p.date {
font-style: italic;
color: #555;
} .ditu-infowindow-content a {
display: inline-block;
margin-top: 10px;
padding: 5px 12px;
background-color: #2D8CF0;
color: white;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s;
}
.ditu-infowindow-content a:hover {
background-color: #2380E1;
} .ditu-infowindow-wrapper {
max-width: 100%;
min-width: 250px;
} .tdt-infowindow-content {
padding: 0 !important;
margin: 0 !important;
border-radius: 8px !important;
overflow: hidden !important;
}
.tdt-infowindow-content-wrapper {
margin: 0 !important;
} @media (max-width: 480px) {
.ditu-enhanced-infowindow {
width: 280px;
}
}.wp-member-levels-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin: 30px 0;
}
.wp-member-levels-container.columns-2 .wp-member-level {
width: calc(50% - 10px);
}
.wp-member-levels-container.columns-3 .wp-member-level {
width: calc(33.333% - 14px);
}
.wp-member-levels-container.columns-4 .wp-member-level {
width: calc(25% - 15px);
}
.wp-member-level {
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 25px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
}
.wp-member-level:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.wp-member-level.current-level {
border-color: #2271b1;
}
.wp-member-level.highlight-level {
border-color: #2271b1;
background-color: #f0f6fc;
}
.level-header {
margin-bottom: 15px;
position: relative;
}
.level-header h3 {
margin: 0 0 10px 0;
font-size: 22px;
color: #333;
}
.current-badge {
position: absolute;
top: 0;
right: 0;
background-color: #2271b1;
color: white;
font-size: 12px;
padding: 3px 8px;
border-radius: 4px;
}
.level-price {
margin-bottom: 20px;
font-size: 18px;
}
.price-amount {
font-size: 28px;
font-weight: bold;
color: #2271b1;
}
.price-period {
font-size: 16px;
color: #666;
}
.price-free {
font-size: 24px;
font-weight: bold;
color: #4caf50;
}
.level-features {
flex-grow: 1;
margin-bottom: 20px;
}
.level-features ul {
list-style: none;
padding: 0;
margin: 0;
}
.level-features li {
margin-bottom: 10px;
padding-left: 25px;
position: relative;
}
.level-features li:before {
content: "✓";
position: absolute;
left: 0;
color: #4caf50;
font-weight: bold;
}
.level-action {
text-align: center;
}
.level-action .button {
width: 100%;
padding: 10px 15px;
font-size: 16px;
} .wp-member-modal {
display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.5);
}
.wp-member-modal-content {
background-color: #fefefe;
margin: 10% auto;
padding: 30px;
border-radius: 8px;
width: 80%;
max-width: 500px;
position: relative;
}
.wp-member-modal-close {
position: absolute;
top: 10px;
right: 15px;
color: #aaa;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}
.wp-member-modal-close:hover {
color: #333;
}
.payment-methods {
display: flex;
justify-content: space-around;
margin: 30px 0;
}
.payment-method {
text-align: center;
padding: 15px;
border: 2px solid #e0e0e0;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
width: 28%;
}
.payment-method:hover {
border-color: #2271b1;
background-color: #f0f6fc;
}
.payment-method.selected {
border-color: #2271b1;
background-color: #f0f6fc;
}
.payment-method img {
width: 60px;
height: auto;
margin-bottom: 10px;
}
.payment-info {
margin: 20px 0;
padding: 15px;
background-color: #f9f9f9;
border-radius: 5px;
}
.payment-action {
text-align: center;
margin-top: 20px;
} .wp-member-profile {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
padding: 30px;
margin: 30px 0;
}
.profile-header {
display: flex;
margin-bottom: 30px;
}
.profile-avatar {
margin-right: 30px;
}
.profile-avatar img {
border-radius: 50%;
}
.profile-info {
flex-grow: 1;
}
.profile-info h3 {
margin-top: 0;
margin-bottom: 10px;
font-size: 24px;
}
.profile-email {
color: #666;
margin-bottom: 20px;
}
.profile-membership {
background-color: #f9f9f9;
padding: 15px;
border-radius: 5px;
margin-bottom: 20px;
}
.profile-membership p {
margin: 8px 0;
}
.profile-transactions {
margin-bottom: 30px;
}
.profile-transactions h4 {
margin-bottom: 15px;
font-size: 18px;
}
.wp-member-table {
width: 100%;
border-collapse: collapse;
}
.wp-member-table th,
.wp-member-table td {
padding: 10px 15px;
text-align: left;
border-bottom: 1px solid #e0e0e0;
}
.wp-member-table th {
background-color: #f5f5f5;
font-weight: 600;
}
.profile-actions {
display: flex;
gap: 15px;
margin-top: 20px;
}
.profile-actions .button {
padding: 8px 20px;
} .wp-member-access-denied {
background-color: #f9f9f9;
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 30px;
text-align: center;
margin: 30px 0;
}
.access-denied-icon {
margin-bottom: 20px;
}
.access-denied-icon .dashicons {
font-size: 48px;
width: 48px;
height: 48px;
color: #e74c3c;
}
.access-denied-message h3 {
margin-top: 0;
margin-bottom: 15px;
font-size: 24px;
color: #333;
}
.access-denied-message p {
margin-bottom: 20px;
font-size: 16px;
color: #666;
}
.access-denied-actions {
display: flex;
justify-content: center;
gap: 15px;
}
.access-denied-actions .button {
padding: 8px 20px;
} .wp-member-restricted-content {
background-color: #f9f9f9;
border: 1px solid #e0e0e0;
border-radius: 5px;
padding: 15px;
margin: 15px 0;
text-align: center;
color: #666;
} @media screen and (max-width: 768px) {
.wp-member-levels-container.columns-2 .wp-member-level,
.wp-member-levels-container.columns-3 .wp-member-level,
.wp-member-levels-container.columns-4 .wp-member-level {
width: 100%;
}
.profile-header {
flex-direction: column;
align-items: center;
text-align: center;
}
.profile-avatar {
margin-right: 0;
margin-bottom: 20px;
}
.payment-methods {
flex-direction: column;
gap: 15px;
}
.payment-method {
width: 100%;
}
.wp-member-modal-content {
width: 95%;
padding: 20px;
}
.wp-member-table {
display: block;
overflow-x: auto;
}
}.tdt-control-copyright {
display: none !important;
}
#map {
width:250px;
height:250px;
}
acf-map {
width: 100%;
height: 400px;
border: #ccc solid 1px;
margin: 20px 0;
}
#allmap {
width: 60%;
height: 250px; 
box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
#map1 {
width: 100%;
height: 300px;
}
.image-container {
width: 300px; height: 200px; overflow: hidden; } table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
} th {
background-color: #f2f2f2;
font-weight: bold;
} td {
vertical-align: top;
}
.compact-table {
border-collapse: collapse;
width: 100%;
}
.compact-table th,
.compact-table td {
max-width: 200px;
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
.auto-wrap-cell {
max-width: 300px; word-wrap: break-word; overflow-wrap: break-word; }
.compact-table th {
background-color: #f2f2f2;
}
.small-text {
font-size: 12px;
} span {
display: inline-flex;
align-items: center;
}
.icon {
width: 20px; height: 20px;
margin-right: 5px;
}  .cttm-table {
width: 100%;
border-collapse: collapse;
}
.cttm-table th, .cttm-table td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
.cttm-table th {
background-color: #defbf2;
}
.icon {
vertical-align: middle;
width: 24px;
height: 24px;
}
.custom-fields-data {
margin-top: 20px;
}
.custom-field-item {
background-color: #f9f9f9;
margin-bottom: 10px;
padding: 10px;
border-left: 5px solid #007bff; }
.show-tishi-button {
background-color: #007bff;
color: white;
padding: 8px 16px;
border: none;
border-radius: 4px;
cursor: pointer;
}
.show-tishi-button:hover {
background-color: #8fbff3;
}
.tishi-content {
padding: 10px;
margin-top: 10px;
background-color: #f8f9fa;
border-radius: 4px;
}
@media screen and (max-width: 768px) {
.cttm-table, .cttm-table tbody, .cttm-table tr {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%; }
.cttm-table th, .cttm-table td {
flex: 1 1 50%; box-sizing: border-box; padding: 8px; overflow: visible; border-bottom: 1px solid #ccc; line-height: 1.5; }
.cttm-table th {
background-color: #e5ffff; }
.cttm-table tr:last-child th, .cttm-table tr:last-child td {
border-bottom: none; }
} .icon {
width: 20px;
height: 20px;
margin-right: 5px;
vertical-align: middle;
}
.show-tishi-button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
}
.tishi-content {
margin-top: 10px;
padding: 10px;
background-color: #f2f2f2;
} td:empty {
border: none;
} .compact-table {
border-spacing: 0;
}  .comment-form-discovered,  
.comment-form-not-discovered {
display: inline-block;
margin-right: 20px; 
} .comment-form-discovered label,
.comment-form-not-discovered label {  
cursor: pointer; 
} .comment-form-discovered label {
color: #67c23a;  
}
.comment-form-discovered input[type="radio"]:checked + label {
font-weight: bold;
} .comment-form-not-discovered label {
color: #f56c6c;
}
.comment-form-not-discovered input[type="radio"]:checked + label { 
font-weight: bold; 
} #attachment {
opacity: 0;
position: absolute;
z-index: -1;
} .comment-form-attachment__label {
display: inline-block;
padding: 8px 12px;
background: #409eff; 
color: #fff;
border-radius: 4px;  
cursor: pointer;
} .comment-form-attachment__label:hover {
background: #66b1ff;
} .comment-form-attachment__file-size-notice,.comment-form-attachment__file-types-notice {
font-size: 12px;
color: #999;  
margin-left: 10px;
} .comment {
background-color: #f5f5f5;
border: 1px solid #ddd;
padding: 10px;
margin-bottom: 20px;
}
.comment-author {
font-weight: bold;
}
.comment-form {
margin-top: 20px;
}
.discovered-button,
.not-discovered-button {
padding: 5px 10px;
border: none;
cursor: pointer;
color: #fff;
border-radius: 3px;
}
.discovered-button {
background-color: #28a745; }
.not-discovered-button {
background-color: #dc3545; } #attachment {
opacity: 0;
position: absolute;
z-index: -1;
} .comment-form-attachment__label {
display: inline-block;
padding: 8px 12px;
background: #409eff; 
color: #fff;
border-radius: 4px;  
cursor: pointer;
} .comment-form-attachment__label:hover {
background: #66b1ff;
} .comment-form-attachment__file-size-notice,.comment-form-attachment__file-types-notice,.comment-form-attachment__autoembed-links-notice
{
font-size: 12px;
color: #999;  
margin-left: 10px;
} .comment-form-discovered,  
.comment-form-not-discovered {
display: inline-block;
margin-right: 20px; 
} .comment-form-discovered label,
.comment-form-not-discovered label {  
cursor: pointer; 
} .comment-form-discovered label {
color: #67c23a;  
}
.comment-form-discovered input[type="radio"]:checked + label {
font-weight: bold;
} .comment-form-not-discovered label {
color: #f56c6c;
}
.comment-form-not-discovered input[type="radio"]:checked + label { 
font-weight: bold; 
}
.form-submit input[type="submit"] {
background: #007cba;
color: #fff;
padding: 10px 20px;
border: none;
cursor: pointer;
}
.comment-reply-title {
font-size: 18px;
font-weight: 600;
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
}
.comment-form textarea,
.comment-form input[type="text"] {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
}
.comment-respond {
border: 1px solid #ddd;
padding: 20px;
}
.comment-form p {
margin-bottom: 15px;
}
@media(max-width: 768px) { }
.logged-in-as span {
font-weight: bold;  
}.logged-in-as a {
color: #007cba;
}.logged-in-as a.logout {
background: #007cba;
color: #fff;
padding: 5px 10px;
border-radius: 3px;
}.logged-in-as a {
display: inline-block;
margin-left: 10px;
}
@media(max-width: 768px) {
.logged-in-as {
text-align: center;  
}
.logged-in-as a {
display: block;
margin: 5px auto;
}
}
#comment {
width: 100%;
padding: 10px; 
border: 1px solid #ddd;
}
.comment {
position: relative;
padding-left: 30px;
}
.comment-navigation {
border-top: 1px solid #ddd;
margin-top: 20px;
padding-top: 10px;
}.comment-navigation h1 {
margin-bottom: 10px;
font-size: 16px;  
}.comment-navigation a {
display: inline-block;
padding: 8px 15px;
background: #007cba; 
color: #fff;
border-radius: 3px;
}.comment-navigation a:hover {
opacity: 0.8;
}.nav-previous,
.nav-next {
width: 50%;
} .info-container {
width: 100%; 
margin: 0;
padding: 10px;
background-color: #ffffff; border: 0px solid #ddd; }
.info-link {
color: #007bff; text-decoration: none; }
.info-link:hover {
text-decoration: underline; }
.info-title {
margin: 0 0 10px 0; color: #333; }
.info-text {
margin: 5px 0; color: #666; }
.timeline-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.timeline {
position: relative;
padding: 20px 0;
}
.timeline::before {
content: '';
position: absolute;
top: 0;
left: 50%;
bottom: 0;
width: 4px; background: #333;
}
.timeline-item {
position: relative;
width: 45%;
padding: 10px;
box-sizing: border-box;
} .left {
float: left;
text-align: right;
} .right {
float: right;
text-align: left;
}
.left .timeline-content,
.right .timeline-content {
padding: 20px;
background-color: #f9f9f9;
border-radius: 5px;
position: relative; }
.timeline-date {
position: absolute;
width: 120px; height: 30px; line-height: 30px; left: 50%;
transform: translateX(-50%);
margin-top: -30px;
background-color: #333; color: #fff; text-align: center; border-radius: 15px; z-index: 1; }
.timeline-item {
position: relative;
width: 45%;
padding: 10px;
box-sizing: border-box;
}
.timeline-item::before {
content: '';
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 20px; height: 20px; border-radius: 50%; background-color: #333; z-index: 2; } .left::before {
right: -30px; } .right::before {
left: -30px; }
.timeline::after {
content: "";
display: table;
clear: both;
}
@media screen and (max-width: 768px) {
.timeline-item,
.left,
.right {
width: 100%;
float: none;
text-align: center;
}
.left .timeline-content,
.right .timeline-content {
margin: 0 auto;
}
.timeline-date {
margin-top: 0;
}
}
.custom-fields {
background: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
font-family: 'Arial', sans-serif;
color: #333;
max-width: 600px; margin: 20px auto; }
.custom-fields p {
margin: 10px 0;
padding: 10px 5px 10px 35px; position: relative; border-left: 3px solid #ff7e5f; background-color: #fff;
border-radius: 5px;
} .custom-fields p::before {
content: '';
position: absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 20px;
background-color: #ff7e5f;
border-radius: 50%; } .custom-fields p:nth-child(2)::before {
background-color: #f9d423;
}
.custom-fields p:nth-child(3)::before {
background-color: #83a4d4;
}
.custom-fields p:nth-child(4)::before {
background-color: #b6fbff;
}
.custom-fields p:nth-child(5)::before {
background-color: #9ddcdc;
} .custom-fields strong {
font-weight: bold;
color: #333;
} body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.tabs {
display: flex;
justify-content: center;
margin: 20px 0;
}
.tab-button {
background-color: #fff;
border: 1px solid #ccc;
padding: 10px 20px;
cursor: pointer;
margin: 0 5px;
border-radius: 5px;
}
.tab-button.active {
background-color: #0073aa;
color: #fff;
border-color: #0073aa;
}
.tab-content {
display: none;
background-color: #fff;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
max-width: 800px;
margin: 0 auto;
}
.tab-content.active {
display: block;
}
h1 {
font-size: 24px;
margin-bottom: 20px;
}
p {
margin: 10px 0;
}
blockquote {
margin: 10px 0;
padding: 10px 20px;
background-color: #f9f9f9;
border-left: 5px solid #ccc;
}
.login-register-buttons {
display: flex;
justify-content: flex-end; flex-wrap: wrap;
gap: 10px; align-items: center;
}
.login-register-buttons a.button {
display: inline-block;
padding: 10px 20px;
background-color: #0073aa; color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.login-register-buttons a.button:hover {
background-color: #005177; }
@media (max-width: 768px) {
.login-register-buttons {
justify-content: center; }
.login-register-buttons a.button {
width: auto; padding: 8px 16px; font-size: 14px; text-align: center;
}
} .editor-placeholder {
color: #999;
font-style: italic;
} .editor-placeholder::before {
content: "输入你的宝藏描述和图片或者视频。例如地点特点，地点历史，位置描述，图片显示等。";
color: #999;
}
.editor-placeholder {
display: none;
}
.info-link.button {
display: inline-block; padding: 10px 20px; background-color: #caf4ea; color: #eef1f0; text-align: center; text-decoration: none; border-radius: 5px; border: none; font-size: 16px; cursor: pointer; }
.info-link.button:hover {
background-color: #52fcff; }
.posts-container.loading {
opacity: 0.5;
pointer-events: none;
transition: opacity 0.3s;
}
.category-button.active {
background-color: #007bff;
color: white;
}
.category-button {
padding: 8px 16px;
margin: 0 5px;
border: 1px solid #ddd;
border-radius: 4px;
background: #fff;
cursor: pointer;
transition: all 0.3s;
}
.category-button.active {
background: #0073aa;
color: #fff;
border-color: #0073aa;
}
.posts-container.loading {
opacity: 0.5;
pointer-events: none;
}
.post-item {
margin-bottom: 20px;
padding: 15px;
border: 1px solid #eee;
border-radius: 4px;
}
.no-posts {
padding: 20px;
text-align: center;
background: #f5f5f5;
border-radius: 4px;
}
.cache-card { background-image: linear-gradient(rgba(253, 253, 254, 0.95), rgba(160, 93, 93, 0.4)), url(//qqqmap.com/wp-content/themes/cangbaotu2026/image/111.webp); background-color: #fdfaf4; 
background-repeat: repeat;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
margin-bottom: 20px;
padding: 20px; color: #333; }
.card-header {
padding: 15px;
border-bottom: 1px solid #eee;
}
.cache-info-wrapper {
display: flex;
flex-wrap: wrap;
gap: 20px;
align-items: center;
background-color: #fdfaf4;  padding: 20px; border-radius: 8px; border: 1px solid #e9e4d9; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.cache-primary-info {
display: flex;
align-items: center;
gap: 15px;
}
.cache-type-badge {
display: flex;
align-items: center;
gap: 8px;
background: #f5f5f5;
padding: 5px 12px;
border-radius: 20px;
}
.type-icon i {
color: #666;
}
.type-text {
font-weight: 500;
}
.cache-code {
font-size: 1.2em;
font-weight: bold;
color: #007bff;
text-decoration: none;
}
.cache-code:hover {
text-decoration: underline;
}
.cache-details {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-left: auto;
}
.detail-item {
display: flex;
align-items: center;
gap: 8px;
}
.detail-item i {
color: #666;
width: 16px;
text-align: center;
}
.detail-item.location {
color: #666;
} @media (max-width: 768px) {
.cache-info-wrapper {
flex-direction: column;
align-items: flex-start;
gap: 15px;
}
.cache-details {
margin-left: 0;
width: 100%;
}
.detail-item {
font-size: 0.9em;
}
}
.cache-code {
font-weight: bold;
color: #007bff; }
#post-title {
display: flex;
align-items: center;
justify-content: center; gap: 10px;
flex-wrap: nowrap; position: relative; width: 100%;
}
#post-title .cache-type {
flex-shrink: 0;
order: 0; }
#post-title .title-text {
flex-shrink: 1;
text-align: center;
order: 2; font-weight: bold; }
#post-title .cache-code {
flex-shrink: 0;
position: absolute; right: 0; order: 3; font-size: 0.8em; color: #666; font-weight: normal; }
@media (max-width: 768px) {
#post-title {
flex-direction: column; text-align: center;
}
#post-title .cache-code {
position: relative; right: auto;
margin-top: 10px;
}
}
.info-container2 {
display: flex;
gap: 20px;
margin: 15px 0;
}
.details-section,
.hint-section {
flex: 1;
background: #fff;
border-radius: 8px;
padding: 15px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.info-toggle-btn {
width: 100%;
padding: 10px;
border: none;
background: #f5f5f5;
border-radius: 6px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-weight: 500;
transition: all 0.3s ease;
}
.info-toggle-btn:hover {
background: #e9ecef;
}
.info-toggle-btn i {
font-size: 0.9em;
}
.details-content,
.hint-content {
margin-top: 15px;
padding: 15px;
background: #f8f9fa;
border-radius: 6px;
}
.info-grid {
display: grid;
gap: 12px;
}
.info-item { align-items: center;
gap: 10px;
}
.info-item i {
color: #666;
width: 16px;
text-align: center;
}
.info-item .label {
font-weight: 500;
color: #495057;
min-width: 80px;
}
.info-item .value {
color: #212529;
}
.info-item.full-width {
grid-column: 1 / -1;
}
.hint-content {
white-space: pre-wrap;
line-height: 1.6;
} @media (max-width: 768px) {
.info-container {
flex-direction: column;
}
.details-section,
.hint-section {
width: 100%;
}
}
.login-prompt {
text-align: center;
padding: 20px;
background: #f8f9fa;
border-radius: 8px;
}
.login-prompt a {
color: #007bff;
text-decoration: none;
font-weight: 500;
}
.login-prompt a:hover {
text-decoration: underline;
}
.cache-type {
display: inline-flex;
}
.cache-type img {
width: 24px;
height: 24px;
}
.question-section {
background: #f8f9fa;
padding: 15px;
border-radius: 8px;
margin: 15px 0;
}
.question-item {
margin-bottom: 15px;
}
.answer-input {
display: flex;
flex-direction: column;
gap: 10px;
}
.input-group {
display: flex;
gap: 10px;
}
.input-group input {
flex: 1;
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
}
.verify-btn {
padding: 8px 15px;
background: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.verify-btn:hover {
background: #0056b3;
} .collapsible-section {
margin: 10px 0;
border-radius: 8px;
overflow: hidden;
}
.collapse-btn {
width: 100%;
padding: 12px 15px;
background: #f8f9fa;
border: none;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
transition: all 0.3s ease;
}
.collapse-btn:hover {
background: #e9ecef;
}
.collapse-btn i:not(.arrow) {
margin-right: 8px;
}
.arrow {
transition: transform 0.3s ease;
}
.collapse-btn.active .arrow {
transform: rotate(180deg);
}
.collapse-content {
background: #fff;
padding: 15px;
border: 1px solid #eee;
border-top: none;
border-radius: 0 0 6px 6px;
} .question-item {
margin-bottom: 15px;
}
.answer-input {
display: flex;
gap: 10px;
}
.answer-input input {
flex: 1;
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
}
.verify-btn {
padding: 8px 15px;
background: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
} .step-item {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 0;
}
.step-number {
width: 24px;
height: 24px;
background: #007bff;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9em;
} .coordinates-item {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}
.coordinate {
display: flex;
align-items: center;
gap: 10px;
}
@media (max-width: 768px) {
.coordinates-item {
grid-template-columns: 1fr;
}
.answer-input {
flex-direction: column;
}
}
.verification-message {
margin-top: 10px;
padding: 10px;
border-radius: 4px;
display: none;
}
.verification-message.success {
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
display: block;
}
.verification-message.error {
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
display: block;
}
.map-control-button {
background-color: white; border: 1px solid #ccc; border-radius: 4px;
padding: 5px 8px; margin: 5px; cursor: pointer; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
min-width: 30px; text-align: center;
}
.map-control-button:hover { background-color: #f4f4f4; }
.map-control-button i { font-size: 1.1em; vertical-align: middle; }
.nav-button {
padding: 6px 12px; background-color: #007bff; color: white;
border: none; border-radius: 4px; cursor: pointer; font-size: 0.9em; margin-left: 5px;
}
.nav-button:hover { background-color: #0056b3; }
.verification-message { padding: 10px; margin-top: 10px; border-radius: 4px; font-weight: bold; border: 1px solid transparent; }
.verification-message.success { background-color: #d4edda; color: #155724; border-color: #c3e6cb; }
.verification-message.error { background-color: #f8d7da; color: #721c24; border-color: #f5c6cb; }
.verification-message.warning { background-color: #fff3cd; color: #856404; border-color: #ffeeba; }
.verification-message.info { background-color: #d1ecf1; color: #0c5460; border-color: #bee5eb; }
.step-verification-item { margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px dashed #eee; }
.step-verification-item h4 { margin-top: 0; margin-bottom: 8px; }
.question-item { margin-bottom: 8px; }
.question-item .label { font-weight: bold; margin-right: 5px; }
.answer-input input[type="text"] { padding: 6px; border: 1px solid #ccc; border-radius: 3px; }
.answer-input .verify-btn { padding: 6px 12px; background-color: #28a745; color: white; border: none; border-radius: 3px; cursor: pointer; margin-left: 5px; }
.answer-input .verify-btn:hover { background-color: #218838; }
.collapsible-section { margin-bottom: 15px; border: 1px solid #eee; border-radius: 4px; }
.collapse-btn { display: block; width: 100%; text-align: left; padding: 10px 15px; background-color: #f8f9fa; border: none; border-bottom: 1px solid #eee; cursor: pointer; font-weight: bold; }
.collapse-btn i.arrow { float: right; margin-top: 3px; transition: transform 0.2s ease; }
.collapse-btn.active i.arrow { transform: rotate(180deg); }
.collapse-content { padding: 15px; }
.coordinates-item .coordinate { margin-bottom: 5px; }
.coordinates-item .label { font-weight: bold; display: inline-block; min-width: 50px; }
.step-info-item { padding: 10px; border-bottom: 1px solid #f0f0f0; }
.step-info-item:last-child { border-bottom: none; }
.hint-btn, .answer-btn { background: none; border: none; color: #007bff; cursor: pointer; padding: 2px 5px; margin-top: 5px; }
.hint-btn i, .answer-btn i { margin-right: 3px; }
.hint-content, .answer-content { background-color: #f9f9f9; border: 1px solid #eee; padding: 8px; margin-top: 5px; border-radius: 3px; } .huodong-archive-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.page-title {
margin-bottom: 30px;
text-align: center;
}
.huodong-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 30px;
}
.huodong-card {
border: 1px solid #eee;
border-radius: 8px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.huodong-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}
.huodong-card-image img {
width: 100%;
height: 200px;
object-fit: cover;
}
.huodong-card-content {
padding: 20px;
}
.huodong-card-title {
margin-top: 0;
margin-bottom: 15px;
font-size: 22px;
}
.huodong-card-title a {
color: #333;
text-decoration: none;
}
.huodong-card-title a:hover {
color: #0073aa;
}
.huodong-card-meta {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 15px;
font-size: 14px;
color: #666;
}
.huodong-status {
padding: 3px 8px;
border-radius: 3px;
font-weight: bold;
}
.huodong-status.planning {
background-color: #ffeeba;
color: #856404;
}
.huodong-status.ongoing {
background-color: #d4edda;
color: #155724;
}
.huodong-status.completed {
background-color: #d6d8d9;
color: #1b1e21;
}
.huodong-card-excerpt {
color: #666;
margin-bottom: 20px;
}
.huodong-card-footer {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px;
padding-top: 15px;
border-top: 1px solid #eee;
}
.cangdian-count {
color: #666;
font-size: 14px;
}
.huodong-more-link {
display: inline-block;
padding: 5px 15px;
background-color: #0073aa;
color: #fff;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s;
}
.huodong-more-link:hover {
background-color: #005177;
color: #fff;
} .huodong-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.huodong-header {
margin-bottom: 30px;
border-bottom: 1px solid #eee;
padding-bottom: 20px;
}
.huodong-title {
font-size: 32px;
margin-bottom: 10px;
}
.huodong-meta {
font-size: 16px;
color: #666;
display: flex;
flex-wrap: wrap;
gap: 15px;
}
.huodong-cover {
margin-bottom: 30px;
}
.huodong-cover-img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.huodong-content {
margin-bottom: 40px;
}
.huodong-content p {
line-height: 1.8;
margin-bottom: 16px;
color: #333;
}
.huodong-content h2,
.huodong-content h3 {
margin-top: 30px;
margin-bottom: 15px;
color: #222;
}
.huodong-content h2 {
font-size: 24px;
border-left: 4px solid #0073aa;
padding-left: 10px;
}
.huodong-content h3 {
font-size: 20px;
}
.huodong-content ul,
.huodong-content ol {
margin-bottom: 16px;
padding-left: 20px;
}
.huodong-content li {
line-height: 1.6;
margin-bottom: 8px;
} .huodong-info-box {
background-color: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 8px;
padding: 20px;
margin-bottom: 30px;
}
.huodong-info-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 15px;
color: #495057;
}
.huodong-info-list {
list-style: none;
padding: 0;
margin: 0;
}
.huodong-info-list li {
display: flex;
justify-content: space-between;
padding: 8px 0;
border-bottom: 1px solid #e9ecef;
}
.huodong-info-list li:last-child {
border-bottom: none;
}
.huodong-info-label {
font-weight: 500;
color: #6c757d;
}
.huodong-info-value {
color: #495057;
} .participants-section {
margin-bottom: 40px;
}
.participants-title {
font-size: 24px;
margin-bottom: 20px;
color: #333;
}
.participants-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 15px;
}
.participant-card {
background-color: #fff;
border: 1px solid #eee;
border-radius: 6px;
padding: 15px;
text-align: center;
transition: box-shadow 0.3s ease;
}
.participant-card:hover {
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.participant-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
margin: 0 auto 10px;
background-color: #f0f0f0;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: #666;
}
.participant-name {
font-weight: 500;
margin-bottom: 5px;
}
.participant-role {
font-size: 14px;
color: #666;
} .comments-section {
margin-top: 50px;
border-top: 2px solid #eee;
padding-top: 30px;
}
.comments-title {
font-size: 24px;
margin-bottom: 20px;
color: #333;
}
.comment-form {
background-color: #f8f9fa;
padding: 20px;
border-radius: 8px;
margin-bottom: 30px;
}
.comment-form textarea {
width: 100%;
min-height: 100px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
resize: vertical;
font-family: inherit;
}
.comment-form button {
background-color: #0073aa;
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
margin-top: 10px;
font-size: 14px;
}
.comment-form button:hover {
background-color: #005177;
}
.comments-list {
list-style: none;
padding: 0;
}
.comment-item {
padding: 20px;
border-bottom: 1px solid #eee;
}
.comment-item:last-child {
border-bottom: none;
}
.comment-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
.comment-author {
font-weight: 500;
color: #333;
}
.comment-date {
font-size: 14px;
color: #666;
}
.comment-content {
line-height: 1.6;
color: #555;
} @media (max-width: 768px) {
.huodong-archive-container,
.huodong-container {
padding: 15px;
}
.huodong-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.huodong-title {
font-size: 24px;
}
.huodong-meta {
flex-direction: column;
gap: 8px;
}
.huodong-card-footer {
flex-direction: column;
gap: 10px;
align-items: flex-start;
}
.participants-grid {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 10px;
}
.comment-form {
padding: 15px;
}
}
@media (max-width: 480px) {
.huodong-card-content {
padding: 15px;
}
.huodong-card-title {
font-size: 18px;
}
.participants-grid {
grid-template-columns: 1fr 1fr;
}
}  .map-info-window {
font-family: Arial, sans-serif;
padding: 15px;
max-width: 300px;
}
.map-info-window a.info-title-link {
display: block;
text-decoration: none;
color: #2196F3;
font-weight: bold;
margin-bottom: 15px;
padding: 10px;
background-color: #E3F2FD;
border-radius: 8px;
text-align: center;
transition: all 0.3s ease;
border: 2px solid #90CAF9;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.map-info-window a.info-title-link:hover {
background-color: #BBDEFB;
transform: scale(1.02);
}
.map-info-window h5.info-title {
margin: 0;
font-size: 18px;
}
.map-info-window .info-details {
background-color: #f5f5f5;
padding: 12px;
border-radius: 8px;
}
.map-info-window .info-text {
margin: 8px 0;
font-size: 14px;
}
.map-info-window .info-text a {
color: #2196F3;
text-decoration: none;
font-weight: bold;
}
.map-info-window button.nav-button {
width: 100%;
margin-top: 12px;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
transition: background-color 0.3s ease;
}
.map-info-window button.nav-button:hover {
background-color: #45a049;
} @media (max-width: 768px) {
body {
padding-bottom: 80px;
} .mobile-bottom-nav {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.95); border-top: 1px solid #e9ecef;
box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
z-index: 1000;
padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}
.mobile-nav-items {
display: flex;
justify-content: space-around;
align-items: center;
max-width: 100%;
margin: 0 auto;
padding: 0 10px;
}
.mobile-nav-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-decoration: none;
color: #6c757d;
transition: all 0.3s ease;
padding: 8px 4px;
border-radius: 12px;
min-width: 50px;
position: relative;
}
.mobile-nav-item:hover,
.mobile-nav-item.active {
color: #6a11cb;
background: rgba(106, 17, 203, 0.1);
transform: translateY(-2px);
text-decoration: none;
}
.mobile-nav-item .nav-icon {
font-size: 20px;
margin-bottom: 2px;
transition: all 0.3s ease;
}
.mobile-nav-item:hover .nav-icon,
.mobile-nav-item.active .nav-icon {
transform: scale(1.1);
color: #6a11cb;
}
.mobile-nav-item .nav-text {
font-size: 10px;
font-weight: 500;
line-height: 1;
text-align: center;
white-space: nowrap;
} .mobile-nav-item.center-btn {
background: linear-gradient(135deg, #6a11cb, #2575fc);
color: white;
border-radius: 50%;
width: 56px;
height: 56px;
margin-top: -20px;
box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
}
.mobile-nav-item.center-btn:hover {
background: linear-gradient(135deg, #2575fc, #6a11cb);
transform: translateY(-4px) scale(1.05);
box-shadow: 0 6px 20px rgba(106, 17, 203, 0.4);
}
.mobile-nav-item.center-btn .nav-icon {
font-size: 24px;
margin-bottom: 0;
}
.mobile-nav-item.center-btn .nav-text {
display: none;
} .mobile-nav-item .badge {
position: absolute;
top: 2px;
right: 8px;
background: #dc3545;
color: white;
border-radius: 50%;
width: 16px;
height: 16px;
font-size: 10px;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
}
@media (max-width: 480px) {
.mobile-nav-items {
padding: 0 5px;
}
.mobile-nav-item {
min-width: 45px;
padding: 6px 2px;
}
.mobile-nav-item .nav-icon {
font-size: 18px;
}
.mobile-nav-item .nav-text {
font-size: 9px;
}
.mobile-nav-item.center-btn {
width: 50px;
height: 50px;
margin-top: -18px;
}
}:root { --th-primary: #B8860B; --th-primary-dark: #8B6914; --th-primary-light: #DAA520;  --th-secondary: #8B4513; --th-secondary-dark: #654321; --th-secondary-light: #A0522D; --th-accent: #CD853F;  --th-action: #2E8B57; --th-action-dark: #228B22; --th-action-light: #3CB371;  --th-reward: #FF8C00; --th-reward-dark: #E67E00; --th-reward-light: #FFB347;  --th-info: #1E90FF; --th-info-dark: #1C6EA4; --th-info-light: #4FA9E1;  --th-dark: #F5F5DC; --th-dark-light: #FAEBD7; --th-text: #2C1810; --th-text-muted: #5D4037; --th-card-bg: rgba(250, 235, 215, 0.95); --th-border: rgba(212, 175, 55, 0.1);
--th-radius: 12px;
--th-shadow: 0 4px 20px rgba(139, 69, 19, 0.15);
} .reveal {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
opacity: 1;
transform: translateY(0);
} .th-btn, .th-route-card, .th-treasure-card, .poi-item, .th-entrance-card {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.th-btn:active {
transform: scale(0.95);
} .th-btn-primary {
position: relative;
overflow: hidden;
}
.th-btn-primary::after {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
transform: rotate(45deg);
transition: 0.5s;
}
.th-btn-primary:hover::after {
left: 120%;
} .th-route-card:hover, .th-treasure-card:hover {
transform: translateY(-8px) scale(1.02);
box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
} .th-tabs-header {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 2rem;
border-bottom: 2px solid rgba(212, 175, 55, 0.1);
padding-bottom: 1rem;
}
.th-section-info {
text-align: left;
}
.th-tabs {
display: flex;
gap: 0.5rem;
background: rgba(139, 69, 19, 0.05);
padding: 4px;
border-radius: 50px;
}
.th-tab-btn {
padding: 0.6rem 1.5rem;
border-radius: 50px;
border: none;
background: transparent;
color: var(--th-text-muted);
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
font-size: 0.9rem;
}
.th-tab-btn.active {
background: var(--th-primary);
color: #fff;
box-shadow: 0 4px 10px rgba(203, 187, 134, 0.3);
} .th-hero-search {
margin-top: 2.5rem;
max-width: 500px;
}
.th-hero-search form {
display: flex;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
padding: 6px;
border-radius: 50px;
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.th-hero-search input {
flex: 1;
background: transparent;
border: none;
padding: 0.8rem 1.5rem;
color: #fff;
font-size: 1rem;
outline: none;
}
.th-hero-search input::placeholder {
color: rgba(255, 255, 255, 0.7);
}
.th-hero-search button {
background: var(--th-primary);
color: #fff;
border: none;
padding: 0.8rem 1.8rem;
border-radius: 50px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s;
display: flex;
align-items: center;
gap: 0.5rem;
}
.th-hero-search button:hover {
background: var(--th-primary-light);
transform: scale(1.05);
}
.th-tab-pane {
display: none;
animation: fadeIn 0.5s ease;
}
.th-tab-pane.active {
display: block;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.activity-image-wrapper {
background: #f0f0f0 !important;
display: flex !important;
align-items: center;
justify-content: center;
overflow: hidden;
}
.th-activity-img {
width: 100%;
height: 100%;
object-fit: cover;
}
.th-activity-placeholder {
font-size: 3rem;
opacity: 0.3;
}
.th-route-placeholder {
font-size: 3rem;
opacity: 0.3;
}
.status-ongoing { background: #4CAF50 !important; }
.status-planning { background: #FF9800 !important; }
.status-completed { background: #9E9E9E !important; }
@media (max-width: 768px) {
.th-tabs-header {
flex-direction: column;
align-items: center;
gap: 1.5rem;
text-align: center;
}
.th-section-info {
text-align: center;
}
} .treasure-home {
font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--th-dark);
color: var(--th-text);
line-height: 1.6;
min-height: 100vh;
}
.treasure-home * {
box-sizing: border-box;
}
.th-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}
.th-center {
text-align: center;
margin-top: 2rem;
} .th-main {
padding-top: 0;
} .th-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 1rem 2rem;
border-radius: var(--th-radius);
font-size: 1rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
cursor: pointer;
border: none;
}
.th-btn-primary {
background: linear-gradient(135deg, var(--th-primary), var(--th-primary-dark));
color: #fff;
box-shadow:
0 4px 20px rgba(184, 134, 11, 0.4),
inset 0 1px 2px rgba(255, 255, 255, 0.3);
border: 1px solid var(--th-primary-dark);
font-weight: 700;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.th-btn-primary:hover {
transform: translateY(-2px);
box-shadow:
0 6px 30px rgba(184, 134, 11, 0.5),
inset 0 1px 2px rgba(255, 255, 255, 0.4);
color: #fff;
background: linear-gradient(135deg, var(--th-primary-light), var(--th-primary));
}
.th-btn-secondary {
background: rgba(139, 69, 19, 0.08);
color: var(--th-secondary);
border: 2px solid var(--th-secondary);
font-weight: 600;
}
.th-btn-secondary:hover {
background: var(--th-secondary);
border-color: var(--th-secondary-dark);
color: var(--th-dark-light);
box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
} .th-section-header {
text-align: center;
margin-bottom: 1rem;
}
.th-section-tag {
display: inline-block;
background: rgba(232, 168, 56, 0.15);
color: var(--th-primary);
padding: 0.4rem 1rem;
border-radius: 50px;
font-size: 0.85rem;
font-weight: 500;
margin-bottom: 1rem;
}
.th-section-title {
font-size: clamp(1.5rem, 4vw, 2.25rem);
font-weight: 700;
color: var(--th-text);
margin: 0;
}
.th-section-desc {
color: var(--th-text-muted);
margin-top: 0.75rem;
} .text-action { color: var(--th-action) !important; }
.text-reward { color: var(--th-reward) !important; }
.text-info-blue { color: var(--th-info) !important; }
.text-gold { color: var(--th-primary) !important; }
.bg-action { background-color: var(--th-action) !important; }
.bg-reward { background-color: var(--th-reward) !important; }
.bg-info-blue { background-color: var(--th-info) !important; } .th-btn-reward {
background: linear-gradient(135deg, var(--th-reward), var(--th-reward-dark));
color: #fff;
box-shadow: 0 4px 20px rgba(255, 140, 0, 0.4);
border: 1px solid var(--th-reward-dark);
}
.th-btn-reward:hover {
background: linear-gradient(135deg, var(--th-reward-light), var(--th-reward));
transform: translateY(-2px);
} .th-btn-info {
background: linear-gradient(135deg, var(--th-info), var(--th-info-dark));
color: #fff;
box-shadow: 0 4px 20px rgba(74, 144, 217, 0.4);
border: 1px solid var(--th-info-dark);
}
.th-btn-info:hover {
background: linear-gradient(135deg, var(--th-info-light), var(--th-info));
transform: translateY(-2px);
} .th-btn-outline {
background: transparent;
border: 2px solid var(--th-primary);
color: var(--th-primary);
}
.th-btn-outline:hover {
background: var(--th-primary);
color: #fff;
} .th-hero-stats {
display: flex;
gap: 2rem;
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid var(--th-border);
}
.th-stat-item {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.th-stat-value {
font-size: 1.75rem;
font-weight: 700;
color: var(--th-primary-dark);
}
.th-stat-label {
font-size: 0.85rem;
color: var(--th-text-muted);
} .th-howto {
padding: 4rem 0;
background: var(--th-dark-light);
}
.th-steps-row {
display: flex;
align-items: stretch;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
}
.th-step-card {
flex: 1;
min-width: 250px;
max-width: 320px;
background: var(--th-card-bg);
border-radius: var(--th-radius);
padding: 1.5rem;
text-align: center;
box-shadow: var(--th-shadow);
border: 1px solid var(--th-border);
position: relative;
}
.th-step-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
width: 36px;
height: 36px;
background: var(--th-action);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.1rem;
}
.th-step-img-placeholder {
width: 100%;
height: 140px;
background: linear-gradient(135deg, #e0d5c5, #d4c9b9);
border-radius: 8px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.5rem;
color: var(--th-text-muted);
margin-bottom: 1rem;
border: 2px dashed var(--th-border);
}
.th-step-img-placeholder i {
font-size: 2rem;
opacity: 0.5;
}
.th-step-img-placeholder span {
font-size: 0.8rem;
opacity: 0.6;
}
.th-step-arrow {
display: flex;
align-items: center;
color: var(--th-primary);
font-size: 1.5rem;
}
.th-step-title {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.th-step-desc {
font-size: 0.9rem;
color: var(--th-text-muted);
margin: 0;
} .th-map-section {
padding: 0.5rem 0 0;
}
.th-map-fullwidth {
display: block;
text-decoration: none;
}
.th-map-large {
width: 100%;
height: 700px;
min-height: 500px;
position: relative;
} .map-scroll-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.3);
backdrop-filter: blur(2px);
display: flex;
align-items: center;
justify-content: center;
z-index: 50;
cursor: pointer;
transition: opacity 0.3s;
}
.map-scroll-hint {
background: rgba(255, 255, 255, 0.95);
padding: 1.5rem 2rem;
border-radius: 12px;
text-align: center;
font-size: 1.1rem;
font-weight: 600;
color: var(--th-text);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
border: 2px solid var(--th-primary);
}
.map-scroll-hint i {
font-size: 2rem;
color: var(--th-primary);
display: block;
margin-bottom: 0.5rem;
animation: bounce 2s infinite;
}
.map-scroll-hint small {
display: block;
margin-top: 0.5rem;
font-size: 0.85rem;
font-weight: 400;
color: rgba(62, 39, 35, 0.7);
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-10px);
}
60% {
transform: translateY(-5px);
}
} .map-ctrl-hint {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(33, 150, 243, 0.95);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 8px;
font-size: 0.9rem;
font-weight: 600;
z-index: 100;
pointer-events: none;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
transition: opacity 0.3s;
}
.map-ctrl-hint i {
margin-right: 0.5rem;
}
.th-map-info-bar {
background: rgba(62, 39, 35, 0.95);
padding: 1rem 2rem;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
flex-wrap: wrap;
}
.th-map-stat {
display: flex;
align-items: center;
gap: 0.5rem;
color: #fff;
}
.th-map-stat-icon {
font-size: 1.25rem;
}
.th-map-stat-value {
font-size: 1.25rem;
font-weight: 700;
color: var(--th-primary-light);
}
.th-map-stat-label {
font-size: 0.85rem;
opacity: 0.8;
}
.th-ticker-inline {
flex: 1;
color: rgba(255,255,255,0.8);
font-size: 0.9rem;
}
.th-map-cta-text {
color: var(--th-action-light);
font-weight: 600;
}
.th-map-fullwidth:hover .th-map-info-bar {
background: var(--th-action);
} .th-social-proof {
padding: 4rem 0;
}
.th-stories-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.th-story-card {
background: var(--th-card-bg);
border-radius: var(--th-radius);
overflow: hidden;
box-shadow: var(--th-shadow);
border: 1px solid var(--th-border);
}
.th-story-img-placeholder {
width: 100%;
height: 180px;
background: linear-gradient(135deg, #e0d5c5, #d4c9b9);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.5rem;
color: var(--th-text-muted);
}
.th-story-img-placeholder i {
font-size: 2.5rem;
opacity: 0.4;
}
.th-story-content {
padding: 1.25rem;
}
.th-story-author {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.75rem;
}
.th-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
}
.th-story-author strong {
display: block;
font-size: 0.95rem;
}
.th-story-author span {
font-size: 0.8rem;
color: var(--th-text-muted);
}
.th-story-text {
font-size: 0.95rem;
color: var(--th-text);
line-height: 1.6;
margin: 0;
} .th-trust {
padding: 3rem 0;
background: var(--th-dark-light);
}
.th-trust-grid {
display: flex;
justify-content: center;
gap: 3rem;
flex-wrap: wrap;
}
.th-trust-item {
display: flex;
align-items: center;
gap: 1rem;
}
.th-trust-icon {
font-size: 2rem;
color: var(--th-action);
}
.th-trust-text strong {
display: block;
font-size: 1rem;
color: var(--th-text);
}
.th-trust-text span {
font-size: 0.85rem;
color: var(--th-text-muted);
} @media (max-width: 900px) {
.th-hero-stats {
justify-content: space-around;
}
.th-step-arrow {
display: none;
}
.th-steps-row {
flex-direction: column;
align-items: center;
}
.th-map-info-bar {
flex-direction: column;
text-align: center;
padding: 0.75rem 1rem; gap: 0.75rem;
} .th-live-ticker {
display: none !important;
} .th-map-stat {
justify-content: center;
padding: 0.5rem 0;
} .th-map-actions {
width: 100%;
display: flex;
gap: 0.5rem;
justify-content: center;
}
.th-map-actions .th-btn {
flex: 1;
max-width: 150px;
font-size: 0.85rem;
padding: 0.5rem 0.75rem;
}
}
background: linear-gradient(135deg, var(--th-info-light), var(--th-info));
transform: translateY(-2px);
}  .th-badge-urgent {
background: rgba(255, 69, 0, 0.1) !important;
border: 1px solid rgba(255, 69, 0, 0.3) !important;
color: #FF4500 !important;
animation: thPulse 2s infinite;
display: inline-block;
margin-bottom: 1.5rem;
}
@keyframes thPulse {
0% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.4); }
70% { box-shadow: 0 0 0 10px rgba(255, 69, 0, 0); }
100% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); }
}
.th-urgent-text {
color: #fff;
font-weight: 700;
text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
} .th-hero-left {
display: flex;
flex-direction: column;
justify-content: center;
padding: 2.5rem; }
.th-hero-right {
display: flex;
justify-content: center; align-items: center;
}
.th-hero-action-card {
background: rgba(216, 212, 212, 0.75); backdrop-filter: blur(15px); padding: 2.5rem;
border-radius: 16px;
box-shadow:
0 15px 50px rgba(197, 0, 0, 1),
0 0 0 1px rgba(184, 134, 11, 0.3); width: 100%;
max-width: 450px;
text-align: center;
border: 2px solid rgba(184, 134, 11, 0.4);
}
.th-hero-action {
margin-bottom: 1rem;
}
.th-btn-large {
padding: 1.2rem 2rem;
font-size: 1.2rem;
border-radius: 50px;
box-shadow: 0 10px 30px rgba(46, 139, 87, 0.4);
width: 100%; }
.th-hero-secondary {
margin-bottom: 2rem;
}
.th-link-subtle {
color: rgba(255, 255, 255, 0.9);
font-size: 0.9rem;
} .th-hero-guide {
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid rgba(139, 69, 19, 0.2);
text-align: left;
}
.th-guide-title {
font-size: 1rem;
font-weight: 700;
color: var(--th-text);
margin-bottom: 1rem;
}
.th-guide-steps {
display: flex;
flex-direction: column;
gap: 0.75rem;
margin-bottom: 1rem;
}
.th-guide-step {
display: flex;
align-items: center;
gap: 0.75rem;
}
.th-step-num {
display: inline-flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
background: var(--th-primary);
color: #1A1A1A;
border-radius: 50%;
font-size: 0.875rem;
font-weight: 700;
flex-shrink: 0;
}
.th-step-content {
display: flex;
align-items: center;
gap: 0.5rem;
flex: 1;
}
.th-step-icon {
color: var(--th-primary-light);
font-size: 1rem;
}
.th-step-text {
color: var(--th-text);
font-size: 0.9rem;
}
.th-guide-more {
display: inline-block;
color: var(--th-primary);
font-size: 0.875rem;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
}
.th-guide-more:hover {
color: var(--th-primary-dark);
transform: translateX(4px);
}
.th-link-subtle:hover {
color: #fff;
border-color: #fff;
}
.th-search-subtle {
opacity: 0.95;
}
.th-hero-search-form {
background: rgba(255, 255, 255, 0.9); border: none;
} .th-animate-up {
animation: thFadeInUp 0.8s ease-out forwards;
opacity: 0; }
@keyframes thFadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
} .th-map-wrapper {
position: relative;
border-radius: var(--th-radius);
overflow: hidden;
box-shadow: var(--th-shadow);
}
.th-map-actions {
display: flex;
gap: 0.5rem;
}
.th-btn-xs {
padding: 0.4rem 0.8rem;
font-size: 0.85rem;
border-radius: 6px;
} .th-btn-text-action {
display: inline-block;
margin-top: 1rem;
color: var(--th-action);
font-weight: 600;
text-decoration: none;
font-size: 0.9rem;
}
.th-btn-text-action:hover {
text-decoration: underline;
}  @media (max-width: 900px) {
.th-hero {
min-height: auto;
padding: 4rem 1rem 2rem;
}
.th-hero-container {
grid-template-columns: 1fr; gap: 2rem;
text-align: center;
}
.th-hero-left {
align-items: center; padding: 1.5rem;
}
.th-hero-right {
width: 100%;
}
.th-hero-action-card {
padding: 1.5rem;
max-width: 100%;
}
.th-hero-title {
font-size: 1.8rem;
margin-bottom: 1rem;
}
.th-hero-subtitle {
font-size: 1rem;
margin-bottom: 1.5rem;
}
.th-hero-subtitle br {
display: none;
}
.th-hero-search {
margin-top: 1.5rem;
max-width: 100%;
}
.th-hero-search form {
flex-direction: column;
gap: 0.75rem;
padding: 0.75rem;
border-radius: 12px;
}
.th-hero-search input {
padding: 0.75rem 1rem;
border-radius: 8px;
background: rgba(255, 255, 255, 0.25);
font-size: 0.95rem;
}
.th-hero-search button {
width: 100%;
padding: 0.9rem 1.5rem;
border-radius: 8px;
justify-content: center;
font-size: 0.95rem;
}
.th-guide-steps {
gap: 0.75rem;
}
.th-guide-step {
flex-direction: row;
gap: 0.5rem;
padding: 0.5rem 0;
}
.th-step-num {
width: 24px;
height: 24px;
font-size: 0.8rem;
flex-shrink: 0;
}
.th-step-content {
gap: 0.5rem;
text-align: left;
}
.th-step-icon {
font-size: 0.9rem;
}
.th-step-text {
font-size: 0.85rem;
}
.th-guide-title {
font-size: 0.95rem;
}
}
@media (max-width: 600px) {
.th-hero {
padding: 3rem 0.75rem 1.5rem;
}
.th-hero-left {
padding: 1rem;
}
.th-hero-title {
font-size: 1.5rem;
}
.th-hero-subtitle {
font-size: 0.9rem;
}
.th-hero-action-card {
padding: 1.25rem;
}
.th-btn-large {
padding: 0.9rem 1.5rem;
font-size: 1rem;
}
}
.th-btn-mini-action {
display: inline-block;
background: rgba(46, 139, 87, 0.1);
color: var(--th-action);
padding: 0.2rem 0.6rem;
border-radius: 4px;
font-size: 0.75rem;
font-weight: 600;
margin-top: 0.5rem;
}
.th-treasure-cta {
margin-top: 0.5rem;
font-size: 0.8rem;
color: var(--th-primary-dark);
font-weight: 600;
} .th-cooperation-simple {
padding: 2rem 0;
background: #fff;
border-top: 1px solid var(--th-border);
}
.th-coop-banner {
display: flex;
align-items: center;
justify-content: space-between;
background: rgba(244, 232, 208, 0.3);
padding: 1.5rem 2rem;
border-radius: 12px;
border: 1px dashed var(--th-border);
}
.th-coop-text h3 {
font-size: 1.1rem;
margin: 0 0 0.25rem 0;
color: var(--th-text);
}
.th-coop-text p {
margin: 0;
font-size: 0.9rem;
color: var(--th-text-muted);
}
.th-btn-sm {
padding: 0.5rem 1rem;
font-size: 0.9rem;
}
@media (max-width: 768px) {
.th-coop-banner {
flex-direction: column;
text-align: center;
gap: 1rem;
}
} .th-hero {
min-height: 650px; padding: 6rem 1.5rem 3rem; display: flex;
align-items: center;
position: relative;
overflow: hidden;
}
.th-hero-bg {
position: absolute;
inset: 0;
background:
radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
radial-gradient(ellipse at 70% 80%, rgba(139, 69, 19, 0.15) 0%, transparent 50%),
linear-gradient(135deg, #F4E8D0 0%, #EDD9B4 100%);
}
.th-hero-bg::before {
content: '';
position: absolute;
inset: 0;
background:
repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 69, 19, 0.02) 2px, rgba(139, 69, 19, 0.02) 4px),
repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(139, 69, 19, 0.02) 2px, rgba(139, 69, 19, 0.02) 4px),
url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='5'/%3E%3CfeColorMatrix values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
opacity: 0.15;
}
.th-hero-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
position: relative;
z-index: 1;
width: 100%;
}
.th-hero-content {
animation: thFadeInUp 0.8s ease-out;
}
@keyframes thFadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.th-hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: rgba(232, 168, 56, 0.15);
border: 1px solid rgba(232, 168, 56, 0.3);
padding: 0.5rem 1rem;
border-radius: 50px;
font-size: 0.85rem;
color: var(--th-primary);
margin-bottom: 1.5rem;
}
.th-pulse-dot {
width: 8px;
height: 8px;
background: var(--th-secondary);
border-radius: 50%;
animation: thPulse 2s infinite;
}
@keyframes thPulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.th-hero-title {
font-size: clamp(2rem, 6vw, 3.5rem);
font-weight: 700;
line-height: 1.2;
margin: 0 0 1.5rem 0;
color: #fff;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.th-highlight { color: #fff;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.th-highlight-secondary {
color: #ebf9c6ff;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.th-hero-subtitle {
font-size: 1.25rem;
color: rgba(255, 255, 255, 0.9);
margin: 0 0 2rem 0;
text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}
.th-hero-features {
display: flex;
flex-direction: column;
gap: 0.75rem;
margin-bottom: 2rem;
}
.th-hero-badges {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 1.5rem;
}
.th-badge {
display: inline-flex;
align-items: center;
gap: 0.3rem;
background: rgba(255, 255, 255, 0.6);
backdrop-filter: blur(4px);
padding: 0.4rem 0.8rem;
border-radius: 50px;
font-size: 0.85rem;
color: var(--th-text);
border: 1px solid rgba(212, 175, 55, 0.3);
white-space: nowrap;
} .th-hero-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
} .th-btn:focus,
.th-search-input:focus,
.th-hero-visual:focus {
outline: 3px solid var(--th-info);
outline-offset: 2px;
} a.th-hero-visual {
display: block;
text-decoration: none;
transition: transform 0.3s;
}
a.th-hero-visual:hover {
transform: scale(1.02);
}
.th-hero-visual {
animation: thFadeInUp 0.8s ease-out 0.2s both;
width: 100%;
position: relative;
} .th-map-preview::before {
content: '👆 点击探索地图';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(46, 139, 87, 0.95);
color: #fff;
padding: 1rem 2rem;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
z-index: 10;
opacity: 0;
transition: all 0.3s;
pointer-events: none;
box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.th-map-preview:hover::before {
opacity: 1;
transform: translate(-50%, -50%) scale(1.05);
}
.th-map-preview {
cursor: pointer;
}
.th-map-preview {
width: 100%;
height: 600px;
background: var(--th-card-bg);
border: 3px solid var(--th-primary-dark);
border-radius: 20px;
overflow: hidden;
position: relative;
box-shadow:
0 10px 40px rgba(139, 69, 19, 0.25),
inset 0 3px 10px rgba(212, 175, 55, 0.2);
}
#map8 {
position: absolute !important;
top: 0 !important;
left: 0 !important;
width: 100% !important;
height: 100% !important;
border-radius: 17px;
z-index: 1;
}
.th-map-grid {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(139, 69, 19, 0.15) 1px, transparent 1px),
linear-gradient(90deg, rgba(139, 69, 19, 0.15) 1px, transparent 1px);
background-size: 30px 30px;
opacity: 0.4;
z-index: 0;
pointer-events: none;
}
.th-map-markers {
position: absolute;
inset: 0;
}
.th-map-marker {
position: absolute;
width: 16px;
height: 16px;
background: var(--th-primary);
border-radius: 50%;
animation: thMarkerPulse 2s ease-in-out infinite;
}
.th-map-marker::after {
content: '';
position: absolute;
inset: -6px;
border: 2px solid var(--th-primary);
border-radius: 50%;
animation: thMarkerRing 2s ease-out infinite;
}
.th-map-marker:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.th-map-marker:nth-child(2) { top: 40%; left: 55%; animation-delay: 0.5s; }
.th-map-marker:nth-child(3) { top: 60%; left: 25%; animation-delay: 1s; }
.th-map-marker:nth-child(4) { top: 35%; left: 70%; animation-delay: 1.5s; }
.th-map-marker:nth-child(5) { top: 70%; left: 60%; animation-delay: 0.8s; }
@keyframes thMarkerPulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.2); }
}
@keyframes thMarkerRing {
0% { transform: scale(1); opacity: 0.6; }
100% { transform: scale(2); opacity: 0; }
}  .th-hero-search-container {
margin-bottom: 2rem;
max-width: 500px;
}
.th-hero-search-form {
position: relative;
display: flex;
background: #fff;
border-radius: 50px;
padding: 0.5rem;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
border: 1px solid rgba(212, 175, 55, 0.3);
transition: all 0.3s;
}
.th-hero-search-form:focus-within {
box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
transform: translateY(-2px);
border-color: var(--th-primary);
}
.th-search-icon {
position: absolute;
left: 1.2rem;
top: 50%;
transform: translateY(-50%);
color: var(--th-primary);
font-size: 1.1rem;
}
.th-search-input {
flex: 1;
border: none;
padding: 0.8rem 1rem 0.8rem 2.5rem;
font-size: 1rem;
color: #333;
outline: none;
background: transparent;
}
.th-search-btn {
background: var(--th-primary);
color: #fff;
border: none;
padding: 0.6rem 1.5rem;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}
.th-search-btn:hover {
background: var(--th-primary-dark);
} .th-live-ticker {
flex: 1;
overflow: hidden;
position: relative;
padding: 0 1rem;
max-width: none;
}
.th-ticker-content {
display: inline-block;
animation: thTickerScroll 30s linear infinite;
white-space: nowrap;
}
.th-ticker-item {
display: inline-block;
margin-right: 3rem;
color: rgba(255, 255, 255, 0.9);
font-size: 0.875rem;
}
.th-ticker-item i {
color: var(--th-primary-light);
margin-right: 0.25rem;
}
.th-ticker-item strong {
color: var(--th-primary-light);
}
.th-ticker-item em {
color: rgba(255, 255, 255, 0.7);
font-style: normal;
}
.th-ticker-time {
color: rgba(255, 255, 255, 0.5);
font-size: 0.75rem;
margin-left: 0.5rem;
}
@keyframes thTickerScroll {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
} .o2o-steps {
display: flex;
justify-content: space-between;
align-items: flex-start; gap: 1rem;
}
.th-step-visual {
position: relative;
width: 100px;
height: 100px;
margin: 0 auto 1.5rem;
display: flex;
align-items: center;
justify-content: center;
}
.th-step-icon-main {
font-size: 3.5rem;
color: var(--th-primary);
z-index: 1;
}
.th-step-icon-sub {
position: absolute;
bottom: -5px;
right: -5px;
font-size: 1.8rem;
color: var(--th-secondary);
background: #fff;
border-radius: 50%;
padding: 5px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
z-index: 2;
} .th-trust-section {
border-top: 1px solid rgba(139, 69, 19, 0.1);
padding-top: 2rem;
}
.th-trust-grid {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 1.5rem;
}
.th-trust-item {
display: flex;
align-items: center;
gap: 0.75rem;
background: rgba(255, 255, 255, 0.5);
padding: 0.75rem 1.25rem;
border-radius: 50px;
border: 1px solid rgba(46, 139, 87, 0.2);
}
.th-trust-icon {
color: #2E8B57; font-size: 1.25rem;
}
.th-trust-text {
display: flex;
flex-direction: column;
line-height: 1.2;
}
.th-trust-text strong {
font-size: 0.9rem;
color: #2E8B57;
}
.th-trust-text span {
font-size: 0.75rem;
color: var(--th-text-muted);
}
.th-step-arrow {
align-self: center;
font-size: 1.5rem;
color: var(--th-primary-light);
opacity: 0.5;
}
@media (max-width: 768px) {
.o2o-steps {
flex-direction: column;
align-items: center;
}
.th-step-arrow {
transform: rotate(90deg);
margin: 1rem 0;
}
}
.th-map-label {
position: absolute;
bottom: 1.5rem;
left: 1.5rem;
right: 1.5rem;
background: rgba(139, 69, 19, 0.95);
backdrop-filter: blur(15px);
padding: 1.25rem 1.5rem;
border-radius: 12px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 1rem;
color: var(--th-dark-light);
border: 2px solid rgba(212, 175, 55, 0.5);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
z-index: 10;
pointer-events: none;
}
.th-map-label strong {
color: var(--th-primary-light);
font-size: 1.5rem;
font-weight: 700;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
} .th-features {
padding: 4rem 1.5rem;
background: var(--th-dark-light);
}
.th-features-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
max-width: 1000px;
margin: 0 auto;
}
.th-feature-card {
background: var(--th-card-bg);
border: 2px solid var(--th-border);
border-radius: 16px;
padding: 2rem 1.5rem;
text-align: center;
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
color: inherit;
box-shadow:
0 4px 15px rgba(139, 69, 19, 0.1),
inset 0 1px 3px rgba(212, 175, 55, 0.1);
}
.th-feature-card:hover {
transform: translateY(-8px);
border-color: var(--th-primary);
box-shadow:
0 8px 30px rgba(212, 175, 55, 0.3),
inset 0 1px 3px rgba(212, 175, 55, 0.2);
color: var(--th-text);
background: var(--th-dark-light);
}
.th-feature-icon {
width: 64px;
height: 64px;
margin: 0 auto 1rem;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
}
.th-icon-map { background: linear-gradient(135deg, var(--th-primary), var(--th-primary-dark)); }
.th-icon-route { background: linear-gradient(135deg, var(--th-secondary), var(--th-secondary-dark)); }
.th-icon-publish { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.th-icon-challenge { background: linear-gradient(135deg, var(--th-accent), #E64A2E); }
.th-feature-title {
font-size: 1.1rem;
font-weight: 600;
margin: 0 0 0.5rem 0;
}
.th-feature-desc {
font-size: 0.85rem;
color: var(--th-text-muted);
margin: 0;
} .th-howto {
padding: 5rem 1.5rem;
background: var(--th-dark);
}
.th-steps {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
max-width: 1000px;
margin: 0 auto;
}
.th-step-card {
background: var(--th-card-bg);
border: 1px solid var(--th-border);
border-radius: 20px;
padding: 2rem;
text-align: center;
position: relative;
}
.th-step-number {
position: absolute;
top: -16px;
left: 50%;
transform: translateX(-50%);
width: 32px;
height: 32px;
background: var(--th-primary);
color: var(--th-dark);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1rem;
}
.th-step-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
.th-step-title {
font-size: 1.1rem;
font-weight: 600;
margin: 0 0 0.5rem 0;
}
.th-step-desc {
font-size: 0.9rem;
color: var(--th-text-muted);
margin: 0;
} .th-routes {
padding: 5rem 1.5rem;
background: linear-gradient(180deg, var(--th-dark-light) 0%, var(--th-dark) 100%);
}
.th-routes-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
max-width: 1100px;
margin: 0 auto;
}
.th-route-card {
background: var(--th-card-bg);
border: 1px solid var(--th-border);
border-radius: 20px;
overflow: hidden;
transition: all 0.3s;
cursor: pointer;
text-decoration: none;
color: inherit;
display: block;
}
.th-route-card:hover {
transform: translateY(-5px);
border-color: var(--th-primary);
color: var(--th-text);
}
.th-route-image {
height: 160px;
background: linear-gradient(135deg, rgba(232, 168, 56, 0.2), rgba(45, 139, 90, 0.1));
display: flex;
align-items: center;
justify-content: center;
font-size: 4rem;
position: relative;
}
.th-route-badge {
position: absolute;
top: 1rem;
left: 1rem;
background: var(--th-secondary);
color: white;
padding: 0.25rem 0.75rem;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
}
.th-route-content {
padding: 1.25rem;
}
.th-route-title {
font-size: 1.1rem;
font-weight: 600;
margin: 0 0 0.75rem 0;
}
.th-route-meta {
display: flex;
gap: 1rem;
font-size: 0.85rem;
color: var(--th-text-muted);
} .th-treasures {
padding: 5rem 1.5rem;
background: var(--th-dark);
}
.th-treasures-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
max-width: 1100px;
margin: 0 auto;
}
.th-treasure-card {
background: var(--th-card-bg);
border: 1px solid var(--th-border);
border-radius: 16px;
overflow: hidden;
transition: all 0.3s;
cursor: pointer;
text-decoration: none;
color: inherit;
display: block;
}
.th-treasure-card:hover {
transform: translateY(-5px);
border-color: var(--th-primary);
color: var(--th-text);
}
.th-treasure-image {
height: 160px;
background: linear-gradient(135deg, rgba(232, 168, 56, 0.15), rgba(139, 92, 246, 0.1));
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.th-treasure-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.th-treasure-icon {
font-size: 3rem;
}
.th-treasure-difficulty {
position: absolute;
top: 0.75rem;
right: 0.75rem;
background: rgba(0, 0, 0, 0.6);
padding: 0.25rem 0.5rem;
border-radius: 6px;
font-size: 0.75rem;
}
.th-treasure-hot {
position: absolute;
top: 0.75rem;
left: 0.75rem;
background: var(--th-accent);
color: white;
padding: 0.2rem 0.5rem;
border-radius: 6px;
font-size: 0.7rem;
font-weight: 600;
}
.th-treasure-content {
padding: 1rem;
}
.th-treasure-name {
font-weight: 600;
margin: 0 0 0.5rem 0;
}
.th-treasure-location {
font-size: 0.85rem;
color: var(--th-text-muted);
} .th-community {
padding: 5rem 1.5rem;
background: var(--th-dark-light);
}
.th-stats-banner {
background: linear-gradient(135deg, var(--th-primary), var(--th-primary-dark));
color: var(--th-dark);
padding: 1rem 1.5rem;
border-radius: var(--th-radius);
text-align: center;
max-width: 600px;
margin: 0 auto 2rem;
font-weight: 600;
}
.th-stats-banner span {
font-size: 1.5rem;
font-weight: 700;
}
.th-community-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
max-width: 1100px;
margin: 0 auto;
}
.th-community-card {
background: var(--th-card-bg);
border: 1px solid var(--th-border);
border-radius: 20px;
padding: 1.5rem;
}
.th-card-title {
font-size: 1.1rem;
font-weight: 600;
margin: 0 0 1.25rem 0;
}
.th-activity-list {
list-style: none;
padding: 0;
margin: 0;
}
.th-activity-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.th-activity-item:last-child {
border-bottom: none;
}
.th-activity-avatar img {
border-radius: 50%;
width: 36px;
height: 36px;
}
.th-activity-info {
flex: 1;
min-width: 0;
}
.th-activity-text {
font-size: 0.9rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.th-activity-text strong {
color: var(--th-primary);
}
.th-activity-text a {
color: var(--th-secondary);
text-decoration: none;
}
.th-activity-text a:hover {
text-decoration: underline;
}
.th-activity-time {
font-size: 0.75rem;
color: var(--th-text-muted);
}
.th-leaderboard {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.th-rank-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem;
background: rgba(255, 255, 255, 0.03);
border-radius: var(--th-radius);
transition: all 0.3s;
}
.th-rank-item:hover {
transform: translateX(4px);
background: rgba(255, 255, 255, 0.06);
}
.th-rank-position {
width: 28px;
height: 28px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
font-weight: 700;
}
.th-rank-gold { background: linear-gradient(135deg, #FFD700, #FFA500); color: #1a1a2e; }
.th-rank-silver { background: linear-gradient(135deg, #C0C0C0, #A0A0A0); color: #1a1a2e; }
.th-rank-bronze { background: linear-gradient(135deg, #CD7F32, #8B4513); color: white; }
.th-rank-normal { background: rgba(255, 255, 255, 0.1); }
.th-rank-item img {
border-radius: 50%;
width: 32px;
height: 32px;
}
.th-rank-user {
flex: 1;
font-weight: 500;
}
.th-rank-score {
color: var(--th-primary);
font-weight: 600;
}
.th-more-link {
display: inline-block;
margin-top: 1rem;
color: var(--th-primary);
text-decoration: none;
font-weight: 600;
}
.th-more-link:hover {
text-decoration: underline;
color: var(--th-primary-light);
} .th-cooperation {
padding: 5rem 1.5rem;
background: 
radial-gradient(ellipse at 50% 0%, rgba(232, 168, 56, 0.1) 0%, transparent 50%),
var(--th-dark);
}
.th-coop-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
max-width: 1000px;
margin: 0 auto;
}
.th-coop-card {
background: var(--th-card-bg);
border: 1px solid var(--th-border);
border-radius: 20px;
padding: 2rem;
text-align: center;
transition: all 0.3s;
}
.th-coop-card:hover {
border-color: var(--th-primary);
transform: translateY(-5px);
}
.th-coop-icon {
width: 72px;
height: 72px;
margin: 0 auto 1.25rem;
background: linear-gradient(135deg, var(--th-primary), var(--th-secondary));
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
}
.th-coop-title {
font-size: 1.2rem;
font-weight: 600;
margin: 0 0 0.75rem 0;
}
.th-coop-desc {
font-size: 0.9rem;
color: var(--th-text-muted);
line-height: 1.6;
margin: 0;
} .th-app-section {
padding: 5rem 1.5rem;
background: var(--th-dark-light);
text-align: center;
}
.th-app-content {
max-width: 600px;
margin: 0 auto;
}
.th-qr-code {
width: 180px;
height: 180px;
background: white;
border-radius: 20px;
margin: 0 auto 1.5rem;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
color: #666;
overflow: hidden;
}
.th-qr-code img {
width: 100%;
height: 100%;
object-fit: contain;
}
.th-app-title {
font-size: 1.5rem;
font-weight: 700;
margin: 0 0 0.75rem 0;
}
.th-app-desc {
color: var(--th-text-muted);
margin: 0 0 2rem 0;
}
.th-app-buttons {
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
} .th-more-features {
padding: 5rem 1.5rem;
background: linear-gradient(180deg, var(--th-dark) 0%, var(--th-dark-light) 100%);
}
.th-entrance-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
max-width: 1100px;
margin: 0 auto;
}
.th-entrance-card {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.75rem;
background: rgba(244, 232, 208, 0.3);
border: 1px solid rgba(184, 134, 11, 0.2);
color: var(--th-text);
text-decoration: none;
padding: 2rem 1.5rem;
border-radius: 12px;
transition: all 0.3s;
text-align: center;
}
.th-entrance-card:hover {
transform: translateY(-5px);
background: rgba(212, 175, 55, 0.15);
border-color: var(--th-primary);
box-shadow: 0 8px 24px rgba(184, 134, 11, 0.2);
}
.th-entrance-card i {
font-size: 2.5rem;
color: var(--th-primary);
transition: all 0.3s;
}
.th-entrance-card:hover i {
color: var(--th-primary-dark);
transform: scale(1.1);
}
.th-entrance-card h3 {
font-size: 1.1rem;
font-weight: 600;
color: var(--th-text);
margin: 0;
}
.th-entrance-card p {
font-size: 0.875rem;
color: var(--th-text-muted);
margin: 0;
}
@media (max-width: 768px) {
.th-entrance-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
}
@media (max-width: 600px) {
.th-entrance-grid {
grid-template-columns: 1fr;
}
} .th-fab {
position: fixed;
bottom: 2rem;
right: 2rem;
width: 56px;
height: 56px;
background: linear-gradient(135deg, var(--th-primary), var(--th-primary-dark));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
box-shadow: 0 4px 20px rgba(232, 168, 56, 0.4);
cursor: pointer;
transition: all 0.3s;
z-index: 100;
text-decoration: none;
}
.th-fab:hover {
transform: scale(1.1);
} @media (max-width: 900px) {
.th-hero-container {
grid-template-columns: 1fr;
text-align: center;
gap: 2rem;
}
.th-hero-features {
align-items: center;
}
.th-hero-buttons {
justify-content: center;
}
.th-hero-visual {
max-width: 100%;
margin: 0 auto;
}
.th-map-preview {
height: 500px;
}
.th-features-grid {
grid-template-columns: repeat(2, 1fr);
}
.th-steps {
grid-template-columns: 1fr;
gap: 2.5rem;
}
.th-routes-grid {
grid-template-columns: 1fr;
}
.th-community-grid {
grid-template-columns: 1fr;
}
.th-coop-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 600px) {
.th-hero {
min-height: auto;
padding: 5rem 1rem 3rem;
}
.th-hero-title {
font-size: 1.75rem;
}
.th-hero-subtitle {
font-size: 1rem;
}
.th-hero-buttons {
flex-direction: column;
width: 100%;
}
.th-btn {
width: 100%;
justify-content: center;
}
.th-features-grid {
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.th-feature-card {
padding: 1.25rem 1rem;
} .th-map-preview {
height: 500px !important; margin: 0;
}
#map8 {
height: 100% !important;
}
.th-map-large {
height: 500px !important; min-height: 500px !important;
} .th-hero-title-v2 {
font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
line-height: 1.3 !important;
}
.th-hero-subtitle-v2 {
font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
} .map-scroll-overlay {
display: none !important; }
.map-scroll-toggle-btn {
display: none !important; }
.map-scroll-hint {
display: none !important; } .th-map-info-bar {
flex-direction: column !important;
text-align: center;
padding: 0.75rem 1rem;
gap: 0.75rem;
}
.th-map-stat {
justify-content: center;
padding: 0.5rem 0;
}
.th-live-ticker {
display: none !important; }
.map-scroll-hint i {
font-size: 1.5rem;
}
.map-scroll-hint small {
font-size: 0.75rem;
} .poi-item button {
font-size: 0.7rem !important;
padding: 0.35rem 0.5rem !important;
} .latest-dynamics-section {
padding: 1rem 0.5rem;
gap: 1rem;
margin-top: 1rem;
}
.dynamics-column {
padding: 0.75rem;
border-width: 1px;
}
.poi-list {
gap: 0.5rem;
}
.poi-item {
padding: 0.5rem;
gap: 0.5rem;
}
.poi-image {
width: 50px;
height: 50px;
}
.poi-title {
font-size: 0.85rem;
line-height: 1.3;
}
.poi-meta {
font-size: 0.7rem;
gap: 0.5rem;
}
.poi-meta i {
font-size: 0.65rem;
} .th-map-actions {
display: flex !important;
width: 100%;
gap: 0.5rem;
justify-content: center;
margin-top: 0.5rem;
}
.th-map-actions .th-btn {
flex: 1;
max-width: 150px;
font-size: 0.85rem;
padding: 0.5rem 0.75rem;
}
.th-map-label {
bottom: 1rem;
left: 1rem;
right: 1rem;
padding: 0.875rem 1rem;
font-size: 0.875rem;
}
.th-map-label strong {
font-size: 1.25rem;
}
.th-feature-icon {
width: 48px;
height: 48px;
font-size: 1.5rem;
}
.th-feature-title {
font-size: 0.95rem;
}
.th-feature-desc {
font-size: 0.75rem;
}
.th-treasures-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
}
@media (max-width: 600px) {
.th-treasures-grid {
grid-template-columns: 1fr;
}
.th-entrance-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
}
.th-entrance-btn {
width: 100%;
height: 80px;
}
.th-fab {
bottom: 1rem;
right: 1rem;
width: 48px;
height: 48px;
font-size: 1.25rem;
}
} .treasure-home #content,
.treasure-home .container,
.treasure-home .row {
max-width: none;
padding: 0;
margin: 0;
} .welcome-banner {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 232, 208, 0.9));
backdrop-filter: blur(10px);
border: 2px solid var(--th-primary);
border-radius: 16px;
padding: 1.5rem 2rem;
margin-bottom: 2rem;
position: relative;
box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
animation: slideDown 0.6s ease-out;
overflow: hidden;
}
@keyframes slideDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
.welcome-banner::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: var(--th-primary);
}
.close-banner {
position: absolute;
top: 1rem;
right: 1rem;
background: transparent;
border: none;
font-size: 1.5rem;
color: var(--th-text-muted);
cursor: pointer;
transition: all 0.3s;
line-height: 1;
z-index: 10;
}
.close-banner:hover {
color: var(--th-primary);
transform: rotate(90deg);
}
.banner-content {
display: flex;
align-items: center;
gap: 2rem;
margin-bottom: 1.25rem;
}
.banner-icon {
font-size: 3.5rem;
filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}
.banner-text {
flex: 1;
}
.banner-text h3 {
font-size: 1.5rem;
font-weight: 800;
color: var(--th-text);
margin: 0 0 0.5rem 0;
font-family: 'Noto Serif SC', serif;
}
.banner-text p {
font-size: 1rem;
color: var(--th-text-muted);
margin: 0;
}
.banner-actions {
display: flex;
gap: 1rem;
}
.banner-actions a {
padding: 0.75rem 1.5rem;
border-radius: 50px;
font-weight: 700;
text-decoration: none;
transition: all 0.3s;
font-size: 0.95rem;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-register {
background: var(--th-primary);
color: #fff !important;
box-shadow: 0 4px 15px rgba(203, 187, 134, 0.4);
}
.btn-register:hover {
background: var(--th-primary-dark);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(203, 187, 134, 0.5);
}
.btn-demo {
background: rgba(139, 69, 19, 0.05);
color: var(--th-text) !important;
border: 1px solid rgba(139, 69, 19, 0.1);
}
.btn-demo:hover {
background: rgba(139, 69, 19, 0.1);
transform: translateY(-2px);
}
.banner-stats {
display: flex;
gap: 2rem;
padding-top: 1rem;
border-top: 1px solid rgba(139, 69, 19, 0.1);
font-size: 0.85rem;
color: var(--th-primary);
font-weight: 600;
}
.banner-stats span {
display: flex;
align-items: center;
gap: 0.5rem;
}
@media (max-width: 992px) {
.banner-content {
flex-direction: column;
text-align: center;
gap: 1.5rem;
}
.banner-actions {
justify-content: center;
}
.banner-stats {
justify-content: center;
flex-wrap: wrap;
gap: 1rem;
}
} .latest-dynamics-section {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
padding: 3rem 0;
background: rgba(255, 248, 231, 0.3);
border-radius: 12px;
margin-top: 2rem;
}
.dynamics-column {
background: #fff;
padding: 1.5rem;
border-radius: 12px;
border: 2px solid var(--th-secondary);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.column-title {
font-size: 1.25rem;
font-weight: 700;
color: var(--th-text);
margin-bottom: 1.25rem;
padding-bottom: 0.75rem;
border-bottom: 2px solid var(--th-primary);
font-family: 'Noto Serif SC', serif;
} .poi-list {
display: flex;
flex-direction: column;
gap: 0.875rem;
}
.poi-item {
display: flex;
gap: 0.875rem;
padding: 0.75rem;
background: rgba(244, 232, 208, 0.3);
border-radius: 8px;
text-decoration: none;
transition: all 0.3s;
border: 1px solid transparent;
}
.poi-item:hover {
background: rgba(212, 175, 55, 0.15);
border-color: var(--th-primary);
transform: translateX(4px);
box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}
.poi-image {
width: 60px;
height: 60px;
flex-shrink: 0;
border-radius: 6px;
overflow: hidden;
}
.poi-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.poi-no-image {
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--th-primary-dark), var(--th-primary));
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 1.5rem;
}
.poi-info {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
gap: 0.25rem;
}
.poi-title {
font-size: 0.95rem;
font-weight: 600;
color: var(--th-text);
margin: 0;
line-height: 1.4;
}
.poi-meta {
display: flex;
gap: 1rem;
font-size: 0.8rem;
color: rgba(62, 39, 35, 0.6);
}
.poi-category,
.poi-views {
display: flex;
align-items: center;
gap: 0.25rem;
}
.poi-category i,
.poi-views i {
font-size: 0.75rem;
}
.view-all-link {
text-align: center;
margin-top: 0.5rem;
padding-top: 0.75rem;
border-top: 1px solid rgba(139, 69, 19, 0.1);
} .dynamics-list {
list-style: none;
margin: 0;
padding: 0;
}
.dynamics-list li {
display: flex;
align-items: flex-start;
gap: 0.75rem;
padding: 0.875rem 0;
border-bottom: 1px solid rgba(139, 69, 19, 0.1);
font-size: 0.9rem;
line-height: 1.6;
}
.dynamics-list li:last-child {
border-bottom: none;
}
.dynamics-list li img {
border-radius: 50%;
flex-shrink: 0;
}
.dynamics-list li strong {
color: var(--th-primary);
font-weight: 600;
}
.dynamics-list li a {
color: var(--th-text);
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
.dynamics-list li a:hover {
color: var(--th-primary);
text-decoration: underline;
}
.dynamics-list .time {
color: rgba(62, 39, 35, 0.5);
font-size: 0.75rem;
margin-left: 0.5rem;
white-space: nowrap;
} .leaderboard {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.leaderboard-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem;
background: rgba(244, 232, 208, 0.3);
border-radius: 8px;
transition: all 0.3s;
}
.leaderboard-item:hover {
background: rgba(212, 175, 55, 0.15);
transform: translateX(4px);
}
.leaderboard-item .rank {
font-size: 1.25rem;
font-weight: 700;
width: 32px;
text-align: center;
color: var(--th-primary);
}
.leaderboard-item img {
border-radius: 50%;
flex-shrink: 0;
}
.leaderboard-item .username {
flex: 1;
font-weight: 600;
color: var(--th-text);
}
.leaderboard-item .score {
font-size: 0.875rem;
color: rgba(62, 39, 35, 0.7);
font-weight: 600;
} @media (max-width: 768px) {
.latest-dynamics-section {
grid-template-columns: 1fr;
gap: 1.5rem;
padding: 2rem 1rem;
}
.dynamics-column {
padding: 1.25rem;
}
.column-title {
font-size: 1.1rem;
}
.dynamics-list li {
font-size: 0.85rem;
}
}.th-footer {
background: linear-gradient(135deg, #2C1810 0%, #3E2723 100%);
color: #F5F5DC;
margin-top: 4rem;
position: relative;
overflow: hidden;
} .th-footer-main {
padding: 4rem 0 2rem;
position: relative;
z-index: 2;
}
.th-footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
} .th-footer-logo {
display: flex;
align-items: center;
gap: 0.75rem;
font-size: 1.75rem;
font-weight: bold;
color: #DAA520;
margin-bottom: 1rem;
}
.th-footer-logo i {
font-size: 2rem;
color: #B8860B;
}
.th-footer-desc {
color: #D7CCC8;
line-height: 1.7;
margin-bottom: 1.5rem;
font-size: 0.95rem;
} .th-footer-stats {
display: flex;
gap: 2rem;
margin-top: 1.5rem;
}
.th-stat-item {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.th-stat-item strong {
font-size: 1.5rem;
color: #DAA520;
font-weight: bold;
}
.th-stat-item span {
font-size: 0.85rem;
color: #BCAAA4;
text-transform: uppercase;
letter-spacing: 0.5px;
} .th-footer-title {
color: #DAA520;
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 1.25rem;
display: flex;
align-items: center;
gap: 0.5rem;
border-bottom: 2px solid rgba(184, 134, 11, 0.3);
padding-bottom: 0.75rem;
}
.th-footer-title i {
color: #B8860B;
font-size: 1rem;
}
.th-footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.th-footer-links li {
margin-bottom: 0.75rem;
}
.th-footer-links a {
color: #D7CCC8;
text-decoration: none;
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.95rem;
transition: all 0.3s ease;
padding: 0.25rem 0;
}
.th-footer-links a i {
color: #8B7355;
font-size: 0.85rem;
width: 16px;
transition: transform 0.3s ease;
}
.th-footer-links a:hover {
color: #DAA520;
padding-left: 0.5rem;
}
.th-footer-links a:hover i {
color: #DAA520;
transform: translateX(3px);
} .th-footer-bottom {
background: rgba(0, 0, 0, 0.3);
padding: 1.5rem 0;
border-top: 1px solid rgba(184, 134, 11, 0.2);
}
.th-footer-bottom-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1.5rem;
} .th-footer-copyright {
color: #BCAAA4;
font-size: 0.9rem;
}
.th-footer-copyright p {
margin: 0.25rem 0;
}
.th-footer-copyright a {
color: #D7CCC8;
text-decoration: none;
transition: color 0.3s ease;
}
.th-footer-copyright a:hover {
color: #DAA520;
}
.th-divider {
margin: 0 0.75rem;
color: rgba(184, 134, 11, 0.4);
}
.th-footer-extra {
color: #A1887F;
font-size: 0.85rem;
margin-top: 0.5rem;
} .th-footer-social {
display: flex;
align-items: center;
gap: 1rem;
}
.th-social-label {
color: #BCAAA4;
font-size: 0.9rem;
margin-right: 0.5rem;
}
.th-social-icons {
display: flex;
gap: 0.75rem;
}
.th-social-icon {
width: 36px;
height: 36px;
border-radius: 50%;
background: rgba(184, 134, 11, 0.15);
border: 1px solid rgba(184, 134, 11, 0.3);
display: flex;
align-items: center;
justify-content: center;
color: #DAA520;
font-size: 1rem;
text-decoration: none;
transition: all 0.3s ease;
}
.th-social-icon:hover {
background: #B8860B;
color: #2C1810;
border-color: #DAA520;
transform: translateY(-3px) rotate(5deg);
box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
} .th-footer-beian {
text-align: center;
margin-top: 1.5rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(184, 134, 11, 0.1);
color: #A1887F;
font-size: 0.85rem;
}
.th-footer-beian p {
margin: 0.25rem 0;
} .th-footer-decoration {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 60px;
display: flex;
justify-content: space-around;
align-items: center;
opacity: 0.1;
pointer-events: none;
z-index: 1;
}
.th-treasure-icon {
font-size: 2rem;
animation: float 3s ease-in-out infinite;
}
.th-treasure-icon:nth-child(2) {
animation-delay: 0.5s;
}
.th-treasure-icon:nth-child(3) {
animation-delay: 1s;
}
.th-treasure-icon:nth-child(4) {
animation-delay: 1.5s;
}
.th-treasure-icon:nth-child(5) {
animation-delay: 2s;
}
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
} .th-footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image:
repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(184, 134, 11, 0.03) 10px, rgba(184, 134, 11, 0.03) 20px),
repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(139, 69, 19, 0.02) 10px, rgba(139, 69, 19, 0.02) 20px);
opacity: 0.5;
z-index: 1;
pointer-events: none;
} @media (max-width: 992px) {
.th-footer-grid {
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}
.th-footer-main {
padding: 3rem 0 1.5rem;
}
}
@media (max-width: 768px) {
.th-footer-grid {
grid-template-columns: 1fr;
gap: 2.5rem;
}
.th-footer-bottom-content {
flex-direction: column;
text-align: center;
}
.th-footer-social {
flex-direction: column;
gap: 0.75rem;
}
.th-footer-stats {
justify-content: space-around;
}
.th-footer-copyright {
text-align: center;
}
}
@media (max-width: 480px) {
.th-footer-logo {
font-size: 1.5rem;
}
.th-footer-logo i {
font-size: 1.75rem;
}
.th-footer-title {
font-size: 1rem;
}
.th-social-icon {
width: 32px;
height: 32px;
font-size: 0.9rem;
}
.th-divider {
display: none;
}
.th-footer-copyright p {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
} .th-footer-col {
transition: transform 0.3s ease;
}
.th-footer-col:hover {
transform: translateY(-5px);
} .th-footer {
animation: fadeInUp 0.8s ease-out;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
} #rb-float-actions {
z-index: 1000;
}:root {
--gold-accent:      #d4af37;
--dark-gold:        #b8941f;
--dark-brown:       #3d1f0a;
--ink-brown:        #2c1810;
--red-ink:          #9a2a2a;
--parchment-bg:     #f5e6c8;
--action-green:     #2d7a3a;
--parchment-light:  #faf3e0;
--parchment-border: #d4b896;
--shadow-color:     rgba(61,31,10,0.15);
} .mobile-bottom-nav {
display: none;
} @media (max-width: 768px) { body { padding-bottom: 70px; }
.mobile-bottom-nav {
display: block;
background: var(--dark-brown);
border-top: 3px solid var(--gold-accent);
box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 1000;
}
} .mobile-nav-items {
display: flex;
justify-content: space-around;
align-items: center;
padding: 0;
margin: 0;
list-style: none;
}
.mobile-nav-item {
color: var(--parchment-bg);
padding: 8px 5px;
flex-grow: 1;
text-align: center;
text-decoration: none;
transition: all 0.2s ease;
font-family: inherit;
}
.mobile-nav-item .nav-icon {
font-size: 20px;
display: block;
line-height: 1.2;
}
.mobile-nav-item .nav-text {
font-size: 11px;
display: block;
margin-top: 2px;
}
.mobile-nav-item:hover,
.mobile-nav-item.active {
color: var(--gold-accent);
background: rgba(0,0,0,0.2);
} .mobile-nav-item.center-btn {
background: var(--red-ink);
border-radius: 50%;
width: 60px;
height: 60px;
margin-top: -25px;
border: 3px solid var(--gold-accent);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex-shrink: 0;
flex-grow: 0;
padding: 0;
box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.mobile-nav-item.center-btn:hover {
background: #7a2222;
transform: translateY(-3px);
}
.mobile-nav-item.center-btn .nav-icon {
font-size: 24px;
margin-bottom: 0;
display: block;
color: #fff;
line-height: 1;
}
.mobile-nav-item.center-btn .nav-text {
font-size: 9px;
margin-top: 2px;
display: block; color: #fff;
} .mobile-nav-item .badge {
position: absolute;
top: 4px;
right: 4px;
background: var(--red-ink);
color: #fff;
border-radius: 50%;
font-size: 10px;
width: 16px;
height: 16px;
display: flex;
align-items: center;
justify-content: center;
}:root {
--cang2-header-height: 60px;
}
html { scroll-padding-top: calc(var(--cang2-header-height) + var(--wp-admin--admin-bar--height, 0px));
} .cang2-header {
position: fixed;
top: 0;
left: 0;
right: 0;
height: var(--cang2-header-height);
z-index: 100;
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(212, 175, 55, 0.2); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
transition: all 0.4s ease;
} .cang2-header.transparent {
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%); border-bottom: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: none;
backdrop-filter: none;
}
.cang2-header.transparent .cang2-logo,
.cang2-header.transparent .cang2-menu-list>li>a,
.cang2-header.transparent .cang2-nav-link,
.cang2-header.transparent .cang2-nav-user {
color: #fff;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); font-weight: 600;
}
.cang2-header.transparent .cang2-menu-list>li>a:hover {
background: rgba(255, 255, 255, 0.2);
color: #fff;
} .cang2-header.scrolled {
background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.cang2-header.scrolled .cang2-logo,
.cang2-header.scrolled .cang2-menu-list>li>a,
.cang2-header.scrolled .cang2-nav-link,
.cang2-header.scrolled .cang2-nav-user {
color: #fff; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.cang2-header.scrolled .cang2-logo {
color: #D4AF37; }
.cang2-nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 0.75rem 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
} .cang2-logo {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 1.25rem;
font-weight: 700;
color: #D4AF37; text-decoration: none;
transition: all 0.3s;
font-family: 'Noto Serif SC', serif; }
.cang2-logo:hover {
color: #B8860B;
transform: scale(1.05);
}
.cang2-logo-icon {
width: 32px;
height: 32px;
} .cang2-desktop-menu {
flex: 1;
display: flex;
justify-content: center;
margin: 0 2rem;
}
.cang2-menu-list {
display: flex;
flex-wrap: wrap; justify-content: center; align-items: center;
gap: 0.5rem;
list-style: none;
margin: 0;
padding: 0;
}
.cang2-menu-list>li {
position: relative;
}
.cang2-menu-list>li>a {
display: inline-block;
padding: 0.6rem 0.6rem;
color: #333;
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
transition: all 0.3s;
border-radius: 6px;
white-space: nowrap;
writing-mode: horizontal-tb;
font-family: 'Noto Serif SC', serif;
}
.cang2-menu-list>li>a:hover {
background: rgba(212, 175, 55, 0.1); color: #D4AF37;
}
.cang2-menu-list>li.current-menu-item>a,
.cang2-menu-list>li.current_page_item>a {
background: #D4AF37;
color: #fff; } .cang2-menu-list .sub-menu {
position: absolute;
top: 100%;
left: 0;
min-width: 200px;
background: #fff;
border: 1px solid rgba(212, 175, 55, 0.2);
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
padding: 0.5rem 0;
margin: 0;
list-style: none;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s;
z-index: 101;
}
.cang2-menu-list>li:hover .sub-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.cang2-menu-list .sub-menu li {
margin: 0;
}
.cang2-menu-list .sub-menu li a {
display: block;
padding: 0.6rem 1.25rem;
color: #333;
text-decoration: none;
font-size: 0.9rem;
transition: all 0.2s;
white-space: nowrap;
writing-mode: horizontal-tb;
}
.cang2-menu-list .sub-menu li a:hover {
background: rgba(212, 175, 55, 0.1);
color: #D4AF37;
padding-left: 1.5rem;
} .cang2-nav-actions {
display: flex;
align-items: center;
gap: 1rem;
}
.cang2-nav-link {
color: #333;
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
transition: all 0.3s;
}
.cang2-nav-link:hover {
color: #D4AF37;
}
.cang2-nav-user {
display: flex;
align-items: center;
gap: 0.5rem;
color: #333;
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
}
.cang2-nav-user img {
border-radius: 50%;
}
.cang2-nav-btn {
background: #D4AF37;
color: #fff;
padding: 0.5rem 1rem;
border-radius: 8px;
font-size: 0.875rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
box-shadow: 0 2px 5px rgba(212, 175, 55, 0.3);
}
.cang2-nav-btn:hover {
background: #B8860B;
color: #fff;
transform: translateY(-1px);
} .cang2-hamburger {
display: none;
flex-direction: column;
background: #fff;
}
.cang2-header.scrolled .cang2-hamburger span {
background: #333;
}
.cang2-hamburger.active span:nth-child(1) {
transform: rotate(45deg) translate(6px, 6px);
}
.cang2-hamburger.active span:nth-child(2) {
opacity: 0;
}
.cang2-hamburger.active span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
} .cang2-mobile-menu {
display: none;
position: fixed;
top: 60px;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 99;
opacity: 0;
visibility: hidden;
transition: all 0.3s;
}
.cang2-mobile-menu.active {
opacity: 1;
visibility: visible;
}
.cang2-mobile-menu-content {
background: #fff;
max-height: calc(100vh - 60px);
overflow-y: auto;
padding: 1rem 0;
}
.cang2-mobile-menu-list {
list-style: none;
margin: 0;
padding: 0;
}
.cang2-mobile-menu-list li {
border-bottom: 1px solid #f0f0f0;
}
.cang2-mobile-menu-list>li>a {
display: block;
padding: 1rem 1.5rem;
color: #333;
text-decoration: none;
font-size: 1rem;
font-weight: 500;
transition: all 0.3s;
white-space: nowrap;
writing-mode: horizontal-tb;
}
.cang2-mobile-menu-list>li>a:hover {
background: rgba(212, 175, 55, 0.1);
color: #D4AF37;
padding-left: 2rem;
}
.cang2-mobile-menu-list>li.current-menu-item>a,
.cang2-mobile-menu-list>li.current_page_item>a {
background: #D4AF37;
color: #fff;
} .cang2-mobile-menu-list .sub-menu {
list-style: none;
margin: 0;
padding: 0;
background: #f8f8f8;
}
.cang2-mobile-menu-list .sub-menu li a {
display: block;
padding: 0.75rem 1.5rem 0.75rem 2.5rem;
color: #666;
text-decoration: none;
font-size: 0.9rem;
}
.cang2-mobile-menu-list .sub-menu li a:hover {
background: rgba(212, 175, 55, 0.1);
color: #D4AF37;
padding-left: 3rem;
} .cang2-mobile-actions {
padding: 1rem 1.5rem;
display: flex;
flex-direction: column;
gap: 0.75rem;
border-top: 2px solid #f0f0f0;
}
.cang2-mobile-actions a {
display: block;
padding: 0.75rem 1rem;
text-align: center;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
}
.cang2-mobile-actions .login-btn {
background: #f0f0f0;
color: #333;
}
.cang2-mobile-actions .publish-btn {
background: #D4AF37;
color: #fff;
}
.cang2-mobile-actions .user-info {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1rem;
background: #f8f8f8;
border-radius: 8px;
} @media (max-width: 900px) {
.cang2-desktop-menu {
margin: 0 1rem;
}
.cang2-menu-list {
gap: 0.25rem;
}
.cang2-menu-list>li>a {
padding: 0.5rem 0.75rem;
font-size: 0.85rem;
}
}
@media (max-width: 768px) {
.cang2-hamburger {
display: flex;
}
.cang2-desktop-menu {
display: none;
}
.cang2-mobile-menu {
display: block;
}
.cang2-nav-actions {
display: none;
}
.cang2-nav-container {
padding: 0.5rem 1rem;
}
.cang2-logo {
font-size: 1.1rem;
}
.cang2-logo-icon {
width: 28px;
height: 28px;
}
} body {
padding-top: var(--cang2-header-height);
} body.home {
padding-top: 0; } body.admin-bar {
padding-top: calc(var(--cang2-header-height) + 32px);
} body.home.admin-bar {
padding-top: 0;
} body.admin-bar .cang2-header {
top: 32px;
} @media screen and (max-width: 782px) {
body.admin-bar {
padding-top: calc(var(--cang2-header-height) + 46px);
}
body.home.admin-bar {
padding-top: 0;
}
body.admin-bar .cang2-header {
top: 46px;
}
} h1, h2, h3, h4, h5, h6 {
scroll-margin-top: calc(var(--cang2-header-height) + 20px);
}:root {
--color-primary: #E8C87A; --color-primary-dark: #D4A84B; --color-bg-light: #FDF8EF; --color-bg-warm: #F5E6C8; --color-cta: #2E7D4A; --color-cta-hover: #25643A; --color-dark: #2C1810; --color-text-primary: #2C1810;
--color-text-secondary: #5D4E37;
--color-gold-glow: rgba(232, 200, 122, 0.6);
} .map-loading-overlay {
position: absolute !important;
top: 0 !important;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%) !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
z-index: 1000 !important;
transition: opacity 0.5s ease, visibility 0.5s ease !important;
}
.map-loading-overlay.hidden {
opacity: 0 !important;
visibility: hidden !important;
}
.map-loading-spinner {
text-align: center !important;
color: #ffd700 !important;
}
.spinner-compass {
font-size: 4rem !important;
margin-bottom: 1.5rem !important;
animation: compass-rotate 3s linear infinite !important;
filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)) !important;
}
@keyframes compass-rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.loading-text {
font-size: 1.2rem !important;
color: #fff !important;
margin: 0 0 1rem 0 !important;
text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
}
.loading-progress {
width: 200px !important;
height: 4px !important;
background: rgba(255, 255, 255, 0.2) !important;
border-radius: 2px !important;
overflow: hidden !important;
margin: 0 auto !important;
}
.progress-bar {
height: 100% !important;
background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%) !important;
width: 0 !important;
animation: progress-fill 2s ease-in-out infinite !important;
box-shadow: 0 0 10px rgba(255, 215, 0, 0.6) !important;
}
@keyframes progress-fill {
0% { width: 0%; }
50% { width: 100%; }
100% { width: 0%; }
} #map8,
#map8 *,
.th-map-large,
.th-map-large * {
filter: none !important;
backdrop-filter: none !important;
} .map-scroll-overlay {
position: absolute !important;
top: 0 !important;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
background: transparent !important;
z-index: 999 !important;
cursor: default !important;
display: block !important;
} .map-scroll-overlay.hidden {
display: none !important;
}
.map-scroll-hint,
.map-ctrl-hint {
display: none !important;
} .map-scroll-toggle-btn {
position: absolute !important;
bottom: 20px !important;
left: 50% !important;
transform: translateX(-50%) !important;
background: rgba(255, 215, 0, 0.95) !important;
color: #333 !important;
border: 2px solid rgba(255, 215, 0, 0.3) !important;
padding: 10px 18px !important;
border-radius: 25px !important;
font-size: 0.9rem !important;
font-weight: 600 !important;
cursor: pointer !important;
z-index: 1001 !important;
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3) !important;
transition: all 0.3s ease !important;
display: flex !important;
align-items: center !important;
gap: 6px !important;
}
.map-scroll-toggle-btn:hover {
transform: translateX(-50%) translateY(-2px) !important;
box-shadow: 0 5px 18px rgba(0, 0, 0, 0.4) !important;
background: rgba(255, 230, 92, 0.98) !important;
}
.map-scroll-toggle-btn i {
font-size: 1rem !important;
transition: all 0.3s ease !important;
} .map-scroll-toggle-btn.active {
background: rgba(34, 197, 94, 0.95) !important;
border-color: rgba(34, 197, 94, 0.3) !important;
color: #fff !important;
}
.map-scroll-toggle-btn.active:hover {
background: rgba(34, 197, 94, 1) !important;
}
.map-scroll-toggle-btn.active i {
content: '\f13e' !important; }
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
} #map8 {
position: relative !important;
z-index: 1 !important;
}  .th-hero-title-v2 {
font-size: clamp(1.875rem, 5.5vw, 3rem) !important;
font-weight: 700 !important;
color: #fff !important;
text-shadow: 3px 3px 10px rgba(0,0,0,1), -1px -1px 8px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.8) !important;
margin-bottom: 1.25rem !important;
line-height: 1.35 !important;
font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif !important;
opacity: 1 !important;
visibility: visible !important;
display: block !important;
max-width: 90% !important;
margin-left: auto !important;
margin-right: auto !important;
} .th-hero-subtitle-v2 {
font-size: clamp(1rem, 2.2vw, 1.375rem) !important;
color: rgba(255, 255, 255, 0.92) !important;
text-shadow: 2px 2px 8px rgba(0,0,0,1), 0 0 20px rgba(0,0,0,0.8) !important;
margin-bottom: 1.75rem !important;
line-height: 1.7 !important;
font-weight: 400 !important;
font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif !important;
opacity: 1 !important;
visibility: visible !important;
display: block !important;
} .th-curiosity-trigger {
display: inline-block !important;
text-align: center !important;
background: rgba(232, 200, 122, 0.15) !important;
backdrop-filter: blur(8px) !important;
padding: 0.625rem 1.25rem !important;
border-radius: 20px !important;
border: 1px solid rgba(232, 200, 122, 0.4) !important;
font-size: clamp(0.8rem, 2vw, 0.875rem) !important;
color: rgba(255, 255, 255, 0.9) !important;
margin-bottom: 2rem !important;
box-shadow: 0 2px 12px rgba(232, 200, 122, 0.15) !important;
text-shadow: 1px 1px 3px rgba(0,0,0,0.5) !important;
line-height: 1.6 !important;
}
.th-curiosity-trigger strong {
color: var(--color-primary) !important;
font-size: 1.1em !important;
text-shadow: 0 0 6px rgba(232, 200, 122, 0.4) !important;
}
.th-trigger-sub {
display: block !important;
font-size: 0.85em !important;
color: rgba(255, 255, 255, 0.75) !important;
margin-top: 0.25rem !important;
}
.th-pulse-dot {
display: inline-block !important;
width: 8px !important;
height: 8px !important;
background: var(--color-primary) !important;
border-radius: 50% !important;
animation: pulse-glow 2s ease-in-out infinite !important;
box-shadow: 0 0 10px rgba(232, 200, 122, 0.5) !important;
margin-right: 0.25rem !important;
vertical-align: middle !important;
}
@keyframes pulse-glow {
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.2); opacity: 0.8; }
} .th-hero-features {
font-size: clamp(0.875rem, 2vw, 1rem) !important;
color: rgba(255, 255, 255, 0.9) !important;
margin-bottom: 2.5rem !important;
display: flex !important;
align-items: center !important;
gap: 0.5rem !important;
flex-wrap: wrap !important;
justify-content: center !important;
text-shadow: 1px 1px 4px rgba(0,0,0,0.8) !important;
opacity: 1 !important;
visibility: visible !important;
}
.th-feature-item {
white-space: nowrap !important;
}
.th-feature-divider {
color: rgba(255, 255, 255, 0.5) !important;
} .th-hero-container {
display: flex !important;
align-items: center !important;
justify-content: center !important;
padding: 4rem 2rem !important;
min-height: 550px !important;
position: relative !important;
z-index: 10 !important;
}
.th-hero-content {
max-width: 800px !important;
text-align: center !important;
opacity: 1 !important;
visibility: visible !important;
position: relative !important;
z-index: 11 !important;
} .th-btn-primary-cta {
display: inline-block !important;
background: var(--color-cta) !important;
color: #fff !important;
font-size: clamp(1.1rem, 2.5vw, 1.25rem) !important;
font-weight: 700 !important;
padding: 1.25rem 2.5rem !important;
border-radius: 12px !important;
border: none !important;
box-shadow: 0 8px 30px rgba(46, 125, 74, 0.3) !important;
text-decoration: none !important;
transition: all 0.3s ease !important;
cursor: pointer !important;
text-shadow: none !important;
}
.th-btn-primary-cta:hover {
transform: translateY(-3px) !important;
box-shadow: 0 12px 40px rgba(46, 125, 74, 0.5) !important;
background: var(--color-cta-hover) !important;
} .th-cta-subtext {
font-size: 0.9rem !important;
color: rgba(255, 255, 255, 0.8) !important;
margin-top: 0.75rem !important;
margin-bottom: 1rem !important;
text-shadow: 1px 1px 4px rgba(0,0,0,0.6) !important;
} .th-social-proof {
font-size: 0.95rem !important;
color: rgba(255, 255, 255, 0.85) !important;
margin-top: 0.5rem !important;
margin-bottom: 2rem !important;
text-shadow: 1px 1px 4px rgba(0,0,0,0.6) !important;
}
.th-social-proof strong {
color: #FFD700 !important;
font-weight: 700 !important;
} .th-secondary-cta {
margin-top: 1.5rem !important;
}
.th-link-secondary {
color: rgba(255, 255, 255, 0.9) !important;
text-decoration: none !important;
font-size: 1rem !important;
border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
padding-bottom: 2px !important;
transition: all 0.3s ease !important;
text-shadow: 1px 1px 4px rgba(0,0,0,0.6) !important;
}
.th-link-secondary:hover {
color: var(--color-primary) !important;
border-bottom-color: var(--color-primary) !important;
}  .th-btn-primary,
.th-btn.th-btn-primary {
background: var(--color-cta) !important;
color: #fff !important;
border: none !important;
padding: 0.75rem 1.5rem !important;
border-radius: 8px !important;
font-weight: 600 !important;
transition: all 0.3s ease !important;
text-decoration: none !important;
display: inline-flex !important;
align-items: center !important;
gap: 0.5rem !important;
box-shadow: 0 4px 15px rgba(46, 125, 74, 0.2) !important;
}
.th-btn-primary:hover,
.th-btn.th-btn-primary:hover {
background: var(--color-cta-hover) !important;
transform: translateY(-2px) !important;
box-shadow: 0 6px 20px rgba(46, 125, 74, 0.3) !important;
} .th-btn-secondary,
.th-btn.th-btn-secondary {
background: transparent !important;
color: var(--color-cta) !important;
border: 2px solid var(--color-cta) !important;
padding: 0.75rem 1.5rem !important;
border-radius: 8px !important;
font-weight: 600 !important;
transition: all 0.3s ease !important;
text-decoration: none !important;
display: inline-flex !important;
align-items: center !important;
gap: 0.5rem !important;
}
.th-btn-secondary:hover,
.th-btn.th-btn-secondary:hover {
background: var(--color-cta) !important;
color: #fff !important;
transform: translateY(-2px) !important;
} .th-btn-outline,
.th-btn.th-btn-outline {
background: transparent !important;
color: var(--color-primary-dark) !important;
border: 2px solid var(--color-primary-dark) !important;
padding: 0.75rem 1.5rem !important;
border-radius: 8px !important;
font-weight: 600 !important;
transition: all 0.3s ease !important;
text-decoration: none !important;
display: inline-flex !important;
align-items: center !important;
gap: 0.5rem !important;
}
.th-btn-outline:hover,
.th-btn.th-btn-outline:hover {
background: var(--color-primary-dark) !important;
color: var(--color-dark) !important;
transform: translateY(-2px) !important;
} .th-btn-xs { padding: 0.5rem 1rem !important; font-size: 0.875rem !important; }
.th-btn-sm { padding: 0.625rem 1.25rem !important; font-size: 0.9375rem !important; }
.th-btn-lg { padding: 1rem 2rem !important; font-size: 1.125rem !important; } .th-btn-mini-action {
background: rgba(46, 125, 74, 0.1) !important;
color: var(--color-cta) !important;
padding: 0.375rem 0.875rem !important;
border-radius: 6px !important;
font-size: 0.875rem !important;
font-weight: 600 !important;
border: 1px solid rgba(46, 125, 74, 0.3) !important;
transition: all 0.3s ease !important;
}
.th-btn-mini-action:hover {
background: var(--color-cta) !important;
color: #fff !important;
} .th-hero-content {
opacity: 1 !important;
visibility: visible !important;
}
.th-animate-up {
opacity: 1 !important;
visibility: visible !important;
}  .th-map-section {
background: var(--color-bg-light) !important;
background: linear-gradient(to bottom, #fff 0%, var(--color-bg-light) 100%) !important;
} .latest-dynamics-section {
background: #fff !important;
} .th-routes {
background: var(--color-bg-warm) !important;
background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-light) 100%) !important;
} .th-more-features {
background: var(--color-bg-light) !important;
} .th-treasures {
background: #fff !important;
} .th-social-proof {
background: linear-gradient(135deg, #F4E7D7 0%, #E8D5BA 100%) !important;
background-image:
linear-gradient(135deg, rgba(139, 115, 85, 0.03) 0%, rgba(139, 115, 85, 0.08) 100%),
linear-gradient(135deg, #F4E7D7 0%, #E8D5BA 100%) !important;
color: var(--color-dark) !important;
position: relative !important;
} .th-social-proof::before {
content: '' !important;
position: absolute !important;
top: 0 !important;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
background-image:
repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 115, 85, 0.02) 2px, rgba(139, 115, 85, 0.02) 4px),
repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(139, 115, 85, 0.02) 2px, rgba(139, 115, 85, 0.02) 4px) !important;
pointer-events: none !important;
z-index: 1 !important;
}
.th-social-proof * {
color: var(--color-dark) !important;
position: relative !important;
z-index: 2 !important;
} .th-app-section {
background: var(--color-dark) !important;
color: #fff !important;
}
.th-app-section * {
color: #fff !important;
} .th-cooperation-simple {
background: #f8f9fa !important;
} @media (max-width: 768px) {
.th-hero-container {
padding: 3rem 1.5rem !important;
}
.th-hero-features {
justify-content: center !important;
}
.th-btn-primary-cta {
padding: 1.125rem 2rem !important;
font-size: 1.1rem !important;
}
}
@media (max-width: 640px) {
.th-hero-container {
padding: 2.5rem 1rem !important;
}
.th-hero-title-v2 {
font-size: 1.75rem !important;
margin-bottom: 1rem !important;
line-height: 1.4 !important;
}
.th-hero-subtitle-v2 {
font-size: 1rem !important;
margin-bottom: 1.5rem !important;
}
.th-curiosity-trigger {
font-size: 0.8rem !important;
padding: 0.5rem 1rem !important;
}
.th-btn-primary-cta {
width: 100% !important;
max-width: 320px !important;
padding: 1rem 1.5rem !important;
font-size: 1rem !important;
}
}:root {
--parchment-bg: #f4e4bc; --dark-brown: #6b4f3a; --ink-brown: #4a3728; --red-ink: #9a2a2a; --gold-accent: #b8860b; --shadow-color: rgba(107, 79, 58, 0.3);
--font-serif: 'Georgia', 'Times New Roman', serif;
--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
body {
background-color: var(--parchment-bg); background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAAMqADAAQAAAABAAAAMgAAAADdOa+FAAAAa0lEQVRoBe2SMRKAQAwD9f9P7gghpSgpvDGSxZ15jP1MRJv/9YQgZ4iQIUKIiwg5Q4QKIa4i5AwRKoS4iJAzRKgQ4iJCTtA/i5/aN3ySA3kGkOdA3kF+fghygpA/QpyA8E+IEyB+iJwg/yDECRB/iJwg/yDEDyG/gHwOkKcQfx/yD0iTJwNqAAAAAElFTkSuQmCC);
font-family: var(--font-serif);
color: var(--ink-brown);
} #content { max-width: 100%; padding: 0; margin: 0; }
.th-page-wrapper { width: 100%; }
.treasure-home .th-main { width: 100%; }
section { margin-bottom: 35px; padding: 0 15px; } section.th-hero,
section.th-hero-slider {
position: relative;
padding: 0 !important;
width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
min-height: 550px;
overflow: hidden;
} .th-slider-track {
position: absolute;
inset: 0;
z-index: 0;
} .th-slide {
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 0.8s ease;
will-change: opacity;
}
.th-slide.th-slide-active { opacity: 1; }
.th-slide-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
transform: scale(1.03); transition: transform 8s linear;
}
.th-slide.th-slide-active .th-slide-bg { transform: scale(1); } .th-hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.70));
z-index: 1;
} .th-hero-slider .th-hero-container {
position: relative;
z-index: 10;
max-width: 860px !important;
margin: 0 auto !important;
padding: 80px 2rem 80px !important;
} .th-slide-content {
display: none;
text-align: center;
}
.th-slide-content.th-slide-content-active {
display: block;
animation: slideContentIn 0.6s ease forwards;
}
@keyframes slideContentIn {
from { opacity: 0; transform: translateY(18px); }
to   { opacity: 1; transform: translateY(0); }
} .th-hero-content { text-align: center !important; max-width: 100% !important; }
.th-hero-cta-wrapper  { align-items: center !important; }
.th-hero-social-proof { justify-content: center !important; }
.th-curiosity-trigger { text-align: center !important; }
.th-secondary-cta     { text-align: center !important; } .th-slider-controls {
position: absolute;
bottom: 22px;
left: 0;
right: 0;
z-index: 20;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
}
.th-slider-arrow {
background: rgba(255,255,255,0.18);
border: 1px solid rgba(255,255,255,0.35);
color: #fff;
width: 36px;
height: 36px;
border-radius: 50%;
font-size: 22px;
line-height: 1;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s;
-webkit-backdrop-filter: blur(4px);
backdrop-filter: blur(4px);
}
.th-slider-arrow:hover { background: rgba(255,255,255,0.35); }
.th-slider-dots { display: flex; gap: 8px; align-items: center; }
.th-slider-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(255,255,255,0.45);
border: 2px solid rgba(255,255,255,0.6);
cursor: pointer;
padding: 0;
transition: background 0.25s, transform 0.25s;
}
.th-slider-dot.active {
background: #D4AF37;
border-color: #D4AF37;
transform: scale(1.3);
} body.admin-bar section.th-hero-slider .th-hero-container { padding-top: 112px !important; }
@media screen and (max-width: 782px) {
body.admin-bar section.th-hero-slider .th-hero-container { padding-top: 126px !important; }
}
.section-title-wrapper { text-align: center; margin-bottom: 30px; }
.section-title { 
font-family: var(--font-serif);
font-size: clamp(1.8rem, 5vw, 2.5rem); font-weight: bold; 
color: var(--red-ink);
text-shadow: 1px 1px 2px var(--shadow-color);
} .category-user-controls {
background: rgba(244, 228, 188, 0.7);
-webkit-backdrop-filter: blur(3px);
backdrop-filter: blur(3px); border-bottom: 3px solid var(--dark-brown);
padding: 10px 15px;
box-shadow: 0 4px 10px var(--shadow-color);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 20px;
position: sticky; top: 0;
z-index: 999;
}
.category-tabs { display: flex; flex-wrap: nowrap; gap: 10px; align-items: center; overflow-x: auto; padding-bottom: 8px; }
.category-tabs::-webkit-scrollbar { display: none; }
.category-tabs { -ms-overflow-style: none; scrollbar-width: none; }
.cat-link {
text-decoration: none;
border: 2px solid var(--dark-brown);
background: var(--parchment-bg);
padding: 6px 15px;
border-radius: 20px;
font-size: 14px;
font-weight: bold;
color: var(--ink-brown);
transition: all 0.2s ease-in-out;
box-shadow: 2px 2px 5px var(--shadow-color);
white-space: nowrap;
flex-shrink: 0;
}
.cat-link:hover { transform: translateY(-2px) scale(1.05); box-shadow: 4px 4px 10px var(--shadow-color); background: #fffaf0; }
.cat-link.active { background: var(--red-ink); color: var(--parchment-bg); border-color: var(--dark-brown); transform: scale(1.05); }
.cat-link i { margin-right: 5px; }
.cat-link .count { font-size: 11px; opacity: 0.8; }
.user-actions .btn { font-family: var(--font-sans); border-radius: 20px; font-weight: bold; border-width: 2px; }
.user-actions .btn-outline-primary { border-color: var(--dark-brown); color: var(--dark-brown); }
.user-actions .btn-outline-primary:hover { background: var(--dark-brown); color: var(--parchment-bg); }
.user-actions .btn-success { background: var(--red-ink); border-color: var(--red-ink); }
.user-actions .btn-success:hover { background: #7a2222; border-color: #7a2222; } .hero-main-visual {
padding: clamp(40px, 10vw, 80px) 20px; background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url(http://localhost/wp/wp-content/uploads/2025/05/屏幕截图-2024-06-22-230347.png) center/cover no-repeat;
color: white;
}
.hero-title { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: bold; text-shadow: 2px 2px 8px #000; }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.3rem); opacity: 0.9; margin: 15px 0 30px; max-width: 600px; margin-left:auto; margin-right:auto; }
.btn-primary-cta, .btn-secondary-cta { transition: all 0.3s ease; }
.btn-primary-cta { background-color: var(--gold-accent); border-color: var(--gold-accent); color: var(--ink-brown); font-weight: bold; padding: 12px 30px; }
.btn-primary-cta:hover { background-color: #ffd700; border-color: #ffd700; transform: scale(1.05); }
.btn-secondary-cta { border-width: 2px; font-weight: bold; padding: 12px 30px; }
.btn-secondary-cta:hover { background-color: rgba(255,255,255,0.1); transform: scale(1.05); } .explorer-toolkit-section { padding-top: 20px; }
.explore-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 25px; }
.explore-card {
display: block;
background: var(--parchment-bg);
padding: 20px;
text-align: center;
border-radius: 10px;
color: var(--ink-brown);
text-decoration: none;
transition: all 0.3s ease;
border: 3px solid var(--dark-brown); box-shadow: 8px 8px 3px -3px var(--shadow-color), 10px 10px 15px var(--shadow-color);
position: relative;
overflow: hidden; } .explore-card::after {
content: '';
position: absolute;
top: -5px; left: -5px; right: -5px; bottom: -5px;
border-radius: 10px;
box-shadow: inset 0 0 10px 5px var(--dark-brown);
opacity: 0;
transition: opacity 0.3s ease;
}
.explore-card:hover { transform: translateY(-5px) rotate(1deg); box-shadow: 12px 12px 5px -3px var(--shadow-color), 15px 15px 25px var(--shadow-color); }
.explore-card:hover::after { opacity: 0.2; }
.explore-card .card-icon { font-size: 2.5rem; margin-bottom: 10px; color: var(--red-ink); transition: transform 0.3s ease; }
.explore-card:hover .card-icon { transform: scale(1.1); }
.explore-card h3 { font-size: 1.2rem; font-weight: bold; margin-bottom: 5px; }
.explore-card p { font-size: 0.9rem; color: var(--ink-brown); opacity: 0.8; margin: 0; } #map8.map-container-wrapper {
height: 500px;
border: 5px solid var(--dark-brown);
box-shadow: inset 0 0 20px rgba(0,0,0,0.5), 0 10px 30px var(--shadow-color);
border-radius: 15px;
background-color: #e9ecef;
background-image: url(http://localhost/wp/wp-content/uploads/2025/05/屏幕截图-2024-06-26-223112.png);
background-size: cover;
display: flex;
align-items: center;
justify-content: center;
}
.map-loading-placeholder {
font-family: var(--font-serif);
color: var(--ink-brown);
font-size: 1.5rem;
padding: 20px;
background: rgba(244, 228, 188, 0.8);
border-radius: 10px;
text-shadow: 1px 1px 2px white;
} .legacy-posts-section { background: transparent; padding-top: 20px; }  @media (max-width: 768px) {
.explore-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 15px; }
.explore-card { padding: 15px 10px; }
.explore-card h3 { font-size: 1rem; }
.explore-card p { font-size: 0.8rem; }
}
@media (max-width: 480px) {
.explore-grid { grid-template-columns: repeat(2, 1fr); }
}
:root {
--parchment-bg: #f4e4bc; --dark-brown: #6b4f3a; --ink-brown: #4a3728; --red-ink: #9a2a2a; --gold-accent: #b8860b; --burnt-edge: #d2b48c; --shadow-color: rgba(107, 79, 58, 0.3);
--font-serif: 'Georgia', 'Times New Roman', serif; --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
body {
background: linear-gradient(45deg, #f4e4bc 0%, #e6d7a3 50%, #f4e4bc 100%);
font-family: var(--font-serif);
color: var(--ink-brown);
} #content.container {
max-width: 100%;
padding: 0;
}
section { 
margin-bottom: 25px; 
padding: 0 15px;
}
.section-title-wrapper { text-align: center; margin-bottom: 25px; }
.section-title { 
font-family: var(--font-serif);
font-size: 2.2rem; 
font-weight: bold; 
color: var(--red-ink);
text-shadow: 1px 1px 2px var(--shadow-color);
} .category-user-controls {
background: rgba(244, 228, 188, 0.7); border-bottom: 3px solid var(--dark-brown);
padding: 10px 15px;
box-shadow: 0 4px 10px var(--shadow-color);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 20px;
}
.category-tabs {
display: flex;
flex-wrap: nowrap; gap: 10px;
align-items: center;
overflow-x: auto;
padding-bottom: 8px; } .category-tabs::-webkit-scrollbar { display: none; }
.category-tabs { -ms-overflow-style: none; scrollbar-width: none; }
.cat-link {
text-decoration: none;
border: 2px solid var(--dark-brown);
background: var(--parchment-bg);
padding: 6px 15px;
border-radius: 20px;
font-size: 14px;
font-weight: bold;
color: var(--ink-brown);
transition: all 0.3s ease;
box-shadow: 2px 2px 5px var(--shadow-color);
white-space: nowrap;
flex-shrink: 0;
}
.cat-link:hover {
transform: translateY(-2px);
box-shadow: 4px 4px 10px var(--shadow-color);
background: #fffaf0;
}
.cat-link.active {
background: var(--red-ink);
color: var(--parchment-bg);
border-color: var(--dark-brown);
}
.cat-link i { margin-right: 5px; }
.cat-link .count { font-size: 11px; opacity: 0.8; }
.user-actions .btn {
font-family: var(--font-sans);
border-radius: 20px;
font-weight: bold;
border-width: 2px;
}
.user-actions .btn-outline-primary {
border-color: var(--dark-brown);
color: var(--dark-brown);
}
.user-actions .btn-outline-primary:hover {
background: var(--dark-brown);
color: var(--parchment-bg);
}
.user-actions .btn-success {
background: var(--red-ink);
border-color: var(--red-ink);
} .hero-main-visual {
padding: 60px 20px;
border-radius: 0; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(http://localhost/wp/wp-content/uploads/2025/05/屏幕截图-2024-06-22-230347.png) center/cover no-repeat;
color: white;
}
.hero-title { font-size: 3rem; font-weight: bold; text-shadow: 2px 2px 8px #000; }
.hero-subtitle { font-size: 1.2rem; opacity: 0.9; margin: 10px 0 25px; }
.btn-primary-cta { background-color: var(--gold-accent); border-color: var(--gold-accent); color: var(--ink-brown); font-weight: bold; padding: 12px 30px; }
.btn-secondary-cta { border-width: 2px; font-weight: bold; padding: 12px 30px; } .explore-grid { 
display: grid; 
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
gap: 20px; 
}
.explore-card {
display: block;
background: var(--parchment-bg);
padding: 20px;
text-align: center;
border-radius: 10px;
color: var(--ink-brown);
text-decoration: none;
transition: all 0.3s ease;
border: 3px solid var(--dark-brown);
box-shadow: 5px 5px 15px var(--shadow-color);
position: relative;
}
.explore-card:hover {
transform: translateY(-5px) rotate(1deg);
box-shadow: 8px 8px 20px var(--shadow-color);
}
.explore-card .card-icon { font-size: 2.5rem; margin-bottom: 10px; color: var(--red-ink); }
.explore-card h3 { font-size: 1.2rem; font-weight: bold; margin-bottom: 5px; }
.explore-card p { font-size: 0.9rem; color: var(--ink-brown); opacity: 0.8; margin-bottom: 10px; }
.explore-card .card-action { font-weight: bold; color: var(--red-ink); } #map8 {
border: 5px solid var(--dark-brown) !important;
box-shadow: inset 0 0 20px rgba(0,0,0,0.5) !important;
} .function-entrances-section { background: rgba(210, 180, 140, 0.3); padding: 20px; border-radius: 10px; border: 2px dashed var(--dark-brown); }
.entrance-group { margin-bottom: 20px; }
.group-title { text-align: center; font-size: 1.5rem; color: var(--red-ink); margin-bottom: 15px; }
.entrance-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.entrance-btn {
background: linear-gradient(135deg, var(--parchment-bg) 0%, #e6d7a3 100%);
color: var(--ink-brown);
text-decoration: none;
padding: 15px;
width: 130px;
border-radius: 8px;
border: 2px solid var(--dark-brown);
box-shadow: 3px 3px 8px var(--shadow-color);
transition: all 0.3s ease;
text-align: center;
}
.entrance-btn:hover { transform: translateY(-3px); box-shadow: 5px 5px 12px var(--shadow-color); }
.entrance-btn i { font-size: 2rem; display: block; margin-bottom: 8px; }
.entrance-btn span { font-weight: bold; } .legacy-posts-section { background: transparent; padding: 0; }   @media (max-width: 1024px) {
.th-hero-social-proof {
gap: 1rem;
}
.th-proof-item {
font-size: 0.9rem;
padding: 0.6rem 1rem;
}
.th-btn-mega {
padding: 1.5rem 1.75rem;
}
.th-section-header {
padding: 0.75rem 1rem;
}
} @media (max-width: 768px) { .explore-methods-section { display: block; }
body { padding-bottom: 70px; } .th-hero-container {
flex-direction: column;
gap: 2rem;
padding: 2rem 1rem;
}
.th-hero-left,
.th-hero-right {
width: 100%;
text-align: center;
}
.th-hero-title-v2 {
font-size: clamp(2rem, 10vw, 3rem);
}
.th-hero-subtitle-v2 {
font-size: clamp(1rem, 4vw, 1.2rem);
}
.th-hero-social-proof {
justify-content: center;
gap: 0.75rem;
}
.th-proof-item {
padding: 0.5rem 1rem;
font-size: 0.85rem;
} .th-btn-mega {
padding: 1.25rem 1.5rem;
font-size: 1rem;
flex-direction: column;
text-align: center;
gap: 0.75rem;
}
.th-btn-mega-icon {
font-size: 1.5rem;
}
.th-btn-mega-text {
align-items: center;
}
.th-btn-mega-text strong {
font-size: 1.1rem;
}
.th-btn-mega-text small {
font-size: 0.8rem;
}
.th-btn-mega-arrow {
display: none; }
.th-btn-secondary {
padding: 0.875rem 1.25rem;
font-size: 0.95rem;
} .th-section-title-v2 {
font-size: clamp(1.2rem, 5vw, 1.8rem); gap: 0.4rem; flex-wrap: nowrap !important; white-space: nowrap; }
.title-icon {
font-size: 1em; flex-shrink: 0; }
.title-badge {
font-size: 0.4em; padding: 0.15rem 0.5rem;
flex-shrink: 0; }
.th-section-subtitle {
font-size: clamp(0.9rem, 3vw, 1rem);
} .th-map-section {
padding: 2rem 0;
margin: 2rem 0;
}
.th-map-wrapper {
border-radius: 12px;
}
.th-map-large {
min-height: 300px;
} .column-title-v2 {
font-size: 1.25rem;
gap: 0.5rem;
}
.column-count {
font-size: 0.65em;
padding: 0.2rem 0.6rem;
min-width: 40px;
}
.poi-list {
gap: 0.75rem;
}
.poi-item {
padding: 0.75rem;
gap: 0.75rem;
}
.poi-image {
width: 60px;
height: 60px;
}
.poi-no-image {
font-size: 1.5rem;
}
.poi-title {
font-size: 1rem;
}
.poi-meta {
font-size: 0.85rem;
gap: 0.75rem;
}
.th-btn-text-action {
font-size: 0.95rem;
padding: 0.6rem 1.25rem;
} .explore-grid {
grid-template-columns: repeat(3, 1fr);
gap: 10px;
}
.explore-card {
padding: 10px;
}
.explore-card h3 {
font-size: 0.9rem;
}
.explore-card p {
font-size: 0.7rem;
display: none; }
} @media (max-width: 480px) {
.th-hero-container {
padding: 1.5rem 0.75rem;
}
.th-hero-social-proof {
flex-direction: column;
gap: 0.5rem;
width: 100%;
}
.th-proof-item {
width: 100%;
justify-content: center;
}
.th-section-header {
padding: 1rem 0.5rem;
} .th-section-title-v2 {
flex-direction: row !important; flex-wrap: nowrap !important; gap: 0.3rem; font-size: clamp(1rem, 4.5vw, 1.5rem); }
.title-icon {
font-size: 0.9em;
}
.title-badge {
font-size: 0.35em;
padding: 0.1rem 0.4rem;
}
.column-title-v2 {
flex-wrap: wrap;
font-size: 1.1rem;
} .poi-item {
flex-direction: row !important; align-items: flex-start;
text-align: left;
padding: 0.4rem;
gap: 0.4rem;
}
.poi-image {
width: 45px !important;
height: 45px !important;
flex-shrink: 0;
}
.poi-info {
flex: 1;
align-items: flex-start;
}
.poi-title {
font-size: 0.8rem;
}
.poi-meta {
font-size: 0.7rem;
}
.poi-title {
white-space: normal;
overflow: visible;
text-align: center;
}
.poi-meta {
justify-content: center;
}
.explore-grid {
grid-template-columns: repeat(2, 1fr);
}
} .welcome-toast {
position: fixed;
bottom: 30px;
right: 30px;
max-width: 320px;
background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
color: #fff;
border-radius: 16px;
padding: 1.5rem;
box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
z-index: 1000;
animation: slideInRight 0.5s ease-out;
border: 2px solid rgba(255, 255, 255, 0.3);
}
@keyframes slideInRight {
from {
transform: translateX(400px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
.toast-close {
position: absolute;
top: 10px;
right: 10px;
background: rgba(0, 0, 0, 0.3);
border: none;
color: #fff;
font-size: 1.5rem;
width: 32px;
height: 32px;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
}
.toast-close:hover {
background: rgba(0, 0, 0, 0.5);
transform: rotate(90deg);
}
.toast-icon {
font-size: 2.5rem;
margin-bottom: 0.75rem;
text-align: center;
}
.toast-content h4 {
color: #fff;
font-size: 1.25rem;
font-weight: 700;
margin: 0 0 0.5rem 0;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.toast-content p {
color: rgba(255, 255, 255, 0.95);
font-size: 1rem;
margin: 0 0 1rem 0;
}
.toast-content strong {
color: #FFD700;
font-size: 1.2rem;
text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.toast-btn {
display: block;
width: 100%;
background: #fff;
color: #FF6B35;
text-align: center;
padding: 0.75rem 1rem;
border-radius: 10px;
text-decoration: none;
font-weight: 700;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.toast-btn:hover {
background: #FFD700;
color: #333;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.toast-stats {
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid rgba(255, 255, 255, 0.3);
text-align: center;
}
.toast-stats small {
color: rgba(255, 255, 255, 0.9);
font-size: 0.85rem;
font-weight: 500;
} @media (max-width: 768px) {
.welcome-toast {
bottom: 20px;
right: 20px;
left: 20px;
max-width: none;
}
} .th-section-header {
text-align: center;
margin-bottom: 1rem;
padding: 0.75rem 1rem;
}
.th-section-title-v2 {
font-size: clamp(1.4rem, 3vw, 1.9rem);
font-weight: 700;
color: var(--red-ink);
margin-bottom: 0.25rem;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
flex-wrap: nowrap;
}
.title-icon {
font-size: 1.2em;
display: inline-block;
animation: float-icon 3s ease-in-out infinite;
}
@keyframes float-icon {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-4px); }
}
.title-badge {
display: inline-block;
background: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%);
color: #fff;
padding: 0.25rem 0.75rem;
border-radius: 20px;
font-size: 0.5em;
font-weight: 700;
letter-spacing: 1px;
box-shadow: 0 2px 10px rgba(255, 107, 53, 0.4);
animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
.th-section-subtitle {
font-size: clamp(1rem, 2.5vw, 1.2rem);
color: var(--ink-brown);
opacity: 0.8;
margin: 0;
}
.th-section-subtitle strong {
color: var(--gold-accent);
font-size: 1.2em;
} .th-map-section {
background: linear-gradient(to bottom, rgba(244, 228, 188, 0.3) 0%, transparent 100%);
padding: 0;
margin: 0;
} .th-map-section .th-section-header {
padding: 0.5rem 1rem 0.4rem;
margin-bottom: 0.4rem;
} section.th-hero-slider {
margin-bottom: 0 !important;
} @media (max-width: 768px) {
.th-map-section {
padding: 0.25rem 0;
margin: 0;
} .th-section-header {
margin-bottom: 1rem; padding: 0.5rem 1rem; }
}
.th-map-wrapper {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(107, 79, 58, 0.2);
}
.th-map-large {
position: relative;
border: 3px solid var(--dark-brown);
border-radius: 16px;
overflow: hidden;
}
.th-map-large::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 2px solid var(--gold-accent);
border-radius: 14px;
pointer-events: none;
z-index: 1;
} .column-title-v2 {
display: flex;
align-items: center;
gap: 0.75rem;
font-size: 1.5rem;
font-weight: 700;
color: var(--red-ink);
margin-bottom: 1.5rem;
padding-bottom: 0.75rem;
border-bottom: 3px solid var(--gold-accent);
position: relative;
}
.column-title-v2::after {
content: '';
position: absolute;
bottom: -3px;
left: 0;
width: 60px;
height: 3px;
background: var(--red-ink);
}
.column-icon {
font-size: 1.3em;
display: inline-flex;
animation: bounce-icon 2s ease-in-out infinite;
}
.column-text {
flex: 1;
}
.column-count {
display: inline-flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--gold-accent) 0%, #d4a017 100%);
color: #fff;
padding: 0.25rem 0.75rem;
border-radius: 20px;
font-size: 0.7em;
font-weight: 700;
min-width: 50px;
box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
} .poi-list {
display: flex;
flex-direction: column;
gap: 1rem;
}
.poi-item {
display: flex;
gap: 1rem;
padding: 1rem;
background: #fff;
border: 2px solid var(--dark-brown);
border-radius: 12px;
text-decoration: none;
color: var(--ink-brown);
transition: all 0.3s ease;
box-shadow: 2px 2px 8px var(--shadow-color);
position: relative;
overflow: hidden;
}
.poi-item::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
transition: left 0.5s;
}
.poi-item:hover {
transform: translateY(-3px);
box-shadow: 4px 6px 15px var(--shadow-color);
border-color: var(--gold-accent);
}
.poi-item:hover::before {
left: 100%;
}
.poi-image {
width: 80px;
height: 80px;
flex-shrink: 0;
border-radius: 8px;
overflow: hidden;
border: 2px solid var(--gold-accent);
background: var(--parchment-bg);
display: flex;
align-items: center;
justify-content: center;
}
.poi-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.poi-no-image {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(184, 134, 11, 0.2) 100%);
color: var(--gold-accent);
font-size: 2rem;
}
.poi-info {
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
min-width: 0;
}
.poi-title {
font-size: 1.1rem;
font-weight: 700;
color: var(--red-ink);
margin: 0 0 0.5rem 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.poi-item:hover .poi-title {
color: var(--gold-accent);
}
.poi-meta {
display: flex;
align-items: center;
gap: 1rem;
font-size: 0.9rem;
color: #666;
flex-wrap: wrap;
}
.poi-category,
.poi-views,
.poi-new {
display: inline-flex;
align-items: center;
gap: 0.25rem;
}
.poi-new {
color: var(--gold-accent);
font-weight: 700;
}
.poi-new i {
animation: twinkle 1.5s ease-in-out infinite;
}
@keyframes twinkle {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
} .view-all-link {
text-align: center;
margin-top: 1.5rem;
padding-top: 1.5rem;
border-top: 2px dashed var(--dark-brown);
}
.th-btn-text-action {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--red-ink);
text-decoration: none;
font-weight: 700;
font-size: 1.05rem;
padding: 0.75rem 1.5rem;
border: 2px solid var(--red-ink);
border-radius: 25px;
transition: all 0.3s ease;
background: transparent;
}
.th-btn-text-action:hover {
background: var(--red-ink);
color: #fff;
transform: translateX(5px);
}
.th-btn-text-action i {
transition: transform 0.3s ease;
}
.th-btn-text-action:hover i {
transform: translateX(5px);
} .th-empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 3rem 1rem;
text-align: center;
}  .th-hero {
position: relative;
min-height: 500px;
} body.admin-bar section.th-hero .th-hero-container {
padding-top: 120px !important;
}
.th-hero-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.6) !important;
z-index: 1;
}
.th-hero-container {
position: relative;
z-index: 10;
} .th-hero-title-v2 {
font-size: clamp(2.5rem, 8vw, 4.5rem);
font-weight: 800;
color: #fff;
text-shadow:
3px 3px 10px rgba(0,0,0,1),
-1px -1px 8px rgba(0,0,0,0.8),
0 0 40px rgba(0,0,0,0.8);
margin-bottom: 1rem;
line-height: 1.2;
}
.th-highlight-gold {
color: #FFD700;
text-shadow:
3px 3px 10px rgba(0,0,0,1),
0 0 30px rgba(255, 215, 0, 0.8),
0 0 50px rgba(255, 215, 0, 0.4);
}
.th-hero-subtitle-v2 {
font-size: clamp(1.1rem, 3vw, 1.5rem);
color: #fff;
text-shadow:
2px 2px 8px rgba(0,0,0,1),
0 0 20px rgba(0,0,0,0.8);
margin-bottom: 2rem;
line-height: 1.6;
} .th-hero-social-proof {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
margin-top: 2rem;
}
.th-proof-item {
display: flex;
align-items: center;
gap: 0.5rem;
background: rgba(0, 0, 0, 0.7);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
padding: 0.75rem 1.25rem;
border-radius: 50px;
color: #fff;
font-size: 0.95rem;
border: 2px solid rgba(255, 215, 0, 0.4);
box-shadow: 0 4px 20px rgba(0,0,0,0.5);
text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}
.th-proof-item i {
font-size: 1.1rem;
color: #FFD700;
filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}
.th-proof-item strong {
color: #FFD700;
text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
} .th-proof-live {
background: rgba(255, 107, 53, 0.9);
border-color: rgba(255, 215, 0, 0.6);
box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}
.th-proof-live i {
color: #FFD700;
animation: pulse-dot 2s ease-in-out infinite;
filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}
@keyframes pulse-dot {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
} .th-hero-cta-wrapper {
display: flex;
flex-direction: column;
gap: 1rem;
align-items: stretch;
}
.th-btn-mega {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
color: #fff;
text-decoration: none;
padding: 1.75rem 2rem;
border-radius: 16px;
font-size: 1.1rem;
font-weight: 700;
box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
transition: all 0.3s ease;
border: 2px solid rgba(255, 255, 255, 0.3);
position: relative;
overflow: hidden;
}
.th-btn-mega::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
transition: left 0.5s;
}
.th-btn-mega:hover {
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
color: #fff;
}
.th-btn-mega:hover::before {
left: 100%;
}
.th-btn-mega-icon {
font-size: 2rem;
animation: bounce-icon 2s ease-in-out infinite;
}
@keyframes bounce-icon {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-5px); }
}
.th-btn-mega-text {
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.th-btn-mega-text strong {
font-size: 1.3rem;
display: block;
margin-bottom: 0.25rem;
}
.th-btn-mega-text small {
font-size: 0.9rem;
opacity: 0.9;
font-weight: 400;
}
.th-btn-mega-arrow {
font-size: 1.5rem;
transition: transform 0.3s ease;
}
.th-btn-mega:hover .th-btn-mega-arrow {
transform: translateX(5px);
} .th-btn-secondary {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
background: rgba(0, 0, 0, 0.7);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
color: #fff;
text-decoration: none;
padding: 1rem 1.5rem;
border-radius: 12px;
font-size: 1rem;
font-weight: 600;
border: 2px solid rgba(255, 215, 0, 0.5);
transition: all 0.3s ease;
text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.th-btn-secondary:hover {
background: rgba(255, 215, 0, 0.9);
border-color: #FFD700;
transform: translateY(-2px);
color: #333;
text-shadow: none;
box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
} @media (max-width: 768px) {
.th-hero-social-proof {
gap: 0.75rem;
}
.th-proof-item {
padding: 0.5rem 1rem;
font-size: 0.85rem;
}
.th-btn-mega {
padding: 1.25rem 1.5rem;
font-size: 1rem;
}
.th-btn-mega-icon {
font-size: 1.5rem;
}
.th-btn-mega-text strong {
font-size: 1.1rem;
}
.th-btn-mega-text small {
font-size: 0.8rem;
}
} .th-recent-strip {
display: flex;
gap: 10px;
overflow-x: auto;
padding: 12px 0 10px;
-webkit-overflow-scrolling: touch;
scrollbar-width: thin;
scrollbar-color: var(--gold-accent) transparent;
}
.th-recent-strip::-webkit-scrollbar { height: 4px; }
.th-recent-strip::-webkit-scrollbar-thumb { background: var(--gold-accent); border-radius: 2px; }
.th-recent-strip::-webkit-scrollbar-track { background: transparent; }
.th-strip-card {
display: flex;
align-items: center;
gap: 8px;
flex-shrink: 0;
min-width: 155px;
max-width: 190px;
padding: 7px 10px;
background: #fff;
border: 1px solid var(--parchment-border);
border-radius: 10px;
text-decoration: none;
transition: box-shadow .2s, transform .2s;
}
.th-strip-card:hover {
box-shadow: 0 3px 12px rgba(61,31,10,.15);
transform: translateY(-2px);
border-color: var(--gold-accent);
}
.th-strip-img {
position: relative;
width: 54px;
height: 54px;
flex-shrink: 0;
border-radius: 8px;
overflow: hidden;
background: var(--parchment-light);
}
.th-strip-img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.th-strip-badge {
position: absolute;
top: 2px;
right: 2px;
background: var(--red-ink);
color: #fff;
font-size: 9px;
font-weight: 700;
padding: 1px 4px;
border-radius: 3px;
line-height: 1.4;
}
.th-strip-info { overflow: hidden; flex: 1; }
.th-strip-title {
font-size: 12px;
font-weight: 600;
color: var(--ink-brown);
margin: 0 0 3px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
line-height: 1.3;
}
.th-strip-cat {
font-size: 11px;
color: #888;
margin: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.th-strip-empty { color: #888; font-size: 13px; padding: 12px 0; } @media (max-width: 768px) {
.th-strip-card { min-width: 135px; max-width: 160px; padding: 6px 8px; }
.th-strip-img { width: 44px; height: 44px; }
.th-strip-title { font-size: 11px; }
} #th-strip-wrap {
padding: 0 1rem 1rem;
} .th-strip-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 0 4px;
border-bottom: 1px solid var(--parchment-border);
margin-bottom: 2px;
}
.th-strip-label {
font-size: 13px;
font-weight: 700;
color: var(--ink-brown);
display: flex;
align-items: center;
gap: 5px;
}
.th-strip-label i { color: var(--red-ink); }
.th-strip-more {
font-size: 12px;
color: var(--gold-accent);
text-decoration: none;
font-weight: 600;
}
.th-strip-more:hover { text-decoration: underline; } .th-strip-actions {
display: flex;
gap: 4px;
margin-top: 4px;
}
.th-strip-btn {
padding: 4px 9px;
border: none;
border-radius: 6px;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 3px;
font-size: 11px;
font-weight: 600;
white-space: nowrap;
transition: transform .15s, box-shadow .15s;
}
.th-strip-btn:hover { transform: translateY(-1px); box-shadow: 0 2px 6px rgba(0,0,0,.2); }
.th-strip-btn--locate { background: #2196F3; color: #fff; }
.th-strip-btn--nav    { background: #4CAF50; color: #fff; }