/* 详情页独有补充样式，无需修改公共css */
.detail-wrap {
    padding: 80px 0;
}
.detail-content {
    display: flex;
    gap: 40px;
}
.detail-article {
    width: 70%;
    background: #fff;
    padding: 40px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    border-radius: 8px;
}
.article-title {
    font-size: 30px;
    color: #0f3443;
    line-height: 1.4;
    margin-bottom: 20px;
}
.article-meta {
    display: flex;
    gap: 25px;
    color: #999;
    font-size: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}
.article-meta i {
    margin-right: 6px;
    color: #ff7b26;
}
.article-big-img {
    width: 100%;
    height: 420px;
    border-radius: 6px;
    margin-bottom: 30px;
    object-fit: cover;
}
.article-body p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
    text-indent: 2em;
}
.article-body h4 {
    font-size: 20px;
    color: #0f3443;
    margin: 35px 0 15px;
    padding-left: 12px;
    border-left: 4px solid #ff7b26;
}
.article-body ul {
    padding-left: 2em;
    margin-bottom: 20px;
}
.article-body li {
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}
.article-tag {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px dashed #ddd;
}
.article-tag span {
    color: #666;
    margin-right: 10px;
}
.article-tag a {
    display: inline-block;
    padding: 5px 14px;
    background: #f5f7fa;
    color: #345e75;
    border-radius: 30px;
    margin: 0 6px 10px 0;
    font-size: 14px;
    transition: 0.3s;
}
.article-tag a:hover {
    background: #ff7b26;
    color: #fff;
}
.prev-next {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid #eee;
}
.prev-next a {
    color: #345e75;
    max-width: 45%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.prev-next a:hover {
    color: #ff7b26;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
    margin-bottom: 0;
}
.article-table th,
.article-table td {
    padding: 14px 12px;
    text-align: center;
    border: 1.5px solid #000000;
}


/* 数字流光动画 */
@keyframes phoneShine {
    0% { background-position: -300% 0; }
    100% { background-position: 300% 0; }
}
.tel_201 {
    color:#ff7b26;
    font-size:1.8rem;
    font-weight: 700;
    display: inline-block;
    border: 2px solid var(--accent-orange);
    padding: 0.4rem 1.2rem;
    border-radius: 0.6rem;
    /* 文字裁剪渐变 */
    background: linear-gradient(80deg, #409eff, #ff7b26, #00ffc4, #409eff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: phoneShine 4s linear infinite;
}


/* 响应式适配 */
@media screen and (max-width:768px){
    .detail-content {
        flex-direction: column;
    }
    .detail-article, .sidebar {
        width: 100%;
    }
    .article-title {
        font-size: 22px;
    }
    .article-big-img {
        height: 260px;
    }
    .detail-article {
        padding: 20px;
    }
    .prev-next {
        flex-direction: column;
        gap:15px;
    }
    .prev-next a {
        max-width: 100%;
    }
}
