
/* Banner背景样式 */
.events-banner {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background-color: #000;
    color: #fff;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.dark-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    opacity: 0.9;
}

/* 动态图形元素 */
.graphic-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.circle-element {
    position: absolute;
    border-radius: 50%;
}

.circle-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 244, 238, 0.2) 0%, rgba(37, 244, 238, 0) 70%);
    animation: float 15s ease-in-out infinite;
}

.circle-2 {
    bottom: -150px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(254, 44, 85, 0.15) 0%, rgba(254, 44, 85, 0) 70%);
    animation: float 20s ease-in-out infinite reverse;
}

.gradient-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(37, 244, 238, 0) 0%, rgba(37, 244, 238, 0.8) 50%, rgba(37, 244, 238, 0) 100%);
}

.line-1 {
    top: 30%;
    left: 0;
    width: 100%;
    transform: rotate(-5deg);
    animation: pulse 10s ease-in-out infinite;
}

.line-2 {
    bottom: 25%;
    left: 0;
    width: 100%;
    transform: rotate(5deg);
    animation: pulse 15s ease-in-out infinite reverse;
}

/* 内容容器 */
.events-banner .container {
    position: relative;
    z-index: 1;
}

/* 品牌Logo */
.brand-logo {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37, 244, 238, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.logo-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* 标题样式 */
.events-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient-banner {
    background: linear-gradient(90deg, #25F4EE, #FE2C55);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 10px;
}

/* 价值标签 */
.value-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.value-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

/* 按钮样式 */
.btn-primary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    border: 2px solid rgba(255, 255, 255, 0.5);
   
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* UI展示区域 */
.ui-showcase {
    position: relative;
    height: 100%;
    padding: 20px;
}

.main-ui {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.main-ui img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.main-ui:hover img {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* 浮动UI元素 */
.floating-ui {
    position: absolute;
    z-index: 2;
    transition: all 0.3s ease;
}

.ui-element-1 {
    top: 10%;
    right: -30px;
    animation: float 6s ease-in-out infinite;
}

.ui-element-2 {
    bottom: 15%;
    left: -20px;
    animation: float 8s ease-in-out infinite;
}

.ui-element-3 {
    bottom: -20px;
    right: 20%;
    animation: float 7s ease-in-out infinite;
}

/* 统计卡片 */
.stat-card {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #25F4EE, #20d6d0);
    border-radius: 10px;
    margin-right: 12px;
    color: #000;
    font-size: 18px;
}

.stat-info {
    color: #fff;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    opacity: 0.7;
}

/* 移动端展示 */
.mobile-showcase {
    position: relative;
}

.mobile-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.mobile-stat-card {
    flex: 1;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    text-align: center;
}

.mobile-stat-card .stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.mobile-stat-card .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* 动画 */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.3;
    }
}

/* 响应式调整 */
@media (max-width: 1199.98px) {
    .events-banner h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .events-banner {
        padding: 60px 0;
    }
    .events-banner h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .events-banner {
        padding: 40px 0;
        text-align: center;
    }
    .events-banner h1 {
        font-size: 2rem;
    }
    .brand-logo {
        margin: 0 auto;
    }
    .value-tags {
        justify-content: center;
    }
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .mobile-stat-card .stat-value {
        font-size: 14px;
    }
    .mobile-stat-card .stat-label {
        font-size: 10px;
    }
}



    /* 筛选区域整体样式 */
.events-filter {
    margin-bottom: 30px;
    padding-top: 20px;
}

.filter-wrapper {
    transition: all 0.3s ease;

}

/* 筛选标签样式 */
.text-muted.font-weight-bold {
    font-size: 14px;
    color: #666 !important;
    margin-bottom: 10px;
    display: block;
}

/* 筛选选项容器 */
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

/* 筛选选项按钮 */
.filter-option {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-option:hover {
    background-color: #e0e0e0;
    color: #333;
    text-decoration: none;
    transform: translateY(-1px);
}

/* 选中状态 */
.filter-option.active {
    background-color: #ff0050; /* 抖音红色 */
    color: white;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(255, 0, 80, 0.3);
}

/* 确保按钮内部没有其他元素影响背景色 */
.filter-option.active::before,
.filter-option.active::after {
    display: none;
}

/* 搜索框样式 */
.search-form {
    width: 100%;
}

.search-input-group {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-input {
    border-radius: 20px 0 0 20px;
    border: 1px solid #ddd;
    padding-left: 15px;
    height: 38px;
    font-size: 14px;
}

.search-input:focus {
    box-shadow: none;
    border-color: #ff0050;
}

.search-btn {
    background-color: #ff0050; /* 抖音红色 */
    color: white;
    border: none;
    border-radius: 0 20px 20px 0;
    padding: 0.375rem 1rem;
    transition: all 0.2s ease;
}

.search-btn:hover {
    background-color: #e00046;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .filter-options {
        margin-bottom: 15px;
    }
    
    .filter-option {
        margin-bottom: 8px;
    }
    
    .col-md-3 {
        margin-bottom: 15px;
    }
}


/* 活动卡片样式优化 */
.event-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.05);
}

.io-black-mode .event-card {
    background-color: #2c2e2f;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.event-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: #2c2e2f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.event-badge.upcoming {
    background-color: #FE2C55;
}

.event-badge.ongoing {
    background-color: #25F4EE;
}

.event-badge.ended {
    background-color: #6c757d;
}

.event-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.event-title {
    font-size: 16px !important;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
}

.event-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.io-black-mode .event-title a {
    color: #fff;
}

.event-title a:hover {
    color: #25F4EE;
}

.event-platform, .event-city {
    font-size: 13px;
    color: #666;
    background-color: #f5f5f5;
    padding: 3px 8px;
    border-radius: 4px;
}

.io-black-mode .event-platform, .io-black-mode .event-city {
    background-color: #3a3a3a;
    color: #ccc;
}

.event-date, .event-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.io-black-mode .event-date, .io-black-mode .event-location {
    color: #aaa;
}

.event-date i, .event-location i {
    color: #25F4EE;
    width: 16px;
    text-align: center;
    margin-right: 5px;
}

.event-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.io-black-mode .event-footer {
    border-top-color: rgba(255,255,255,0.05);
}

.free-badge, .price-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.free-badge {
    background-color: #e6f7f5;
    color: #25F4EE;
}

.io-black-mode .free-badge {
    background-color: rgba(37, 244, 238, 0.2);
}

.price-badge {
    background-color: #ffebee;
    color: #FE2C55;
}

.io-black-mode .price-badge {
    background-color: rgba(254, 44, 85, 0.2);
}

/* 分页样式 */
.pagination-wrapper {
    margin-top: 30px;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 3px;
    border-radius: 5px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.io-black-mode .pagination .page-numbers {
    background-color: #333;
    color: #ddd;
}

.pagination .page-numbers.current {
    background: linear-gradient(90deg, #25F4EE, #FE2C55);
    color: #fff;
}

.pagination .page-numbers:hover:not(.current) {
    background-color: #e0e0e0;
}

.io-black-mode .pagination .page-numbers:hover:not(.current) {
    background-color: #444;
}

/* 响应式调整 */
@media (max-width: 768px) {
  
    
    .event-card {
        margin-bottom: 20px;
    }
    
    .filter-wrapper {
        margin-top: -20px;
        padding: 15px !important;
    }
    
    .filter-options {
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        padding-bottom: 5px;
    }
    
    .event-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .event-footer .btn {
        margin-top: 10px;
        width: 100%;
    }
}


/* 搜索框美化样式 */
.search-input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
    height: 40px; /* 控制整体高度 */
}

.search-input-group:hover,
.search-input-group:focus-within {
    box-shadow: 0 4px 15px rgba(255, 0, 80, 0.2);
    border-color: rgba(255, 0, 80, 0.3);
}

.search-input {
    border: none;
    height: 40px; /* 与父容器高度一致 */
    padding: 0 15px; /* 只保留左右内边距，去掉上下内边距 */
    background-color: transparent; /* 透明背景 */
    font-size: 14px;
    color: #fff; /* 文字颜色改为白色，适应深色背景 */
    line-height: 40px; /* 行高与高度一致，确保文字垂直居中 */
}

.search-input:focus {
    box-shadow: none;
    outline: none;
    background-color: transparent; /* 保持透明背景 */
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7); /* 半透明白色占位符 */
    font-style: italic;
    vertical-align: middle; /* 确保占位符文字垂直居中 */
}

.search-btn {
    background: linear-gradient(45deg, #ff0050, #ff5c79);
    border: none;
    color: white;
    height: 40px; /* 与输入框高度一致 */
    width: 40px; /* 设置固定宽度 */
    padding: 0; /* 去掉内边距 */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 0;
}

.search-btn:hover {
    background: linear-gradient(45deg, #e00046, #ff4567);
    transform: translateX(2px);
}

.search-btn:active {
    transform: translateX(0);
}

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

/* 响应式调整 */
@media (max-width: 768px) {
    .search-input-group {
        margin-bottom: 15px;
    }
}


/* 活动提交模态框样式 */
.event-submit-modal {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: #f8f9fa;
}

.event-submit-header {
    background: linear-gradient(45deg, #ff0050, #ff5c79);
    color: #fff;
    border-bottom: none;
    padding: 15px 20px;
}

.modal-title-container {
    display: flex;
    align-items: center;
}

.modal-title-icon {
    margin-right: 10px;
    font-size: 24px;
}

.event-submit-header .modal-title {
    font-weight: 600;
    font-size: 20px;
    margin: 0;
}

.event-submit-header .close {
    color: #fff;
    opacity: 0.8;
    text-shadow: none;
    transition: opacity 0.3s;
}

.event-submit-header .close:hover {
    opacity: 1;
}

.event-submit-body {
    padding: 25px;
    background-color: transparent;
}

.event-submit-intro {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-submit-icon {
    font-size: 24px;
    color: #ff0050;
    margin-right: 15px;
}

.event-submit-desc {
    margin: 0;
    color: #495057;
    font-size: 15px;
}

.form-section {
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.form-section-title i {
    color: #ff0050;
    margin-right: 8px;
}

.custom-input,
.custom-textarea {
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 10px 15px;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.9);
}

.custom-input:focus,
.custom-textarea:focus {
    border-color: #ff0050;
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 80, 0.25);
    background-color: #fff;
}

.input-group-text {
    background-color: rgba(255, 255, 255, 0.8);
    border-color: #ced4da;
}

.required-mark {
    color: #ff0050;
    font-weight: bold;
}

.form-text {
    font-size: 12px;
    margin-top: 5px;
}

.privacy-notice {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.privacy-notice a {
    color: #ff0050;
    text-decoration: none;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

.event-submit-footer {
    border-top: none;
    padding: 15px 25px 25px;
    justify-content: center;
    background-color: transparent;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
    background-color: transparent;
    transition: all 0.3s;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.submit-btn {
    background: linear-gradient(45deg, #ff0050, #ff5c79);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 0, 80, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 80, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 0, 80, 0.3);
}

/* 自定义复选框样式 */
.custom-control-input:checked ~ .custom-control-label::before {
    border-color: #ff0050;
    background-color: #ff0050;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 80, 0.25);
}

/* 错误提示样式 */
.error-message {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
    color: #dc3545;
    margin-bottom: 20px;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .event-submit-body {
        padding: 15px;
    }
    
    .form-section {
        padding: 15px;
    }
}

  /* 活动详情页头部样式 */
.event-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 3rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 背景装饰元素 */
.event-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    z-index: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1NiIgaGVpZ2h0PSIxMDAiPgo8cmVjdCB3aWR0aD0iNTYiIGhlaWdodD0iMTAwIiBmaWxsPSIjMDAwMDAwIj48L3JlY3Q+CjxwYXRoIGQ9Ik0yOCA2NkwwIDUwTDAgMTZMMjggMEw1NiAxNkw1NiA1MEwyOCA2NkwyOCAxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmMDAzYyIgc3Ryb2tlLXdpZHRoPSIyIj48L3BhdGg+CjxwYXRoIGQ9Ik0yOCAwTDI4IDM0TDAgNTBMMCA4NEwyOCAxMDBMNTYgODRMNTYgNTBMMjggMzQiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmMDAzYyIgc3Ryb2tlLXdpZHRoPSIyIj48L3BhdGg+Cjwvc3ZnPg==');
    background-size: 300px;
}

/* 左上角装饰 */
.event-header-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255,0,60,0.3) 0%, rgba(255,0,60,0) 70%);
    border-radius: 0 0 150px 0;
    z-index: 1;
}

/* 右下角装饰 */
.event-header-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(315deg, rgba(255,0,60,0.3) 0%, rgba(255,0,60,0) 70%);
    border-radius: 200px 0 0 0;
    z-index: 1;
}

/* 主图样式 */
.event-main-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3), 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.event-main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 10px 20px rgba(0,0,0,0.3);
}

.event-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.event-main-image:hover img {
    transform: scale(1.03);
}

/* 活动状态标签 */
.event-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 2;
    backdrop-filter: blur(5px);
}

.event-status-badge.upcoming {
    background-color: rgba(255, 193, 7, 0.9);
    color: #212529;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.event-status-badge.ongoing {
    background-color: rgba(40, 167, 69, 0.9);
    color: #fff;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.event-status-badge.ended {
    background-color: rgba(108, 117, 125, 0.9);
    color: #fff;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

/* 二维码样式 */
.event-qrcode {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: -50px;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 3;
}

.event-qrcode-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff003c, #ff5c79);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255,0,60,0.3);
    letter-spacing: 0.5px;
}

.qrcode-img {
    max-width: 150px;
    border-radius: 8px;
    border: 3px solid rgba(255,255,255,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 活动分类标签 */
.event-badge {
    color: white;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.event-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.platform-badge {
    background: linear-gradient(45deg, #ff003c, #ff5c79);
    box-shadow: 0 4px 10px rgba(255,0,60,0.3);
}

.city-badge {
    background: linear-gradient(45deg, #6610f2, #8540f5);
    box-shadow: 0 4px 10px rgba(102,16,242,0.3);
}

.type-badge {
    background: linear-gradient(45deg, #17a2b8, #4cc3d6);
    box-shadow: 0 4px 10px rgba(23,162,184,0.3);
}

/* 活动标题 */
.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.event-title-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff003c, #ff5c79);
    border-radius: 2px;
}

/* 活动元数据 */
.event-meta-item {
    background: rgba(40, 40, 40, 0.7);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.05);
}

.event-meta-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background: rgba(50, 50, 50, 0.8);
}

.event-meta-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,0,60,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff003c;
    font-size: 18px;
    transition: all 0.3s ease;
}

.event-meta-item:hover .event-meta-icon {
    background: rgba(255,0,60,0.25);
    transform: scale(1.1);
}

.event-meta-label {
    font-size: 12px;
    color: #cccccc;
    font-weight: 500;
    margin-bottom: 3px;
}

.event-meta-value {
    font-weight: 500;
    color: #ffffff;
    font-size: 12px;
}

/* 进度条 */
.progress {
    height: 6px;
    border-radius: 3px;
    background-color: rgba(255,255,255,0.1);
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #ff003c, #ff5c79);
    border-radius: 3px;
    transition: width 0.8s ease;
}

/* 价格标签 */
.price-free {
    background: linear-gradient(45deg, #28a745, #5dd879);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(40,167,69,0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.price-paid {
    background: linear-gradient(45deg, #ff003c, #ff5c79);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(255,0,60,0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.price-free:hover, .price-paid:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* 按钮样式 */
.btn-register {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(255,0,60,0.3);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    background: transparent;
    color: white;
    cursor: pointer;
    margin-right: 15px;
    margin-bottom: 10px;
    z-index: 1;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,0,60,0.4);
}

.btn-register:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255,0,60,0.3);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff003c, #ff5c79);
    z-index: 1;
    transition: all 0.5s ease;
}

.btn-register:hover .btn-bg {
    background: linear-gradient(45deg, #e6003a, #ff003c);
}

.btn-event-link {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #ff003c;
    color: #ff003c;
    background: transparent;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-event-link:hover {
    background: rgba(255,0,60,0.1);
    text-decoration: none;
    color: #ff5c79;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,0,60,0.2);
    border-color: #ff5c79;
}

.btn-ended {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(108,117,125,0.3);
    transition: all 0.3s ease;
    border: none;
    background-color: #6c757d;
    color: white;
    cursor: not-allowed;
}

/* 分享按钮 */
.share-label {
    font-weight: 500;
    color: #cccccc;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
}

.share-icon {
    width: 40px;
    height: 40px;
    background: rgba(40, 40, 40, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.share-icon:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.share-icon.weibo {
    color: #e6162d;
}

.share-icon.weibo:hover {
    background: rgba(230,22,45,0.1);
}

.share-icon.wechat {
    color: #07c160;
}

.share-icon.wechat:hover {
    background: rgba(7,193,96,0.1);
}

.share-icon.qq {
    color: #12b7f5;
}

.share-icon.qq:hover {
    background: rgba(18,183,245,0.1);
}

/* 容器样式 */
.container.position-relative {
    z-index: 2;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .event-title {
        font-size: 2.2rem;
    }
    
    .event-qrcode {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .event-title {
        font-size: 2rem;
    }
    
    .event-price-register {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .event-price {
        margin-bottom: 15px;
    }
    
    .btn-register, .btn-event-link {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
    
    .event-meta-item {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .event-header {
        padding: 2rem 0;
    }
    
    .event-title {
        font-size: 1.8rem;
    }
    
    .event-badge {
        margin-bottom: 8px;
    }
    
    .event-meta-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* 动画效果 */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.price-free, .price-paid {
    animation: pulse 2s infinite;
}

  /* 活动价格和按钮区域 */
.event-action-box {
    margin-bottom: 20px;
}

.event-action-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* 价格标签 */
.event-price-tag {
    background-color: #ff0050;
    color: white;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: bold;
    font-size: 18px;
    margin-right: 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(255, 0, 80, 0.3);
    display: inline-block;
}

.event-price-tag span {
    display: inline-block;
}

/* 按钮容器 */
.event-action-buttons {
    display: flex;
    flex-wrap: wrap;
}

/* 报名按钮 */
.event-register-btn {
    background-color: #ff0050;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(255, 0, 80, 0.3);
    transition: all 0.3s ease;
}

.event-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 0, 80, 0.4);
    background-color: #e6004a;
}

.event-register-btn i {
    margin-right: 8px;
}

/* 活动链接按钮 */
.event-link-btn {
    background-color: transparent;
    color: #ff0050;
    border: 2px solid #ff0050;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.event-link-btn:hover {
    background-color: rgba(255, 0, 80, 0.1);
    color: #e6004a;
    text-decoration: none;
    transform: translateY(-2px);
}

.event-link-btn i {
    margin-right: 8px;
}

/* 活动已结束按钮 */
.event-ended-btn {
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(108, 117, 125, 0.3);
}

.event-ended-btn i {
    margin-right: 8px;
}

/* 分享区域 */
.event-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.event-share span {
    margin-right: 10px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 10px;
}

.share-icons {
    display: flex;
    flex-wrap: wrap;
}

.share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(40, 40, 40, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-icon.weibo {
    color: #e6162d;
}

.share-icon.wechat {
    color: #07c160;
}

.share-icon.qq {
    color: #12b7f5;
}

.share-icon:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 响应式调整 */
@media (max-width: 576px) {
    .event-action-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .event-price-tag {
        margin-bottom: 15px;
    }
    
    .event-register-btn, .event-link-btn {
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }
} 


    /* 报名模态框样式 */
.registration-modal-content {
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.registration-modal-header {
    background-color: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
}

.registration-modal-header .modal-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

.registration-modal-close {
    color: #ffffff;
    opacity: 0.7;
    font-size: 24px;
    transition: all 0.3s ease;
}

.registration-modal-close:hover {
    opacity: 1;
    color: #ff0050;
}

.registration-modal-body {
    padding: 25px;
    background-color: #1a1a1a;
}

.registration-intro {
    color: #aaaaaa;
    margin-bottom: 25px;
    font-size: 15px;
}

.registration-form-group {
    margin-bottom: 20px;
    position: relative;
}

.registration-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #dddddd;
}

.required-mark {
    color: #ff0050;
    font-weight: bold;
}

.registration-form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.registration-form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ff0050;
    box-shadow: 0 0 0 3px rgba(255, 0, 80, 0.2);
    outline: none;
}

.registration-form-control::placeholder {
    color: #666666;
}

.registration-textarea {
    min-height: 100px;
    resize: vertical;
}

.registration-form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
}

.registration-check-input {
    margin-top: 5px;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #ff0050;
}

.registration-check-label {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.5;
}

.registration-link {
    color: #ff0050;
    text-decoration: none;
    transition: all 0.3s ease;
}

.registration-link:hover {
    color: #ff5c79;
    text-decoration: underline;
}

.registration-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(45deg, #ff0050, #ff5c79);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.registration-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 80, 0.4);
}

.registration-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(255, 0, 80, 0.3);
}

.registration-submit-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: all 0.5s ease;
}

.registration-submit-btn:hover::before {
    left: 100%;
}

/* 响应式调整 */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 10px;
    }
    
    .registration-modal-body {
        padding: 20px 15px;
    }
    
    .registration-form-control {
        padding: 10px 12px;
    }
}

/* 报名成功模态框样式 */
.success-modal-content {
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.success-modal-header {
    background-color: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
}

.success-modal-header .modal-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

.success-modal-close {
    color: #ffffff;
    opacity: 0.7;
    font-size: 24px;
    transition: all 0.3s ease;
}

.success-modal-close:hover {
    opacity: 1;
    color: #ff0050;
}

.success-modal-body {
    padding: 30px;
    background-color: #1a1a1a;
}

.success-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.success-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff0050, #ff5c79);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255, 0, 80, 0.3);
    position: relative;
    animation: pulse 2s infinite;
}

.success-icon-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(255, 0, 80, 0.2);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-outer 2s infinite;
}

.success-icon-circle i {
    color: white;
    font-size: 36px;
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.success-message {
    color: #aaaaaa;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.success-qrcode-container {
    background: rgba(40, 40, 40, 0.7);
    border-radius: 12px;
    padding: 25px;
    max-width: 250px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.success-qrcode-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff0050, #ff5c79);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255, 0, 80, 0.3);
}

.success-qrcode-image {
    padding: 10px;
    background: white;
    border-radius: 8px;
    margin-top: 10px;
}

.success-qrcode-image img {
    max-width: 100%;
    height: auto;
}

/* 动画效果 */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse-outer {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* 响应式调整 */
@media (max-width: 576px) {
    .success-modal-body {
        padding: 20px 15px;
    }
    
    .success-title {
        font-size: 20px;
    }
    
    .success-message {
        font-size: 14px;
    }
    
    .success-qrcode-container {
        padding: 20px;
    }
}


/* 微信分享二维码模态框样式 */
.wechat-share-modal-content {
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.wechat-share-modal-header {
    background-color: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
}

.wechat-share-modal-header .modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.wechat-icon-title {
    color: #07c160;
    font-size: 22px;
}

.wechat-share-modal-close {
    color: #ffffff;
    opacity: 0.7;
    font-size: 24px;
    transition: all 0.3s ease;
}

.wechat-share-modal-close:hover {
    opacity: 1;
    color: #ff0050;
}

.wechat-share-modal-body {
    padding: 25px;
    background-color: #1a1a1a;
}

.wechat-share-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wechat-share-instruction {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.wechat-share-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
}

.wechat-step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ff0050, #ff5c79);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(255, 0, 80, 0.3);
}

.wechat-step-text {
    font-size: 14px;
    color: #cccccc;
}

.wechat-qrcode-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 15px 0;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.wechat-qrcode {
    width: 100%;
    height: 100%;
}

.wechat-qrcode-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0050, transparent);
    box-shadow: 0 0 8px #ff0050;
    animation: scanLine 2s linear infinite;
}

.wechat-share-tips {
    margin-top: 15px;
    font-size: 13px;
    color: #888888;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
}

.wechat-share-tips i {
    color: #ff0050;
    margin-right: 5px;
}

@keyframes scanLine {
    0% {
        top: 0;
    }
    50% {
        top: 100%;
    }
    100% {
        top: 0;
    }
}

/* 响应式调整 */
@media (max-width: 576px) {
    .wechat-share-modal-body {
        padding: 20px 15px;
    }
    
    .wechat-share-instruction {
        flex-direction: column;
        align-items: center;
    }
    
    .wechat-share-step {
        width: 100%;
        margin-bottom: 10px;
        flex-direction: row;
    }
    
    .wechat-step-number {
        margin-bottom: 0;
        margin-right: 10px;
    }
}
/* 主办方卡片样式 */
.organizer-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.organizer-header {
    background: linear-gradient(45deg, #ff0050, #ff5c79);
    padding: 15px;
    position: relative;
    display: flex;
    align-items: center;
}

.organizer-title-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.organizer-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.organizer-body {
    padding: 20px;
    background-color: #1a1a1a;
}

.organizer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.organizer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: white;
    padding: 5px;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 0, 80, 0.3);
    box-shadow: 0 5px 15px rgba(255, 0, 80, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.organizer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.organizer-logo-placeholder {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.organizer-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.organizer-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #ff0050, #ff5c79);
    border-radius: 2px;
}

.organizer-desc {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.organizer-contact {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    color: #cccccc;
    width: 100%;
    text-align: left;
}

.organizer-empty {
    text-align: center;
    padding: 20px 0;
    color: #666666;
}


/* 活动详情内容专属样式 */
.event-detail-content {
    padding: 20px;
}

/* 活动详情图片样式修复 */
.event-detail-content img {
    max-width: 100% !important; /* 确保图片不超过容器宽度 */
    height: auto !important; /* 保持图片比例 */
    width: auto !important; /* 覆盖可能的固定宽度 */
    object-fit: contain; /* 确保图片完整显示 */
    margin: 10px 0; /* 添加一些上下间距 */
}

/* 针对特别大的图片，可以设置居中显示 */
.event-detail-content figure, 
.event-detail-content .wp-caption {
    max-width: 100% !important;
    margin: 15px auto !important;
    text-align: center;
}

/* 如果有图片说明，确保其样式正确 */
.event-detail-content figcaption,
.event-detail-content .wp-caption-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 5px;
}

/* 针对WordPress添加的对齐类 */
.event-detail-content img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.event-detail-content img.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
}

.event-detail-content img.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 10px;
}

/* 响应式处理 */
@media (max-width: 768px) {
    .event-detail-content img.alignleft,
    .event-detail-content img.alignright {
        float: none;
        display: block;
        margin: 15px auto;
    }
}

  /* 活动标签样式 - 使用独特前缀避免冲突 */
.hd-category-tags {
    margin-bottom: 15px;
}

.hd-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-right: 8px;
    margin-bottom: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hd-tag i {
    margin-right: 5px;
}

.hd-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 平台标签 */
.hd-platform-tag {
    background: linear-gradient(135deg, #ff3366, #ff5e62);
    border: none;
}

/* 城市标签 */
.hd-city-tag {
    background: linear-gradient(135deg, #36d1dc, #5b86e5);
    border: none;
}

/* 类型标签 */
.hd-type-tag {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
    border: none;
}
