/*
Theme Name:portal17
Author: DouBao
Version: 1.0
Description: 橙红色活力风格 自定义布局SEO主题
*/
* { margin:0; padding:0; box-sizing:border-box }
body {
    font-family: "Microsoft YaHei", sans-serif;
    font-size:15px;
    color:#212121;
    background:#fff7f2;
    line-height:1.7;
}
a { color:#212121; text-decoration:none }
a:hover { color:#f43f00 }
img { max-width:100%; height:auto; border-radius:6px; display:block }
ul { list-style:none }

.or_container { max-width:1200px; margin:0 auto; padding:0 15px }

/* 头部 橙红色 */
.or_header {
    background:#ff5722;
    padding:20px 0;
    margin-bottom:20px;
}
.or_logo {
    font-size:24px;
    font-weight:bold;
    color:#ffffff;
}
.or_logo a { color:#fff; }

/* 面包屑 */
.or_bread {
    background:#fff;
    padding:12px 18px;
    border-radius:8px;
    font-size:13px;
    color:#757575;
    margin-bottom:20px;
    border-left:3px solid #ff5722;
}

/* 布局结构 */
.or_row { display:flex; gap:22px }
.or_main { flex:1; padding-bottom:30px }
.or_side { width:310px; padding-bottom:30px }

/* 豆包自定义 卡片布局 */
.or_card {
    background:#fff;
    border-radius:12px;
    padding:20px;
    margin-bottom:18px;
    box-shadow:0 3px 10px rgba(0,0,0,.04);
    display:flex;
    gap:20px;
    align-items:center;
}
.or_thumb {
    width:230px;
    flex-shrink:0;
}
.or_thumb img {
    width:100%;
    height:145px;
    object-fit:cover;
    border-radius:8px;
}
.or_info { flex:1 }
.or_title {
    font-size:18px;
    font-weight:500;
    margin-bottom:8px;
}
.or_meta {
    font-size:12px;
    color:#9e9e9e;
    margin-bottom:10px;
}
.or_desc {
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* 分页 */
.or_pager {
    text-align:center;
    margin:30px 0;
}
.or_pager a,.or_pager span {
    display:inline-block;
    padding:8px 15px;
    background:#fff;
    border:1px solid #eee;
    border-radius:6px;
    margin:0 3px;
}
.or_pager .current {
    background:#ff5722;
    color:#fff;
    border-color:#ff5722;
}

/* 侧边栏 */
.or_widget {
    background:#fff;
    padding:20px;
    border-radius:12px;
    margin-bottom:20px;
}
.or_widget h3 {
    font-size:16px;
    padding-bottom:10px;
    border-bottom:2px solid #ff5722;
    margin-bottom:15px;
}
.or_side_item {
    display:flex;
    align-items:center;
    gap:10px;
    padding:9px 0;
    border-bottom:1px dashed #eee;
}
.or_side_img {
    width:50px;
    height:50px;
    flex-shrink:0;
}
.or_side_img img {
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:4px;
}
.or_side_text {
    flex:1;
    font-size:14px;
    line-height:1.4;
}

/* 内容页 */
.or_single {
    background:#fff;
    padding:40px;
    border-radius:12px;
    margin-bottom:20px;
}
.or_single h1 {
    font-size:24px;
    text-align:center;
    margin-bottom:20px;
}
.or_content {
    font-size:16px;
    line-height:1.9;
}

/* 上下篇 */
.or_postnav {
    display:flex;
    justify-content:space-between;
    margin:25px 0;
}
.or_postnav a {
    background:#fff;
    padding:12px 18px;
    border-radius:8px;
    border:1px solid #eee;
}

/* 文字列表 */
.or_text_list a {
    display:block;
    padding:8px 0;
    font-size:14px;
    border-bottom:1px dashed #eee;
}
.or_related {
    background:#fff;
    padding:25px;
    border-radius:12px;
    margin-top:20px;
}

/* 底部 */
.or_footer {
    background:#ff5722;
    color:#fff;
    text-align:center;
    padding:25px 0;
    margin-top:20px;
    font-size:13px;
}

/* 移动端自适应 */
@media(max-width:900px) {
    .or_row{flex-direction:column; gap:15px}
    .or_side{width:100%}
    .or_card{flex-direction:column; align-items:start}
    .or_thumb{width:100%}
}