/* style/about.css */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            background-image: linear-gradient(to bottom, #3a3a3a, #2a2a2a);
            min-height: 100vh;
        }
        
        .container {
            width: 1024px;
            margin: 0 auto;
            background-color: #fff;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            border-left: 1px solid #555;
            border-right: 1px solid #555;
        }
        
        /* 顶部导航 */
        .top-nav {
            background: linear-gradient(to bottom, #4a4a4a, #2a2a2a);
            padding: 12px 0;
            border-bottom: 2px solid #8b4513;
        }
        
        .top-nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .top-nav li {
            margin: 0 25px;
            position: relative;
        }
        
        .top-nav a {
            color: #d4d4d4;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            z-index: 1;
        }
        
        .top-nav a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, #8b4513, #5d2f0a);
            border-radius: 4px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .top-nav a:hover {
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        }
        
        .top-nav a:hover::before {
            opacity: 1;
        }
        
        .top-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #d4a762;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .top-nav a:hover::after {
            width: 80%;
        }
        
        /* 顶部图片 */
        .top-banner {
            width: 1024px;
            height: 388px;
            background: #3a3a3a;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4d4d4;
            font-size: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            border-bottom: 3px solid #8b4513;
            position: relative;
            overflow: hidden;
        }
        
        .top-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .top-banner-text {
            position: absolute;
            z-index: 2;
            background: rgba(0, 0, 0, 0.5);
            padding: 15px 30px;
            border-radius: 8px;
            border: 1px solid #8b4513;
        }
        
        /* 内容区域 */
        .content {
            padding: 25px;
            background-color: #f8f8f8;
        }
        
        /* 关于我们区域 */
        .about-section {
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 24px;
            color: #444;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #8b4513;
            font-weight: bold;
        }
        
        .about-intro {
            background: linear-gradient(to bottom, #e8e8e8, #d8d8d8);
            padding: 25px;
            border: 1px solid #b8b8b8;
            border-radius: 8px;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .about-intro p {
            margin-bottom: 15px;
            color: #555;
            line-height: 1.7;
        }
        
        /* 团队介绍 */
        .team-section {
            margin-bottom: 30px;
        }
        
        .team-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
        }
        
        .team-member {
            flex: 0 0 calc(33.333% - 15px);
            background: linear-gradient(to bottom, #e8e8e8, #d8d8d8);
            border: 1px solid #b8b8b8;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        }
        
        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
            border-color: #8b4513;
        }
        
        .member-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: #8b4513;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 40px;
            border: 3px solid #d4a762;
        }
        
        .member-name {
            font-size: 18px;
            font-weight: bold;
            color: #444;
            margin-bottom: 5px;
        }
        
        .member-role {
            color: #8b4513;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .member-desc {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
        }
        
        /* 发展历程 */
        .history-section {
            margin-bottom: 30px;
        }
        
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #8b4513;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 25px;
            padding: 15px 20px;
            background: linear-gradient(to bottom, #e8e8e8, #d8d8d8);
            border-radius: 8px;
            border: 1px solid #b8b8b8;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 20px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #8b4513;
            border: 2px solid #d4a762;
        }
        
        .timeline-year {
            font-weight: bold;
            color: #8b4513;
            margin-bottom: 5px;
            font-size: 18px;
        }
        
        .timeline-content {
            color: #555;
            line-height: 1.6;
        }
        
        /* 联系我们 */
        .contact-section {
            background: linear-gradient(to bottom, #3a3a3a, #2a2a2a);
            padding: 30px 25px;
            border-radius: 8px;
            border: 2px solid #8b4513;
        }
        
        .contact-title {
            text-align: center;
            color: #d4a762;
            font-size: 24px;
            margin-bottom: 25px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .contact-container {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        
        .contact-info, .contact-form {
            flex: 1;
            background: linear-gradient(to bottom, #4a4a4a, #3a3a3a);
            border: 1px solid #5d5d5d;
            border-radius: 8px;
            padding: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #d4d4d4;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background: #8b4513;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #fff;
            font-size: 18px;
        }
        
        .contact-details h4 {
            color: #d4a762;
            margin-bottom: 5px;
        }
        
        .contact-details p {
            color: #aaa;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            color: #d4a762;
            margin-bottom: 5px;
        }
        
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #5d5d5d;
            border-radius: 4px;
            background: #3a3a3a;
            color: #fff;
        }
        
        .form-group textarea {
            height: 100px;
            resize: vertical;
        }
        
        .submit-btn {
            display: inline-block;
            background: linear-gradient(to bottom, #8b4513, #5d2f0a);
            color: #fff;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 0 #3a1f06;
            width: 100%;
        }
        
        .submit-btn:hover {
            background: linear-gradient(to bottom, #9c5523, #6d3f1a);
            transform: translateY(-3px);
            box-shadow: 0 7px 0 #3a1f06;
        }
        
        .submit-btn:active {
            transform: translateY(1px);
            box-shadow: 0 3px 0 #3a1f06;
        }
        
        /* 页脚 */
        footer {
            background: linear-gradient(to bottom, #4a4a4a, #2a2a2a);
            color: #aaa;
            text-align: center;
            padding: 20px 0;
            font-size: 14px;
            border-top: 2px solid #8b4513;
        }
        
        footer p {
            margin: 5px 0;
        }