@charset "utf-8";
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1660px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        header {
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
        }
        
        .logo span {
            font-size: 16px;
            display: block;
            margin-top: 5px;
            font-weight: normal;
        }
        
        .copy-btn {
            background-color: #fff;
            color: #ff6b6b;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .copy-btn:hover {
            background-color: #f0f0f0;
        }
        
        nav {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
        
        .nav-container {
            overflow-x: auto;
            white-space: nowrap;
            padding: 10px 0;
        }
        
        .nav-container::-webkit-scrollbar {
            height: 5px;
        }
        
        .nav-container::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 5px;
        }
        
        .nav-links {
            display: inline-flex;
            flex-wrap: wrap;
        }
        
        .nav-links a {
            color: #555;
            text-decoration: none;
            padding: 10px 15px;
            margin: 0 5px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .nav-links a:hover, .nav-links a.active {
            background-color: #ff6b6b;
            color: white;
        }
        
        .section-title {
            font-size: 22px;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff6b6b;
            color: #333;
            position: relative;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 2px;
            background-color: #ff8e8e;
        }
        
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .card:hover .card-img {
            transform: scale(1.05);
        }
        
        .card-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #ff6b6b;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            z-index: 1;
        }
        
        .card-content {
            padding: 20px;
        }
        
        .card-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: #ff6b6b;
            position: relative;
            padding-bottom: 8px;
        }
        
        .card-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #ff8e8e;
        }
        
        .card-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 14px;
            color: #888;
        }
        
        .card-desc {
            margin-bottom: 15px;
            color: #555;
            line-height: 1.7;
        }
        
        .card-details {
            margin-top: 15px;
            border-top: 1px dashed #eee;
            padding-top: 15px;
        }
        
        .detail-item {
            margin-bottom: 8px;
            display: flex;
        }
        
        .detail-label {
            width: 100px;
            color: #888;
            font-size: 14px;
            flex-shrink: 0;
        }
        
        .detail-value {
            flex: 1;
            font-size: 14px;
        }
        
        .contact-info {
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 6px;
            margin-top: 15px;
            border-left: 3px solid #ff6b6b;
        }
        
        .qr-code {
            width: 100px;
            height: 100px;
            margin: 10px auto;
            display: block;
            border: 1px solid #eee;
            padding: 5px;
            background: white;
        }
        
        .ad-section {
            width: 100%;
            height: 100px;
            background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
            margin: 30px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .ad-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
        }
        
        .ad-label {
            position: absolute;
            top: 5px;
            right: 10px;
            background-color: #ff6b6b;
            color: white;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 12px;
        }
        
        footer {
            background-color: #333;
            color: #fff;
            padding: 30px 0;
            margin-top: 50px;
            background: linear-gradient(135deg, #2c3e50, #4a6491);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: #ff8e8e;
            position: relative;
            padding-bottom: 8px;
        }
        
        .footer-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #ff6b6b;
        }
        
        .footer-links a {
            display: block;
            color: #ddd;
            margin-bottom: 8px;
            text-decoration: none;
            transition: all 0.3s;
            padding: 3px 0;
        }
        
        .footer-links a:hover {
            color: #ff8e8e;
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            .card-container {
                grid-template-columns: 1fr;
            }
            
            .footer-section {
                flex: 100%;
            }
            
            .nav-links {
                flex-wrap: nowrap;
            }
        }
        
        /* 复制按钮样式 */
        .copy-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
        }
        
        .copy-btn-fixed {
            background-color: #ff6b6b;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .copy-btn-fixed:hover {
            background-color: #ff5252;
            transform: scale(1.1);
        }
        
        .copy-tooltip {
            position: absolute;
            right: 60px;
            background-color: #333;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            white-space: nowrap;
        }
        
        .copy-btn-fixed:hover .copy-tooltip {
            opacity: 1;
        }
        
        /* 图片样式增强 */
        .person-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #ff8e8e;
            display: block;
            margin: 0 auto 10px;
        }
        
        .activity-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }
        
        .activity-img {
            width: calc(33.33% - 7px);
            height: 80px;
            object-fit: cover;
            border-radius: 4px;
            transition: transform 0.3s;
        }
        
        .activity-img:hover {
            transform: scale(1.05);
        }
        
        /* 美化卡片标签 */
        .card-tag {
            display: inline-block;
            background-color: #ff8e8e;
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
            margin-right: 5px;
            margin-bottom: 5px;
        }

        /* 增加的移动端适配CSS代码 */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .card-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .footer-section {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
    
    .header-content {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .logo span {
        font-size: 14px;
    }
    
    .copy-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .nav-links a {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 20px;
        margin: 25px 0 15px;
    }
    
    .card-img {
        height: 180px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .card-meta {
        font-size: 13px;
    }
    
    .card-desc, .detail-value {
        font-size: 14px;
    }
    
    .detail-label {
        width: 80px;
        font-size: 13px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .card-container {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .footer-section {
        flex: 100%;
    }
    
    .nav-links {
        flex-wrap: nowrap;
    }
    
    .card-img {
        height: 220px;
    }
    
    .ad-section {
        height: 80px;
        margin: 20px 0;
    }
    
    .ad-section p {
        font-size: 14px;
        padding: 0 15px;
        text-align: center;
    }
    
    .ad-label {
        font-size: 11px;
    }
    
    .copy-btn-fixed {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .logo span {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 18px;
        margin: 20px 0 12px;
    }
    
    .card-img {
        height: 180px;
    }
    
    .card-content {
        padding: 12px;
    }
    
    .card-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .card-meta {
        margin-bottom: 10px;
        flex-direction: column;
    }
    
    .card-meta span {
        margin-bottom: 3px;
    }
    
    .card-details {
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .detail-item {
        margin-bottom: 6px;
        flex-direction: column;
    }
    
    .detail-label {
        width: 100%;
        margin-bottom: 3px;
    }
    
    .contact-info {
        padding: 10px;
    }
    
    .nav-links a {
        padding: 6px 10px;
        font-size: 13px;
        margin: 0 3px;
    }
    
    .footer-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .copyright {
        font-size: 12px;
        margin-top: 20px;
        padding-top: 15px;
    }
    
    .copy-btn-fixed {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }
    
    .copy-tooltip {
        font-size: 12px;
        right: 50px;
    }
}

@media (max-width: 400px) {
    .logo {
        font-size: 20px;
    }
    
    .logo span {
        font-size: 12px;
    }
    
    .copy-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .card-img {
        height: 160px;
    }
    
    .card-desc, .detail-value {
        font-size: 13px;
    }
    
    .nav-links a {
        padding: 5px 8px;
        font-size: 12px;
    }
    
    .ad-section {
        height: 70px;
    }
    
    .ad-section p {
        font-size: 13px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .copyright p {
        font-size: 11px;
    }
}

/* 针对横屏设备的特殊适配 */
@media screen and (min-width: 576px) and (max-width: 992px) and (orientation: landscape) {
    .card-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .card-img {
        height: 150px;
    }
}

/* 针对折叠屏设备的特殊适配 */
@media screen and (max-width: 768px) and (min-aspect-ratio: 1/1) {
    .container {
        max-width: 90%;
    }
    
    .card-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* 针对高DPI设备的优化 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .card {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
}

/* 针对iOS设备的特殊优化 */
@supports (-webkit-touch-callout: none) {
    body {
        /* 防止iOS上的点击高亮 */
        -webkit-tap-highlight-color: transparent;
    }
    
    /* 修复iOS上按钮点击延迟 */
    a, button {
        touch-action: manipulation;
    }
}

/* 针对Android设备的特殊优化 */
@supports (-webkit-overflow-scrolling: touch) {
    /* 修复Android上的滚动问题 */
    html {
        height: 100%;
        overflow: hidden;
    }
    
    body {
        height: 100%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* 针对小屏幕设备的导航栏优化 */
@media (max-width: 480px) {
    .nav-container {
        padding: 5px 0;
    }
    
    .nav-links a {
        padding: 5px 8px;
        font-size: 12px;
        margin: 0 2px;
    }
    
    .nav-container::-webkit-scrollbar {
        height: 3px;
    }
}

/* 针对超小屏幕设备的进一步优化 */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo span {
        font-size: 11px;
    }
    
    .copy-btn {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 15px;
    }
    
    .card-img {
        height: 140px;
    }
    
    .card-content {
        padding: 10px;
    }
    
    .card-title {
        font-size: 14px;
    }
    
    .card-meta {
        font-size: 12px;
    }
    
    .card-desc, .detail-value {
        font-size: 12px;
    }
    
    .detail-label {
        font-size: 12px;
    }
    
    .footer-title {
        font-size: 14px;
    }
    
    .footer-links a {
        font-size: 11px;
    }
    
    .copyright p {
        font-size: 10px;
    }
    
    .copy-btn-fixed {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .copy-tooltip {
        right: 45px;
    }
}