
.page-container[data-v-d1eb4858] {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: "Noto Sans SC", "Source Han Sans CN", "Microsoft YaHei", "Arial", sans-serif;
}
.items-container[data-v-d1eb4858] {
    padding-top: 60px; /* 等于菜单高度 */
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.item[data-v-d1eb4858] {
    display: flex;
    flex-direction: column;
    width: 250px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.item[data-v-d1eb4858]:hover {
    transform: translateY(-5px);
}
.image-container[data-v-d1eb4858] {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 1px 3px 8px 2px rgba(0, 0, 0, 0.35);
}
.item-image[data-v-d1eb4858] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.item:hover .item-image[data-v-d1eb4858] {
    transform: scale(1.05);
}
.item-text[data-v-d1eb4858] {
    margin-top: 12px;
    text-align: center;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}
.item-text[data-v-d1eb4858]:hover {
    color: #4CAF50;
}

  /* 响应式设计 */
@media (max-width: 768px) {
.item[data-v-d1eb4858] {
      width: calc(50% - 20px);
}
}
@media (max-width: 480px) {
.item[data-v-d1eb4858] {
      width: 100%;
}
}
a[data-v-d1eb4858] {
    text-decoration: none;
}
a[data-v-d1eb4858]:link, a[data-v-d1eb4858]:visited, a[data-v-d1eb4858]:hover, a[data-v-d1eb4858]:active {
    color: inherit;
}
