body {
    background: #f9f9f9;
}

.login-container {
    max-width: 420px;
    margin: 80px auto;
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: white;
    border-bottom: 1px solid #ddd;
}

.result-card {
    display: flex;
    gap: 16px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    align-items: flex-start;
    /* 关键：顶部对齐 */
}

.result-card img {
    width: 120px;
    height: auto;
    object-fit: contain;
    display: block;
}

.item-content {
    padding-left: 2em;
}

.carousel {
    height: 500px;
    background-color: #ddd;
    /* 固定高度 */
}

.carousel-item {
    height: 500px;
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* 保持比例，完整显示图片 */
}

.img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /* 关键：垂直居中 */
    height: 500px;
    /* 自己可调 */
    background: #ddd;
    /* 可选 */
}

.img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}