/* ==========================================================================
   seobole.com 列表页样式（重设计版）
   主色：#1296db  文字：#1a1a1a / #666
   ========================================================================== */

/* ---------- 面包屑 ---------- */
.list-crumb {
    padding: 12px 0 10px;
    font-size: 13px;
    color: #999;
}
.list-crumb a {
    color: #999;
    transition: color .2s;
}
.list-crumb a:hover {
    color: #1296db;
}
.list-crumb span {
    margin: 0 6px;
    color: #ccc;
}
.list-crumb .cur {
    color: #666;
    margin: 0;
}

/* ---------- 两栏宽度 ---------- */
.main-left {
    width: 778px;
}
.main-right {
    width: 302px;
    margin-left: 20px;
}

/* ---------- 分类筛选 ---------- */
.list-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    margin-bottom: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .03);
}
.filter-item {
    display: inline-block;
    padding: 6px 16px;
    font-size: 14px;
    color: #555;
    background: #f7f8fa;
    border-radius: 16px;
    transition: background .2s, color .2s, box-shadow .2s;
}
.filter-item:hover {
    background: #f2f9fe;
    color: #1296db;
}
.filter-item.active {
    background: #1296db;
    color: #fff;
    box-shadow: 0 2px 8px rgba(18, 150, 219, .3);
}

/* ---------- 列表容器 ---------- */
.list-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 8px 0 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .03);
}

/* ---------- 文章列表项 ---------- */
.arc-items {
    padding: 0 6px;
}
.arc-item {
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid #f4f5f7;
    transition: background .2s;
    border-radius: 6px;
}
.arc-item:last-child {
    border-bottom: none;
}
.arc-item:hover {
    background: #f8fbfe;
}
.arc-item-main {
    flex: 1 1 auto;
    padding: 14px 0;
    min-width: 0;
}
.arc-link {
    display: block;
    font-size: 15px;
    color: #2b2b2b;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .2s;
}
.arc-item:hover .arc-link {
    color: #1296db;
}
.arc-item-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 7px;
    font-size: 12px;
    color: #a5adb6;
}
.am-date {
    color: #a5adb6;
}
.am-coin {
    display: inline-block;
    padding: 2px 9px;
    font-size: 12px;
    color: #e8722a;
    background: #fef3e9;
    border-radius: 10px;
    line-height: 16px;
}
.arc-arrow {
    flex: 0 0 auto;
    margin-left: 12px;
    font-size: 22px;
    color: #d8dee4;
    line-height: 1;
    transition: color .2s, transform .2s;
}
.arc-item:hover .arc-arrow {
    color: #1296db;
    transform: translateX(3px);
}

/* ---------- 站点卡片网格（v3） ---------- */
.site-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 4px;
}
.site-cardv {
    display: flex;
    flex-direction: column;
    padding: 16px 18px 14px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .03);
    transition: border-color .2s, box-shadow .2s, transform .2s;
    overflow: hidden;
}
.site-cardv:hover {
    border-color: #b9ddf5;
    box-shadow: 0 6px 18px rgba(18, 150, 219, .12);
    transform: translateY(-2px);
}

.scv-top {
    display: flex;
    align-items: center;
    gap: 7px;
}
.scv-favicon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: #eef0f2 center/contain no-repeat;
    display: inline-block;
}
.scv-favicon-txt {
    line-height: 16px;
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    color: #fff;
    background: #c3cbd3;
}
.scv-host {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 12px;
    color: #a5adb6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.scv-date {
    flex: 0 0 auto;
    font-size: 12px;
    color: #c3cbd3;
}

.scv-name {
    margin: 10px 0 0;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.55;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    transition: color .2s;
}
.site-cardv:hover .scv-name { color: #1296db; }

.scv-desc {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.75;
    color: #7b848d;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex: 1 1 auto;
}

.scv-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 11px;
    border-top: 1px dashed #f0f1f3;
}
.scv-btn {
    display: inline-block;
    padding: 4px 14px;
    font-size: 12px;
    color: #1296db;
    background: #f2f9fe;
    border-radius: 12px;
    transition: background .2s, color .2s;
}
.site-cardv:hover .scv-btn {
    background: #1296db;
    color: #fff;
}
.scv-arrow {
    font-size: 18px;
    color: #d8dee4;
    line-height: 1;
    transition: color .2s, transform .2s;
}
.site-cardv:hover .scv-arrow {
    color: #1296db;
    transform: translateX(3px);
}

/* 响应式 */
@media screen and (max-width: 900px) {
    .site-grid { gap: 10px; }
    .site-cardv { padding: 14px 15px 12px; }
    .scv-name { font-size: 14px; min-height: auto; -webkit-line-clamp: 2; }
    .scv-desc { -webkit-line-clamp: 3; }
}

/* ---------- 分页 ---------- */
.list-page {
    padding: 20px 18px 0;
    text-align: center;
}
.list-page.layui-laypage {
    display: inline-block;
    margin: 0;
}
.list-page.layui-laypage a,
.list-page.layui-laypage span {
    border-radius: 6px;
    margin: 0 3px;
    border: 1px solid #e6eaee;
    color: #666;
    transition: all .2s;
}
.list-page.layui-laypage a:hover {
    color: #1296db;
    border-color: #1296db;
}
.list-page.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background-color: #1296db;
    border-radius: 6px;
}
.list-page.layui-laypage .layui-laypage-curr em {
    color: #fff;
}

/* ---------- 右侧栏 ---------- */
.lside {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .03);
}
.lside-title {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 14px 16px 12px 28px;
    border-bottom: 1px solid #f0f0f0;
}
.lside-title::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 18px;
    width: 4px;
    height: 14px;
    border-radius: 2px;
    background: #1296db;
}
.lside-list {
    padding: 6px 6px 10px;
}
.lside-list li {
    overflow: hidden;
    margin: 1px 0;
}
.lside-list li a {
    display: block;
    padding: 0 12px;
    font-size: 14px;
    color: #444;
    line-height: 38px;
    border-radius: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: background .2s, color .2s;
}
.lside-list li a:hover {
    background: #f2f9fe;
    color: #1296db;
}

/* ---------- 友情链接 ---------- */
.flink {
    padding: 16px 22px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    margin-bottom: 10px;
}
.flink h3 {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    padding-left: 12px;
    line-height: 1.5;
    margin-bottom: 12px;
    border-bottom: none;
}
.flink h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 4px;
    height: 14px;
    border-radius: 2px;
    background: #1296db;
}
.flink .links {
    display: block;
    padding: 0;
}
.flink .links a {
    display: inline-block;
    padding: 3px 10px;
    margin: 0 8px 6px 0;
    font-size: 13px;
    color: #777;
    background: #f7f8fa;
    border-radius: 4px;
    transition: background .2s, color .2s;
}
.flink .links a:hover {
    background: #f2f9fe;
    color: #1296db;
}

/* ---------- 响应式 ---------- */
@media screen and (max-width: 1200px) {
    .container { width: 100%; padding: 0 10px; box-sizing: border-box; }
    .main-left  { width: calc(100% - 320px); }
    .main-right { width: 300px; margin-left: 20px; }
}
@media screen and (max-width: 900px) {
    .main-left,
    .main-right {
        width: 100%;
        float: none;
        margin-left: 0;
    }
    .main-right { margin-top: 14px; }
    .list-filter { padding: 12px 14px; }
    .filter-item { padding: 5px 13px; font-size: 13px; }
    .arc-link { font-size: 14px; }
}
/* ==========================================================================
   seobole.com 搜索结果页 / 备案页 补充样式
   主色：#1296db
   ========================================================================== */

/* ---------- 搜索头部 ---------- */
.search-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #eef8fe, #f7fcff);
    border: 1px solid #dcedf9;
    border-radius: 8px;
    margin-bottom: 14px;
}
.search-head-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}
.search-head-title em {
    font-style: normal;
    color: #1296db;
}
.search-head-desc {
    font-size: 13px;
    color: #7d8b98;
    margin-top: 6px;
}
.search-head-desc em {
    font-style: normal;
    color: #e8722a;
    font-weight: 600;
}
.search-head-form {
    flex: 0 0 280px;
    display: flex;
    gap: 8px;
}
.search-head-form input {
    flex: 1 1 auto;
    min-width: 0;
    height: 40px;
    line-height: 40px;
    padding: 0 14px;
    font-size: 14px;
    color: #333;
    background: #fff;
    border: 1px solid #dcedf9;
    border-radius: 20px;
    outline: none;
    box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s;
}
.search-head-form input:focus {
    border-color: #1296db;
    box-shadow: 0 0 0 3px rgba(18, 150, 219, .1);
}
.search-head-form button {
    flex: 0 0 auto;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1296db, #0d7fbb);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 2px 8px rgba(18, 150, 219, .26);
    transition: transform .2s;
}
.search-head-form button:hover { transform: translateY(-1px); }

/* ---------- 搜索空状态 ---------- */
.search-empty {
    padding: 50px 20px 40px;
    text-align: center;
}
.se-icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 16px;
    opacity: .55;
}
.se-title {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
}
.se-tip {
    font-size: 13px;
    color: #a5adb6;
    line-height: 1.7;
}
.se-tip a { color: #1296db; }
.se-tip a:hover { text-decoration: underline; }

/* ---------- 备案列表头部 ---------- */
.beian-head {
    padding: 20px 24px;
    background: linear-gradient(135deg, #eef8fe, #f7fcff);
    border: 1px solid #dcedf9;
    border-radius: 8px;
    margin-bottom: 14px;
}
.beian-head-title {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}
.beian-head-desc {
    font-size: 13px;
    color: #7d8b98;
    margin-top: 6px;
}

/* ---------- 备案列表项 ---------- */
.beian-items { padding: 0 6px; }
.beian-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 14px;
    border-bottom: 1px solid #f4f5f7;
    border-radius: 6px;
    transition: background .2s;
}
.beian-item:last-child { border-bottom: none; }
.beian-item:hover { background: #f8fbfe; }
.beian-date {
    flex: 0 0 auto;
    display: inline-block;
    padding: 3px 10px;
    font-size: 12px;
    color: #1296db;
    background: #f2f9fe;
    border-radius: 4px;
    line-height: 18px;
}
.beian-link {
    flex: 1 1 auto;
    min-width: 0;
    padding: 15px 0;
    font-size: 15px;
    color: #2b2b2b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .2s;
}
.beian-item:hover .beian-link { color: #1296db; }
.beian-arrow {
    flex: 0 0 auto;
    font-size: 22px;
    color: #d8dee4;
    line-height: 1;
    transition: color .2s, transform .2s;
}
.beian-item:hover .beian-arrow {
    color: #1296db;
    transform: translateX(3px);
}

/* ---------- 备案详情 ---------- */
.beian-page {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 26px 30px 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .03);
}
.beian-title {
    font-size: 21px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 14px;
}
.arc-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    padding: 12px 16px;
    background: #f7f8fa;
    border-radius: 6px;
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}
.arc-meta a { color: #1296db; }
.arc-meta a:hover { text-decoration: underline; }

.beian-tablewrap {
    border: 1px solid #ececec;
    border-radius: 8px;
    overflow: hidden;
}
.beian-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.beian-table thead th {
    padding: 13px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    background: #f7f9fb;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid #ececec;
}
.beian-table tbody td {
    padding: 13px 16px;
    color: #444;
    border-bottom: 1px solid #f4f5f7;
    word-break: break-all;
}
.beian-table tbody tr:last-child td { border-bottom: none; }
.beian-table tbody tr:hover { background: #f8fbfe; }
.bt-host {
    color: #1a1a1a !important;
    font-weight: 600;
}
.bt-icp { color: #777 !important; }
.bt-price {
    color: #e8722a !important;
    font-weight: 600;
    white-space: nowrap;
}
.bt-buy {
    display: inline-block;
    padding: 4px 16px;
    font-size: 13px;
    color: #fff;
    background: linear-gradient(135deg, #1296db, #0d7fbb);
    border-radius: 13px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(18, 150, 219, .24);
    transition: transform .2s;
}
.bt-buy:hover { transform: translateY(-1px); }
.bt-off {
    display: inline-block;
    padding: 4px 12px;
    font-size: 13px;
    color: #a5adb6;
    background: #f4f5f7;
    border-radius: 13px;
    white-space: nowrap;
}

/* ---------- 免责声明 ---------- */
.beian-disclaimer {
    position: relative;
    margin-top: 20px;
    padding: 16px 20px 16px 22px;
    background: #fafbfc;
    border: 1px solid #eef0f2;
    border-radius: 8px;
}
.beian-disclaimer .bd-label {
    display: inline-block;
    padding: 2px 10px;
    margin-bottom: 9px;
    font-size: 12px;
    color: #e8722a;
    background: #fef3e9;
    border-radius: 4px;
}
.beian-disclaimer p {
    font-size: 13px;
    line-height: 1.85;
    color: #888;
    word-wrap: break-word;
}

/* ---------- 分页 ---------- */
.list-page {
    padding: 20px 18px 0;
    text-align: center;
}
.list-page.layui-laypage { display: inline-block; margin: 0; }
.list-page.layui-laypage a,
.list-page.layui-laypage span {
    border-radius: 6px;
    margin: 0 3px;
    border: 1px solid #e6eaee;
    color: #666;
    transition: all .2s;
}
.list-page.layui-laypage a:hover {
    color: #1296db;
    border-color: #1296db;
}
.list-page.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background-color: #1296db;
    border-radius: 6px;
}
.list-page.layui-laypage .layui-laypage-curr em { color: #fff; }

/* ---------- 右侧栏 ---------- */
.lside {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .03);
}
.lside-title {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 14px 16px 12px 28px;
    border-bottom: 1px solid #f0f0f0;
}
.lside-title::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 18px;
    width: 4px;
    height: 14px;
    border-radius: 2px;
    background: #1296db;
}
.lside-list { padding: 6px 6px 10px; }
.lside-list li { overflow: hidden; margin: 1px 0; }
.lside-list li a {
    display: block;
    padding: 0 12px;
    font-size: 14px;
    color: #444;
    line-height: 38px;
    border-radius: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: background .2s, color .2s;
}
.lside-list li a:hover { background: #f2f9fe; color: #1296db; }
.beian-side-box { padding: 16px 16px 18px; }
.beian-side-desc {
    font-size: 13px;
    line-height: 1.85;
    color: #888;
}

/* ---------- 响应式 ---------- */
@media screen and (max-width: 1200px) {
    .container { width: 100%; padding: 0 10px; box-sizing: border-box; }
    .main-left  { width: calc(100% - 320px); }
    .main-right { width: 300px; margin-left: 20px; }
}
@media screen and (max-width: 900px) {
    .main-left, .main-right { width: 100%; float: none; margin-left: 0; }
    .main-right { margin-top: 14px; }
    .search-head {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 18px;
    }
    .search-head-form { flex: 1 1 auto; }
    .beian-page { padding: 18px 14px 18px; }
    .beian-title { font-size: 17px; }
    .beian-tablewrap { overflow-x: auto; }
    .beian-table { min-width: 560px; }
    .beian-item { gap: 10px; padding: 0 10px; }
    .beian-link { font-size: 14px; }
}
