@charset "utf-8";
/* zzrtu 扩展样式：VS 对比页 + 差异化列表页。仅新页面引用，不影响原有页面。 */

/* ============ VS 对比头部 ============ */
.vsHero {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0;
    background: linear-gradient(180deg, #F5FAFF 0%, #fff 100%);
    border: 1px solid #E6F0FA;
    border-radius: 12px;
    padding: 26px 20px;
    margin-bottom: 20px;
}

.vsHero .vsCard {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 18px;
}

.vsHero .vsIcon {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(16, 140, 253, .18);
}

.vsHero .vsName {
    margin: 14px 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.vsHero .vsCat {
    font-size: 13px;
    color: #7a8aa0;
    margin-bottom: 12px;
}

.vsHero .vsScore {
    font-size: 30px;
    font-weight: 800;
    color: #108CFD;
    line-height: 1;
}

.vsHero .vsScore small {
    font-size: 13px;
    font-weight: 500;
    color: #9aa7b8;
    margin-left: 3px;
}

.vsHero .vsStars {
    color: #FF9A00;
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 8px;
}

.vsHero .vsMeta {
    margin-top: 12px;
    width: 100%;
    font-size: 13px;
    color: #667085;
    line-height: 1.9;
}

.vsArticleMeta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin: 0 0 18px;
    padding: 12px 18px;
    border-radius: 12px;
    background: #f7fafd;
    border: 1px solid #e3eaf1;
    font-size: 13px;
    color: #667085;
    line-height: 1.8;
}

.vsArticleMeta span {
    white-space: nowrap;
}

.vsArticleMeta time {
    color: #475467;
    font-style: normal;
}

.vsHero .vsBtn {
    margin-top: 16px;
    display: inline-block;
    min-width: 120px;
    height: 38px;
    line-height: 38px;
    padding: 0 22px;
    border-radius: 20px;
    background: #108CFD;
    color: #fff;
    font-size: 15px;
    transition: background .2s;
}

.vsHero .vsBtn:hover {
    background: #0a72d1;
    color: #fff;
}

.vsHero .vsCardB .vsScore {
    color: #FF7A3C;
}

.vsHero .vsCardB .vsBtn {
    background: #FF7A3C;
}

.vsHero .vsCardB .vsBtn:hover {
    background: #ef631f;
}

.vsHero .vsBadge {
    flex: 0 0 68px;
    align-self: center;
    width: 68px;
    height: 68px;
    line-height: 68px;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    color: #fff;
    background: linear-gradient(135deg, #108CFD 0%, #FF7A3C 100%);
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

/* ============ VS 参数对比表 ============ */
.vsTableWrap {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #EEF2F6;
    overflow: hidden;
    margin-bottom: 6px;
}

.vsTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.vsTable th,
.vsTable td {
    padding: 13px 16px;
    text-align: center;
    border-bottom: 1px solid #F0F3F7;
}

.vsTable thead th {
    background: #F5FAFF;
    color: #333;
    font-weight: 700;
    font-size: 15px;
}

.vsTable thead th:first-child {
    background: #fff;
}

.vsTable .vsRowLabel {
    width: 120px;
    text-align: left;
    color: #8a95a5;
    background: #FAFBFC;
    font-weight: 500;
}

.vsTable tbody tr:last-child td {
    border-bottom: none;
}

.vsTable td.vsWin {
    color: #108CFD;
    font-weight: 700;
    background: rgba(16, 140, 253, .05);
}

.vsTable .colA {
    color: #333;
}

.vsTable .colB {
    color: #333;
}

/* 以下三种列表变体：复用原站 .adrList 结构（li > .list_div > a img + div + a>span），
   仅靠在 <section class="adrList XXX"> 上加修饰类改版式，肉眼四种列表各不相同。 */

/* ============ 阅读软件列表：双列宽卡 ============ */
.adrList.rlGrid {
    width: auto;
    padding: 24px 18px 8px;
}

.adrList.rlGrid ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.adrList.rlGrid ul li {
    float: none;
    width: auto;
    height: auto;
    margin: 0;
}

.adrList.rlGrid ul li .list_div {
    height: 100%;
    min-height: 118px;
    box-sizing: border-box;
    padding: 18px;
    transition: box-shadow .2s, transform .2s;
}

.adrList.rlGrid ul li:hover .list_div {
    box-shadow: 0 8px 22px rgba(16, 140, 253, .12);
    transform: translateY(-2px);
    background: #fff;
    border-color: #E6F0FA;
}

.adrList.rlGrid ul li img {
    width: 62px;
    height: 82px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
}

.adrList.rlGrid ul li div {
    width: calc(100% - 96px);
    height: auto;
}

.adrList.rlGrid ul li div span:last-child {
    white-space: normal;
    line-height: 1.6;
    height: auto;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.adrList.rlGrid ul li a > span {
    top: auto;
    bottom: 16px;
}

/* ============ 测评/对比列表：满宽评分行 ============ */
.adrList.cpRow {
    width: auto;
    padding: 24px 18px 8px;
}

.adrList.cpRow ul li {
    float: none;
    width: auto;
    height: auto;
    margin: 0 0 14px;
}

.adrList.cpRow ul li .list_div {
    padding: 18px 20px;
    min-height: 92px;
    border-left: 4px solid #FF9A00;
    transition: box-shadow .2s;
}

.adrList.cpRow ul li:hover .list_div {
    box-shadow: 0 8px 22px rgba(255, 122, 60, .12);
    background: #fff;
}

.adrList.cpRow ul li img {
    width: 76px;
    height: 76px;
    border-radius: 14px;
    margin-right: 16px;
}

.adrList.cpRow ul li div {
    width: calc(100% - 240px);
    height: auto;
}

.adrList.cpRow ul li div p {
    font-size: 18px;
}

.adrList.cpRow ul li div span:last-child {
    white-space: normal;
    line-height: 1.6;
    height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.adrList.cpRow ul li a > span {
    top: 50%;
    margin-top: -17px;
    width: 96px;
    height: 34px;
    line-height: 34px;
    border: none;
    background: #FFF1E9;
    color: #FF7A3C;
}

.adrList.cpRow ul li:hover a > span {
    background: #FF7A3C;
    color: #fff;
    border: none;
}

/* ============ 资讯列表：图文信息流 ============ */
.adrList.nfRow {
    width: auto;
    padding: 8px 18px;
}

.adrList.nfRow ul li {
    float: none;
    width: auto;
    height: auto;
    margin: 0;
    border-bottom: 1px dashed #E9EDF2;
}

.adrList.nfRow ul li:last-child {
    border-bottom: none;
}

.adrList.nfRow ul li .list_div {
    border: none;
    border-radius: 0;
    padding: 18px 4px;
}

.adrList.nfRow ul li:hover .list_div {
    background: transparent;
}

.adrList.nfRow ul li img {
    width: 130px;
    height: 82px;
    border-radius: 8px;
    margin-right: 18px;
}

.adrList.nfRow ul li div {
    width: calc(100% - 270px);
    height: auto;
}

.adrList.nfRow ul li div p {
    font-size: 17px;
}

.adrList.nfRow ul li div span:last-child {
    white-space: normal;
    line-height: 1.7;
    height: auto;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.adrList.nfRow ul li a > span {
    top: 50%;
    margin-top: -13px;
}

/* ============ 用户评论：重构模块（zc-）============ */
/* 全新结构，不依赖旧 gdMarkBox/evaluate 的定宽排版，任意宽度自适应。 */
.zcBox {
    padding: 4px 0 10px;
}

.zcForm {
    margin: 6px 20px 10px;
    padding: 16px 18px;
    background: #F7FAFD;
    border: 1px solid #EAF2FB;
    border-radius: 10px;
}

.zcForm .zcFormHd {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 10px;
}

.zcForm .zcFormHd strong {
    font-size: 15px;
    color: #1D2127;
}

.zcForm .zcCount {
    font-size: 13px;
    color: #8a95a5;
}

.zcForm .zcCount em {
    font-style: normal;
    color: #108CFD;
    font-weight: 700;
    margin: 0 2px;
}

.zcForm .zcInput {
    display: block;
    width: 100%;
    height: 82px;
    padding: 12px 14px;
    font-size: 14px;
    color: #333;
    line-height: 22px;
    border: 1px solid #E1E8F0;
    border-radius: 8px;
    background: #fff;
    resize: none;
    outline: none;
    box-sizing: border-box;
    transition: border-color .2s;
}

.zcForm .zcInput:focus {
    border-color: #108CFD;
}

.zcForm .zcFormFt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.zcForm .zcTip {
    margin: 0;
    font-size: 12px;
    color: #9aa7b8;
}

.zcForm .zcSubmit {
    height: 36px;
    padding: 0 26px;
    font-size: 14px;
    color: #fff;
    background: #108CFD;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: background .2s;
}

.zcForm .zcSubmit:hover {
    background: #0a72d1;
}

.zcList {
    margin: 0;
    padding: 0 20px;
    list-style: none;
}

.zcList .zcItem {
    display: flex;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid #F0F3F7;
}

.zcList .zcItem:last-child {
    border-bottom: none;
}

.zcList .zcAvatar {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #eef2f6;
}

.zcList .zcMain {
    flex: 1 1 auto;
    min-width: 0;
}

.zcList .zcHead {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 20px;
}

.zcList .zcName {
    font-size: 14px;
    font-weight: 600;
    color: #1D2127;
    max-width: 62%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.zcList .zcLv {
    flex: 0 0 auto;
    font-size: 11px;
    color: #108CFD;
    background: #EAF4FF;
    padding: 1px 7px;
    border-radius: 8px;
    line-height: 16px;
}

.zcList .zcText {
    margin: 8px 0 0;
    font-size: 14px;
    color: #3d4756;
    line-height: 1.75;
    word-break: break-word;
}

.zcList .zcMeta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
    font-size: 12px;
    color: #9aa7b8;
}

.zcList .zcAct {
    cursor: pointer;
    transition: color .2s;
}

.zcList .zcAct:hover {
    color: #108CFD;
}

.zcList .zcLike em {
    font-style: normal;
    margin-left: 3px;
    color: #108CFD;
}

/* ============ VS 评测结论卡片 ============ */
.vsVerdict {
    position: relative;
    background: linear-gradient(135deg, #EAF4FF 0%, #F7FBFF 100%);
    border: 1px solid #DCEBFB;
    border-left: 4px solid #108CFD;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 22px;
}

.vsVerdict .vsVerdictTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.vsVerdict .vsVerdictWin {
    display: inline-block;
    padding: 4px 14px;
    background: #108CFD;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 14px;
}

.vsVerdict .vsVerdictScore {
    font-size: 24px;
    font-weight: 800;
    color: #108CFD;
    line-height: 1;
}

.vsVerdict .vsVerdictScore small {
    font-size: 15px;
    font-weight: 600;
    color: #ff8f4d;
}

.vsVerdict .vsVerdictText {
    margin: 0;
    font-size: 14px;
    color: #3d4756;
    line-height: 1.85;
}

.vsVerdict .vsVerdictText strong {
    color: #1D2127;
}

/* ============ VS 综合能力雷达图 ============ */
.vsRadarWrap {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    border: 1px solid #EEF2F6;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 22px;
}

.vsRadarWrap .vsRadar {
    flex: 0 0 290px;
}

.vsRadarWrap .vsRadar svg {
    width: 100%;
    height: auto;
    display: block;
}

.vsRadarWrap .vsRadarLegend {
    flex: 1 1 auto;
    min-width: 0;
}

.vsRadarWrap .vsLegendItem {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1D2127;
    margin-bottom: 10px;
}

.vsRadarWrap .vsLegendItem i {
    flex: 0 0 auto;
    width: 16px;
    height: 8px;
    border-radius: 4px;
}

.vsRadarWrap .vsLegendItem .dotA {
    background: #108CFD;
}

.vsRadarWrap .vsLegendItem .dotB {
    background: #ff8f4d;
}

.vsRadarWrap .vsRadarTip {
    margin: 14px 0 0;
    font-size: 13px;
    color: #8a95a5;
    line-height: 1.8;
}

/* ============ VS 评分维度条 ============ */
.vsDims {
    background: #fff;
    border: 1px solid #EEF2F6;
    border-radius: 12px;
    padding: 18px 20px 8px;
    margin-bottom: 22px;
}

.vsDims .vsDimRow {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px dashed #EFF3F7;
}

.vsDims .vsDimRow:last-child {
    border-bottom: none;
}

.vsDims .vsDimName {
    flex: 0 0 64px;
    font-size: 14px;
    font-weight: 600;
    color: #1D2127;
}

.vsDims .vsDimBars {
    flex: 1 1 auto;
    min-width: 0;
}

.vsDims .vsBar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.vsDims .vsBarLabel {
    flex: 0 0 92px;
    font-size: 12px;
    color: #8a95a5;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.vsDims .vsBarTrack {
    flex: 1 1 auto;
    height: 8px;
    background: #F0F3F7;
    border-radius: 5px;
    overflow: hidden;
}

.vsDims .vsBarFill {
    display: block;
    height: 100%;
    border-radius: 5px;
}

.vsDims .vsBarFill.fillA {
    background: linear-gradient(90deg, #4facff, #108CFD);
}

.vsDims .vsBarFill.fillB {
    background: linear-gradient(90deg, #ffb07a, #ff8f4d);
}

.vsDims .vsBarVal {
    flex: 0 0 34px;
    text-align: right;
    font-size: 13px;
    font-weight: 700;
    color: #4a5563;
}

/* ============ VS 优势与短板 ============ */
.vsPros {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.vsPros .vsProCard {
    flex: 1 1 0;
    min-width: 0;
    background: #fff;
    border: 1px solid #EEF2F6;
    border-radius: 12px;
    padding: 16px 18px;
}

.vsPros .vsProCard h3 {
    margin: 0 0 12px;
    font-size: 15px;
    color: #1D2127;
    padding-left: 10px;
    border-left: 3px solid #108CFD;
    line-height: 1.2;
}

.vsPros .vsProB h3 {
    border-left-color: #ff8f4d;
}

.vsPros .vsProList {
    list-style: none;
    margin: 0 0 6px;
    padding: 0;
}

.vsPros .vsProList li {
    position: relative;
    padding: 5px 0 5px 24px;
    font-size: 13px;
    color: #4a5563;
    line-height: 1.7;
}

.vsPros .vsProList.good li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    font-weight: 700;
    color: #16a34a;
    background: #e7f8ee;
    border-radius: 50%;
    font-size: 12px;
}

.vsPros .vsProList.bad li::before {
    content: "\2013";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    line-height: 15px;
    text-align: center;
    font-weight: 700;
    color: #e0533d;
    background: #fdece8;
    border-radius: 50%;
    font-size: 13px;
}

/* ============ 资讯详情页：正文排版增强 ============ */
.adrContL .bhNSCont {
    background: #FBFCFE;
    border: 1px solid #EEF2F6;
    border-radius: 12px;
    padding: 8px 0 4px;
}

.bhNSCont .cont {
    padding: 18px 24px 20px;
    font-size: 16px;
    color: #2a2f38;
    line-height: 1.95;
    letter-spacing: 0.3px;
}

.bhNSCont .cont p {
    margin-bottom: 18px;
    text-indent: 2em;
}

.bhNSCont .cont p:first-child {
    text-indent: 0;
    font-size: 15px;
    color: #4a5568;
    background: linear-gradient(135deg, #f0f7ff 0%, #f8fbff 100%);
    border-left: 4px solid #108CFD;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    line-height: 1.85;
    margin-bottom: 22px;
}

.bhNSCont .cont p:first-child strong {
    display: block;
    font-size: 17px;
    color: #1D2127;
    margin-bottom: 6px;
}

.bhNSCont .cont h3 {
    position: relative;
    padding: 12px 0 10px 16px;
    margin: 28px 0 14px;
    font-size: 19px;
    font-weight: 700;
    color: #1D2127;
    border-left: 4px solid #108CFD;
    border-bottom: 1px solid #EEF2F6;
    line-height: 1.4;
}

.bhNSCont .cont img {
    max-width: 100%;
    border-radius: 10px;
    margin: 16px auto;
    display: block;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.bhNSCont .cont a {
    color: #108CFD;
    border-bottom: 1px dashed rgba(16,140,253,.3);
    transition: border-color .2s;
}

.bhNSCont .cont a:hover {
    border-bottom-color: #108CFD;
    border-bottom-style: solid;
}

.bhNSCont .cont blockquote,
.bhNSCont .cont .quote {
    background: #f5f8fc;
    border-left: 4px solid #d0dff0;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 16px 0;
    color: #5a6678;
    font-size: 15px;
    line-height: 1.85;
}

.bhNSCont .cont ul,
.bhNSCont .cont ol {
    padding-left: 2em;
    margin-bottom: 16px;
}

.bhNSCont .cont li {
    margin-bottom: 6px;
    line-height: 1.85;
}

.bhNSCont .cont table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8eef4;
}

.bhNSCont .cont table th {
    background: #f0f5fa;
    font-weight: 600;
    color: #1D2127;
    padding: 10px 14px;
    text-align: left;
    font-size: 14px;
}

.bhNSCont .cont table td {
    padding: 10px 14px;
    border-top: 1px solid #eef2f6;
    font-size: 14px;
}

/* ============ VS 详情与评论 Tab ============ */
.vsTabWrap .tab_menu {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #EEF2F6;
    margin-bottom: 16px;
}

.vsTabWrap .tab_menu span {
    position: relative;
    display: inline-block;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #6b7684;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: color .2s, border-color .2s;
}

.vsTabWrap .tab_menu span:hover {
    color: #108CFD;
}

.vsTabWrap .tab_menu span.current {
    color: #108CFD;
    border-bottom-color: #108CFD;
}

/* ============ 响应式 ============ */
@media screen and (max-width: 960px) {
    .vsHero {
        flex-direction: column;
        padding: 20px 14px;
    }
    .vsHero .vsBadge {
        margin: 14px 0;
    }
    .vsTable th,
    .vsTable td {
        padding: 10px 8px;
        font-size: 13px;
    }
    .vsTable .vsRowLabel {
        width: 84px;
    }
    .adrList.rlGrid ul {
        grid-template-columns: 1fr;
    }
    .adrList.cpRow ul li div,
    .adrList.nfRow ul li div {
        width: calc(100% - 180px);
    }
    .adrList.nfRow ul li img {
        width: 104px;
        height: 68px;
        margin-right: 12px;
    }
}

@media screen and (max-width: 768px) {
    .zcForm {
        margin: 6px 12px 10px;
        padding: 12px 14px;
    }
    .zcForm .zcFormFt {
        flex-wrap: wrap;
        gap: 10px;
    }
    .zcForm .zcSubmit {
        width: 100%;
        padding: 0;
    }
    .zcList {
        padding: 0 12px;
    }
    .zcList .zcAvatar {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }
    .zcList .zcMeta {
        gap: 14px;
    }
    .vsRadarWrap {
        flex-direction: column;
        gap: 14px;
        padding: 16px;
    }
    .vsRadarWrap .vsRadar {
        flex-basis: auto;
        width: 240px;
        margin: 0 auto;
    }
    .vsRadarWrap .vsRadarLegend {
        width: 100%;
    }
    .vsPros {
        flex-direction: column;
    }
    .vsDims {
        padding: 14px 14px 6px;
    }
    .vsDims .vsDimRow {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }
    .vsDims .vsDimName {
        flex-basis: auto;
    }
    .vsDims .vsBarLabel {
        flex-basis: 84px;
    }
    .vsTabWrap .tab_menu span {
        padding: 10px 14px;
        font-size: 14px;
    }
    .bhNSCont .cont {
        padding: 14px 16px 16px;
    }
    .bhNSCont .cont p:first-child {
        padding: 12px 14px;
    }
    .bhNSCont .cont h3 {
        font-size: 17px;
        padding-left: 12px;
        margin: 22px 0 12px;
    }
}
