.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;
}
}.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);
}