
        /* 关于本站页面样式 */
        .about-container {
            padding: 30px 0;
        }
        .about-container .center {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .about-container h1 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 36px;
            color: #333;
            position: relative;
            padding-bottom: 15px;
        }
        .about-container h1:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #0099ff;
        }
        .section {
            margin-bottom: 40px;
        }
        .section h2 {
            font-size: 24px;
            color: #333;
            margin-bottom: 20px;
            position: relative;
            padding-left: 15px;
        }
        .section h2:before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 24px;
            background-color: #0099ff;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: #e0e0e0;
        }
        .timeline li {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline .time {
            position: absolute;
            left: -15px;
            top: 0;
            width: 80px;
            text-align: right;
            font-weight: bold;
            color: #0099ff;
        }
        .timeline .event {
            padding-left: 92px;
            border-left: 2px solid #0099ff;
            padding-bottom: 10px;
        }
        .team-members {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
        }
        .member {
            text-align: center;
            width: 200px;
        }
        .member img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid #0099ff;
        }
        .member h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        .member p {
            color: #666;
            font-size: 14px;
        }
        .contact-info {
            list-style: none;
            padding: 0;
        }
        .contact-info li {
            margin-bottom: 10px;
            font-size: 16px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        .friend-links a {
            color: #0099ff;
            text-decoration: none;
            padding: 5px 10px;
            border: 1px solid #0099ff;
            border-radius: 20px;
            transition: all 0.3s;
        }
        .friend-links a:hover {
            background-color: #0099ff;
            color: white;
        }
        .values {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        .value-card {
            flex: 1;
            min-width: 250px;
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .value-card:hover {
            transform: translateY(-5px);
        }
        .value-card h3 {
            color: #0099ff;
            margin-bottom: 10px;
        }
        .stats {
            display: flex;
            justify-content: space-around;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
        }
        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: #0099ff;
            margin-bottom: 5px;
        }
        .stat-label {
            color: #666;
        }
  