/* clip.css - Layout 104 Sidebar & Poster Light Theme Style Book */
body {
    background-color: #faf9f6;
    color: #43413d;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    margin: 0; padding: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
.clip-main-layout { display: flex; min-height: 100vh; }

/* 极简左边栏 (PC端固定) */
.clip-sidebar {
    width: 240px;
    background-color: #f7f6f2;
    border-right: 1px solid #edeae4;
    padding: 30px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; bottom: 0; left: 0;
    z-index: 1000;
}
.clip-logo { margin-bottom: 35px; text-align: center; }
.clip-logo img { height: 38px; display: inline-block; }
.clip-nav { list-style: none; padding: 0; margin: 0 0 30px 0; }
.clip-nav li { margin-bottom: 12px; }
.clip-nav a { display: block; padding: 10px 15px; color: #5a5753; text-decoration: none; font-size: 13px; font-weight: 600; border-radius: 6px; }
.clip-nav a:hover { background: #eae6df; color: #8e7b6c; }

/* 右侧主体内容区 */
.clip-content {
    flex: 1;
    margin-left: 240px;
    padding: 40px;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .clip-main-layout { flex-direction: column; }
    .clip-sidebar { width: 100%; position: static; height: auto; padding: 15px; border-right: none; border-bottom: 1px solid #edeae4; }
    .clip-content { margin-left: 0; padding: 20px; }
}

/* 巨幅横向滚动海报区域 */
.clip-poster-slider {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    background: #eae6df;
}
.clip-poster-slide {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    display: flex; align-items: center; padding: 30px; box-sizing: border-box;
}

/* 简约卡片 */
.clip-card {
    background: #ffffff;
    border: 1px solid #edeae4;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
}
.clip-card-header {
    font-size: 14px; font-weight: 700; color: #3d3b38;
    border-bottom: 1px dashed #f2eee8; padding-bottom: 10px; margin-bottom: 15px;
}
.clip-notice { background: #fdfaf2; border-left: 3px solid #8e7b6c; padding: 12px 15px; border-radius: 4px; margin-bottom: 25px; font-size: 12px; color: #7c6a46; border: 1px solid #f2eee8; }

/* 表格、输入框及按钮 */
.clip-table { width: 100%; border-collapse: collapse; }
.clip-table th { text-align: left; padding: 10px; border-bottom: 1px solid #edeae4; color: #8e8b87; font-weight: 400; font-size: 12px; }
.clip-table td { padding: 12px 10px; border-bottom: 1px dashed #edeae4; font-size: 13px; }
.clip-input { width: 100%; padding: 10px 12px; border: 1px solid #e1ddd7; border-radius: 6px; background: #faf9f6; box-sizing: border-box; font-size: 13px; outline: none; margin-bottom: 12px; }
.clip-input:focus { border-color: #8e7b6c; }
.clip-btn { display: inline-block; background: #5c5956; color: #fff !important; border: none; padding: 9px 18px; border-radius: 5px; font-size: 13px; text-align: center; cursor: pointer; text-decoration: none; }
.clip-btn:hover { background: #73706d; }
.clip-btn-fluid { display: block; width: 100%; box-sizing: border-box; }
.clip-btn-disabled { background: #d0cdc9 !important; cursor: not-allowed; }
.clip-badge { padding: 2px 6px; border-radius: 3px; font-size: 11px; }
.clip-badge-auto { background: #edf5f1; color: #2e693f; }
.clip-badge-manual { background: #fdf3f3; color: #9c3a3a; }
.clip-text-green { color: #2e693f; font-weight: bold; }
.clip-text-red { color: #9c3a3a; font-weight: bold; }
.clip-price { color: #b53e3e; font-weight: bold; font-size: 15px; }

/* 详情自适应双栏 */
.clip-detail-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.clip-detail-left { flex: 1 1 280px; }
.clip-detail-right { flex: 1.2 1 360px; }
.clip-preview-img { width: 100%; height: auto; display: block; border-radius: 8px; }
.clip-form-item { margin-bottom: 14px; }
.clip-form-label { display: block; font-size: 12px; font-weight: 700; color: #6a6764; margin-bottom: 6px; }

/* 右下角多语言切换器小组件 */
.clip-lang-widget {
    position: fixed; bottom: 20px; right: 20px; z-index: 1001;
    background: #ffffff; border: 1px solid #edeae4; border-radius: 20px;
    padding: 6px 14px; font-size: 11px; color: #6a6764; cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

/* 页脚 */
.clip-footer { text-align: center; padding: 25px 0 0 0; font-size: 11px; color: #9c9995; border-top: 1px dashed #edeae4; margin-top: 30px; }
.clip-footer a { color: #73706d; text-decoration: none; margin: 0 8px; }
