/* 新闻详情页面专用样式 - 避免与其他页面冲突 */

/* 文章头部 */
.nd-article-header {
    background: var(--gradient-1);
    padding: 60px 20px 40px;
    color: white;
}

.nd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.nd-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}.nd-article-content h3

.nd-breadcrumb a:hover {
    opacity: 0.7;
}

.nd-breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.nd-article-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.4;
    max-width: 900px;
}

.nd-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 14px;
    opacity: 0.9;
}

.nd-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nd-meta-item i {
    font-size: 14px;
}

/* 内容布局 */
.nd-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 40px;
}

/* 主内容区 */
.nd-main-content {
    background: white;
}

.nd-article-body {
    background: white;
    padding: 40px;
    border-radius: 5px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* 文章摘要 */
.nd-article-summary {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(139, 0, 0, 0.05) 100%);
    padding: 25px;
    border-radius: 5px;
    border:1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 35px;
}

.nd-article-summary p {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

/* 文章正文 */
.nd-article-content {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 16px;
}

.nd-article-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--text-dark);
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(230, 57, 70, 0.2);
}

.nd-article-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--text-dark);
}
.nd-article-content a{
    text-decoration:none;
    color:var(--text-dark);
}

.nd-article-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.nd-article-content ul,
.nd-article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.nd-article-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.nd-article-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.nd-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 25px 0;
}

/* 文章标签 */
.nd-article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.nd-tags-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.nd-tag {
    padding: 8px 18px;
    background: rgba(230, 57, 70, 0.08);
    color: var(--primary-color);
    border-radius: 5px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(230, 57, 70, 0.15);
}

.nd-tag:hover {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* 分享按钮 */
.nd-article-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 5px;
}

.nd-share-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.nd-share-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nd-share-wechat {
    background: #07c160;
    color: white;
}

.nd-share-wechat:hover {
    background: #06ad56;
    transform: translateY(-2px);
}

.nd-share-weibo {
    background: #e6162d;
    color: white;
}

.nd-share-weibo:hover {
    background: #d01428;
    transform: translateY(-2px);
}

.nd-share-qq {
    background: #12b7f5;
    color: white;
}

.nd-share-qq:hover {
    background: #0fa3db;
    transform: translateY(-2px);
}

/* 上一篇/下一篇 */
.nd-article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.nd-nav-item {
    padding: 25px;
    background: white;
    border-radius: 5px;
    border: 1px solid rgba(230, 57, 70, 0.15);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nd-nav-item:hover {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(139, 0, 0, 0.05) 100%);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.nd-nav-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.nd-nav-title {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.5;
}

.nd-nav-prev .nd-nav-label::before {
    content: '← ';
}

.nd-nav-next {
    text-align: right;
}

.nd-nav-next .nd-nav-label::after {
    content: ' →';
}

/* 相关文章 */
.nd-related-articles {
    margin-top: 50px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 5px;
    border:1px solid rgba(0, 0, 0, 0.05);
}

.nd-related-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary-color);
}

.nd-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.nd-related-item {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nd-related-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.nd-related-image {
    height: 150px;
    overflow: hidden;
}

.nd-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.nd-related-item:hover .nd-related-image img {
    transform: scale(1.1);
}

.nd-related-item h4 {
    padding: 15px 15px 10px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 600;
}

.nd-related-item p {
    padding: 0 15px 15px;
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* 侧边栏 */
.nd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nd-sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.nd-widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary-color);
    position: relative;
}

.nd-widget-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--secondary-color);
}

/* 热门文章 */
.nd-hot-list {
    list-style: none;
    padding: 0;
}

.nd-hot-item {
    margin-bottom: 15px;
}

.nd-hot-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    padding: 10px;
    border-radius: 10px;
}

.nd-hot-item a:hover {
    background: rgba(230, 57, 70, 0.05);
    color: var(--primary-color);
}

.nd-hot-number {
    width: 28px;
    height: 28px;
    background: var(--gradient-1);
    color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.nd-hot-item:nth-child(1) .nd-hot-number {
    background: var(--gradient-1);
}

.nd-hot-item:nth-child(2) .nd-hot-number {
    background: var(--gradient-2);
}

.nd-hot-item:nth-child(3) .nd-hot-number {
    background: var(--gradient-3);
}

.nd-hot-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

/* 最新文章 */
.nd-latest-list {
    list-style: none;
    padding: 0;
}

.nd-latest-item {
    margin-bottom: 15px;
}

.nd-latest-item a {
    display: flex;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s;
    padding: 10px;
    border-radius: 10px;
}

.nd-latest-item a:hover {
    background: rgba(102, 126, 234, 0.05);
}

.nd-latest-image {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.nd-latest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nd-latest-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nd-latest-info h4 {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
}

.nd-latest-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* 联系咨询 */
.nd-contact-widget {
    background: var(--gradient-1);
    color: white;
}

.nd-contact-widget .nd-widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.nd-contact-widget .nd-widget-title::before {
    background: white;
}

.nd-contact-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.nd-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.nd-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.nd-contact-item i {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nd-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: white;
    color: var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.nd-contact-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 服务板块介绍 */
.nd-services-section {
    margin-top: 50px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.02) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    border:1px solid rgba(0, 0, 0, 0.05);
}

/* .nd-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
} */

/* 服务头部 */
.nd-services-header {
    text-align: center;
    margin-bottom: 50px;
}

.nd-services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
    border: 2px solid rgba(230, 57, 70, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.nd-services-badge i {
    font-size: 16px;
}

.nd-services-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.nd-services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.nd-services-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
    max-width: 800px;
    margin: 30px auto 0;
}

.nd-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.nd-service-card {
    background: white;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid rgba(230, 57, 70, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}



.nd-service-card:hover::before {
    transform: scaleX(1);
}

.nd-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(230, 57, 70, 0.25);
    border-color: var(--primary-color);
}

/* 服务卡片头部 */
.nd-service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.nd-service-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    /* box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3); */
}

.nd-service-card:hover .nd-service-icon {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
}

.nd-service-icon i {
    font-size: 36px;
    color: white;
}

/* 不同服务的图标颜色 */
/* .nd-icon-wechat {
    background: linear-gradient(135deg, #07c160 0%, #06ad56 100%);
}

.nd-icon-web {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.nd-icon-seo {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
} */

.nd-service-badge {
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(230, 57, 70, 0.2);
}

.nd-badge-hot {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 71, 87, 0.1) 100%);
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.3);
}

.nd-badge-recommend {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    border-color: rgba(102, 126, 234, 0.3);
}

.nd-badge-new {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.15) 0%, rgba(245, 87, 108, 0.1) 100%);
    color: #f5576c;
    border-color: rgba(240, 147, 251, 0.3);
}

.nd-service-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.3;
    text-align: center;
}

.nd-service-subtitle {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 18px;
    text-align: center;
    line-height: 1.5;
}

.nd-service-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: justify;
}

/* 服务亮点 */
.nd-service-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(196, 30, 58, 0.02) 100%);
    border-radius: 5px;
    border: 1px dashed rgba(230, 57, 70, 0.15);
}

.nd-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nd-highlight-item i {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.15);
}

.nd-highlight-item div {
    flex: 1;
}

.nd-highlight-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0px;
}

.nd-highlight-item span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

/* 服务特性列表 */
.nd-service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.nd-service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 0px;
    line-height: 1.5;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.nd-service-features li:hover {
    background: rgba(230, 57, 70, 0.03);
    transform: translateX(5px);
}

.nd-service-features i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.nd-service-features span {
    flex: 1;
}

.nd-service-features strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* 服务统计数据 */
.nd-service-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(196, 30, 58, 0.03) 100%);
    border-radius: 5px;
}

.nd-stat-item {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 5px;
    transition: all 0.3s;
}

.nd-stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
}

.nd-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nd-stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

/* 服务链接按钮 */
.nd-service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 30px;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.nd-service-link:hover {
    gap: 15px;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.45);
    transform: translateY(-2px);
}

.nd-service-link i {
    font-size: 14px;
    transition: transform 0.3s;
}

.nd-service-link:hover i {
    transform: translateX(3px);
}

/* 服务优势 */
.nd-services-advantages {
    margin-bottom: 50px;
    padding: 40px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nd-advantages-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.nd-advantages-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.nd-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.nd-advantage-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.02) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 5px;
    border: 1px solid rgba(230, 57, 70, 0.1);
    transition: all 0.3s;
}

.nd-advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
    border-color: var(--primary-color);
}

.nd-advantage-item i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.nd-advantage-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.nd-advantage-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* CTA区域 - 优化版 */
.nd-services-cta {
    padding: 50px;
    background: linear-gradient(135deg, #E63946 0%, #C41E3A 100%);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(230, 57, 70, 0.3);
}

.nd-services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.nd-services-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.nd-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nd-cta-left {
    color: white;
}

.nd-cta-title {
    font-size: 30px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.nd-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    line-height: 1.7;
}

.nd-cta-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nd-cta-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: white;
    font-weight: 600;
}

.nd-cta-features i {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.nd-cta-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nd-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nd-cta-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    background: white;
}

.nd-cta-btn i {
    font-size: 24px;
    flex-shrink: 0;
}

.nd-cta-primary {
    background: white;
    color: var(--primary-color);
}

.nd-cta-primary:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.nd-cta-primary div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.nd-btn-label {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.8;
}

.nd-btn-value {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nd-cta-secondary,
.nd-cta-tertiary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    justify-content: center;
}

.nd-cta-secondary:hover,
.nd-cta-tertiary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateX(5px);
}

.nd-cta-tips {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    font-size: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.nd-cta-tips i {
    font-size: 16px;
}

.nd-cta-tips strong {
    color: white;
    font-weight: 800;
    font-size: 16px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .nd-content-wrapper {
        grid-template-columns: 1fr;
    }

    .nd-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .nd-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nd-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nd-article-title {
        font-size: 26px;
    }

    .nd-article-meta {
        gap: 15px;
    }

    .nd-article-body {
        padding: 25px;
    }

    .nd-article-content h2 {
        font-size: 22px;
    }

    .nd-article-content h3 {
        font-size: 18px;
    }

    .nd-article-nav {
        grid-template-columns: 1fr;
    }

    .nd-nav-next {
        text-align: left;
    }

    .nd-related-grid {
        grid-template-columns: 1fr;
    }

    .nd-sidebar {
        grid-template-columns: 1fr;
    }

    .nd-services-section {
        padding: 40px 20px;
    }

    .nd-services-header {
        margin-bottom: 35px;
    }

    .nd-services-title {
        font-size: 28px;
    }

    .nd-services-desc {
        font-size: 15px;
    }

    .nd-service-card {
        padding: 30px 25px;
    }

    .nd-service-icon {
        width: 65px;
        height: 65px;
    }

    .nd-service-icon i {
        font-size: 30px;
    }

    .nd-service-title {
        font-size: 21px;
    }

    .nd-service-subtitle {
        font-size: 14px;
    }

    .nd-service-text {
        font-size: 14px;
    }

    .nd-service-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }

    .nd-service-stats {
        padding: 15px;
    }

    .nd-stat-number {
        font-size: 24px;
    }

    .nd-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .nd-advantage-item {
        padding: 25px 15px;
    }

    .nd-advantage-item i {
        font-size: 36px;
    }

    .nd-services-cta {
        padding: 40px 25px;
    }

    .nd-cta-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .nd-cta-title {
        font-size: 26px;
    }

    .nd-cta-text {
        font-size: 15px;
    }

    .nd-cta-btn {
        padding: 16px 22px;
    }
}

@media (max-width: 640px) {
    .nd-services-section {
        padding: 30px 15px;
    }

    .nd-services-badge {
        font-size: 12px;
        padding: 8px 18px;
    }

    .nd-services-title {
        font-size: 24px;
    }

    .nd-services-desc {
        font-size: 14px;
    }

    .nd-service-card {
        padding: 25px 20px;
    }

    .nd-service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nd-service-icon {
        width: 60px;
        height: 60px;
    }

    .nd-service-icon i {
        font-size: 28px;
    }

    .nd-service-title {
        font-size: 20px;
    }

    .nd-service-subtitle {
        font-size: 13px;
    }

    .nd-service-text {
        font-size: 14px;
    }

    .nd-service-highlights {
        padding: 12px;
    }

    .nd-highlight-item i {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .nd-highlight-item strong {
        font-size: 13px;
    }

    .nd-highlight-item span {
        font-size: 12px;
    }

    .nd-service-features li {
        font-size: 13px;
        padding: 8px;
    }

    .nd-service-stats {
        padding: 12px;
        gap: 10px;
    }

    .nd-stat-item {
        padding: 12px;
    }

    .nd-stat-number {
        font-size: 22px;
    }

    .nd-stat-label {
        font-size: 12px;
    }

    .nd-service-link {
        padding: 12px 25px;
        font-size: 14px;
    }

    .nd-services-advantages {
        padding: 30px 20px;
    }

    .nd-advantages-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .nd-advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .nd-advantage-item {
        padding: 20px 15px;
    }

    .nd-advantage-item i {
        font-size: 32px;
    }

    .nd-advantage-item h4 {
        font-size: 16px;
    }

    .nd-advantage-item p {
        font-size: 13px;
    }

    .nd-services-cta {
        padding: 30px 20px;
    }

    .nd-cta-content {
        gap: 25px;
    }

    .nd-cta-title {
        font-size: 22px;
    }

    .nd-cta-text {
        font-size: 14px;
    }

    .nd-cta-features {
        gap: 10px;
    }

    .nd-cta-features li {
        font-size: 14px;
    }

    .nd-cta-btn {
        padding: 14px 20px;
        font-size: 15px;
        gap: 12px;
    }

    .nd-cta-btn i {
        font-size: 20px;
    }

    .nd-btn-label {
        font-size: 12px;
    }

    .nd-btn-value {
        font-size: 16px;
    }

    .nd-cta-tips {
        font-size: 13px;
        padding: 12px;
    }
}

