/* 网页快捷卡片容器 */
.网页快捷卡片 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: -248px auto 0;
    width: 1200px;
    position: relative;
    z-index: 3;
    box-sizing: border-box;
}

/* 快捷卡片样式 */
.快捷卡片 {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 285px;
    height: 296px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
}

/* 确保快捷卡片内的所有元素都没有下划线 */
.快捷卡片,
.快捷卡片 * {
    text-decoration: none !important;
}

/* 快捷图片容器 */
.快捷图片 {
    background-color: #fff9ef;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 196px;
    flex-shrink: 0;
    position: relative;
}

/* 快捷图片 */
.快捷图片 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* 图片悬停放大效果 */
.快捷图片 img:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* 快捷名称 */
.快捷名称 {
    font-size: 14px;
    font-weight: bold;
    margin: 8px 0;
    color: #333;
    text-decoration: underline;
}

/* 快捷说明 */
.快捷说明 {
    font-size: 12px;
    color: #666;
    margin: 6px 0;
    text-decoration: underline;
}

/* 登录按钮 */
.登录按钮 {
    background-color: #ff9900;
    color: white;
    border: none;
    padding: 0;
    border-radius: 15px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 232px;
    height: 40px;
    margin: 8px auto 0;
    line-height: 40px;
    text-decoration: underline;
    display: block;
    text-align: center;
}

.登录按钮:hover {
    background-color: #ff6600;
}