        /* 快速访问板块 */
        .quick-access {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.4s ease;
        }
        
        .access-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .access-item {
            background: #f9fafb;
            border-radius: 16px;
            padding: 30px 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;

        }
        
        .access-item:hover {
            transform: translateY(-8px);

        }
        
        .quick-access .item-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: #2c3e50;
            text-align: center;
            position: relative;
            width: 100%;
            padding-bottom: 15px;
        }
        
        .quick-access .item-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: #1a3a6d;
            border-radius: 2px;
        }
        
        .quick-access .search-box {
            display: flex;
            width: 100%;
            margin-top: 5px;
            flex-direction: column;
        }
        
        .quick-access .search-input {
            flex: 1;
            padding: 15px 20px;
            font-size: 1rem;
            border: none;
            border-radius: 10px;
            background: white;
            color: #333;
            outline: none;

            margin-bottom: 8px;
        }
        
        .quick-access .search-input:focus {

        }
        
        .quick-access .search-btn {
            padding: 14px;
            background: #1a3a6d;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .quick-access .search-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }
        
        /* 搜索提示词 */
        .quick-access .search-hints {
            width: 100%;
            margin-top: 12px;
            text-align: center;
            font-size: 0.85rem;
            color: #7f8c8d;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
        }
        
        .hint-tag {
            background: rgba(236, 240, 241, 0.7);
            padding: 4px 10px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .hint-tag:hover {
            background: #1a3a6d;
            color: white;
        }
        
        /* 链接样式 */
        .quick-access .link-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            width: 100%;
            margin-top: 5px;
        }
        
        .quick-access .link-item {
            display: block;
            padding: 15px 10px;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            text-decoration: none;
            color: #2c3e50;
            background: white;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .quick-access .link-item:hover, .link-item.active {
            background: #1a3a6d;
            color: white;
            transform: translateY(-3px);
        }
        
        .vertical-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 100%;
            margin-top: 5px;
        }
        
        .vertical-link {
            display: block;
            padding: 16px;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            text-decoration: none;
            color: #2c3e50;
            background: white;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .vertical-link:hover, .vertical-link.active {
            background: #1a3a6d;
            color: white;
            transform: translateY(-3px);
        }
        
        .contact-container {
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        
        .quick-access .contact-link {
            display: block;
            width: 100%;
            padding: 18px;
            background: #1a3a6d;
            color: white;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;

            text-decoration: none;
            text-align: center;
        }
        
        .quick-access .contact-link:hover {
            background: #2980b9;
            transform: translateY(-3px);

        }
        
        /* 联系提示词 */
        .contact-hint {
            text-align: center;
            margin-top: 12px;
            font-size: 0.85rem;
            color: #7f8c8d;
        }
        

        
        /* 响应式设计 */
        @media (max-width: 900px) {
            .access-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(2, auto);
                gap: 20px;
            }
            
            .quick-access {
                padding: 30px;
            }
        }
        
        @media (max-width: 600px) {
            .access-grid {
                grid-template-columns: 1fr;
            }
            
            .quick-access {
                padding: 25px 20px;
            }
            

        }