main.content {
    width: 100%;
    overflow: auto;
    padding: 0px;
}

.container{
    padding: 0px;
}

/* 轮播容器 - 宽高比 4:3 */
.drawing-swiper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 10px;
    overflow: hidden;
}

.drawing-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.drawing-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.drawing-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}

/* 轮播指示器 */
.drawing-swiper .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.drawing-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 4px;
    opacity: 1;
    display: inline-block;
    vertical-align: middle;
}

.drawing-swiper .swiper-pagination-bullet-active {
    background: #ff6b6b;
}

/* 收藏按钮 */
.collect-btn {
    position: absolute;
    bottom: 1em;
    right: 1em;
    padding: 0 1em;
    background: #eee;
    border-radius: 1em;
    cursor: pointer;
    color: #666;
    z-index: 10;
    line-height: 2em;
}

.collect-btn.active {
    background: #ff6b6b;
    color: #fff;
}

/* 平面图区域 */
.floor-plan {
    text-align: center;
}

.floor-plan img {
    width: 65%;
    height: auto;
}

/* 输入区域 */
.input-section {
    background: #fff;
    padding: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.input-row {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.input-row:last-child {
    margin-bottom: 0;
}

.input-label {
    flex-shrink: 0;
    margin-right: 10px;
    color: #666;
}

.input-row input {
    flex: 1;
    padding: 0.5em;
    border: 1px solid #e0e0e0;
    border-radius: 0.5em;
    background: #f8f8f8;
    font-size: 1em;
    height: 2.5em;
    line-height: 2.5em;
    font-weight: bold;
    color: #ff6b6b;
}

.input-unit {
    flex-shrink: 0;
    margin-left: 10px;
    color: #666;
}

/* 输入提示标签 - 绝对定位 */
.input-tip {
    position: absolute;
    left: 6.5em;
    bottom: 0.525em;
    color: #999;
}

/* 设计按钮区域 */
.design-btn-section {
    padding: 0 15px 30px;
    max-width: 700px;
    margin: 0 auto;
}

.design-btn {
    width: 100%;
    padding: 0px;
    background: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 0.5em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    height: 2.5em;
    line-height: 2.5em;
}

.design-btn:hover {
    background: #ff5252;
}

.design-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* 响应式设计 */    
@media (min-width: 768px) and (max-width: 1200px) {
    .container{
        padding: 0px 15px;
    }
    /*.floor-plan img {
        max-width: 400px;
    }

    .input-label {
        font-size: 1em;
    }*/

}

@media (min-width: 1024px) and (max-width: 1200px){    
    
}

@media (min-width: 1200px) {
    .container{
        padding: 0px 15px;
    }

    /* 左右布局 */
    .drawing-content {
        display: flex;
        gap: 80px;
        align-items: center;
    }

    .floor-plan-section {
        flex: 1;
        width: 50%;
    }

    .floor-plan img {
        width: 100%;
        margin-bottom: 0;
    }

    .right-section {
        flex: 1;
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .input-section {
        max-width: none;
        margin: 0;
        padding: 20px 0px;
    }

    .input-row input{
        height: 3em;
        line-height: 3em;
    }

    .input-tip{
        bottom: 0.8em;
    }

    .design-btn-section {
        max-width: none;
        margin: 0;
        padding: 0;
    }
    
    .design-btn {
        height: 3em;
        line-height: 3em;
        font-size: 1.25em;
    }
}