/* resource-page.css - 资源页面专属样式 */
/* 资源页面专属样式 */
.resource-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.resource-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}
.resource-item:hover {
    transform: translateY(-5px);
}
.resource-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}
.resource-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
}
.resource-item p {
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}
.resource-item a {
    display: inline-block;
    color: #1a73e8;
    font-weight: 500;
}
.resource-item a:hover {
    color: #0d47a1;
    text-decoration: underline;
}