/* 主题颜色 */
.title-color {
    color: #5959bd !important;
}
.check-color {
    color: #2a8932 !important;
}

/* 图片预览样式 */
.image-container img.preview-img {
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    margin: 10px;
    width: 100px;
    height: auto;
    height: 320px;
    width: 670px;
}
.image-container img.preview-img:hover {
    transform: scale(1.05);
}

/* 弹框 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}
.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    height: 80%;
    max-width: none;
    max-height: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.modal-content img {
    max-width: 100%;
    max-height: 100%;
}
.close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

/* 轮播图容器修正 */
.app-slider-wrapper {
    position: relative;
    width: 500px;
    height: 400px;
    margin: 0 auto;
    padding: 108px 70px;
    margin-top: 12px;
}

/* 价格卡片定位 */
.price-card-left,
.price-card-right {
    position: relative;
    left: 208px;
}