@charset "UTF-8";

/* ====== Unified Page Enhancement Styles ====== */
/* 适用于 about / joblist / contact 及所有补充美化页面 */

/* === Banner Override (when pic is empty) === */
#bann.banner-gradient {
    background: linear-gradient(135deg, #0a4d8c 0%, #0f6ab4 50%, #1a82c4 100%);
    position: relative;
    overflow: hidden;
}
#bann.banner-gradient .t1 {
    font-size: 42px;
    font-weight: bold;
}
#bann.banner-gradient .t2 {
    font-size: 18px;
    opacity: 0.85;
}
#bann.banner-gradient .t2 span {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
}
.banner-deco-circle {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}
.banner-deco-circle::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 50%;
}

/* === Section Common === */
.page-section {
    padding: 70px 0;
}
.page-section-head {
    text-align: center;
    margin-bottom: 50px;
}
.page-section-title {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}
.page-section-subtitle {
    font-size: 14px;
    color: #bbb;
    letter-spacing: 2px;
    margin-top: 8px;
}
.page-section-line {
    width: 50px;
    height: 3px;
    background: #0f6ab4;
    margin: 18px auto 0;
    border-radius: 2px;
}

/* === Card Grid Common === */
.page-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.page-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}
.page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(15,106,180,0.15);
    border-color: #0f6ab4;
}
.page-card .card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,106,180,0.08);
    border-radius: 50%;
}
.page-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}
.page-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
}

/* === About Enhancements === */
.about-desc-box {
    padding: 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-top: 40px;
}
.about-desc-box .desc-text {
    font-size: 15px;
    line-height: 2;
    color: #555;
    text-indent: 2em;
}
.about-desc-box .desc-text p {
    margin-bottom: 16px;
}

/* === Job Enhancements === */
.job-benefits {
    padding: 50px 0;
    background: #f7f9fc;
}
.job-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.job-benefits-card {
    width: calc(25% - 15px);
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}
.job-benefits-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(15,106,180,0.12);
    border-color: #0f6ab4;
}
.job-benefits-card .card-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0f6ab4;
}
.job-benefits-card h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}
.job-benefits-card p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

/* === Job Apply Process === */
.job-process {
    padding: 50px 0;
    background: #fff;
}
.job-process-wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}
.job-process-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0f6ab4, #1a82c4);
    z-index: 0;
}
.job-process-step {
    position: relative;
    z-index: 1;
    width: 20%;
    text-align: center;
    padding: 0 10px;
}
.job-step-num {
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: #fff;
    border: 3px solid #0f6ab4;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 16px;
    font-weight: bold;
    color: #0f6ab4;
}
.job-step-body h3 {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}
.job-step-body p {
    font-size: 13px;
    color: #999;
}

/* === Contact Enhancements === */
.contact-map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e8f0f8, #d0e4f5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
.contact-map-placeholder::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border: 2px solid rgba(15,106,180,0.1);
    border-radius: 50%;
}
.contact-map-placeholder .map-label {
    font-size: 18px;
    color: #0f6ab4;
    font-weight: bold;
    z-index: 1;
}
.contact-map-placeholder .map-sublabel {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    z-index: 1;
}

/* === Contact Form Enhancements === */
.contact-form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-form-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0f6ab4;
    display: inline-block;
}

/* === Stats Section === */
.page-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f6ab4, #0a4d8c);
    color: #fff;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.stats-item {
    text-align: center;
    min-width: 180px;
}
.stats-num {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}
.stats-num small {
    font-size: 20px;
    font-weight: normal;
}
.stats-item p {
    font-size: 15px;
    opacity: 0.8;
}

/* ====== Responsive ====== */
@media screen and (max-width: 1024px) {
    .page-section { padding: 40px 0; }
    .page-section-title { font-size: 22px; }
    #bann.banner-gradient .t1 { font-size: 24px; }
    #bann.banner-gradient .t2 { font-size: 13px; }

    .page-card-grid { gap: 15px; }
    .page-card { width: calc(50% - 8px); padding: 25px 15px; }
    .page-card .card-icon { width: 48px; height: 48px; }
    .page-card h3 { font-size: 16px; }
    .page-card p { font-size: 13px; }

    .about-desc-box { padding: 25px; }

    .job-benefits-grid { gap: 15px; }
    .job-benefits-card { width: calc(50% - 8px); padding: 25px 15px; }

    .job-process-wrap { flex-direction: column; gap: 30px; }
    .job-process-line { display: none; }
    .job-process-step { width: 100%; display: flex; align-items: center; gap: 20px; text-align: left; }
    .job-step-num { margin: 0; flex-shrink: 0; width: 40px; height: 40px; line-height: 40px; font-size: 14px; }

    .contact-map-placeholder { height: 250px; }
    .contact-form-wrapper { padding: 25px; }

    .page-stats { padding: 40px 0; }
    .stats-grid { gap: 30px; }
    .stats-item { min-width: 45%; }
    .stats-num { font-size: 36px; }
    .stats-num small { font-size: 16px; }
}

/* ====== News List / News Detail ====== */
.newslist-modern {
    padding: 40px 0;
}
.newslist-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.newslist-card {
    width: calc(50% - 15px);
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}
.newslist-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(15,106,180,0.12);
    border-color: #0f6ab4;
}
.newslist-card .nc-pic {
    width: 200px;
    min-height: 160px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}
.newslist-card .nc-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.newslist-card .nc-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.newslist-card .nc-date {
    font-size: 12px;
    color: #0f6ab4;
    margin-bottom: 8px;
    font-weight: 600;
}
.newslist-card .nc-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}
.newslist-card .nc-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}
.newslist-card .nc-more {
    margin-top: 12px;
    font-size: 13px;
    color: #0f6ab4;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.newslist-card:hover .nc-title { color: #0f6ab4; }
.news-detail-box {
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}
.news-detail-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-detail-title span {
    font-size: 13px;
    color: #999;
    font-weight: normal;
}
.news-detail-content {
    font-size: 15px;
    line-height: 2;
    color: #555;
}
.news-detail-content p { margin-bottom: 16px; }
.news-nav-links {
    display: flex;
    justify-content: space-between;
    background: #f7f9fc;
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.news-nav-links a {
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}
.news-nav-links a:hover { color: #0f6ab4; }
.news-nav-links .back-btn {
    background: #0f6ab4;
    color: #fff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
}

/* ====== Product List / Product Detail ====== */
.productlist-modern {
    padding: 40px 0;
}
.productlist-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.productlist-card {
    width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}
.productlist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(15,106,180,0.15);
    border-color: #0f6ab4;
}
.productlist-card .pl-pic {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.productlist-card .pl-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.productlist-card:hover .pl-pic img { transform: scale(1.08); }
.productlist-card .pl-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15,106,180,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.productlist-card:hover .pl-overlay { opacity: 1; }
.productlist-card .pl-overlay span {
    color: #fff;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.6);
    padding: 8px 20px;
    border-radius: 20px;
}
.productlist-card .pl-body {
    padding: 20px;
    text-align: center;
}
.productlist-card .pl-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}
.productlist-card .pl-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}
.product-detail-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}
.pro-tabs-modern {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}
.pro-tabs-modern .pro-tab {
    padding: 15px 40px;
    font-size: 15px;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}
.pro-tabs-modern .pro-tab.active {
    color: #0f6ab4;
    border-bottom-color: #0f6ab4;
    font-weight: bold;
}
.pro-tabs-modern .pro-tab:hover { color: #0f6ab4; }

/* ====== Download List ====== */
.download-modern {
    padding: 40px 0;
}
.download-list-wrap {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}
.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}
.download-item:last-child { border-bottom: none; }
.download-item:hover {
    background: #f7fbff;
    padding-left: 40px;
}
.download-item .dl-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.download-item .dl-icon {
    width: 44px;
    height: 44px;
    background: rgba(15,106,180,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f6ab4;
    font-size: 20px;
    flex-shrink: 0;
}
.download-item .dl-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
}
.download-item .dl-date {
    font-size: 12px;
    color: #999;
    margin-top: 3px;
}
.download-item .dl-btn {
    background: linear-gradient(135deg, #0f6ab4, #1a82c4);
    color: #fff;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.download-item:hover .dl-btn {
    background: linear-gradient(135deg, #0a4d8c, #0f6ab4);
    transform: scale(1.05);
}

/* ====== Image Gallery (Honor) ====== */
.gallery-modern {
    padding: 40px 0;
}
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.gallery-item {
    width: calc(25% - 18px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(15,106,180,0.15);
    border-color: #0f6ab4;
}
.gallery-item .gi-pic {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.gallery-item .gi-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover .gi-pic img { transform: scale(1.1); }
.gallery-item .gi-title {
    padding: 15px;
    font-size: 14px;
    color: #333;
    text-align: center;
    font-weight: 600;
}

/* ====== Generic Single Page (danye) ====== */
.danye-modern {
    padding: 50px 0;
}
.danye-content-box {
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    font-size: 15px;
    line-height: 2;
    color: #555;
}
.danye-content-box p { margin-bottom: 16px; }
.danye-content-box h2, .danye-content-box h3 {
    color: #333;
    margin: 25px 0 15px;
    padding-left: 15px;
    border-left: 4px solid #0f6ab4;
}
.danye-content-box ul, .danye-content-box ol {
    padding-left: 25px;
    margin-bottom: 16px;
}
.danye-content-box li { margin-bottom: 8px; }
.danye-content-box img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}
.danye-content-box a { color: #0f6ab4; }

/* ====== Search Results ====== */
.search-modern {
    padding: 40px 0;
}
.search-header-bar {
    background: linear-gradient(135deg, #0f6ab4, #1a82c4);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}
.search-header-bar h2 {
    font-size: 20px;
    margin-bottom: 10px;
}
.search-header-bar p {
    font-size: 14px;
    opacity: 0.85;
}

/* ====== Responsive ====== */
@media screen and (max-width: 1024px) {
    .newslist-card { width: 100%; }
    .newslist-card .nc-pic { width: 160px; }
    .productlist-card { width: calc(50% - 15px); }
    .gallery-item { width: calc(33.333% - 16px); }
    .news-detail-box, .product-detail-box, .danye-content-box { padding: 25px; }
    .news-detail-title { font-size: 18px; }
    .news-nav-links { flex-direction: column; gap: 10px; }
    .pro-tabs-modern .pro-tab { padding: 12px 24px; font-size: 14px; }
    .download-item { padding: 18px 20px; }
    .download-item .dl-icon { width: 36px; height: 36px; font-size: 16px; }
}

@media screen and (max-width: 480px) {
    .page-card { width: 100%; }
    .job-benefits-card { width: 100%; }
    .stats-item { min-width: 100%; }
    .newslist-card { flex-direction: column; }
    .newslist-card .nc-pic { width: 100%; height: 180px; }
    .productlist-card { width: 100%; }
    .gallery-item { width: calc(50% - 12px); }
    .download-item { flex-direction: column; align-items: flex-start; gap: 12px; }
    .download-item:hover { padding-left: 20px; }
    .pro-tabs-modern { flex-wrap: wrap; gap: 0; }
    .pro-tabs-modern .pro-tab { width: 50%; text-align: center; padding: 12px 0; }
}

/* ====== Footer Enhancements ====== */
/* 强制覆盖 style.css 中的旧 .footer 样式 */
body .footer {
    background: linear-gradient(135deg, #0c1a2d 0%, #0f1f3a 50%, #0c1a2d 100%) !important;
    color: rgba(255,255,255,0.7) !important;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}
body .footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0f6ab4, #1a82c4, #0f6ab4);
}
.footer-main {
    padding: 60px 0 40px;
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}
.footer-brand {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    float: none !important;
}
.footer-logo img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}
.footer-site-name {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}
.footer-slogan {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 25px;
    line-height: 1.6;
}
.footer-contact .fc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}
.footer-contact .fc-item svg {
    flex-shrink: 0;
}
.footer-contact .fc-item a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}
.footer-contact .fc-item a:hover { color: #0f6ab4; }
.footer-contact .fc-item span { color: rgba(255,255,255,0.7); }

.footer-nav-col {
    min-width: 140px;
    float: none !important;
}
.footer-nav-col h4 {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav-col li {
    margin-bottom: 10px;
    float: none !important;
}
.footer-nav-col a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    transition: all 0.3s;
    display: inline-block;
    padding: 2px 0;
}
.footer-nav-col a:hover {
    color: #0f6ab4;
    padding-left: 6px;
}

.footer-qrcode {
    min-width: 140px;
    text-align: center;
    float: none !important;
}
.qr-box img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}
.qr-box p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: block !important;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.footer-copyright a {
    color: rgba(255,255,255,0.4);
    margin: 0 6px;
    transition: color 0.3s;
}
.footer-copyright a:hover { color: #0f6ab4; }
.footer-stat {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ====== Mobile Footer ====== */
.mfooter {
    display: none;
    background: linear-gradient(135deg, #0c1a2d 0%, #0f1f3a 100%);
    color: rgba(255,255,255,0.7);
}
.mfooter-main {
    padding: 30px 15px 20px;
    text-align: center;
}
.mfooter-logo .footer-site-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    display: block;
    margin-bottom: 6px;
}
.mfooter-logo .footer-slogan {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}
.mfooter-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.mfc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    transition: all 0.3s;
}
.mfc-tel {
    background: linear-gradient(135deg, #0f6ab4, #1a82c4);
    color: #fff;
}
.mfc-email {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
}
.mfooter-address {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 15px;
}
.mfooter-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}
.mfooter-nav a {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s;
}
.mfooter-nav a:hover {
    background: rgba(15,106,180,0.3);
    color: #fff;
}
.mfooter-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 15px;
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
}
.mfooter-bottom a {
    color: rgba(255,255,255,0.3);
    margin: 0 4px;
}

/* ====== Sidebar Floating ====== */
.sidebar {
    position: fixed;
    right: 15px;
    bottom: 100px;
    z-index: 9999;
}
.sidebar ul {
    list-style: none;
}
.sidebar li {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f6ab4, #1a82c4);
    box-shadow: 0 4px 12px rgba(15,106,180,0.3);
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.sidebar li:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(15,106,180,0.4);
}
.sidebar li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
}
.sidebar li svg {
    margin-top: 2px;
}
.sidebar .sidebar-label {
    font-size: 9px;
    line-height: 1;
    margin-top: 1px;
    display: block;
}
.sidebar .wechat .wechat-code {
    position: absolute;
    right: 58px;
    bottom: 0;
    width: 160px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}
.sidebar .wechat:hover .wechat-code {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}
.wechat-code img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 6px;
}
.wechat-code p {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin: 0;
}

/* ====== Force Override media.css & style.css Conflicts ====== */
/* Override media.css .mfooter background */
body .mfooter {
    background: linear-gradient(135deg, #0c1a2d 0%, #0f1f3a 100%) !important;
    color: rgba(255,255,255,0.7) !important;
}
body .mfooter-main {
    background: transparent !important;
}
/* Override style.css .sidebar */
body .sidebar {
    top: auto !important;
    bottom: 100px !important;
    right: 15px !important;
    width: auto !important;
    height: auto !important;
}
body .sidebar li {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 48px !important;
    height: 48px !important;
}
body .sidebar li a {
    height: 100% !important;
    line-height: 1 !important;
    background: none !important;
    opacity: 1 !important;
}
body .sidebar li.message,
body .sidebar li.telephone,
body .sidebar li.wechat,
body .sidebar li.top {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 48px !important;
}
body .sidebar li.wechat .wechat-code {
    top: auto !important;
    left: auto !important;
    right: 58px !important;
    bottom: 0 !important;
    width: 160px !important;
    height: auto !important;
    display: block !important;
}
body .sidebar li.wechat:hover .wechat-code {
    display: block !important;
}

/* Override .footer a:hover from style.css line 213 */
body .footer a:hover {
    color: #0f6ab4 !important;
}

/* Ensure footer nav links don't turn white */
body .footer .footer-nav-col a:hover {
    color: #0f6ab4 !important;
}
body .footer .footer-copyright a:hover {
    color: #0f6ab4 !important;
}

/* ====== Service Center Page ====== */

/* Banner */
.sv-banner { position: relative; overflow: hidden; padding: 80px 0 70px; }
.sv-banner-inner { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; }
.sv-banner-left { max-width: 600px; }
.sv-banner-label { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; font-weight: 600; }
.sv-banner-label svg { width: 20px; height: 20px; }
.sv-banner-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.sv-tag { background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); color: #fff; padding: 5px 16px; border-radius: 20px; font-size: 13px; border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s; }
.sv-tag:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.sv-banner-right { position: relative; }
.sv-banner-icon-ring { width: 140px; height: 140px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,0.12); position: relative; }
.sv-banner-icon-ring::before { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.15); animation: svRotate 20s linear infinite; }
@keyframes svRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.sv-banner-wave { position: absolute; bottom: 0; left: 0; right: 0; height: 40px; background: #f5f7fa; clip-path: polygon(0 50%, 5% 45%, 10% 55%, 15% 42%, 20% 58%, 25% 40%, 30% 60%, 35% 42%, 40% 55%, 45% 45%, 50% 52%, 55% 38%, 60% 62%, 65% 40%, 70% 58%, 75% 45%, 80% 52%, 85% 48%, 90% 55%, 95% 42%, 100% 50%, 100% 100%, 0 100%); }

/* Service Modern Sections */
.service-modern { padding: 50px 0 80px; background: #f5f7fa; }

/* Section Head */
.sv-section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; }
.sv-section-head h3 { font-size: 20px; font-weight: bold; color: #333; display: flex; align-items: center; gap: 8px; margin: 0; }
.sv-section-sub { font-size: 13px; color: #999; }

/* Service Overview Cards */
.sv-overview { margin-bottom: 60px; }
.sv-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sv-card { background: #fff; border-radius: 14px; padding: 32px 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.4s ease; text-align: center; border: 1px solid #f0f0f0; position: relative; overflow: hidden; }
.sv-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #0f6ab4, #1a82c4); transform: scaleX(0); transition: transform 0.4s ease; border-radius: 14px 14px 0 0; }
.sv-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(15,106,180,0.12); border-color: #e8f0f8; }
.sv-card:hover::before { transform: scaleX(1); }
.sv-card-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: all 0.3s; }
.sv-card-icon-1 { background: rgba(15,106,180,0.08); color: #0f6ab4; }
.sv-card-icon-2 { background: rgba(46,139,87,0.08); color: #2e8b57; }
.sv-card-icon-3 { background: rgba(212,88,42,0.08); color: #d4582a; }
.sv-card-icon-4 { background: rgba(107,92,231,0.08); color: #6b5ce7; }
.sv-card-icon-5 { background: rgba(240,150,30,0.08); color: #e59e19; }
.sv-card-icon-6 { background: rgba(220,50,90,0.08); color: #e0285a; }
.sv-card:hover .sv-card-icon { transform: scale(1.1); }
.sv-card h4 { font-size: 17px; font-weight: bold; color: #2a2a2a; margin-bottom: 10px; }
.sv-card p { font-size: 13px; color: #999; line-height: 1.7; }

/* Service Process Flow */
.sv-process { margin-bottom: 60px; background: #fff; border-radius: 14px; padding: 40px 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.sv-process-flow { display: flex; align-items: stretch; gap: 0; justify-content: center; }
.sv-process-item { flex: 1; text-align: center; padding: 0 16px; position: relative; }
.sv-process-num { font-size: 48px; font-weight: bold; color: #eef4fa; line-height: 1; margin-bottom: 16px; }
.sv-process-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: #fff; }
.sv-process-icon-1 { background: linear-gradient(135deg, #0f6ab4, #1a82c4); }
.sv-process-icon-2 { background: linear-gradient(135deg, #2e8b57, #3cb371); }
.sv-process-icon-3 { background: linear-gradient(135deg, #d4582a, #e07040); }
.sv-process-icon-4 { background: linear-gradient(135deg, #6b5ce7, #8a7ef5); }
.sv-process-item h4 { font-size: 16px; font-weight: bold; color: #2a2a2a; margin-bottom: 8px; }
.sv-process-item p { font-size: 13px; color: #999; line-height: 1.6; }
.sv-process-arrow { display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 0 8px; align-self: center; }
.sv-process-arrow svg { animation: svPulse 2s ease infinite; }
@keyframes svPulse { 0%, 100% { transform: translateX(0); opacity: 1; } 50% { transform: translateX(4px); opacity: 0.6; } }

/* Advantages */
.sv-advantages { margin-bottom: 60px; }
.sv-adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sv-adv-item { background: #fff; border-radius: 14px; padding: 32px 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); display: flex; flex-direction: column; align-items: center; text-align: center; transition: all 0.4s ease; border: 1px solid #f0f0f0; }
.sv-adv-item:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(15,106,180,0.1); border-color: #e8f0f8; }
.sv-adv-icon { margin-bottom: 16px; }
.sv-adv-item h4 { font-size: 17px; font-weight: bold; color: #2a2a2a; margin-bottom: 10px; }
.sv-adv-item p { font-size: 13px; color: #999; line-height: 1.7; }

/* FAQ Accordion */
.sv-faq { margin-bottom: 60px; }
.sv-faq-list { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.sv-faq-item { border-bottom: 1px solid #f0f0f0; }
.sv-faq-item:last-child { border-bottom: none; }
.sv-faq-question { display: flex; align-items: center; gap: 14px; padding: 20px 28px; cursor: pointer; transition: all 0.3s; user-select: none; }
.sv-faq-question:hover { background: #f7fbff; }
.sv-faq-item.active .sv-faq-question { background: #f7fbff; }
.sv-faq-q { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, #0f6ab4, #1a82c4); color: #fff; font-size: 13px; font-weight: bold; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sv-faq-text { flex: 1; font-size: 15px; color: #333; font-weight: 500; }
.sv-faq-toggle { flex-shrink: 0; transition: transform 0.3s; }
.sv-faq-item.active .sv-faq-toggle { transform: rotate(45deg); }
.sv-faq-answer { display: none; padding: 0 28px 20px 70px; font-size: 14px; color: #888; line-height: 1.8; }
.sv-faq-item.active .sv-faq-answer { display: block; }

/* Custom Content Area */
.sv-custom-content { background: #fff; border-radius: 14px; padding: 40px 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); margin-bottom: 60px; font-size: 14px; line-height: 1.8; color: #666; }
.sv-custom-content h2, .sv-custom-content h3, .sv-custom-content h4 { color: #333; margin-bottom: 16px; }
.sv-custom-content p { margin-bottom: 12px; }
.sv-custom-content ul, .sv-custom-content ol { margin-bottom: 12px; padding-left: 24px; }
.sv-custom-content img { max-width: 100%; border-radius: 8px; }

/* CTA Section */
.sv-cta-section { background: linear-gradient(135deg, #0a4d8c, #0f6ab4); border-radius: 14px; padding: 48px 40px; overflow: hidden; position: relative; }
.sv-cta-section::before { content: ""; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.sv-cta-section::after { content: ""; position: absolute; bottom: -40px; left: -40px; width: 150px; height: 150px; border-radius: 50%; background: rgba(255,255,255,0.03); }
.sv-cta-inner { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; gap: 40px; }
.sv-cta-left { flex: 1; color: #fff; }
.sv-cta-left h3 { font-size: 28px; font-weight: bold; margin-bottom: 12px; }
.sv-cta-left p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 24px; }
.sv-cta-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.sv-cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 24px; font-size: 14px; font-weight: 500; transition: all 0.3s; cursor: pointer; text-decoration: none; }
.sv-cta-btn-primary { background: #fff; color: #0f6ab4; }
.sv-cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(255,255,255,0.3); }
.sv-cta-btn-outline { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.sv-cta-btn-outline:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.sv-cta-right { display: flex; gap: 24px; }
.sv-cta-stat { text-align: center; color: #fff; }
.sv-cta-stat-num { font-size: 28px; font-weight: bold; line-height: 1.2; }
.sv-cta-stat-label { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* Responsive */
@media (max-width: 992px) {
    .sv-card-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-adv-grid { grid-template-columns: 1fr; }
    .sv-process-flow { flex-wrap: wrap; }
    .sv-process-item { flex: 1 1 calc(50% - 20px); margin-bottom: 20px; }
    .sv-process-arrow { display: none; }
    .sv-cta-inner { flex-direction: column; text-align: center; }
    .sv-cta-right { justify-content: center; }
    .sv-cta-btns { justify-content: center; }
}
@media (max-width: 768px) {
    .sv-banner { padding: 50px 0 60px; }
    .sv-banner-inner { flex-direction: column; gap: 30px; text-align: center; }
    .sv-banner-right { display: none; }
    .sv-banner-tags { justify-content: center; }
    .sv-card-grid { grid-template-columns: 1fr; }
    .sv-process-item { flex: 1 1 100%; }
    .sv-faq-question { padding: 16px 18px; }
    .sv-faq-answer { padding: 0 18px 16px 56px; }
    .sv-cta-section { padding: 32px 24px; }
    .sv-cta-left h3 { font-size: 22px; }
    .sv-cta-right { gap: 16px; }
}
@media (max-width: 480px) {
    .sv-banner-tags { gap: 6px; }
    .sv-tag { font-size: 12px; padding: 4px 12px; }
    .sv-card { padding: 24px 18px; }
    .sv-process-num { font-size: 36px; }
    .sv-cta-btn { padding: 10px 20px; font-size: 13px; }
    .sv-cta-stat-num { font-size: 22px; }
}

/* ====== Download Page Enhancement ====== */

/* Banner */
.dl-banner { position: relative; overflow: hidden; padding: 80px 0 70px; }
.dl-banner-inner { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; }
.dl-banner-left { max-width: 600px; }
.dl-banner-label { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; font-weight: 600; }
.dl-banner-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.dl-tag { background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); color: #fff; padding: 5px 16px; border-radius: 20px; font-size: 13px; border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s; }
.dl-tag:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.dl-banner-right { position: relative; }
.dl-banner-icon-ring { width: 140px; height: 140px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,0.12); position: relative; }
.dl-banner-icon-ring::before { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.15); animation: dlRotate 20s linear infinite; }
@keyframes dlRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.dl-banner-wave { position: absolute; bottom: 0; left: 0; right: 0; height: 40px; background: #f5f7fa; clip-path: polygon(0 50%, 5% 45%, 10% 55%, 15% 42%, 20% 58%, 25% 40%, 30% 60%, 35% 42%, 40% 55%, 45% 45%, 50% 52%, 55% 38%, 60% 62%, 65% 40%, 70% 58%, 75% 45%, 80% 52%, 85% 48%, 90% 55%, 95% 42%, 100% 50%, 100% 100%, 0 100%); }

/* Stats Bar */
.dl-stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.dl-stat-card { display: flex; align-items: center; gap: 16px; background: #fff; border-radius: 14px; padding: 24px 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.3s; border-bottom: 3px solid transparent; }
.dl-stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(15,106,180,0.12); }
.dl-stat-card:hover .dl-stat-icon-1 { border-color: #0f6ab4; }
.dl-stat-card:hover .dl-stat-icon-2 { border-color: #2e8b57; }
.dl-stat-card:hover .dl-stat-icon-3 { border-color: #d4582a; }
.dl-stat-card:hover .dl-stat-icon-4 { border-color: #6b5ce7; }
.dl-stat-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.dl-stat-icon-1 { background: rgba(15,106,180,0.08); color: #0f6ab4; }
.dl-stat-icon-2 { background: rgba(46,139,87,0.08); color: #2e8b57; }
.dl-stat-icon-3 { background: rgba(212,88,42,0.08); color: #d4582a; }
.dl-stat-icon-4 { background: rgba(107,92,231,0.08); color: #6b5ce7; }
.dl-stat-num { font-size: 24px; font-weight: bold; color: #333; line-height: 1.2; }
.dl-stat-label { font-size: 13px; color: #999; margin-top: 2px; }

/* Category Chips */
.dl-cats { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.dl-cat-chip { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid #e0e0e0; color: #666; padding: 8px 18px; border-radius: 20px; font-size: 14px; transition: all 0.3s; cursor: pointer; }
.dl-cat-chip:hover { background: #0f6ab4; color: #fff; border-color: #0f6ab4; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(15,106,180,0.2); }
.dl-cat-chip svg { width: 14px; height: 14px; }

/* Two Column Layout */
.dl-layout { display: flex; gap: 30px; align-items: flex-start; }
.dl-main { flex: 1; min-width: 0; }
.dl-sidebar { width: 300px; flex-shrink: 0; }

/* Section Head */
.dl-section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.dl-section-head h3 { font-size: 20px; font-weight: bold; color: #333; display: flex; align-items: center; gap: 8px; margin: 0; }
.dl-section-sub { font-size: 13px; color: #999; }

/* Download Item Enhanced */
.download-list-wrap { border-radius: 14px; }
.download-item { padding: 20px 28px; flex-wrap: nowrap; }
.download-item:hover { padding-left: 36px; }
.dl-item-left { display: flex; align-items: flex-start; gap: 16px; flex: 1; min-width: 0; }
.download-item .dl-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(15,106,180,0.08), rgba(15,106,180,0.15)); position: relative; }
.download-item .dl-icon::after { content: ""; position: absolute; inset: 0; border-radius: 12px; border: 1px solid rgba(15,106,180,0.08); }
.dl-info { flex: 1; min-width: 0; }
.download-item .dl-title { font-size: 16px; font-weight: bold; color: #2a2a2a; transition: color 0.3s; }
.download-item:hover .dl-title { color: #0f6ab4; }
.dl-desc { font-size: 13px; color: #999; margin-top: 6px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dl-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; margin-top: 8px; font-size: 12px; color: #aaa; }
.dl-meta-item { display: inline-flex; align-items: center; gap: 4px; }
.dl-meta-sep { color: #ddd; margin: 0 2px; }
.dl-item-right { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.dl-detail-link { font-size: 12px; color: #0f6ab4; transition: all 0.3s; }
.dl-detail-link:hover { text-decoration: underline; }

/* Empty State */
.dl-empty-state { text-align: center; padding: 80px 20px; background: #fff; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.dl-empty-state h4 { font-size: 18px; color: #666; margin: 20px 0 8px; }
.dl-empty-state p { font-size: 14px; color: #aaa; margin-bottom: 24px; }
.dl-empty-back { display: inline-block; background: linear-gradient(135deg, #0f6ab4, #1a82c4); color: #fff; padding: 10px 28px; border-radius: 20px; font-size: 14px; transition: all 0.3s; }
.dl-empty-back:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(15,106,180,0.3); }

/* Sidebar */
.dl-side-card { background: #fff; border-radius: 14px; padding: 24px 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); margin-bottom: 20px; }
.dl-side-head { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid #f5f5f5; }
.dl-side-head h4 { font-size: 16px; font-weight: bold; color: #333; margin: 0; }

/* Hot List */
.dl-hot-list { list-style: none; padding: 0; margin: 0; }
.dl-hot-item { margin-bottom: 14px; }
.dl-hot-item:last-child { margin-bottom: 0; }
.dl-hot-item a { display: flex; align-items: center; gap: 12px; text-decoration: none; transition: all 0.2s; }
.dl-hot-item a:hover .dl-hot-title { color: #0f6ab4; }
.dl-hot-rank { width: 24px; height: 24px; border-radius: 6px; background: #eef4fa; color: #0f6ab4; font-size: 13px; font-weight: bold; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dl-hot-item:nth-child(1) .dl-hot-rank { background: linear-gradient(135deg, #ff6b6b, #ee5a6f); color: #fff; }
.dl-hot-item:nth-child(2) .dl-hot-rank { background: linear-gradient(135deg, #ffa940, #ff7a45); color: #fff; }
.dl-hot-item:nth-child(3) .dl-hot-rank { background: linear-gradient(135deg, #ffd43b, #fab005); color: #fff; }
.dl-hot-info { flex: 1; min-width: 0; }
.dl-hot-title { font-size: 14px; color: #333; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.3s; }
.dl-hot-date { font-size: 12px; color: #bbb; margin-top: 2px; }

/* Notice List */
.dl-notice-list { list-style: none; padding: 0; margin: 0; }
.dl-notice-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 12px; }
.dl-notice-list li:last-child { margin-bottom: 0; }
.dl-notice-dot { width: 6px; height: 6px; border-radius: 50%; background: #0f6ab4; flex-shrink: 0; margin-top: 8px; }

/* CTA Card */
.dl-side-cta { background: linear-gradient(135deg, #0a4d8c, #0f6ab4); color: #fff; text-align: center; position: relative; overflow: hidden; }
.dl-side-cta::before { content: ""; position: absolute; top: -30px; right: -30px; width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.dl-cta-icon { margin-bottom: 12px; }
.dl-side-cta h4 { font-size: 17px; color: #fff; margin: 0 0 8px; }
.dl-side-cta p { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 16px; }
.dl-cta-btn { display: inline-block; background: rgba(255,255,255,0.15); color: #fff; padding: 10px 28px; border-radius: 20px; font-size: 14px; border: 1px solid rgba(255,255,255,0.3); transition: all 0.3s; }
.dl-cta-btn:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* Responsive */
@media (max-width: 992px) {
    .dl-stats-bar { grid-template-columns: repeat(2, 1fr); }
    .dl-layout { flex-direction: column; }
    .dl-sidebar { width: 100%; }
}
@media (max-width: 768px) {
    .dl-banner { padding: 50px 0 60px; }
    .dl-banner-inner { flex-direction: column; gap: 30px; text-align: center; }
    .dl-banner-right { display: none; }
    .dl-banner-tags { justify-content: center; }
    .dl-stats-bar { grid-template-columns: 1fr 1fr; gap: 12px; }
    .dl-stat-card { padding: 16px 12px; gap: 10px; }
    .dl-stat-icon { width: 44px; height: 44px; }
    .dl-stat-num { font-size: 20px; }
    .dl-stat-label { font-size: 12px; }
    .download-item { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 18px; }
    .download-item:hover { padding-left: 18px; }
    .dl-item-right { flex-direction: row; width: 100%; justify-content: space-between; }
    .dl-meta { flex-direction: row; }
}
@media (max-width: 480px) {
    .dl-stats-bar { grid-template-columns: 1fr; }
    .dl-banner-tags { gap: 6px; }
    .dl-tag { font-size: 12px; padding: 4px 12px; }
    .dl-section-head { flex-direction: column; align-items: flex-start; gap: 4px; }
    .download-item { padding: 14px 14px; }
    .dl-item-right { flex-direction: column; gap: 8px; align-items: center; }
}
