/**
 * InDraw 新版页面样式
 * 响应式设计 - 支持移动端、平板端、桌面端
 * 作用域：所有样式仅在 .indraw-page 内生效
 * 
 * 适配方案：
 * - 移动端：1-799px
 * - 平板端：800-1023px
 * - 桌面端：1024px+
 * - 超大屏：1440px+
 */

/* ===== 开发阶段：临时隐藏全局顶部菜单栏 ===== */
/* TODO: 开发完成后删除此样式 */
/* .header.fixed {
    display: none !important;
} */


/* ===== 基础样式重置 - 仅作用于 indraw 页面 ===== */
.indraw-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.indraw-page {
    position: relative;
    /* width: 100vw; */
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: #333;
    /* 确保不会创建新的层叠上下文，影响导航栏弹出层 */
    z-index: auto;
}

.indraw-body {
    min-width: 400px !important;
}

.indraw-body .footer {
    width: 100%;
    overflow: hidden;
}
.indraw-body .header.fixed{
    width: 100%;
    overflow: visible !important; /* 改为 visible，允许弹出层显示 */
}

.indraw-page .indraw-container {
    width: 100%;
}

.indraw-page .primary-btn{
    background-color: #7366FF;
    color: #fff;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.indraw-page .default-btn{
    border: 1px solid #DCDFE6;
    border-radius: 8px;
    color: #303033;
    background-color: #fff;
}
.indraw-page .default-btn:hover{
    background-color: #fff;
}

/* ===== 移动端优先设计 (1-799px) ===== */
/* 默认样式即为移动端样式 */

.indraw-page .indraw-header {
    position: fixed;
    width: 100%;
    height: 52px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #DCDFE6;
    z-index: 100;
}

.indraw-page .indraw-header .indraw-container {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.indraw-page .indraw-hero-wrapper{
    width: 100%;
    background-image: url('/images/indraw-new/indraw-hero-bg.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
}

.indraw-page .indraw-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: #000;
}
.indraw-page .indraw-logo img{
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.indraw-page .indraw-nav-menu {
    position: relative;
    display: none;/* 移动端隐藏，使用汉堡菜单 */
    height: 48px;
    align-items: center;
}
.indraw-page .indraw-nav-menu .indraw-nav-menu-item{ 
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 16px;
    color: #6A6A73;
    font-size: 16px;
    cursor: pointer;
}

.indraw-page .indraw-nav-menu .indraw-nav-menu-item:hover,
.indraw-page .indraw-nav-menu .indraw-nav-menu-item.active {
    color: #7366FF;
}
.indraw-page .indraw-nav-menu .indraw-nav-menu-item button{
    height: 32px;
    width: 102px;
}
.indraw-page .indraw-mobile-menu {
    display: block;
    height: 100%;
    padding: 0 16px;
    color: #6A6A73;
    font-size: 16px;
    cursor: pointer;
    background: none;
    border: none;
}
.indraw-page .indraw-mobile-menu:hover{
    color: #7366FF;
}

/* 首图模块 */
.indraw-page .indraw-content-section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.indraw-page .indraw-content-section .indraw-container{
    position: relative;
    width: 80%;
    max-width: 1280px;
    min-width: 320px;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.indraw-page .indraw-content-section .indraw-container.overview{
    padding: 120px 0;
}
.indraw-page .content-overview-item{
    width: 100%;
}
.indraw-page .content-overview-item.font{
    position: relative;
    margin-bottom: 32px;
}
.indraw-page .content-overview-item.font .new-icon{
    width: 96px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #2AD488;
    color: white;
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
    margin-bottom: 12px;
}
.indraw-page .content-overview-item.font .main-title{
    font-weight: bold;
    color: #303033;
    font-size: 32px;
    line-height: 48px;
    text-align: left;
}
.indraw-page .content-overview-item.font .sub-title{
    font-size: 16px;
    line-height: 24px;
    color: #6A6A73;
    margin-bottom: 32px;
}
.indraw-page .content-overview-item.font .button-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}
.indraw-page .content-overview-item.font button{
    width: 100%;
    height: 48px;
    font-size: 16px;
    line-height: 24px;
}
.indraw-page .content-overview-item.font .excel-title{
    width: 146px;
    height: 48px;
    color: #6A6A73;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    line-height: 26px;
    margin: 0 auto;
    cursor: pointer;
}
.indraw-page .content-overview-item.font .excel-title img{
    width: 16px;
    height: 16px;
}

.indraw-page .content-overview-item.img img{
    width: 100%; 
    height: auto; 
    aspect-ratio: 16/10; 
    object-fit: cover; 
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    border-radius: 6px;
    border: 1px solid #DCDFE6;
}

/* 总体介绍 */
.indraw-page .indraw-content-section .indraw-container.introduce{
    padding-top:0px;
}
.indraw-page .introduce-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
    width: 100%;
}
.indraw-page .introduce-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}
.indraw-page .introduce-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.indraw-page .introduce-card .card-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    margin-right: 16px;
}
.indraw-page .introduce-card .card-text {
    display: flex;
    flex-direction: column;
}
.indraw-page .introduce-card .text-line {
    font-size: 14px;
    line-height: 22px;
    color: #303033;
    white-space: nowrap;
}

/* 合作企业 */
.indraw-page .indraw-content-section .indraw-container.company{
    width: 100%;
    max-width: 100%;
}
.indraw-page .indraw-container .title-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #303033;
    margin-bottom: 32px;    
}
.indraw-page .main-title{
    font-weight: bold;
    font-size: 28px;
    line-height: 42px;
    text-align: center;
}
.indraw-page .sub-title{
    font-size: 14px;
    line-height: 22px;
}
.indraw-page .company-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
}
.indraw-page .company-row {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.indraw-page .company-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: company-logo-scroll 60s linear infinite;
}
.indraw-page .company-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.indraw-page .company-item img {
    height: 64px;
    width: auto;
    display: block;
    opacity: 0.7;
}
.indraw-page .company-list::before,
.indraw-page .company-list::after {
    content: "";
    position: absolute;
    top: 0;
    width: 10%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.indraw-page .company-list::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}
.indraw-page .company-list::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}
@keyframes company-logo-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 功能介绍 */

.indraw-page .function-content + .function-content {
    margin-top: 80px;
}
.indraw-page .function-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.indraw-page .function-content.reverse {
    flex-direction: column;
}
.indraw-page .function-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    color: #303033;
    margin-bottom: 32px;
}
.indraw-page .function-title {
    font-size: 28px;
    line-height: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.indraw-page .function-features {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}
.indraw-page .function-feature {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
}
.indraw-page .function-feature.active {
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.indraw-page .function-feature .feature-label {
    font-weight: bold;
}
.indraw-page .function-feature .feature-description {
    color: #6A6A73;
}
.indraw-page .function-feature .feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.indraw-page .function-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.indraw-page .function-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}
/* 优势对比 */
.indraw-page .advantage-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.indraw-page .advantage-card{
    width: 100%;
    border-radius: 16px;
    background: #fff;
    position: relative;
}
.indraw-page .advantage-card.advantage-card-left{
    width: calc(100% - 32px);
    padding: 16px 16px;
    background: #F7F7FA;
    color: #9C9CA6;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.indraw-page .advantage-card.advantage-card-right{
    width: 100%;
    padding: 32px;
    padding-left: 0;
    color: #303033;
    border: 1px solid #EBEEF5;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.indraw-page .advantage-card-header{
    height: 48px;
    font-size: 24px;
    line-height: 36px;
    font-weight: bold;
    text-transform: none;
}
.indraw-page .advantage-card-header.right-line{
    padding-left: 32px;
}
.indraw-page .advantage-list{
    list-style: none;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 22px;
}
.indraw-page .advantage-list li{
    /* height: 42px; */
    padding: 10px 0;
    border-top: 1px solid #EBEEF5;
    display: flex;
    align-items: center;
}
.indraw-page .advantage-list .right-line{
    padding-left: 32px;
}

.indraw-page .advantage-card-right .advantage-icon{
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    display: inline-block;
}
.indraw-page .versions-content{
    width: 100%;
    /* overflow-x: auto; */
}
.indraw-page .versions-table{
    width: 100%;
    /* min-width: 720px; */
    border-radius: 16px;
    border: 1px solid #DCDFE6;
    /* padding-left: 32px; */
    /* box-shadow: 0 24px 64px rgba(48, 58, 102, 0.12); */
    background: #F7F7FA;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.indraw-page .versions-row{
    display: grid;
    grid-template-columns: 1.2fr repeat(2, 1fr);
    align-items: stretch;
}
.indraw-page .versions-row .left-cloumn{
    padding-left: 16px;
}
.indraw-page .versions-row .right-cloumn{
    padding-right: 16px;
    background-color: white;
}
.indraw-page .versions-cell{
    height: 100%;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.indraw-page .middle-cloumn .versions-cell,
.indraw-page .right-cloumn .versions-cell{
    padding: 10px 16px;
    min-width: 100px;
}
.indraw-page .versions-row:not(:first-child) .versions-cell{
    border-top: 1px solid #DCDFE6;
}
.indraw-page .versions-row:last-child .versions-cell{
    padding-bottom: 34px;
}
.indraw-page .versions-cell-feature{
    justify-content: flex-start;
    font-size: 14px;
    line-height: 22px;
    color: #303033;
    /* font-weight: 500; */
}

.indraw-page  .versions-cell.versions-cell-plan{
    position: relative;
    padding: 24px 16px ;
}
.indraw-page .versions-plan {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}
.indraw-page .versions-plan .primary-btn{
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding: 5px 0;
}
.indraw-page .versions-plan-title{
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    color: #303033;
}
.indraw-page .versions-plan-tags{
    display: flex;
    flex-direction: column;
    padding: 2px;
    background-color: #F7F7FA;
    border-radius: 4px;
}
.indraw-page .versions-plan-tags .plan-tag{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1px 8px;
    font-size: 12px;
    line-height: 18px;
    color: #9C9CA6;
    cursor: pointer;
    border-radius: 2px;
}
.indraw-page .versions-plan-tags .plan-tag.active{
    color: #303033;
    background-color: white;
}
.indraw-page .versions-plan-price{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.indraw-page .price-line{
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    text-align: left;
    font-size: 14px;
    line-height: 22px;
    color: #9C9CA6;
}
.indraw-page .price-line-price{
    font-size: 16px;
    line-height: 28px;
    color: #303033;
    font-weight: bold;
}

.indraw-page .versions-cell-value{
    font-size: 14px;
    line-height: 22px;
    color: #303033;
    /* font-weight: 500; */
}
/* .indraw-page .versions-cell.plan-enterprise{
    background-color: #FFFFFF !important;
    padding-right: 32px;
} */
.indraw-page .versions-cell-value img{
    width: 22px;
    height: 22px;
}
.indraw-page .versions-cell-value span{
    display: inline-block;
}
.indraw-page .indraw-container.case .carousel-icon{
    position: absolute;
    width: 48px;
    height: 48px;
    z-index: 100;
    cursor: pointer;
}
.indraw-page .case-content{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.indraw-page .indraw-container.case .left-icon{
    left: -40px;
}
.indraw-page .indraw-container.case .right-icon{
    right: -40px;
}
.indraw-page .case-list-wrapper{
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #DCDFE6;
    border-bottom: 1px solid #DCDFE6;
    /* overflow-x: scroll; */
}
.indraw-page .case-list{
    /* width: 100%; */
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    transition: transform 0.4s ease;
    will-change: transform;
}
.indraw-page .case-list .case-item{
    width: 100%;
    /* height: 100%; */
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    align-items: center;
}
.indraw-page .case-item .case-item-image{
    height: 150px;
    width: 120px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.indraw-page .case-item .case-item-content .case-item-name{
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    color: #303033;;
    margin-bottom: 4px;
}
.indraw-page .case-item .case-item-content .case-item-description{
    font-size: 14px;
    line-height: 22px;
    color: #6A6A73;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.indraw-page .end-button{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.indraw-page .end-button button{
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    height: 48px;
    cursor: pointer;
}
.indraw-page .indraw-content-section .indraw-container.end{
    padding-bottom: 120px;
}

/* 提示弹层 */
.indraw-toast {
    /* 使用 fixed 定位，确保相对于视口（viewport）顶部显示，不受页面滚动影响 */
    width: 80%;
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    background-color: #F4F3FF;
    border: 1px solid rgba(115, 102, 255, 0.4);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 9999;
}

.indraw-toast.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.indraw-toast-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indraw-toast-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.indraw-toast-message {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14px;
    line-height: 22px;
}

.indraw-toast-link {
    color: #7366FF;
}

.indraw-toast-link:hover,
.indraw-toast-link:focus {
    text-decoration: underline;
}

.indraw-toast-text {
    display: inline;
    word-break: break-word;
}

.indraw-toast-close {
    margin-left: 8px;
    border: none;
    background: transparent;
    color: #A0A1B0;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.indraw-toast-close:hover,
.indraw-toast-close:focus {
    color: #424466;
}
/* ===== 中大屏通用适配 (≥800px) ===== */
@media screen and (min-width: 800px)  and (max-width: 1023px){
    .indraw-toast{
        width: auto;
    }
    .indraw-page .indraw-nav-menu {
        display: flex;
    }

    .indraw-page .indraw-mobile-menu {
        display: none;
    }

    .indraw-page .content-overview-item.font .button-content {
        flex-direction: row;
        justify-content: flex-start;
    }

    .indraw-page .content-overview-item.font button {
        width: 160px;
        height: 48px;
    }

    .indraw-page .content-overview-item.font .excel-title {
        margin: 0;
    }

    .indraw-page .function-title {
        text-align: left;
    }
    /* 平板端 Grid 布局 - 2列 */
    .indraw-page .introduce-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        row-gap: 32px;
        column-gap: 24px;
    }
    .indraw-page .advantage-card.advantage-card-right, 
    .indraw-page .advantage-card.advantage-card-left{
        width: 50%;
    }
    .indraw-page .advantage-content{
        flex-direction: row;
    }
    .indraw-page .advantage-card.advantage-card-left{
        padding: 16px 32px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 16px;
        padding-right: 0;
    }
    .indraw-page .versions-row .left-cloumn{
        padding-left: 32px;
    }
    .indraw-page .versions-row .right-cloumn{
        padding-right: 32px;
    }
    .indraw-page .price-line{
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;

    }
    .indraw-page .versions-plan-tags{
        flex-direction: row;
    }
    .indraw-page .case-list .case-item{
        width: calc(100%/3);
    }
    .indraw-page .end-button{
        flex-direction: row;
    }
    .indraw-page .end-button button{
        width: 160px;
    }
    .indraw-page .price-line-price{
        font-size: 18px;
    }
}

/* ===== 桌面端适配 (1024px 以上) ===== */
@media screen and (min-width: 1024px) {
    .indraw-toast{
        width: auto;
    }
    .indraw-page .indraw-nav-menu {
        display: flex;
    }
    .indraw-page .indraw-mobile-menu {
        display: none;
    }
    .indraw-page .content-overview-item.font .button-content {
        flex-direction: row;
        justify-content: flex-start;
    }

    .indraw-page .content-overview-item.font button {
        width: 160px;
        height: 48px;
    }
    .indraw-page .content-overview-item.font .excel-title {
        margin: 0;
    }
    .indraw-page .content-overview-item.font{
        width: 45%;
        padding-right: 32px;
    }
    .indraw-page .content-overview-item.img{
        width: 55%;
    }
    .indraw-page .indraw-content-section .indraw-container.overview{
        flex-direction: row;
    }

    .indraw-page .content-overview-item.font .main-title{
        
        font-size: 36px;
        line-height: 50px;
    }
    .indraw-page .content-overview-item.font .sub-title{
        font-size: 20px;
        line-height: 30px;
    }

    
    /* 桌面端 Grid 布局 - 3列 */
    .indraw-page .introduce-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 32px;
        column-gap: 24px;
    }
    .indraw-page  .main-title{
        font-size: 32px;
        line-height: 48px;
    }
    .indraw-page .function-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .indraw-page .function-content.reverse {
        flex-direction: row-reverse;
    }
    .indraw-page .function-text {
        width: 47.5%;
        margin-bottom: 0;
    }
    .indraw-page .function-title {
        font-size: 32px;
        line-height: 48px;
        text-align: left;
    }
    .indraw-page .function-image {
        width: 47.5%;
    }
    .indraw-page .advantage-card.advantage-card-right, 
    .indraw-page .advantage-card.advantage-card-left{
        width: 50%;
    }
    .indraw-page .advantage-content{
        flex-direction: row;
    }
    .indraw-page .advantage-card.advantage-card-left{
        padding: 16px 32px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 16px;
        padding-right: 0;
    }
    .indraw-page .versions-row .left-cloumn{
        padding-left: 32px;
    }
    .indraw-page .versions-row .right-cloumn{
        padding-right: 32px;
    }
    .indraw-page .versions-plan-price{
        flex-direction: row;
    }
    .indraw-page .price-line{
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    .indraw-page .versions-plan-tags{
        flex-direction: row;
    }
    .indraw-page .case-list .case-item{
        width: calc(100%/3);
    }
    .indraw-page .end-button{
        flex-direction: row;
    }
    .indraw-page .end-button button{
        width: 160px;
    }
    .indraw-page .case-item .case-item-image{
        height: 180px;
        width: auto;
    }
    .indraw-page .price-line-price{
        font-size: 18px;
    }
}

/* ===== 图片预览弹层样式 ===== */
.indraw-image-preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.indraw-image-preview-container {
    width: 90%;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.indraw-image-preview-img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    cursor: default;
    pointer-events: none;
}

/* 点击图片本身不关闭预览 */
.indraw-image-preview-container:hover,
.indraw-image-preview-img:hover {
    cursor: default;
}

/* 配合全局菜单栏做的吸顶处理 */
@media screen and (max-width: 768px){
    .indraw-page .indraw-header{
        position: static;
    }
    .indraw-page .indraw-content-section .indraw-container.overview{
        padding-top: 80px;
    }
}


