.eventsDetail {
    padding: 120px 0 80px;
    background-color: #fff;
}

.detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.detail-container img {
    max-width: 100%;
}

.detail-header {
    margin-bottom: 60px;
}

.detail-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin: 0 0 30px 0;
    line-height: 1.3;
}

.detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}

.meta-left {
    flex: 1;
}

.meta-item {
    margin-top: 8px;
    color: #505050;
}

.meta-value {
    color: #666;
}

.social-share {
    display: flex;
    gap: 20px;
}

.share-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook {
    background: url(/s/images/events/facebook_icon.png) no-repeat center center;
}

.share-btn.twitter {
    background: url(/s/images/events/twitter_icon.png) no-repeat center center;
}

.share-btn.linkedin {
    background: url(/s/images/events/linkedin_icon.png) no-repeat center center;
}

.share-btn.share {
    background: url(/s/images/events/share_url.png) no-repeat center center;
}

.detail-image {
    width: 100%;
    height: 400px;
    background-color: #f5f5f5;
    border-radius: 12px;
    margin: 40px 0;
}

.register-section {
    text-align: center;
    margin: 60px 0 40px 0;
}

.register-title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin: 0;
}

.detail-content {
    color: #505050;
    font-family: roboto-regular;
    font-size: 16px;
}

.detail-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.detail-content a {
    text-decoration: underline;
}

/* 过期事件弹窗样式 */
.expired-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.expired-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.expired-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
    color: #969696;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-family: roboto-light;
    background: url('/s/images/common/close-circle.png') no-repeat center center;
    transition: all 0.2s ease;
}

.expired-modal-close:hover {
    transform: scale(1.1);
}

.expired-modal-title {
    margin: 1rem 0;
    color: #333;
}

.expired-modal-desc {
    margin-bottom: 2rem;
}

.expired-modal-btn {
    background: #000;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    cursor: pointer;
    min-width: 200px;
    transition: background-color 0.2s ease;
}

.expired-modal-btn:hover {
    background: #333;
}

@media (max-width: 768px) {
    .eventsDetail {
        padding: 40px 0;
    }
    
    .detail-container {
        padding: 0 15px;
    }
    
    .detail-title {
        font-size: 24px;
    }
    
    .detail-meta {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .social-share {
        align-self: flex-start;
    }
    
    .detail-image {
        height: 200px;
        margin: 30px 0;
    }
    
    .register-title {
        font-size: 20px;
    }
    
    .detail-content p {
        font-size: 14px;
    }
    
    /* 移动端弹窗样式调整 */
    .expired-modal-content {
        padding: 1.5rem;
        max-width: 320px;
        width: 85%;
    }
    
    .expired-modal-close {
        top: 0.8rem;
        right: 1.2rem;
        font-size: 1.8rem;
    }
    
    .expired-modal-btn {
        padding: 0.7rem 1.5rem;
        min-width: 180px;
        font-size: 0.9rem;
    }
}