/* 网络解决方案区块 begin */
.network-solutions {
    background: #0070c4;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.network-solutions__container {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1400px;
}

.network-solutions__image {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #0070c4;
    transition: all 0.3s ease;
    height: 400px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.network-solutions__image:hover {
    transform: translateY(-2px);
}

.network-solutions__img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 8px;
}

.network-solutions__image:hover .network-solutions__img {
    transform: scale(1.05);
}

.network-solutions__content {
    flex: 1;
    min-width: 0;
    padding: 40px;
    background: #0070c4;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 400px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.network-solutions__content:hover {
    transform: translateY(-2px);
}

.network-solutions__eyebrow {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.network-solutions__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px 0;
    color: #fff;
}

.network-solutions__description {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0 0 32px 0;
    max-width: 500px;
}

.network-solutions__features {
    margin-bottom: 32px;
}

.network-solutions__feature {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.network-solutions__feature-icon {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.network-solutions__feature-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.network-solutions__cta {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.network-solutions__cta:hover {
    background: #f39c12;
    color: #fff;
    transform: translateY(-2px);
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
    .network-solutions__container {
        gap: 40px;
    }
    
    .network-solutions__title {
        font-size: 32px;
    }
}

@media screen and (max-width: 992px) {
    .network-solutions__container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .network-solutions__content {
        padding-left: 0;
        order: 1;
        width: 100%;
    }
    
    .network-solutions__image {
        order: 2;
        width: 100%;
    }
    
    .network-solutions__description {
        max-width: 100%;
    }
    
    .network-solutions__cta {
        align-self: center;
    }
}

@media screen and (max-width: 768px) {
    .network-solutions {
        padding: 60px 0;
    }
    
    .network-solutions__title {
        font-size: 28px;
    }
    
    .network-solutions__description {
        font-size: 15px;
    }
    
    .network-solutions__cta {
        padding: 14px 28px;
        font-size: 15px;
    }
}
/* 网络解决方案区块 end */

/* 新闻中心区块 begin */
.news-center {
    color: #333;
    overflow: hidden;
    position: relative;
}

.news-center__container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-center__header {
    text-align: left;
    margin-bottom: 30px;
}

.news-center__title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px 0;
    line-height: 1.2;
    margin-bottom: 0;
}

.news-center__subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    max-width: 600px;
}

.news-center__content {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.news-center__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background: #0070c4;
    border-radius: 8px;
    padding: 20px 30px;
    min-width: 220px;
    min-height: 60px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    gap: 25px;
    padding:0 30px;
    margin-right: 30px;
    margin-bottom: 20px;
}

.news-center__card:hover {
    transform: translateY(-5px);
    background: #f39c12;
}

.news-center__card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.news-center__card-icon svg {
    transition: transform 0.3s ease;
}

.news-center__card:hover .news-center__card-icon svg {
    transform: scale(1.1);
}

.news-center__card-text {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: left;
    white-space: nowrap;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .news-center {
        padding: 60px 0;
    }
    
    .news-center__title {
        font-size: 28px;
    }
    
    .news-center__subtitle {
        font-size: 15px;
    }
    
    .news-center__content {
        gap: 20px;
    }
    
    .news-center__card {
        padding: 30px 20px;
        min-width: 160px;
        min-height: 140px;
    }
    
    .news-center__card-text {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .news-center__content {
        flex-direction: column;
        align-items: center;
    }
    
    .news-center__card {
        width: 100%;
        max-width: 280px;
    }
}
/* 新闻中心区块 end */

/* 专题报道区块 begin */
.special-reports {
    background: #fff;
    color: #333;
    padding: 40px 0 80px 0;
    overflow: hidden;
    position: relative;
}

.special-reports__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.special-reports__header {
    margin-bottom: 40px;
}

.special-reports__title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.special-reports__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.special-reports__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    background: #f8f9fa;
    margin-bottom: 15px;
}

.special-reports__item:last-child {
    margin-bottom: 0;
}

.special-reports__date {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    flex-shrink: 0;
}

.special-reports__title-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    flex: 1;
    margin-right: 20px;
}

.special-reports__tag {
    background: #0070c4;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
    flex-shrink: 0;
    min-width: 40px;
    text-align: center;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .special-reports {
        padding: 40px 0;
    }
    
    .special-reports__title {
        font-size: 24px;
    }
    
    .special-reports__item {
        flex-direction: column;
        gap: 10px;
    }
    
    .special-reports__date {
        min-width: auto;
    }
    
    .special-reports__title-text {
        margin-right: 0;
    }
    
    .special-reports__tag {
        align-self: flex-start;
    }
}
/* 专题报道区块 end */

/* 产品页 TAB 样式 begin */
/* 统一页面左右对齐容器 */
.rgrid-wrapper{ max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.breadcrumb { display:flex; align-items:center; gap:10px; padding:16px 0; color:#666; font-size:14px; }
.breadcrumb a { color:#666; text-decoration:none; }
.breadcrumb a:hover { color:#0070c4; }

.product-hero { display:flex; align-items:flex-start; justify-content:space-between; padding:20px 0 10px 0; }
.product-hero__title-row{ display:flex; align-items:center; gap:12px; }
.product-hero__title { font-size:32px; font-weight:700; margin:0; color:#333; }
.product-hero__subtitle{ margin:10px 0 0 0; font-size:28px; color:#333; font-weight:500; }
.product-hero__status { color:#333; font-weight:600; margin:0; display:flex; align-items:center; gap:6px; }
.status-check{ display:inline-flex; }
.product-hero__actions{ display:flex; align-items:center; gap:16px; }
.product-hero__notify{ display:flex; align-items:center; gap:6px; padding:10px 12px; background:#f2f3ff; border:1px solid #dcdffe; border-radius:6px; color:#0070c4; font-weight:600; cursor:pointer; }
.product-hero__notify:hover{ background:#e9ebff; }
.product-hero__buy-btn { background:#0070c4; color:#fff; padding:12px 20px; border-radius:6px; text-decoration:none; font-weight:700; }
.product-hero__buy-btn:hover { opacity:.9; }

.product-tabs { margin-top:30px; }
.tabs__nav { display:flex; gap:16px; border-bottom:1px solid #e9ecef; }
.tabs__btn { appearance:none; background:none; border:none; margin:0; cursor:pointer; color:#666; font-weight:600; position:relative; }
.tabs__btn.is-active { color:#0070c4; }
.tabs__panel { display:none; padding:20px 0; }
.tabs__panel.is-active { display:block; }

.sub-tabs { margin-top:10px; }
.sub-tabs__nav { display:flex; flex-wrap:wrap; gap:10px; border-bottom:1px dashed #e9ecef; }
.sub-tabs__btn { appearance:none; background:#f7f7fb; border:1px solid #e9ecef; border-radius:6px; padding:8px 12px; cursor:pointer; color:#555; font-weight:600; }
.sub-tabs__btn.is-active { background:#0070c4; color:#fff; border-color:#0070c4; }
.sub-tabs__nav .tabs__btn:hover{
    border:none;
}
.sub-tabs__panel { display:none; padding:18px 0; }
.sub-tabs__panel.is-active { display:block; }

.table-wrap { overflow:auto; }
.spec-table { width:100%; border-collapse:collapse; background:#fff; }
.spec-table th, .spec-table td { text-align:left; padding:10px 12px; border-bottom:1px solid #f0f0f0; font-size:14px; }
.spec-table th { color:#555; width:32%; background:#fafafa; }

.feature-list { padding-left:18px; }
.feature-list li { margin:6px 0; }

.datasheet-row{ display:flex; align-items:flex-start; gap:16px; padding:14px 0; border-top:1px solid #eee; border-bottom:1px solid #eee; margin-top:8px; }
.datasheet-row__label{ color:#666; width:80px; flex:0 0 80px; }
.datasheet-row__links{ flex:1; display:flex; align-items:center; gap:10px; }
.datasheet-row__icon{ display:inline-flex; align-items:center; }
.datasheet-row__link{ color:#1278a8; text-decoration:none; }
.datasheet-row__link:hover{ text-decoration:underline; }
.product-page{
    margin-top:20px;
}
@media screen and (max-width: 768px){
    .product-hero { flex-direction:column; align-items:flex-start; gap:10px; }
    .product-hero__title { font-size:22px; }
}
/* 产品页 TAB 样式 end */

/* 评估板列表（与截图一致的横向信息行） */
.dev-list { display: flex; flex-direction: column; gap: 28px; margin-top: 8px; }
.dev-row { display: grid; grid-template-columns: 180px 1fr 260px; align-items: start; gap: 24px; padding: 18px 12px; border-bottom: 1px solid #eef2f5; }
.dev-image img { width: 180px; height: 120px; object-fit: cover; border-radius: 6px; border: 1px solid #e6e9ee; background: #fff; }

/* 中部信息 */
.dev-kicker { font-size: 13px; color: #6f7787; margin-bottom: 6px; }
.dev-title { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.dev-title a { font-size: 26px; font-weight: 700; color: #333; text-decoration: none; }
.dev-title a:hover { text-decoration: underline; }
.dev-status { font-size: 13px; color: #27ae60; display: inline-flex; align-items: center; gap: 6px; }
.dev-status .dot { width: 8px; height: 8px; border-radius: 50%; background: #27ae60; display: inline-block; }
.dev-desc { font-size: 15px; line-height: 1.8; color: #444; margin: 0 0 10px; }
.dev-extra .dev-link { color: #0f6c7f; text-decoration: none; }
.dev-extra .dev-link:hover { text-decoration: underline; }

/* 右侧价格与操作 */
.dev-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.dev-buy.btn { padding: 10px 18px; font-size: 14px; border-radius: 20px; background: #0070c4; color: #fff; }
.dev-price { color: #111; font-weight: 700; }
.dev-meta { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.dev-meta li { font-size: 13px; }
.dev-meta a { color: #0f6c7f; text-decoration: none; }
.dev-meta a:hover { text-decoration: underline; }
.dev-meta .ico { display: inline-block; width: 14px; height: 14px; margin-right: 6px; vertical-align: -2px; background: #9aa3af; border-radius: 2px; }
.dev-meta .ico.lock { background: linear-gradient(180deg,#a7b0bb,#8d99a6); }
.dev-meta .ico.shop { background: linear-gradient(180deg,#a7b0bb,#8d99a6); }
.clear{
    clear:both;
}

/* Download list page - Enhanced Design */
.dl-list-hero {
    background: #e5f0fb;
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.dl-list-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.dl-list-hero .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.dl-list-hero h2 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0070c4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dl-list-hero .crumb {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
	color:#0070c4;
}

.dl-list-hero .crumb a {
    color: #0070c4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dl-list-hero .crumb a:hover {
    color: #0070c4;
}


@media (min-width: 870px) {
  .r-footer {
    --footer-outer-spacing: 80px;
  }
}
/* 响应式 */
@media (max-width: 992px){
  .dev-row { grid-template-columns: 150px 1fr; }
  .dev-actions { grid-column: 1 / -1; align-items: flex-start; }
}
@media (max-width: 600px){
  .dev-row { grid-template-columns: 1fr; }
  .dev-image img { width: 100%; height: auto; }
  .dev-title a { font-size: 20px; }
}