/* 全局变量 */
:root {
    --primary-color: #00d2ff;
    --secondary-color: #3a7bd5;
    --bg-color: #0f0f12;
    --card-bg: #1a1a20;
    --text-color: #e0e0e0;
    --heading-color: #ffffff;
    --accent-color: #ff0055;
}

/* 基础重置 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部导航 */
header {
    background-color: rgba(15, 15, 18, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header-time {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    animation: timeGlow 3s ease-in-out infinite;
}

.header-time i {
    font-size: 14px;
}

@keyframes timeGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }
}

@media (max-width: 768px) {
    .header-time {
        padding: 6px 12px;
        font-size: 12px;
    }
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--heading-color);
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* 主要内容区域 */
main {
    margin-top: 70px;
    min-height: calc(100vh - 70px - 60px); /* 减去头部和底部高度 */
}

/* Hero 区域 */
.hero {
    height: 600px;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-color: #1a1a20; /* 备用背景色 */
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 模拟科技感背景动画效果 */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--heading-color);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.6);
    color: white;
}

/* 公告区域样式 */
.notice-section {
    padding: 20px 0;
    margin-top: -30px; /* 向上重叠一点Hero区域 */
    position: relative;
    z-index: 10;
}

.notice-box {
    background: rgba(26, 26, 32, 0.95);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 8px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.notice-header {
    display: flex;
    align-items: center;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 20px;
    min-width: 120px;
}

.notice-icon {
    color: var(--accent-color);
    font-size: 20px;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

.notice-title {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 16px;
}

.notice-content {
    flex: 1;
    overflow: hidden;
}

.no-notice {
    color: #888;
    font-style: italic;
    font-size: 14px;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* 服务/特色板块 */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--heading-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: #22222a;
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 22px;
}

/* 员工公示区域 */
.team-section {
    background-color: transparent;
    position: relative;
}

.section-title-wrapper {
    position: relative;
    display: inline-block;
}

.section-title-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #06b6d4, #0891b2);
    border-radius: 1.5rem;
    filter: blur(2rem);
    opacity: 0.5;
}

.section-title-box {
    position: relative;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
    backdrop-filter: blur(1.5rem);
    border: 2px solid rgba(6, 182, 212, 0.4);
    border-radius: 1.5rem;
    padding: 1.5rem 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.section-title-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-icon-wrapper {
    position: relative;
}

.section-icon-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    border-radius: 1rem;
    filter: blur(0.75rem);
    opacity: 0.75;
}

.section-icon {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.section-icon i {
    font-size: 1.5rem;
    color: white;
}

.section-title-text {
    text-align: left;
}

.section-title-main {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.025em;
    margin: 0;
}

.section-title-sub {
    color: #22d3ee;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.team-member {
    position: relative;
    height: 100%;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.team-member:nth-child(1) { animation-delay: 0s; }
.team-member:nth-child(2) { animation-delay: 0.1s; }
.team-member:nth-child(3) { animation-delay: 0.2s; }
.team-member:nth-child(4) { animation-delay: 0.3s; }

.member-glow {
    position: absolute;
    inset: -3px;
    background: linear-gradient(90deg, #0891b2, #06b6d4, #2563eb);
    border-radius: 1.2rem;
    opacity: 0;
    filter: blur(1.5rem);
    transition: opacity 0.5s ease;
}

.team-member:hover .member-glow {
    opacity: 0.6;
}

.member-card {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    backdrop-filter: blur(1rem);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 1.2rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-member:hover .member-card {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.5);
}

.member-top-bar {
    height: 4px;
}

.member-card.gradient1 .member-top-bar {
    background: linear-gradient(90deg, #0284c7, #0ea5e9, #22d3ee);
}

.member-card.gradient2 .member-top-bar {
    background: linear-gradient(90deg, #0891b2, #06b6d4, #14b8a6);
}

.member-card.gradient3 .member-top-bar {
    background: linear-gradient(90deg, #059669, #10b981, #34d399);
}

.member-card.gradient4 .member-top-bar {
    background: linear-gradient(90deg, #ea580c, #f97316, #fb923c);
}

.member-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, #1e293b 1px, transparent 1px),
                      linear-gradient(to bottom, #1e293b 1px, transparent 1px);
    background-size: 1.5rem 1.5rem;
    opacity: 0.15;
}

.member-orb {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(2rem);
    transition: opacity 0.5s ease;
}

.team-member:hover .member-orb {
    opacity: 0.15;
}

.member-card.gradient1 .member-orb {
    background: linear-gradient(135deg, #0284c7, #0ea5e9, #22d3ee);
}

.member-card.gradient2 .member-orb {
    background: linear-gradient(135deg, #0891b2, #06b6d4, #14b8a6);
}

.member-card.gradient3 .member-orb {
    background: linear-gradient(135deg, #059669, #10b981, #34d399);
}

.member-card.gradient4 .member-orb {
    background: linear-gradient(135deg, #ea580c, #f97316, #fb923c);
}

.member-content {
    position: relative;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.member-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.team-member:hover .member-badge {
    transform: rotate(12deg);
}

.member-card.gradient1 .member-badge {
    background: linear-gradient(135deg, #0891b2, #2563eb, #0ea5e9);
    box-shadow: 0 10px 15px -3px rgba(8, 145, 178, 0.4);
}

.member-card.gradient2 .member-badge {
    background: linear-gradient(135deg, #0891b2, #2563eb, #4f46e5);
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.4);
}

.member-card.gradient3 .member-badge {
    background: linear-gradient(135deg, #059669, #14b8a6, #06b6d4);
    box-shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.4);
}

.member-card.gradient4 .member-badge {
    background: linear-gradient(135deg, #ea580c, #f43f5e, #ec4899);
    box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.4);
}

.member-badge i {
    font-size: 0.9rem;
    color: white;
}

.member-avatar-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.avatar-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    filter: blur(0.5rem);
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.team-member:hover .avatar-ring {
    opacity: 0.7;
}

.member-card.gradient1 .avatar-ring {
    background: linear-gradient(90deg, #0284c7, #0ea5e9, #22d3ee);
}

.member-card.gradient2 .avatar-ring {
    background: linear-gradient(90deg, #0891b2, #06b6d4, #14b8a6);
}

.member-card.gradient3 .avatar-ring {
    background: linear-gradient(90deg, #059669, #10b981, #34d399);
}

.member-card.gradient4 .avatar-ring {
    background: linear-gradient(90deg, #ea580c, #f97316, #fb923c);
}

.member-avatar {
    position: relative;
    width: 5rem;
    height: 5rem;
}

.avatar-outer {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.member-card.gradient1 .avatar-outer {
    background: linear-gradient(135deg, #0284c7, #0ea5e9, #22d3ee);
}

.member-card.gradient2 .avatar-outer {
    background: linear-gradient(135deg, #0891b2, #06b6d4, #14b8a6);
}

.member-card.gradient3 .avatar-outer {
    background: linear-gradient(135deg, #059669, #10b981, #34d399);
}

.member-card.gradient4 .avatar-outer {
    background: linear-gradient(135deg, #ea580c, #f97316, #fb923c);
}

.avatar-inner {
    position: absolute;
    inset: 3px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-inner i {
    font-size: 1.8rem;
    color: #22d3ee;
}

.avatar-star {
    position: absolute;
    top: -0.3rem;
    right: -0.3rem;
    width: 1.2rem;
    height: 1.2rem;
    color: #fbbf24;
    fill: #fbbf24;
    animation: pulse 2s ease-in-out infinite;
}

.member-info {
    text-align: center;
    width: 100%;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.025em;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.team-member:hover .member-name {
    color: #22d3ee;
}

.name-dividers {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
}

.divider {
    height: 3px;
    width: 1.5rem;
    border-radius: 9999px;
    transition: width 0.4s ease;
}

.team-member:hover .divider {
    width: 2rem;
}

.divider:nth-child(2) { transition-delay: 50ms; }
.divider:nth-child(3) { transition-delay: 100ms; }

.member-card.gradient1 .divider {
    background: linear-gradient(90deg, #0284c7, #0ea5e9, #22d3ee);
}

.member-card.gradient2 .divider {
    background: linear-gradient(90deg, #0891b2, #06b6d4, #14b8a6);
}

.member-card.gradient3 .divider {
    background: linear-gradient(90deg, #059669, #10b981, #34d399);
}

.member-card.gradient4 .divider {
    background: linear-gradient(90deg, #ea580c, #f97316, #fb923c);
}

.member-position {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.3);
}

.member-card.gradient1 .member-position {
    background: linear-gradient(90deg, #0284c7, #0ea5e9, #22d3ee);
}

.member-card.gradient2 .member-position {
    background: linear-gradient(90deg, #0891b2, #06b6d4, #14b8a6);
}

.member-card.gradient3 .member-position {
    background: linear-gradient(90deg, #059669, #10b981, #34d399);
}

.member-card.gradient4 .member-position {
    background: linear-gradient(90deg, #ea580c, #f97316, #fb923c);
}

.pending-text {
    display: block;
    font-size: 0.65rem;
    margin-top: 0.25rem;
    opacity: 0.9;
}

.member-bottom-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* 点击特效 */
.click-effect-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, rgba(59, 130, 246, 0) 70%);
    pointer-events: none;
    animation: ripple-effect 0.6s ease-out;
}

@keyframes ripple-effect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.glow-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.6) 0%, rgba(6, 182, 212, 0) 70%);
    pointer-events: none;
    animation: glow-pulse 0.8s ease-out;
}

@keyframes glow-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0;
        box-shadow: 0 0 0 20px rgba(6, 182, 212, 0);
    }
}

/* 响应式 */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .section-title-box {
        padding: 1rem 1.5rem;
    }
    
    .section-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .section-icon i {
    font-size: 1rem;
}


    .section-title-main {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* 关于我们板块 */
.about-section {
    background-color: #15151a;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    opacity: 0.8;
}

/* 页脚 */
footer {
    background-color: #0a0a0c;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: #888;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }
    
    .nav-menu {
        margin-top: 15px;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .notice-box {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .notice-header {
        border-right: none;
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 10px;
    }
}

/* 合作伙伴板块 */
.partners-section {
    background-color: #1a1a22;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.partner-member {
    position: relative;
}

.partner-member .member-card {
    height: 280px;
}

.partner-member .member-name {
    font-size: 0.95rem;
}

.partner-member .member-position {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-member .member-card {
        height: 240px;
    }
    
    .partner-member .member-name {
        font-size: 0.85rem;
    }
    
    .partner-member .member-position {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* 公告列表样式 */
.notice-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notice-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.notice-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.notice-item-new {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.notice-item-new:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}

.notice-badge {
    flex-shrink: 0;
    width: 60px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 4px;
    margin-right: 15px;
}

.notice-item-new .notice-badge {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
}

.notice-text {
    flex: 1;
    color: #e0e0e0;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-time {
    flex-shrink: 0;
    font-size: 12px;
    color: #888;
    margin-left: 15px;
}

@media (max-width: 768px) {
    .notice-item {
        padding: 8px 12px;
    }
    
    .notice-badge {
        width: 50px;
        font-size: 11px;
    }
    
    .notice-text {
        font-size: 13px;
    }
    
    .notice-time {
        font-size: 11px;
    }
}

/* 公告详情页样式 */
.announcement-detail-section {
    padding: 60px 0;
    background-color: #15151a;
    min-height: calc(100vh - 200px);
}

.detail-header {
    margin-bottom: 30px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #888;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.announcement-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.announcement-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #888;
}

.announcement-meta i {
    color: #3b82f6;
}

.detail-card {
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.8), rgba(20, 20, 30, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.detail-title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-title h1 {
    flex: 1;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.pinned-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
}

.detail-summary {
    padding: 20px 30px;
    background: rgba(59, 130, 246, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-section h3,
.content-section h3 {
    font-size: 14px;
    font-weight: 500;
    color: #3b82f6;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-section p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.detail-body {
    padding: 30px;
}

.announcement-text {
    color: #ddd;
    font-size: 15px;
    line-height: 1.9;
}

.announcement-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.announcement-text p:empty {
    margin-bottom: 15px;
    min-height: 1px;
}

.announcement-text br {
    display: block;
    content: "";
    margin: 10px 0;
}

.announcement-text ul,
.announcement-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.announcement-text li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.announcement-text h1,
.announcement-text h2,
.announcement-text h3,
.announcement-text h4,
.announcement-text h5,
.announcement-text h6 {
    margin: 25px 0 15px 0;
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
}

.announcement-text hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 25px 0;
}

.announcement-text blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    border-left: 4px solid var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
    color: #bbb;
    font-style: italic;
}

.detail-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.share-section h4 {
    font-size: 13px;
    color: #888;
    margin: 0 0 15px 0;
    font-weight: 400;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ccc;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.share-btn:first-child:hover {
    background: rgba(7, 187, 127, 0.2);
    border-color: #07bb7f;
    color: #07bb7f;
}

.share-btn:nth-child(2):hover {
    background: rgba(234, 67, 53, 0.2);
    border-color: #ea4335;
    color: #ea4335;
}

.related-announcements {
    margin-top: 40px;
}

.related-announcements h3 {
    font-size: 18px;
    color: #fff;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.related-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.related-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

.related-title {
    flex: 1;
    color: #ddd;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 15px;
}

.related-date {
    flex-shrink: 0;
    font-size: 12px;
    color: #888;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .announcement-detail-section {
        padding: 40px 0;
    }
    
    .detail-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }
    
    .detail-title h1 {
        font-size: 1.4rem;
    }
    
    .detail-summary,
    .detail-body {
        padding: 20px;
    }
    
    .announcement-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .related-list {
        grid-template-columns: 1fr;
    }
}

/* 音乐播放器样式 */
.music-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(20, 20, 30, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.music-player:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(59, 130, 246, 0.3);
}

.music-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    animation: musicBeat 2s ease-in-out infinite;
}

.music-player.paused .music-icon {
    animation-play-state: paused;
}

@keyframes musicBeat {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    }
}

.music-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.music-name {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.music-status {
    font-size: 11px;
    color: #3b82f6;
}

.music-player.paused .music-status {
    color: #888;
}

.music-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ccc;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.music-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: scale(1.1);
}

/* 响应式适配 */
@media (max-width: 768px) {
    .music-player {
        bottom: 20px;
        right: 20px;
        padding: 8px 12px;
        gap: 10px;
    }
    
    .music-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .music-info {
        display: none;
    }
    
    .music-toggle {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .music-player {
        bottom: 15px;
        right: 15px;
        padding: 6px 10px;
    }
}

/* 工商登记证书样式 */
.footer-certificate {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.certificate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.certificate-item:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.2);
}

.certificate-svg {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.3));
    transition: all 0.3s ease;
}

.certificate-item:hover .certificate-svg {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(59, 130, 246, 0.5));
}

.certificate-text {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .certificate-item {
        padding: 10px 15px;
    }
    
    .certificate-svg {
        width: 60px;
    }
    
    .certificate-text {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .footer-certificate {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 10px;
    }
}

/* SSL认证标识样式 */
.footer-ssl {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ssl-badge {
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 195, 0.1));
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ssl-badge:hover {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15), rgba(0, 242, 195, 0.15));
    border-color: rgba(79, 172, 254, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(79, 172, 254, 0.3);
}

.ssl-badge img {
    filter: drop-shadow(0 2px 8px rgba(79, 172, 254, 0.3));
    transition: all 0.3s ease;
}

.ssl-badge:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(79, 172, 254, 0.5));
}

@media (max-width: 768px) {
    .ssl-badge {
        padding: 10px 15px;
    }
    
    .ssl-badge img {
        max-height: 40px !important;
    }
}

@media (max-width: 480px) {
    .footer-ssl {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 10px;
    }
}

/* 官方认证标识样式 */
.footer-verified {
    display: flex;
    align-items: center;
    justify-content: center;
}

.verified-badge {
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 193, 7, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.verified-badge:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.15));
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.3);
}

.verified-svg {
    width: 50px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.verified-badge:hover .verified-svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.5));
}

@media (max-width: 768px) {
    .verified-badge {
        padding: 10px 15px;
    }
    
    .verified-svg {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .footer-verified {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 10px;
    }
}
