@charset "utf-8";


  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1660px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 */
        header {
            background: linear-gradient(135deg, #1e5799 0%, #207cca 51%, #2989d8 100%);
            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;
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 15px;
        }
        
        .logo span {
            font-size: 16px;
            font-weight: normal;
            margin-left: 10px;
            opacity: 0.8;
        }
        
        .search-box {
            display: flex;
            width: 100%;
            max-width: 500px;
            margin: 15px 0;
        }
        
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 16px;
            outline: none;
        }
        
        .search-box button {
            padding: 0 20px;
            background-color: #ff6b6b;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .search-box button:hover {
            background-color: #ff5252;
        }
        
        /* 导航样式 */
        nav {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        
        .nav-links li {
            position: relative;
        }
        
        .nav-links li a {
            display: block;
            padding: 15px 20px;
            color: #333;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .nav-links li a:hover {
            background-color: #f0f0f0;
            color: #2989d8;
        }
        
        .nav-links li.active a {
            background-color: #2989d8;
            color: white;
        }
        
        /* 主要内容样式 */
        main {
            padding: 30px 0;
        }
        
        .section-title {
            font-size: 24px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2989d8;
            color: #2989d8;
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
            font-size: 28px;
        }
        
        /* 卡片样式 */
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .card-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .card:hover .card-img img {
            transform: scale(1.05);
        }
        
        .card-img .img-desc {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 8px 15px;
            font-size: 14px;
        }
        
        .card-tags {
            display: flex;
            flex-wrap: wrap;
            padding: 10px 15px 0;
            gap: 8px;
        }
        
        .card-tag {
            background-color: #e1f5fe;
            color: #0288d1;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
        }
        
        .card-header {
            background-color: #2989d8;
            color: white;
            padding: 15px;
            font-size: 18px;
            font-weight: bold;
        }
        
        .card-body {
            padding: 15px;
            flex: 1;
        }
        
        .card-item {
            margin-bottom: 12px;
            display: flex;
        }
        
        .card-label {
            font-weight: bold;
            color: #666;
            display: inline-block;
            width: 100px;
            flex-shrink: 0;
        }
        
        .card-value {
            display: inline-block;
            flex: 1;
        }
        
        .card-footer {
            background-color: #f9f9f9;
            padding: 12px 15px;
            border-top: 1px solid #eee;
            font-size: 14px;
            color: #888;
            display: flex;
            justify-content: space-between;
        }
        
        /* 广告样式 */
        .ad-section {
            background-color: #f0f0f0;
            border: 1px dashed #ccc;
            padding: 20px;
            margin: 30px 0;
            position: relative;
            max-width: 1660px;
            border-radius: 8px;
        }
        
        .ad-label {
            position: absolute;
            top: 5px;
            right: 10px;
            background-color: #ff6b6b;
            color: white;
            padding: 2px 8px;
            font-size: 12px;
            border-radius: 3px;
        }
        
        .ad-content {
            text-align: center;
            color: #666;
        }
        
        .ad-content h3 {
            color: #2989d8;
            margin-bottom: 10px;
        }
        
        .ad-content p {
            margin-bottom: 5px;
        }
        
        /* 页脚样式 */
        footer {
            background-color: #333;
            color: #fff;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
            color: #2989d8;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            padding: 5px 0;
        }
        
        .footer-column ul li a:hover {
            color: #fff;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background-color: #444;
            border-radius: 50%;
            color: white;
            text-align: center;
            line-height: 36px;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: #2989d8;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 14px;
        }
        
        /* 复制按钮 */
        .copy-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #2989d8;
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            transition: all 0.3s;
        }
        
        .copy-btn:hover {
            background-color: #1e5799;
            transform: scale(1.1);
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .card-container {
                grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            }
        }
        
        @media (max-width: 992px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                justify-content: center;
                margin-bottom: 15px;
            }
            
            .search-box {
                margin: 15px auto;
            }
            
            .nav-container {
                flex-direction: column;
            }
            
            .nav-links {
                flex-direction: column;
                width: 100%;
                display: none;
            }
            
            .nav-links.show {
                display: flex;
            }
            
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            
            .nav-toggle {
                display: block;
                padding: 15px;
                cursor: pointer;
                text-align: right;
            }
        }
        
        @media (max-width: 768px) {
            .card-container {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 20px;
            }
            
            .card-header {
                font-size: 16px;
            }
            
            .card-label {
                width: 90px;
                font-size: 14px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        /* 动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .card {
            animation: fadeIn 0.5s ease-out forwards;
            opacity: 0;
        }
        
        .card:nth-child(1) { animation-delay: 0.1s; }
        .card:nth-child(2) { animation-delay: 0.2s; }
        .card:nth-child(3) { animation-delay: 0.3s; }
        .card:nth-child(4) { animation-delay: 0.4s; }
        .card:nth-child(5) { animation-delay: 0.5s; }
        .card:nth-child(6) { animation-delay: 0.6s; }


         /* 新增样式 - 培训机构比较表格 */
    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .comparison-table th, .comparison-table td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }
    
    .comparison-table th {
        background-color: #2989d8;
        color: white;
        font-weight: bold;
    }
    
    .comparison-table tr:nth-child(even) {
        background-color: #f5f7fa;
    }
    
    .comparison-table tr:hover {
        background-color: #e1f5fe;
    }
    
    /* 新增样式 - 学员评价 */
    .review-card {
        background: white;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .review-header {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .review-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
        object-fit: cover;
    }
    
    .review-name {
        font-weight: bold;
        margin-bottom: 5px;
    }
    
    .review-rating {
        color: #ffc107;
        font-size: 14px;
    }
    
    .review-content {
        line-height: 1.6;
    }
    
    .review-date {
        font-size: 12px;
        color: #888;
        margin-top: 10px;
        text-align: right;
    }
    
    /* 新增样式 - 名师推荐 */
    .teacher-card {
        display: flex;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }
    
    .teacher-image {
        width: 150px;
        height: 180px;
        object-fit: cover;
    }
    
    .teacher-info {
        padding: 20px;
        flex: 1;
    }
    
    .teacher-name {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #2989d8;
    }
    
    .teacher-title {
        font-size: 16px;
        color: #666;
        margin-bottom: 10px;
    }
    
    .teacher-desc {
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .teacher-contact {
        font-size: 14px;
        color: #666;
    }
    
    /* 新增样式 - 经验分享 */
    .experience-card {
        background: white;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .experience-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #2989d8;
    }
    
    .experience-meta {
        font-size: 14px;
        color: #888;
        margin-bottom: 15px;
    }
    
    .experience-content {
        line-height: 1.8;
    }
    
    /* 新增样式 - 复制按钮 */
    .copy-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background-color: #2989d8;
        color: white;
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        font-size: 20px;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
        transition: all 0.3s;
    }
    
    .copy-btn:hover {
        background-color: #1e5799;
        transform: scale(1.1);
    }
    
    /* 新增样式 - 艺术类培训特色标签 */
    .art-tag {
        display: inline-block;
        background-color: #ff6b6b;
        color: white;
        padding: 3px 8px;
        border-radius: 4px;
        font-size: 12px;
        margin-right: 5px;
        margin-bottom: 5px;
    }