/* 确保布局与show-fangan.html一致 */
.art_con {
    background: #fff;
    padding: 20px 0;
}
.zcon {
    width: 1200px;
    margin: 0 auto;
}
.fangan_con {
    display: flex;
    justify-content: space-between;
}
.fangan_left {
    width: 890px; /* 从850px调整为890px，以保持总宽度1200px */
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 5px;
}
.fangan_right {
    width: 290px; /* 从320px调整为290px */
}
.imsg2.fangan_msg {
    background: #fff;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 5px;
}
.clearfix {
    clear: both;
}

/* 确保解决方案列表正常显示 */
.solution_list ul.fix {
    list-style: none;
    padding: 0;
    margin: 0;
}
.solution_list ul.fix li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.solu_img {
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 4px;
}
.solu_img img {
    width: 100%;
    height: 180px; /* 设置固定高度，防止变形 */
    object-fit: cover; /* 保持图片比例，裁剪多余部分 */
    border-radius: 4px;
    transition: transform 0.3s ease; /* 添加悬停效果 */
}
.solu_img:hover img {
    transform: scale(1.03); /* 鼠标悬停时轻微放大 */
}
.solution_list h2 {
    margin: 10px 0;
    font-size: 18px;
}
.solution_list h2 a {
    color: #333;
    text-decoration: none;
}
.solution_list h2 a:hover {
    color: #e60012;
}
.intro {
    color: #666;
    line-height: 1.6;
}
.page_case {
    margin-top: 30px;
    text-align: center;
}

/* 表单样式优化 - 确保所有元素正确显示 */
.s1 {
    width: 100%;
}
.s1 form {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.s1-a, .s1-b {
    width: 100%; /* 确保宽度为100% */
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}
.s1-c {
    width: 100%; /* 覆盖之前的180px，改为100% */
    padding: 12px;
    background: #e60012;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 10px;
    transition: background 0.3s ease;
}
.s1-c:hover {
    background: #c4000f; /* 按钮悬停效果 */
}
.s1 p {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    text-align: left; /* 取消居中，改为左对齐 */
    padding: 5px 0;
}

/* 课程师资图片优化 */
.tclist .img {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 8px;
}
.tclist .img img {
    width: 100%;
    height: 120px; /* 设置固定高度 */
    object-fit: cover; /* 保持图片比例，裁剪多余部分 */
    transition: transform 0.3s ease;
}
.tclist .img:hover img {
    transform: scale(1.05); /* 鼠标悬停时轻微放大 */
}
.tclist .txt {
    display: block;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
}
.tclist .txt:hover {
    color: #e60012;
}

/* 手机端响应式样式 */
@media screen and (max-width: 768px) {
    .body1200 {
        width: 100%;
    }
    
    .zcon {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .fangan_con {
        flex-direction: column;
    }
    
    .fangan_left {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
        box-sizing: border-box;
    }
    
    .fangan_right {
        width: 100%;
    }
    
    .imsg2.fangan_msg {
        padding: 15px;
        box-sizing: border-box;
    }
    
    /* 面包屑导航适配 */
    div[style*="width:1200px; margin:0 auto;"] {
        width: 100% !important;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    /* 解决方案列表适配 */
    .solution_list ul.fix li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .solu_img img {
        height: 150px; /* 移动端调整高度 */
    }
    
    .solution_list h2 {
        font-size: 16px;
    }
    
    .intro {
        font-size: 14px;
    }
    
    /* 右侧导航栏表单适配 - 重点修复 */
    .s1 {
        width: 100%;
    }
    
    .s1 form {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .s1-a, .s1-b {
        width: 100%;
        padding: 12px;
        font-size: 16px; /* 防止iOS缩放 */
        box-sizing: border-box;
        margin-bottom: 10px;
        display: block;
    }
    
    .s1-c {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        margin-bottom: 10px;
        display: block;
    }
    
    .s1 p {
        font-size: 12px;
        text-align: left; /* 移动端也改为左对齐 */
        margin-top: 5px;
        display: block;
        width: 100%;
    }
    
    /* 课程师资部分适配 */
    .tcrow {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .tclist {
        width: 48%;
        margin-bottom: 15px;
    }
    
    .tclist .img img {
        height: 100px; /* 移动端调整高度 */
    }
    
    .tclist .txt {
        font-size: 13px;
    }
    
    /* 分页适配 */
    .page_case {
        overflow-x: auto;
    }
}

/* 小屏幕手机适配 */
@media screen and (max-width: 480px) {
    .zcon {
        padding: 0 5px;
    }
    
    .fangan_left {
        padding: 10px;
    }
    
    .imsg2.fangan_msg {
        padding: 10px;
    }
    
    .solution_list h2 {
        font-size: 15px;
    }
    
    .intro {
        font-size: 13px;
    }
    
    /* 课程师资部分在小屏幕上改为单列 */
    .tclist {
        width: 100%;
    }
    
    /* 表单在小屏幕上进一步优化 */
    .s1-a, .s1-b {
        padding: 10px;
    }
    
    .s1-c {
        padding: 10px;
    }
    
    .s1 p {
        font-size: 11px;
        padding: 8px 5px;
        text-align: left; /* 小屏幕也保持左对齐 */
    }
    
    /* 小屏幕图片高度调整 */
    .solu_img img {
        height: 130px;
    }
    
    .tclist .img img {
        height: 120px;
    }
}

/* 特别针对表单元素添加更严格的样式 */
.s1 input {
    max-width: 100%;
    box-sizing: border-box;
}
.s1 form > * {
    display: block;
    width: 100%;
}
/* 修复PC端图标溢出问题 */
.img_icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.img_icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .img_icon {
        width: 36px;
        height: 36px;
        top: 8px;
        left: 8px;
    }
    
    .img_icon img {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 480px) {
    .img_icon {
        width: 32px;
        height: 32px;
        top: 6px;
        left: 6px;
    }
    
    .img_icon img {
        width: 18px;
        height: 18px;
    }
}