/* AI创 页面样式 */

/* 通用样式 */
.aicz-content {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    color: #333;
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-bg {
    width: 100%;
}

.bg-white {
    background-color: #fff;
}

.bg-blue {
    background-color: #f5f9ff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* AI创作助手模块样式 */
.assistant-content {
    display: flex;
    margin-bottom: 40px;
}

.assistant-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.assistant-features {
    padding: 0 20px;
}

.feature-box {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.blue-bg {
    /* background-color: #f0f7ff; border: 1px solid #d0e6ff; */
}

.feature-box h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1890ff;
    margin-bottom: 15px;
}

.feature-box ul {
    padding-left: 20px;
    margin-top: 75px;
}

.feature-box li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    position: relative;
    list-style-type: none;
}

.feature-box li:before {
    content: "•";
    color:rgb(0, 0, 0);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.itemText {
    padding-left: 10px;
}

/* 高效生成创作初稿模块样式 */
.draft-examples {
    margin-top: 40px;
}

.example-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
}

.example-card img {
    width: 100%;
    height: auto;
    display: block;
}

.example-button {
    margin: 15px auto !important;
    display: block !important;
}

/* 在线编辑模块样式 */
.editing-showcase {
    margin-top: 40px;
}

.showcase-image {
    text-align: center;
    margin-bottom: 30px;
}

.showcase-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.editing-buttons {
    margin-top: 30px;
}

.editing-button {
    width: 100%;
    margin-bottom: 15px !important;
}

/* AI智能编排模块样式 */
.arrangement-examples {
    margin-top: 40px;
}

.example-desc {
    padding: 15px;
    text-align: left;
    font-size: 16px;
    color: #333;
}

.full-width {
    margin-top: 20px;
    margin-bottom: 30px;
}

.arrangement-buttons {
    margin-top: 30px;
}

.arrangement-button {
    width: 100%;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .assistant-content {
        flex-direction: column;
    }
    
    .assistant-image {
        margin-bottom: 20px;
    }
    
    .assistant-features {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .feature-box h3 {
        font-size: 20px;
    }
} 

.itemButton {
    width: 180px;
    font-size: 18px;
    color: #fff;
    display: flex;
    justify-content: left;
    align-items: left;
    padding: 10px 30px;
    background: linear-gradient(to right, #79beff, #4f9df4);
    border-radius: 10px;
}

/* 可点击组件样式 */
.clickable-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clickable-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.clickable-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.item {
    position: relative;
    transition: all 0.3s ease;
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}