.gm-event-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.gm-event-item {
    display: flex;
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    margin-bottom: 0;
    padding: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gm-event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
    transition: left 0.3s ease;
}

.gm-event-item::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 115, 170, 0.03) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gm-event-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

.gm-event-item:hover::before {
    left: 0;
}

.gm-event-item:hover::after {
    opacity: 1;
}

.gm-event-thumbnail {
    flex: 0 0 220px;
    margin-right: 24px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gm-event-thumbnail a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gm-event-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gm-event-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 115, 170, 0.2), rgba(0, 160, 210, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gm-event-thumbnail:hover::after {
    opacity: 1;
}

.gm-event-thumbnail:hover img {
    transform: scale(1.08);
}

.gm-event-content {
    flex: 1;
}

.gm-event-title {
    margin: 0 0 16px;
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1.3;
}

.gm-event-title a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.gm-event-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
    transition: width 0.3s ease;
}

.gm-event-title a:hover {
    color: #0073aa;
}

.gm-event-title a:hover::after {
    width: 100%;
}

.gm-event-status {
    margin-bottom: 12px;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(135deg, #0073aa, #00a0d2);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.25);
    animation: statusBadgePulse 2s ease-in-out infinite;
}

.gm-event-meta {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.gm-event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.gm-event-meta span:hover {
    background: #e3f2fd;
    border-color: #bbdefb;
    transform: translateY(-1px);
}

.gm-event-meta i {
    margin-right: 0;
    color: #0073aa;
    font-size: 14px;
}

.gm-event-excerpt {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.gm-event-actions {
    display: flex;
    gap: 10px;
}

.gm-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gm-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.gm-button:hover::before {
    left: 100%;
}

.gm-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gm-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.gm-button-primary {
    background: linear-gradient(135deg, #0073aa, #00a0d2);
    color: #fff;
}

.gm-button-primary:hover {
    background: linear-gradient(135deg, #005a87, #0087b7);
}

.gm-button-success {
    background: linear-gradient(135deg, #46b450, #52c462);
    color: #fff;
}

.gm-button-success:hover {
    background: linear-gradient(135deg, #3a9e45, #42b853);
}

.gm-button-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 10px;
}

.gm-event-detail-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gm-event-header {
    margin-bottom: 40px;
}

.gm-event-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gm-event-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gm-event-banner:hover .gm-event-banner-image {
    transform: scale(1.05);
}

.gm-event-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.gm-event-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: #fff;
    z-index: 2;
}

.gm-event-title {
    font-size: 2.5em;
    margin: 0 0 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gm-event-status-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: statusBadgePulse 2s ease-in-out infinite;
}

@keyframes statusBadgePulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    }
}

/* ==================== 活动优惠券/折扣系统 ==================== */

.gm-coupon-container {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gm-coupon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ffca28, #ffc107, #ff9800);
    background-size: 300% 100%;
    animation: gradientShift 8s ease infinite;
}

.gm-coupon-container:hover {
    box-shadow: 0 12px 40px rgba(255, 152, 0, 0.15);
    transform: translateY(-2px);
}

.gm-coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 16px;
}

.gm-coupon-header h2 {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gm-coupon-header h2::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, #ff9800, #ffca28);
    border-radius: 2px;
}

.gm-coupon-actions {
    display: flex;
    gap: 12px;
}

.gm-coupon-input-section {
    margin-bottom: 24px;
}

.gm-coupon-input-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.gm-coupon-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gm-coupon-input:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.1);
}

.gm-coupon-input:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.gm-coupon-message {
    min-height: 24px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.gm-coupon-message.gm-message-success {
    display: block;
    color: #46b450;
}

.gm-coupon-message.gm-message-error {
    display: block;
    color: #dc3232;
}

.gm-coupon-message.gm-message-info {
    display: block;
    color: #0073aa;
}

.gm-coupon-summary {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    border: 1px solid #ffca28;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.gm-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 15px;
}

.gm-summary-label {
    color: #666;
    font-weight: 500;
}

.gm-summary-value {
    color: #333;
    font-weight: 600;
}

.gm-summary-discount .gm-summary-value {
    color: #46b450;
}

.gm-summary-total {
    border-top: 2px solid #ffca28;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 18px;
}

.gm-summary-total .gm-summary-value {
    color: #ff9800;
    font-size: 22px;
}

.gm-coupon-applied {
    margin-bottom: 20px;
}

.gm-applied-coupon-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border: 2px solid #4caf50;
    border-radius: 12px;
    animation: slideIn 0.3s ease;
}

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

.gm-applied-coupon-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.gm-applied-coupon-info {
    flex: 1;
}

.gm-applied-coupon-info h4 {
    color: #2e7d32;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gm-applied-coupon-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.gm-remove-coupon {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #dc3232;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gm-remove-coupon:hover {
    background: #dc3232;
    color: #fff;
    transform: scale(1.1);
}

/* 优惠券模态框 */
.gm-coupon-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gm-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.gm-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.gm-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 2px solid #e0e0e0;
}

.gm-modal-header h3 {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.gm-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.gm-modal-close:hover {
    background: #dc3232;
    color: #fff;
}

.gm-modal-body {
    padding: 24px;
    max-height: calc(80vh - 100px);
    overflow-y: auto;
}

.gm-coupon-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.gm-my-coupons-list {
    min-height: 300px;
}

.gm-coupon-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gm-coupon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff9800, #ffca28);
}

.gm-coupon-card:hover {
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.15);
    transform: translateX(4px);
}

.gm-coupon-available {
    border-color: #4caf50;
}

.gm-coupon-available::before {
    background: linear-gradient(180deg, #4caf50, #66bb6a);
}

.gm-coupon-used {
    opacity: 0.6;
    border-color: #9e9e9e;
}

.gm-coupon-used::before {
    background: linear-gradient(180deg, #9e9e9e, #bdbdbd);
}

.gm-coupon-expired {
    opacity: 0.6;
    border-color: #dc3232;
}

.gm-coupon-expired::before {
    background: linear-gradient(180deg, #dc3232, #e57373);
}

.gm-coupon-left {
    width: 100px;
    text-align: center;
    flex-shrink: 0;
}

.gm-coupon-value {
    color: #ff9800;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.gm-coupon-type {
    color: #666;
    font-size: 12px;
    font-weight: 500;
}

.gm-coupon-right {
    flex: 1;
    min-width: 0;
}

.gm-coupon-code {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gm-coupon-desc {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.gm-coupon-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.gm-coupon-available .gm-coupon-status {
    background: #e8f5e9;
    color: #4caf50;
}

.gm-coupon-used .gm-coupon-status {
    background: #f5f5f5;
    color: #9e9e9e;
}

.gm-coupon-expired .gm-coupon-status {
    background: #ffebee;
    color: #dc3232;
}

/* 响应式优惠券系统 */
@media (max-width: 768px) {
    .gm-coupon-container {
        padding: 24px;
    }
    
    .gm-coupon-header h2 {
        font-size: 20px;
    }
    
    .gm-coupon-input-wrapper {
        flex-direction: column;
    }
    
    .gm-coupon-input {
        width: 100%;
    }
    
    .gm-coupon-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .gm-coupon-actions .gm-button {
        flex: 1;
    }
    
    .gm-applied-coupon-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gm-applied-coupon-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .gm-applied-coupon-info h4 {
        font-size: 16px;
    }
    
    .gm-applied-coupon-info p {
        font-size: 13px;
    }
    
    .gm-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .gm-modal-header {
        padding: 20px;
    }
    
    .gm-modal-header h3 {
        font-size: 18px;
    }
    
    .gm-modal-body {
        padding: 20px;
    }
    
    .gm-coupon-filters {
        flex-direction: column;
    }
    
    .gm-filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .gm-coupon-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gm-coupon-left {
        width: 100%;
        text-align: left;
        margin-bottom: 12px;
    }
    
    .gm-coupon-value {
        font-size: 24px;
    }
    
    .gm-coupon-right {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gm-coupon-container {
        padding: 16px;
    }
    
    .gm-coupon-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gm-coupon-header h2 {
        font-size: 18px;
    }
    
    .gm-coupon-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .gm-coupon-actions .gm-button {
        width: 100%;
    }
    
    .gm-coupon-input {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .gm-summary-row {
        font-size: 14px;
    }
    
    .gm-summary-total {
        font-size: 16px;
    }
    
    .gm-summary-total .gm-summary-value {
        font-size: 20px;
    }
    
    .gm-modal-content {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    
    .gm-modal-header {
        padding: 16px;
    }
    
    .gm-modal-body {
        padding: 16px;
    }
    
    .gm-coupon-value {
        font-size: 22px;
    }
}

/* 打印样式 */
@media print {
    .gm-coupon-actions,
    .gm-coupon-input-section,
    .gm-coupon-modal {
        display: none;
    }
    
    .gm-coupon-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
}

.gm-event-header-simple {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 40px;
}

.gm-event-title-simple {
    font-size: 2em;
    margin: 0 0 15px;
    color: #333;
}

.gm-event-status-badge-simple {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(135deg, #0073aa, #00a0d2);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
    animation: statusBadgePulse 2s ease-in-out infinite;
}

.gm-event-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    margin-bottom: 60px;
}

.gm-event-main-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gm-event-info-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gm-event-info-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.gm-event-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
}

.gm-section-title {
    font-size: 1.4em;
    margin: 0 0 28px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.gm-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
    border-radius: 3px;
}

.gm-section-title i {
    color: #0073aa;
    font-size: 1.2em;
}

.gm-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.gm-info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.gm-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0073aa, #00a0d2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gm-info-item:hover {
    background: linear-gradient(135deg, #e3f2fd, #f0f9ff);
    border-color: #bbdefb;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 115, 170, 0.15);
}

.gm-info-item:hover::before {
    opacity: 1;
}

.gm-info-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gm-info-label i {
    color: #0073aa;
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 115, 170, 0.1);
    border-radius: 50%;
}

.gm-info-value {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.gm-price {
    color: #dc3232;
    font-size: 18px;
}

.gm-price-free {
    color: #46b450;
    font-size: 18px;
}

.gm-event-description {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gm-event-description::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 115, 170, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.gm-event-description:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.gm-event-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
}

.gm-event-content {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.gm-event-content h2,
.gm-event-content h3,
.gm-event-content h4 {
    margin-top: 32px;
    margin-bottom: 24px;
    color: #333;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.gm-event-content h2 {
    font-size: 1.8em;
    border-bottom: 2px solid #e0e0e0;
}

.gm-event-content h3 {
    font-size: 1.5em;
    border-bottom: 1px solid #e0e0e0;
}

.gm-event-content h4 {
    font-size: 1.2em;
}

.gm-event-content p {
    margin-bottom: 24px;
    text-align: justify;
}

.gm-event-content img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gm-event-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.gm-event-content ul,
.gm-event-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.gm-event-content li {
    margin-bottom: 8px;
}

.gm-event-content a {
    color: #0073aa;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.gm-event-content a:hover {
    color: #005a87;
    border-bottom-color: #005a87;
}

.gm-event-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gm-registration-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.gm-registration-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(70, 180, 80, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gm-registration-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.gm-registration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #46b450, #52c462);
}

.gm-registration-closed {
    background: #f8f9fa;
    border-color: #e9ecef;
}

.gm-registration-closed::before {
    background: linear-gradient(90deg, #dc3232, #e57373);
}

.gm-registration-title {
    font-size: 1.2em;
    margin: 0 0 24px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.gm-registration-countdown {
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    text-align: center;
    border: 1px solid #dee2e6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gm-registration-countdown:hover {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-color: #90caf9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gm-countdown-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.gm-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.gm-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gm-countdown-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.gm-countdown-number {
    font-size: 22px;
    font-weight: 700;
    color: #0073aa;
    line-height: 1;
}

.gm-countdown-unit {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    font-weight: 500;
}

.gm-progress-section {
    margin-bottom: 28px;
}

.gm-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.gm-progress-bar {
    width: 100%;
    height: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.gm-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #46b450, #52c462);
    border-radius: 5px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gm-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.gm-progress-text {
    font-size: 13px;
    color: #666;
    text-align: center;
    font-weight: 500;
}

.gm-registration-btn {
    width: 100%;
    margin-bottom: 24px;
}

.gm-registration-tips {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.gm-registration-tips i {
    color: #0073aa;
    margin-right: 6px;
}

.gm-closed-message {
    padding: 24px;
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 1px solid #f1b0b7;
    border-radius: 8px;
    color: #721c24;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gm-closed-message p {
    margin: 0;
    font-weight: 500;
    font-size: 15px;
}

.gm-share-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.gm-share-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(29, 161, 242, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gm-share-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.gm-share-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1da1f2, #34a853);
}

.gm-share-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gm-share-title i {
    color: #1da1f2;
}

.gm-share-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.gm-share-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.gm-share-btn::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 ease;
}

.gm-share-btn:hover::before {
    left: 100%;
}

.gm-share-weixin {
    background: linear-gradient(135deg, #46b450, #52c462);
    color: #fff;
}

.gm-share-qq {
    background: linear-gradient(135deg, #1da1f2, #3b82f6);
    color: #fff;
}

.gm-share-weibo {
    background: linear-gradient(135deg, #e02020, #ef4444);
    color: #fff;
}

.gm-share-link {
    background: linear-gradient(135deg, #666, #888);
    color: #fff;
}

.gm-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.gm-share-qr {
    margin-top: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.gm-share-qr h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #333;
}

.gm-share-qr img {
    max-width: 120px;
    height: auto;
    margin: 12px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gm-share-qr img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.gm-share-qr-tip {
    font-size: 12px;
    color: #666;
    margin: 8px 0 0;
}

.gm-registration-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.gm-registration-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gm-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: overlayFadeIn 0.3s ease;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gm-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 48px;
    max-width: 640px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gm-modal-close {
    position: absolute;
    top: 16px;
    right: 24px;
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.gm-modal-close:hover {
    background: #f0f0f0;
    color: #333;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.gm-modal-title {
    font-size: 1.6em;
    margin: 0 0 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e0e0e0;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.gm-modal-body {
    margin-bottom: 24px;
}

.gm-favorite-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 24px;
    margin-top: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.gm-favorite-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.gm-favorite-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #f44336);
}

.gm-favorite-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gm-favorite-title i {
    color: #e91e63;
}

.gm-favorite-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gm-favorite-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.gm-favorite-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.gm-favorite-btn:hover::before {
    left: 100%;
}

.gm-favorite-btn:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.gm-favorite-btn.favorited {
    background: linear-gradient(135deg, #e91e63, #f44336);
    color: white;
    border-color: #e91e63;
}

.gm-favorite-btn.favorited:hover {
    background: linear-gradient(135deg, #c2185b, #d32f2f);
    border-color: #c2185b;
}

.gm-favorite-btn i {
    font-size: 18px;
}

.gm-favorite-btn.favorited i {
    color: white;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

.gm-favorite-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.gm-favorite-count i {
    color: #e91e63;
    font-size: 16px;
}

.gm-favorite-count span {
    font-weight: 600;
    color: #333;
}

@media (max-width: 1024px) {
    .gm-event-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gm-event-sidebar {
        order: -1;
    }

    .gm-registration-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .gm-event-detail-wrapper {
        padding: 10px;
    }

    .gm-event-banner {
        height: 300px;
    }

    .gm-event-banner-content {
        padding: 25px;
    }

    .gm-event-title {
        font-size: 2em;
    }

    .gm-event-title-simple {
        font-size: 1.5em;
    }

    .gm-info-grid {
        grid-template-columns: 1fr;
    }

    .gm-event-info-card,
    .gm-event-description {
        padding: 20px;
    }

    .gm-modal-content {
        padding: 25px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .gm-event-banner {
        height: 250px;
    }

    .gm-event-title {
        font-size: 1.8em;
    }

    .gm-section-title {
        font-size: 1.1em;
    }

    .gm-countdown-timer {
        gap: 10px;
    }

    .gm-countdown-number {
        font-size: 16px;
    }
}

.gm-event-detail-shortcode {
    max-width: 100%;
}

/* 活动日历样式 */
.gm-event-calendar {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gm-event-calendar:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.gm-calendar-header {
    background: linear-gradient(135deg, #0073aa, #00a0d2);
    color: #fff;
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gm-calendar-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: calendarHeaderPulse 4s ease-in-out infinite;
}

@keyframes calendarHeaderPulse {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10%, 10%);
    }
}

.gm-calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.gm-calendar-nav-prev,
.gm-calendar-nav-next {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.gm-calendar-nav-prev:hover,
.gm-calendar-nav-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gm-calendar-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.gm-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.gm-calendar-weekday {
    padding: 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    border-right: 1px solid #e0e0e0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gm-calendar-weekday:last-child {
    border-right: none;
}

.gm-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    min-height: 400px;
}

.gm-calendar-day {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-right: none;
    border-bottom: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 110px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff, #fafafa);
    position: relative;
    overflow: hidden;
}

.gm-calendar-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gm-calendar-day:hover {
    background: linear-gradient(135deg, #e3f2fd, #f0f9ff);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.15);
}

.gm-calendar-day:hover::before {
    transform: scaleX(1);
}

.gm-calendar-day:nth-child(7n) {
    border-right: 1px solid #e0e0e0;
}

.gm-calendar-day:nth-child(n+1):nth-child(-n+7) {
    border-top: 1px solid #e0e0e0;
}

.gm-calendar-day-other-month {
    background: #f8f9fa;
    color: #999;
}

.gm-calendar-day-today {
    background: #e3f2fd;
    border-color: #0073aa;
}

.gm-calendar-day-has-events {
    background: #e8f5e8;
}

.gm-calendar-day-number {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transition: all 0.3s ease;
}

.gm-calendar-day:hover .gm-calendar-day-number {
    background: linear-gradient(135deg, #0073aa, #00a0d2);
    color: #fff;
    transform: scale(1.1);
}

.gm-calendar-day-events {
    flex: 1;
    overflow: hidden;
}

.gm-calendar-day-event {
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 1.4;
    padding: 6px 10px;
    background: linear-gradient(135deg, #e3f2fd, #f0f9ff);
    border-radius: 6px;
    border-left: 3px solid #0073aa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gm-calendar-day-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.gm-calendar-day-event:hover::before {
    transform: translateX(100%);
}

.gm-calendar-day-event:hover {
    background: linear-gradient(135deg, #0073aa, #00a0d2);
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.2);
}

.gm-calendar-day-event-title {
    color: #333;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.gm-calendar-day-event-title:hover {
    color: #0073aa;
    text-decoration: underline;
}

.gm-calendar-day-event-time {
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}

.gm-calendar-no-events {
    padding: 40px;
    text-align: center;
    color: #666;
}

/* 响应式日历 */
@media (max-width: 768px) {
    .gm-calendar-days {
        min-height: 300px;
    }

    .gm-calendar-day {
        min-height: 80px;
        padding: 8px;
    }

    .gm-calendar-day-number {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .gm-calendar-day-event {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .gm-calendar-nav-prev,
    .gm-calendar-nav-next {
        padding: 3px 10px;
        font-size: 16px;
    }

    .gm-calendar-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gm-calendar-days {
        min-height: 250px;
    }

    .gm-calendar-day {
        min-height: 60px;
        padding: 5px;
    }

    .gm-calendar-day-event {
        font-size: 10px;
    }

    .gm-calendar-weekday {
        padding: 8px;
        font-size: 12px;
    }
}

/* 评论功能样式 */
.gm-event-comments {
    margin-top: 40px;
    padding: 28px;
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gm-event-comments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
}

.gm-event-comments:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.gm-comments-container {
    margin-top: 20px;
}

.gm-comments-container #respond {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.gm-comments-container #commentform {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gm-comments-container .comment-form-author,
.gm-comments-container .comment-form-email,
.gm-comments-container .comment-form-url {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gm-comments-container .comment-form-comment {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gm-comments-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    min-height: 100px;
}

.gm-comments-container input[type="text"],
.gm-comments-container input[type="email"],
.gm-comments-container input[type="url"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.gm-comments-container #submit {
    align-self: flex-start;
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.gm-comments-container #submit:hover {
    background-color: #005a87;
}

.gm-comments-container .comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gm-comments-container .comment {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.gm-comments-container .comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.gm-comments-container .avatar {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.gm-comments-container .comment-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.gm-comments-container .comment-content {
    margin-bottom: 10px;
    line-height: 1.5;
}

.gm-comments-container .reply {
    margin-top: 10px;
}

.gm-comments-container .comment-reply-link {
    font-size: 12px;
    color: #0073aa;
    text-decoration: none;
}

.gm-comments-container .comment-reply-link:hover {
    color: #005a87;
    text-decoration: underline;
}

/* 响应式评论 */
@media (max-width: 768px) {
    .gm-event-comments {
        padding: 15px;
    }
    
    .gm-comments-container #respond {
        padding: 15px;
    }
    
    .gm-comments-container textarea {
        min-height: 80px;
    }
    
    .gm-comments-container #submit {
        width: 100%;
        text-align: center;
    }
}

/* 收藏功能样式 */
.gm-favorite-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-top: 20px;
}

.gm-favorite-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.gm-favorite-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gm-favorite-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.gm-favorite-btn:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.gm-favorite-btn.favorited {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

.gm-favorite-btn.favorited:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.gm-favorite-btn i {
    font-size: 16px;
}

.gm-favorite-btn.favorited i {
    color: white;
}

.gm-favorite-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.gm-favorite-count i {
    color: #dc3545;
}

/* 响应式收藏功能 */
@media (max-width: 768px) {
    .gm-favorite-card {
        padding: 12px;
    }
    
    .gm-favorite-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .gm-favorite-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .gm-favorite-btn i {
        font-size: 14px;
    }
    
    .gm-favorite-count {
        font-size: 13px;
    }
}

/* 报名表单样式 */
.gm-event-registration-form {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gm-event-registration-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
}

.gm-event-registration-form h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 24px;
    color: #333;
    position: relative;
    padding-bottom: 16px;
    border-bottom: 2px solid #e0e0e0;
}

.gm-event-registration-form h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
}

.gm-event-info {
    background: linear-gradient(135deg, #e3f2fd, #f0f9ff);
    border: 1px solid #bbdefb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 28px;
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.08);
}

.gm-event-info p {
    margin: 0 0 12px;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.gm-event-info p:last-child {
    margin-bottom: 0;
}

.gm-event-info strong {
    color: #0073aa;
    font-weight: 600;
}

.gm-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gm-form-group {
    margin-bottom: 0;
}

.gm-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.gm-form-group label .required {
    color: #dc3232;
    margin-left: 4px;
}

.gm-form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-family: inherit;
}

.gm-form-control:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 4px rgba(0, 115, 170, 0.1), 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.gm-form-control::placeholder {
    color: #999;
}

.gm-radio,
.gm-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gm-radio:hover,
.gm-checkbox:hover {
    background: #e3f2fd;
    border-color: #bbdefb;
}

.gm-radio input,
.gm-checkbox input {
    margin: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.gm-form-group button[type="submit"] {
    width: 100%;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .gm-event-registration-form {
        padding: 24px;
    }
    
    .gm-event-registration-form h2 {
        font-size: 20px;
    }
    
    .gm-event-info {
        padding: 16px;
    }
    
    .gm-form-control {
        padding: 12px 16px;
    }
}

/* 配色方案优化 */
:root {
    --gm-primary-color: #0073aa;
    --gm-primary-light: #00a0d2;
    --gm-primary-dark: #005a87;
    --gm-success-color: #46b450;
    --gm-success-light: #52c462;
    --gm-success-dark: #3a9e45;
    --gm-danger-color: #dc3232;
    --gm-danger-light: #e57373;
    --gm-danger-dark: #c62828;
    --gm-warning-color: #ffb900;
    --gm-warning-light: #ffca28;
    --gm-warning-dark: #f57f17;
    --gm-info-color: #1da1f2;
    --gm-info-light: #34a853;
    --gm-info-dark: #0d8bd9;
    --gm-text-primary: #333333;
    --gm-text-secondary: #666666;
    --gm-text-tertiary: #999999;
    --gm-background-primary: #ffffff;
    --gm-background-secondary: #f8f9fa;
    --gm-background-tertiary: #e9ecef;
    --gm-border-color: #e0e0e0;
    --gm-border-light: #e9ecef;
    --gm-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --gm-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --gm-shadow-lg: 0 6px 24px rgba(0, 0, 0, 0.1);
    --gm-shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* 暗色主题支持 */
@media (prefers-color-scheme: dark) {
    :root {
        --gm-text-primary: #e0e0e0;
        --gm-text-secondary: #b0b0b0;
        --gm-text-tertiary: #808080;
        --gm-background-primary: #1e1e1e;
        --gm-background-secondary: #2d2d2d;
        --gm-background-tertiary: #3d3d3d;
        --gm-border-color: #4d4d4d;
        --gm-border-light: #5d5d5d;
    }
}

/* 额外的响应式优化 */
@media (max-width: 1200px) {
    .gm-event-container {
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }
    
    .gm-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 992px) {
    .gm-event-detail-wrapper {
        padding: 15px;
    }
    
    .gm-event-banner {
        height: 400px;
    }
    
    .gm-event-banner-content {
        padding: 30px;
    }
    
    .gm-event-title {
        font-size: 2.2em;
    }
}

@media (max-width: 576px) {
    .gm-event-item {
        flex-direction: column;
        padding: 20px;
    }
    
    .gm-event-thumbnail {
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 16px;
        width: 100%;
    }
    
    .gm-event-thumbnail img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .gm-event-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .gm-event-meta span {
        width: 100%;
    }
    
    .gm-event-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .gm-event-actions .gm-button {
        width: 100%;
        text-align: center;
    }
    
    .gm-event-banner {
        height: 200px;
    }
    
    .gm-event-banner-content {
        padding: 20px;
    }
    
    .gm-event-title {
        font-size: 1.6em;
    }
    
    .gm-countdown-timer {
        gap: 8px;
    }
    
    .gm-countdown-item {
        min-width: 50px;
        padding: 10px;
    }
    
    .gm-countdown-number {
        font-size: 18px;
    }
    
    .gm-calendar-day {
        min-height: 80px;
        padding: 8px;
    }
    
    .gm-calendar-day-number {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 16px;
    }
    
    .gm-calendar-day-event {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* 打印样式优化 */
@media print {
    .gm-event-banner,
    .gm-registration-card,
    .gm-share-card,
    .gm-favorite-card,
    .gm-event-comments,
    .gm-calendar-navigation {
        display: none !important;
    }
    
    .gm-event-detail-wrapper {
        max-width: 100%;
        padding: 0;
    }
    
    .gm-event-container {
        display: block;
    }
    
    .gm-event-sidebar {
        display: none;
    }
    
    .gm-event-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
}

/* 无障碍访问优化 */
.gm-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* 焦点可见性优化 */
*:focus-visible {
    outline: 3px solid var(--gm-primary-color);
    outline-offset: 2px;
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
    .gm-event-item,
    .gm-event-info-card,
    .gm-event-description,
    .gm-registration-card,
    .gm-share-card,
    .gm-favorite-card,
    .gm-event-calendar,
    .gm-event-comments {
        border-width: 2px;
    }
    
    .gm-button {
        border-width: 2px;
    }
}

/* ==================== 活动评价/反馈系统 ====================

.gm-review-form {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gm-review-form .gm-section-title {
    color: #333;
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gm-review-form .gm-section-title i {
    color: #ffc107;
}

.gm-rating-stars {
    margin: 16px 0;
}

.gm-stars {
    display: flex;
    gap: 8px;
    cursor: pointer;
}

.gm-star {
    font-size: 24px;
    color: #ddd;
    transition: all 0.3s ease;
}

.gm-star:hover,
.gm-star-active {
    color: #ffc107;
    transform: scale(1.1);
}

.gm-review-stats {
    margin: 24px 0;
}

.gm-average-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.gm-rating-number {
    font-size: 36px;
    font-weight: 700;
    color: #ffc107;
    line-height: 1;
}

.gm-rating-stars {
    display: flex;
    gap: 4px;
}

.gm-review-count {
    color: #666;
    font-size: 14px;
}

.gm-rating-distribution {
    width: 100%;
}

.gm-rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.gm-rating-label {
    width: 40px;
    font-size: 14px;
    color: #666;
}

.gm-rating-progress {
    flex: 1;
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.gm-rating-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.gm-review-list {
    margin-top: 32px;
}

.gm-review-item {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gm-review-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.gm-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.gm-review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gm-user-name {
    font-weight: 600;
    color: #333;
}

.gm-review-date {
    color: #999;
    font-size: 14px;
}

.gm-review-content {
    color: #666;
    line-height: 1.6;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.gm-empty-state {
    text-align: center;
    padding: 64px 24px;
    color: #999;
}

.gm-empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* 响应式评价系统 */
@media (max-width: 768px) {
    .gm-review-form {
        padding: 24px;
    }
    
    .gm-review-form .gm-section-title {
        font-size: 18px;
    }
    
    .gm-star {
        font-size: 20px;
    }
    
    .gm-rating-number {
        font-size: 28px;
    }
    
    .gm-review-item {
        padding: 16px;
    }
    
    .gm-review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .gm-average-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .gm-review-form {
        padding: 16px;
    }
    
    .gm-review-form .gm-section-title {
        font-size: 16px;
    }
    
    .gm-star {
        font-size: 18px;
    }
    
    .gm-rating-number {
        font-size: 24px;
    }
    
    .gm-review-item {
        padding: 12px;
    }
    
    .gm-rating-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .gm-rating-label {
        width: 100%;
    }
}

/* ==================== 活动分享/推广系统 ====================

.gm-share-section {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gm-share-header {
    margin-bottom: 24px;
}

.gm-share-section .gm-section-title {
    color: #333;
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gm-share-section .gm-section-title i {
    color: #0073aa;
}

.gm-share-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.gm-share-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #e3f2fd, #f0f9ff);
    border-radius: 12px;
    border: 1px solid #bbdefb;
    transition: all 0.3s ease;
}

.gm-share-stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 115, 170, 0.15);
}

.gm-share-stat-item i {
    font-size: 24px;
    color: #0073aa;
}

.gm-share-count,
.gm-click-count {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.gm-share-label {
    font-size: 14px;
    color: #666;
}

.gm-share-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.gm-share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    position: relative;
    overflow: hidden;
}

.gm-share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gm-share-btn i {
    font-size: 24px;
    transition: all 0.3s ease;
}

.gm-share-btn span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.gm-share-wechat:hover {
    background: linear-gradient(135deg, #07C160, #06B355);
    border-color: #07C160;
}

.gm-share-wechat:hover i,
.gm-share-wechat:hover span {
    color: #fff;
}

.gm-share-weibo:hover {
    background: linear-gradient(135deg, #E6162D, #D61429);
    border-color: #E6162D;
}

.gm-share-weibo:hover i,
.gm-share-weibo:hover span {
    color: #fff;
}

.gm-share-qq:hover {
    background: linear-gradient(135deg, #1DA1F2, #1A91DA);
    border-color: #1DA1F2;
}

.gm-share-qq:hover i,
.gm-share-qq:hover span {
    color: #fff;
}

.gm-share-copy:hover {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    border-color: #FF9800;
}

.gm-share-copy:hover i,
.gm-share-copy:hover span {
    color: #fff;
}

.gm-share-poster:hover {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    border-color: #9C27B0;
}

.gm-share-poster:hover i,
.gm-share-poster:hover span {
    color: #fff;
}

.gm-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.gm-modal-content {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gm-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.gm-modal-header h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.gm-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gm-close-btn:hover {
    color: #333;
    background-color: #f0f0f0;
}

.gm-qrcode-container,
.gm-poster-container {
    text-align: center;
}

.gm-qrcode {
    width: 200px;
    height: 200px;
    margin: 0 auto 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gm-qrcode-placeholder {
    font-size: 14px;
    color: #999;
    text-align: center;
}

.gm-poster-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 16px;
}

.gm-qrcode-hint,
.gm-poster-hint {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 响应式分享系统 */
@media (max-width: 768px) {
    .gm-share-section {
        padding: 24px;
    }
    
    .gm-share-section .gm-section-title {
        font-size: 18px;
    }
    
    .gm-share-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .gm-share-stat-item {
        padding: 12px 16px;
    }
    
    .gm-share-platforms {
        justify-content: center;
    }
    
    .gm-share-btn {
        padding: 16px;
        min-width: 80px;
    }
    
    .gm-share-btn i {
        font-size: 20px;
    }
    
    .gm-share-btn span {
        font-size: 12px;
    }
    
    .gm-modal-content {
        padding: 24px;
        max-width: 400px;
    }
    
    .gm-qrcode {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .gm-share-section {
        padding: 16px;
    }
    
    .gm-share-section .gm-section-title {
        font-size: 16px;
    }
    
    .gm-share-stat-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .gm-share-platforms {
        gap: 12px;
    }
    
    .gm-share-btn {
        padding: 12px;
        min-width: 70px;
    }
    
    .gm-share-btn i {
        font-size: 18px;
    }
    
    .gm-share-btn span {
        font-size: 11px;
    }
    
    .gm-modal-content {
        padding: 16px;
        max-width: 300px;
    }
    
    .gm-qrcode {
        width: 140px;
        height: 140px;
    }
}

/* ==================== 活动签到二维码系统 ====================

.gm-checkin-section {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gm-checkin-header {
    text-align: center;
    margin-bottom: 32px;
}

.gm-checkin-section .gm-section-title {
    color: #333;
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.gm-checkin-section .gm-section-title i {
    color: #4CAF50;
}

.gm-checkin-hint {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.gm-checkin-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.gm-qr-code-wrapper {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.gm-qr-code-wrapper:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.gm-checkin-qr {
    width: 200px;
    height: 200px;
    border-radius: 8px;
}

.gm-qr-info {
    width: 100%;
    max-width: 400px;
}

.gm-qr-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 4px solid #4CAF50;
    transition: all 0.3s ease;
}

.gm-qr-detail:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}

.gm-qr-label {
    font-weight: 600;
    color: #333;
    min-width: 100px;
}

.gm-qr-value {
    color: #666;
    flex: 1;
}

.gm-checkin-tips {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #fff3e0, #fff8e1);
    border-radius: 12px;
    border: 1px solid #ffcc80;
}

.gm-tips-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gm-tips-title i {
    color: #ff9800;
}

.gm-tips-list {
    margin: 0;
    padding-left: 24px;
}

.gm-tips-list li {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.gm-tips-list li:last-child {
    margin-bottom: 0;
}

/* 签到统计样式 */
.gm-checkin-stats-section {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.gm-checkin-stats-header {
    margin-bottom: 32px;
}

.gm-checkin-stats-section .gm-section-title {
    color: #333;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gm-checkin-stats-section .gm-section-title i {
    color: #0073aa;
}

.gm-checkin-stats-desc {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.gm-checkin-stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.gm-stat-card {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.gm-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gm-stat-success {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
}

.gm-stat-warning {
    border-color: #ff9800;
    background: linear-gradient(135deg, #fff3e0, #fff8e1);
}

.gm-stat-info {
    border-color: #0073aa;
    background: linear-gradient(135deg, #e3f2fd, #f0f9ff);
}

.gm-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    flex-shrink: 0;
}

.gm-stat-success .gm-stat-icon {
    background: #4CAF50;
    color: #fff;
}

.gm-stat-warning .gm-stat-icon {
    background: #ff9800;
    color: #fff;
}

.gm-stat-info .gm-stat-icon {
    background: #0073aa;
    color: #fff;
}

.gm-stat-content {
    flex: 1;
}

.gm-stat-title {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px 0;
}

.gm-stat-number {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.gm-checkin-stats-details {
    margin-bottom: 32px;
}

.gm-details-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gm-details-title i {
    color: #0073aa;
}

.gm-checkin-table-container {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.gm-checkin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.gm-checkin-table th,
.gm-checkin-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.gm-checkin-table th {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.gm-checkin-table tr:hover {
    background: #f8f9fa;
}

.gm-checkin-table tr:last-child td {
    border-bottom: none;
}

.gm-checkin-stats-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

/* 响应式签到系统 */
@media (max-width: 768px) {
    .gm-checkin-section,
    .gm-checkin-stats-section {
        padding: 24px;
    }
    
    .gm-checkin-section .gm-section-title,
    .gm-checkin-stats-section .gm-section-title {
        font-size: 18px;
    }
    
    .gm-checkin-qr {
        width: 160px;
        height: 160px;
    }
    
    .gm-qr-code-wrapper {
        padding: 16px;
    }
    
    .gm-checkin-stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .gm-stat-card {
        padding: 16px;
    }
    
    .gm-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .gm-stat-number {
        font-size: 20px;
    }
    
    .gm-checkin-stats-actions {
        flex-direction: column;
    }
    
    .gm-checkin-table th,
    .gm-checkin-table td {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gm-checkin-section,
    .gm-checkin-stats-section {
        padding: 16px;
    }
    
    .gm-checkin-section .gm-section-title,
    .gm-checkin-stats-section .gm-section-title {
        font-size: 16px;
    }
    
    .gm-checkin-qr {
        width: 140px;
        height: 140px;
    }
    
    .gm-qr-code-wrapper {
        padding: 12px;
    }
    
    .gm-checkin-stats-cards {
        grid-template-columns: 1fr;
    }
    
    .gm-qr-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .gm-qr-label {
        min-width: auto;
    }
    
    .gm-checkin-table th,
    .gm-checkin-table td {
        padding: 8px;
        font-size: 12px;
    }
}

/* ==================== 活动数据可视化系统 ==================== */

.gm-event-visualization-container {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gm-event-visualization-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0073aa, #00a0d2, #46b450, #e91e63);
    background-size: 300% 100%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.gm-event-visualization-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.gm-visualization-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 16px;
}

.gm-visualization-header h2 {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gm-visualization-header h2::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, #0073aa, #00a0d2);
    border-radius: 2px;
}

.gm-visualization-actions {
    display: flex;
    gap: 12px;
}

.gm-visualization-content {
    margin-bottom: 32px;
}

.gm-visualization-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.gm-visualization-card {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gm-visualization-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gm-visualization-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.gm-visualization-card:hover::after {
    transform: scaleX(1);
}

.gm-card-full-width {
    grid-column: 1 / -1;
}

.gm-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.gm-card-header h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gm-card-header h3 i {
    color: #0073aa;
    font-size: 20px;
}

.gm-card-badge {
    background: linear-gradient(135deg, #0073aa, #00a0d2);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.gm-card-body {
    position: relative;
    min-height: 300px;
}

.gm-card-body canvas {
    max-height: 300px;
}

.gm-visualization-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gm-stat-card {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.gm-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--stat-color, #0073aa), var(--stat-color-light, #00a0d2));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gm-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.gm-stat-card:hover::before {
    transform: scaleX(1);
}

.gm-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.gm-stat-card:hover .gm-stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.gm-stat-icon-blue {
    background: linear-gradient(135deg, #0073aa, #00a0d2);
}

.gm-stat-icon-green {
    background: linear-gradient(135deg, #46b450, #52c462);
}

.gm-stat-icon-yellow {
    background: linear-gradient(135deg, #ff9800, #ffca28);
}

.gm-stat-icon-purple {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
}

.gm-stat-content {
    flex: 1;
}

.gm-stat-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.gm-stat-value {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

/* 响应式数据可视化 */
@media (max-width: 1024px) {
    .gm-visualization-grid {
        grid-template-columns: 1fr;
    }
    
    .gm-visualization-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gm-event-visualization-container {
        padding: 24px;
    }
    
    .gm-visualization-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gm-visualization-header h2 {
        font-size: 20px;
    }
    
    .gm-visualization-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .gm-visualization-card {
        padding: 20px;
    }
    
    .gm-card-header h3 {
        font-size: 16px;
    }
    
    .gm-card-body {
        min-height: 250px;
    }
    
    .gm-card-body canvas {
        max-height: 250px;
    }
    
    .gm-stat-card {
        padding: 20px;
    }
    
    .gm-stat-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .gm-stat-value {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .gm-event-visualization-container {
        padding: 16px;
    }
    
    .gm-visualization-header h2 {
        font-size: 18px;
    }
    
    .gm-visualization-card {
        padding: 16px;
    }
    
    .gm-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .gm-card-header h3 {
        font-size: 14px;
    }
    
    .gm-card-body {
        min-height: 200px;
    }
    
    .gm-card-body canvas {
        max-height: 200px;
    }
    
    .gm-visualization-stats {
        grid-template-columns: 1fr;
    }
    
    .gm-stat-card {
        padding: 16px;
        gap: 12px;
    }
    
    .gm-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .gm-stat-label {
        font-size: 12px;
    }
    
    .gm-stat-value {
        font-size: 20px;
    }
    
    .gm-visualization-actions {
        flex-direction: column;
    }
    
    .gm-visualization-actions .gm-button {
        width: 100%;
    }
}

/* 加载动画 */
.gm-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.gm-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 空数据状态 */
.gm-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.gm-empty-state i {
    font-size: 48px;
    color: #999;
    margin-bottom: 16px;
    display: block;
}

.gm-empty-state p {
    font-size: 14px;
    margin: 0;
}

/* 图表容器响应式 */
.gm-chart-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gm-chart-container canvas {
    width: 100% !important;
    height: auto !important;
}

/* 打印样式 */
@media print {
    .gm-visualization-actions {
        display: none;
    }
    
    .gm-visualization-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .gm-stat-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
}

/* ==================== 活动通知/提醒系统 ==================== */

.gm-notification-container {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gm-notification-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0073aa, #00a0d2, #46b450, #e91e63);
    background-size: 300% 100%;
    animation: gradientShift 8s ease infinite;
}

.gm-notification-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.gm-notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 16px;
}

.gm-notification-header h2 {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gm-notification-header h2::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, #0073aa, #00a0d2);
    border-radius: 2px;
}

.gm-notification-badge {
    background: linear-gradient(135deg, #dc3232, #e57373);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gm-notification-actions {
    display: flex;
    gap: 12px;
}

.gm-notification-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.gm-filter-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gm-filter-btn:hover {
    background: linear-gradient(135deg, #e3f2fd, #f0f9ff);
    border-color: #bbdefb;
    color: #0073aa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.15);
}

.gm-filter-btn.gm-filter-active {
    background: linear-gradient(135deg, #0073aa, #00a0d2);
    border-color: #0073aa;
    color: #fff;
}

.gm-filter-badge {
    background: linear-gradient(135deg, #dc3232, #e57373);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.gm-notification-list {
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
    padding: 4px;
}

.gm-notification-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gm-notification-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0073aa, #00a0d2);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.gm-notification-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateX(4px);
}

.gm-notification-item:hover::before {
    transform: scaleY(1);
}

.gm-notification-unread {
    background: linear-gradient(135deg, #e3f2fd, #f0f9ff);
    border-color: #bbdefb;
}

.gm-notification-unread::before {
    transform: scaleY(1);
}

.gm-notification-read {
    opacity: 0.7;
}

.gm-notification-read:hover {
    opacity: 1;
}

.gm-notification-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0073aa, #00a0d2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.2);
    transition: all 0.3s ease;
}

.gm-notification-item:hover .gm-notification-icon {
    transform: scale(1.1) rotate(5deg);
}

.gm-notification-type-start .gm-notification-icon {
    background: linear-gradient(135deg, #ff9800, #ffca28);
}

.gm-notification-type-success .gm-notification-icon {
    background: linear-gradient(135deg, #46b450, #52c462);
}

.gm-notification-type-status .gm-notification-icon {
    background: linear-gradient(135deg, #0073aa, #00a0d2);
}

.gm-notification-type-cancelled .gm-notification-icon {
    background: linear-gradient(135deg, #dc3232, #e57373);
}

.gm-notification-type-update .gm-notification-icon {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
}

.gm-notification-content {
    flex: 1;
    min-width: 0;
}

.gm-notification-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: none;
    flex-wrap: wrap;
    gap: 8px;
}

.gm-notification-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.gm-notification-time {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
}

.gm-notification-message {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 8px 0;
    word-wrap: break-word;
}

.gm-notification-read-time {
    color: #999;
    font-size: 12px;
    font-style: italic;
}

.gm-notification-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 8px;
}

.gm-notification-action-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gm-notification-action-btn:hover {
    background: #0073aa;
    color: #fff;
    transform: scale(1.1);
}

.gm-notification-pagination {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

.gm-notification-login-required {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.gm-notification-login-required p {
    font-size: 16px;
    margin: 0 0 24px 0;
}

/* 响应式通知系统 */
@media (max-width: 768px) {
    .gm-notification-container {
        padding: 24px;
    }
    
    .gm-notification-header h2 {
        font-size: 20px;
    }
    
    .gm-notification-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .gm-notification-filters {
        gap: 8px;
    }
    
    .gm-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .gm-notification-item {
        padding: 16px;
    }
    
    .gm-notification-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .gm-notification-title {
        font-size: 14px;
    }
    
    .gm-notification-message {
        font-size: 13px;
    }
    
    .gm-notification-actions {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .gm-notification-container {
        padding: 16px;
    }
    
    .gm-notification-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gm-notification-header h2 {
        font-size: 18px;
    }
    
    .gm-notification-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .gm-notification-actions .gm-button {
        width: 100%;
    }
    
    .gm-notification-filters {
        flex-direction: column;
    }
    
    .gm-filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .gm-notification-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gm-notification-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .gm-notification-actions {
        width: 100%;
        flex-direction: row;
        justify-content: flex-end;
        margin-left: 0;
        margin-top: 12px;
    }
    
    .gm-notification-list {
        max-height: 500px;
    }
}

/* 打印样式 */
@media print {
    .gm-notification-actions,
    .gm-notification-filters,
    .gm-notification-pagination {
        display: none;
    }
    
    .gm-notification-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
}

/* ==================== 活动推荐/相关活动系统 ==================== */

.gm-recommendation-container {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gm-recommendation-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #9c27b0, #e91e63, #ff5722, #ff9800);
    background-size: 300% 100%;
    animation: gradientShift 8s ease infinite;
}

.gm-recommendation-container:hover {
    box-shadow: 0 12px 40px rgba(156, 39, 176, 0.15);
    transform: translateY(-2px);
}

.gm-recommendation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 16px;
}

.gm-recommendation-header h2 {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gm-recommendation-header h2::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, #9c27b0, #e91e63);
    border-radius: 2px;
}

.gm-recommendation-nav {
    display: flex;
    gap: 8px;
}

.gm-nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    background: #fff;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.gm-nav-btn:hover {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    border-color: #9c27b0;
    color: #fff;
    transform: scale(1.1);
}

.gm-nav-btn.gm-nav-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.gm-nav-btn.gm-nav-disabled:hover {
    background: #fff;
    border-color: #e0e0e0;
    color: #666;
    transform: none;
}

.gm-recommendation-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.gm-slider-wrapper {
    display: flex;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gm-recommendation-card {
    flex: 0 0 calc(25% - 12px);
    margin: 0 6px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gm-recommendation-card:hover {
    box-shadow: 0 8px 24px rgba(156, 39, 176, 0.15);
    transform: translateY(-4px);
}

.gm-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.gm-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gm-recommendation-card:hover .gm-card-image img {
    transform: scale(1.1);
}

.gm-placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 48px;
}

.gm-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

.gm-status-upcoming {
    background: linear-gradient(135deg, #0073aa, #00a0d2);
}

.gm-status-ongoing {
    background: linear-gradient(135deg, #46b450, #52c462);
}

.gm-status-ended {
    background: linear-gradient(135deg, #9e9e9e, #bdbdbd);
}

.gm-status-cancelled {
    background: linear-gradient(135deg, #dc3232, #e57373);
}

.gm-card-popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.gm-card-content {
    padding: 16px;
}

.gm-card-title {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gm-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gm-card-title a:hover {
    color: #9c27b0;
}

.gm-card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.gm-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.gm-meta-item i {
    color: #9c27b0;
    font-size: 12px;
}

.gm-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
}

.gm-card-price {
    display: flex;
    align-items: center;
}

.gm-price-value {
    color: #ff5722;
    font-size: 18px;
    font-weight: 700;
}

.gm-price-free {
    color: #46b450;
    font-size: 16px;
    font-weight: 600;
}

.gm-button-sm {
    padding: 6px 16px;
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gm-button-sm:hover {
    background: linear-gradient(135deg, #7b1fa2, #c2185b);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.gm-recommendation-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.gm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gm-dot:hover {
    background: #9c27b0;
}

.gm-dot.gm-dot-active {
    width: 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, #9c27b0, #e91e63);
}

/* 响应式推荐系统 */
@media (max-width: 1200px) {
    .gm-recommendation-card {
        flex: 0 0 calc(33.333% - 8px);
        margin: 0 4px;
    }
}

@media (max-width: 992px) {
    .gm-recommendation-card {
        flex: 0 0 calc(50% - 8px);
        margin: 0 4px;
    }
    
    .gm-recommendation-header h2 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .gm-recommendation-container {
        padding: 24px;
    }
    
    .gm-recommendation-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gm-recommendation-header h2 {
        font-size: 18px;
    }
    
    .gm-recommendation-nav {
        width: 100%;
        justify-content: flex-end;
    }
    
    .gm-recommendation-card {
        flex: 0 0 calc(50% - 8px);
        margin: 0 4px;
    }
    
    .gm-card-image {
        height: 160px;
    }
    
    .gm-card-title {
        font-size: 14px;
    }
    
    .gm-meta-item {
        font-size: 12px;
    }
    
    .gm-price-value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gm-recommendation-container {
        padding: 16px;
    }
    
    .gm-recommendation-header h2 {
        font-size: 16px;
    }
    
    .gm-recommendation-card {
        flex: 0 0 calc(100% - 8px);
        margin: 0 4px;
    }
    
    .gm-card-image {
        height: 200px;
    }
    
    .gm-card-content {
        padding: 12px;
    }
    
    .gm-card-title {
        font-size: 15px;
    }
    
    .gm-card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .gm-button-sm {
        width: 100%;
        text-align: center;
    }
    
    .gm-recommendation-dots {
        margin-top: 16px;
    }
}

/* 打印样式 */
@media print {
    .gm-recommendation-nav,
    .gm-recommendation-dots {
        display: none;
    }
    
    .gm-recommendation-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
        margin-bottom: 20px;
    }
}
