   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }



        /* Main Content */
        .main-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 90px 20px 300px 20px;
            display: flex;
            flex-direction: column;
            gap: 90px;
        }

        .page-title {
            font-size: 46px;
            font-weight: normal;
            text-align: center;
        }

        .section {
            margin-bottom: 0;
        }

        .section-group-1,
        .section-group-2 {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .section-header {
            padding: 15px 30px;
            font-size: 20px;
            text-align: center;
            border: 2px solid #454545;
        }

        .drivers-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px;
            padding-bottom: 40px;
        }

        .driver-page-note {
            padding: 18px 20px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid #e8e8e8;
            color: #666;
            line-height: 1.8;
            font-size: 15px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
        }

        .driver-page-note strong {
            color: #222;
        }

        .driver-page-note.warning {
            border-color: #ffe2b8;
            background: #fffaf2;
        }

        .driver-page-note.success {
            border-color: #cdebd7;
            background: #f5fcf7;
        }

        .driver-page-note a {
            color: #d60000;
            text-decoration: none;
        }

        .driver-page-note a:hover {
            text-decoration: underline;
        }

        .no-data-tip {
            width: 100%;
            padding: 44px 24px;
            text-align: center;
            color: #666;
            background: #fff;
            border: 1px dashed #d8d8d8;
            border-radius: 12px;
            line-height: 1.9;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
        }

        .no-data-tip strong {
            display: block;
            margin-bottom: 10px;
            color: #222;
            font-size: 20px;
        }

        .driver-card {
            width: 320px;
            text-decoration: none;
        }


        .driver-image {
            width: 100%;
            height:350px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .driver-card:hover .driver-image {
            transform: scale(1.05);
        }


        .driver-name {
            padding: 15px;
            text-align: center;
            font-size: 20px;
            color: #333;
            background: #f8f8f8;
        }

        /* Footer */
        .footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding: 30px 0;
            text-align: center;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 15px;
        }

        .footer-nav a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-nav a:hover {
            color: #ff0000;
        }

        .footer-text {
            font-size: 12px;
            color: #888;
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 60px 15px 200px 15px;
                gap: 60px;
            }
            
            .section-group-1,
            .section-group-2 {
                gap: 40px;
            }
            
            .drivers-grid {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .main-content {
                padding: 40px 10px 150px 10px;
                gap: 40px;
            }
            
            .section-group-1,
            .section-group-2 {
                gap: 30px;
            }
            
            .drivers-grid {
                flex-direction: column;
                align-items: center;
            }
            
            .driver-card {
                width: 330px;
            }
        }