﻿@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("fa-solid-900.woff2") format("woff2"),
         url("fa-solid-900.ttf") format("truetype");
}

.quick-access {
    padding: 40px 0;
    background: #f5f5f5;
}

.quick-access-title {
    text-align: center;
    margin-bottom: 30px;
}

.quick-access-title .eng {
    font-size: 24px;
    color: #999;
    margin-bottom: 5px;
}

.quick-access-title .zh {
    font-size: 28px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.quick-access-title .xian {
    width: 40px;
    height: 3px;
    background: #1e50a2;
    margin: 0 auto;
}

.quick-access-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.quick-item {
    width: 16.66%;
    padding: 0 15px;
    margin-bottom: 20px;
}

.quick-link {
    display: block;
    text-align: center;
    padding: 20px 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.quick-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.quick-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quick-icon i {
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
}

.quick-text {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* 不同色块的背景色 */
.icon1 { background: #1e50a2; }
.icon2 { background: #2e7d32; }
.icon3 { background: #c62828; }
.icon4 { background: #6a1b9a; }
.icon5 { background: #f57c00; }
.icon6 { background: #00838f; }

/* 悬停效果 */
.quick-link:hover .quick-icon {
    transform: scale(1.1) rotate(5deg);
}

.quick-link:hover .quick-icon i {
    transform: scale(1.2);
}

.quick-link:hover .quick-text {
    color: #1e50a2;
}

/* 响应式布局 */
@media screen and (max-width: 1200px) {
    .quick-item {
        width: 33.33%;
    }
}

@media screen and (max-width: 768px) {
    .quick-item {
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .quick-item {
        width: 100%;
    }
} 