/* =========================================================
   内页：物流资讯列表 news.html
   风格延续首页（深蓝主色 #13294b / 强调金 #f5b642 / 卡片阴影）
   ========================================================= */

/* 面包屑 */
.mbx {
    font-size: 14px;
    color: #8a93a6;
    padding: 22px 0 6px;
    display: flex;
    align-items: center;
}
.mbx a { color: #8a93a6; }
.mbx a:hover { color: #f5b642; }

/* 主体两栏 */
.news_box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
}
.news_left { width: 860px; }
.news_right { width: 360px; }

/* 区块标题（通用 zsfwt，与首页一致） */
.zsfwt { margin: 6px 0 22px; }
.zsfwt h1 { font-size: 26px; color: #13294b; position: relative; padding-left: 16px; }
.zsfwt h1:after {
    content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 5px; height: 24px; background: #f5b642; border-radius: 3px;
}
.zsfwt p { font-size: 14px; color: #999; margin-top: 8px; padding-left: 16px; }

/* 为什么选择我们（整块 100% 宽，深色背景，内容收 1280 居中） */
.choose { width: 100%; padding: 44px 0 36px; box-sizing: border-box; background: #13294b; }
.choose .zsfwt,
.choose .chooselist { max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; box-sizing: border-box; }
.choose .zsfwt h1 { color: #fff; }
.choose .zsfwt h1:after { background: #f5b642; }
.chooselist { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.chooselist li {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px; padding: 28px 22px 26px; transition: all .3s;
}
.chooselist li:hover { transform: translateY(-6px); background: rgba(255,255,255,.12); border-color: rgba(245,182,66,.6); }
.chooselist .chtop { text-align: center; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 16px; margin-bottom: 16px; }
.chooselist .chtop h3 { font-size: 20px; color: #fff; font-weight: 700; }
.chooselist .chtop p { font-size: 13px; color: #aab4c8; margin-top: 6px; letter-spacing: 1px; }
.chooselist .chlist { display: flex; flex-direction: column; gap: 12px; }
.chooselist .chlist p {
    font-size: 15px; color: #d6dcea; text-align: center; line-height: 1.4;
    background: rgba(255,255,255,.08); border-radius: 8px; padding: 11px 8px; transition: all .25s;
}
.chooselist li:hover .chlist p { background: rgba(245,182,66,.15); color: #f5b642; }

/* 合作伙伴（整块 100% 宽，内容收 1280 居中） */
.coop { width: 100%; padding: 36px 0 30px; box-sizing: border-box; }
.coop .zsfwt,
.coop .coopm { max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; box-sizing: border-box; }
.coopm { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.coopm li {
    background: #fff; border-radius: 14px; padding: 22px;
    box-shadow: 0 6px 20px rgba(19,41,75,.06);
    display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.coopm li:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(126,81,228,.14); }
.coopm li img { max-width: 100%; max-height: 70px; object-fit: contain; display: block; }

/* 资讯列表 */
.news_list { background: #fff; border-radius: 14px; padding: 10px 26px; box-shadow: 0 6px 20px rgba(19,41,75,.06); }
.news_list li {
    display: flex;
    padding: 22px 0;
    border-bottom: 1px solid #f0f2f7;
}
.news_list li:last-child { border-bottom: none; }
.news_list .n_img { width: 220px; height: 150px; flex-shrink: 0; border-radius: 10px; overflow: hidden; background: #f4f6fb; }
.news_list .n_img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.news_list li:hover .n_img img { transform: scale(1.06); }
.news_list .n_txt { flex: 1; padding-left: 24px; display: flex; flex-direction: column; }
.news_list .n_txt h2 { font-size: 18px; color: #13294b; line-height: 1.4; font-weight: 600; }
.news_list .n_txt h2 a { color: #13294b; }
.news_list .n_txt h2 a:hover { color: #7e51e4; }
.news_list .n_txt p {
    font-size: 14px; color: #888; line-height: 1.8; margin-top: 10px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news_list .n_info { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; }
.news_list .n_info span { font-size: 13px; color: #aaa; }
.news_list .n_info .more {
    font-size: 13px; color: #7e51e4; border: 1px solid #e3d9fb; padding: 5px 16px; border-radius: 20px; transition: all .25s;
}
.news_list .n_info .more:hover { background: #7e51e4; color: #fff; border-color: #7e51e4; }

/* 分页 */
.pages { text-align: center; margin-top: 30px; }
.pages b, .pages a {
    display: inline-block; min-width: 38px; height: 38px; line-height: 38px;
    margin: 0 5px; padding: 0 10px; border-radius: 8px;
    background: #fff; color: #555; font-size: 14px; box-shadow: 0 3px 12px rgba(19,41,75,.05);
    transition: all .25s;
}
.pages b { background: #13294b; color: #fff; }
.pages a:hover { background: #7e51e4; color: #fff; }
.pages .next { font-weight: 600; }

/* 右侧栏 */
.side_box {
    background: #fff; border-radius: 14px; padding: 22px 22px 26px;
    box-shadow: 0 6px 20px rgba(19,41,75,.06); margin-bottom: 22px;
}
.side_t {
    border-bottom: 1px solid #f0f2f7; padding-bottom: 14px; margin-bottom: 14px;
}
.side_t h2 { font-size: 18px; color: #13294b; position: relative; padding-left: 14px; }
.side_t h2:after {
    content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 4px; height: 18px; background: #f5b642; border-radius: 3px;
}
.side_cate { display: flex; flex-wrap: wrap; }
.side_cate li { width: 50%; padding: 8px 0; }
.side_cate li a {
    display: block; text-align: center; font-size: 14px; color: #555;
    background: #f6f7fb; border-radius: 8px; padding: 10px 0; transition: all .25s;
}
.side_cate li a:hover { background: #7e51e4; color: #fff; }

.side_news li { display: flex; align-items: center; padding: 9px 0; border-bottom: 1px dashed #f0f2f7; }
.side_news li:last-child { border-bottom: none; }
.side_news li a {
    flex: 1; font-size: 14px; color: #555; white-space: nowrap; overflow: hidden;
    text-overflow: ellipsis; transition: color .2s;
}
.side_news li a:hover { color: #7e51e4; }
.side_news li span { font-size: 12px; color: #aaa; margin-left: 8px; flex-shrink: 0; }

.side_tags { display: flex; flex-wrap: wrap; gap: 10px; }
.side_tags li a {
    display: inline-block; font-size: 13px; color: #666; background: #f6f7fb;
    border-radius: 6px; padding: 7px 14px; transition: all .25s;
}
.side_tags li a:hover { background: #7e51e4; color: #fff; }

/* 响应式 */
@media (max-width: 1320px) {
    .news_box { width: 100%; padding-left: 20px; padding-right: 20px; box-sizing: border-box; }
}
@media (max-width: 1024px) {
    .news_box { flex-direction: column; }
    .news_left, .news_right { width: 100%; }
    .news_list .n_img { width: 160px; height: 120px; }
    .chooselist { grid-template-columns: repeat(2, 1fr); }
    .coopm { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .news_list li { flex-direction: column; }
    .news_list .n_img { width: 100%; height: 180px; margin-bottom: 14px; }
    .news_list .n_txt { padding-left: 0; }
    .chooselist { grid-template-columns: 1fr; }
    .coopm { grid-template-columns: repeat(2, 1fr); }
}
