/* ============================================
   gzglzq Theme for FastAdmin CMS
   Design Reference: gzglzq.com (冠凌科技)
   Primary: #E60012 | Layout: 1200px
   ============================================ */

/* --- CSS Variables --- */
:root {
    --gz-primary: #E60012;
    --gz-primary-dark: #BF0F0F;
    --gz-primary-light: #fcd1d1;
    --gz-text: #333;
    --gz-text-light: #676767;
    --gz-text-muted: #999;
    --gz-bg: #fff;
    --gz-bg-gray: #f7f7f7;
    --gz-bg-dark: #1b1b1b;
    --gz-border: #eee;
    --gz-shadow: 0 0 15px #f2f2f2;
    --gz-shadow-hover: 0 0 15px #fcd1d1;
    --gz-radius: 10px;
    --gz-width: 1200px;
    --gz-font: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

/* --- Reset & Base --- */
.gzglzq-theme {
    font-family: var(--gz-font);
    color: var(--gz-text);
    font-size: 14px;
    line-height: 1.6;
    background: var(--gz-bg);
}

.gzglzq-theme * {
    box-sizing: border-box;
}

.gzglzq-theme a {
    color: var(--gz-text);
    text-decoration: none;
    transition: color .3s;
}

.gzglzq-theme a:hover {
    color: var(--gz-primary);
}

.gzglzq-theme img {
    max-width: 100%;
    height: auto;
}

.gz-wrap {
    width: var(--gz-width);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Top Bar --- */
.gz-topbar {
    height: 90px;
    background: #fff;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.gz-topbar .gz-wrap {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.gz-logo {
    padding: 8px 0;
    flex-shrink: 0;
}

.gz-logo img {
    height: 55px;
    max-height: 65px;
}

.gz-topbar-phone {
    text-align: center;
    flex-shrink: 0;
    margin-right: 40px;
}

.gz-topbar-phone h5 {
    font-size: 22px;
    font-weight: bold;
    color: var(--gz-primary);
    margin: 0;
    letter-spacing: 1px;
}

.gz-topbar-phone p {
    font-size: 12px;
    color: var(--gz-text-muted);
    margin: 0;
}

.gz-nav {
    display: flex;
    align-items: center;
    height: 90px;
}

/* Hamburger Toggle */
.gz-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.gz-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gz-text);
    border-radius: 1px;
    transition: all .3s;
}

.gz-menu-toggle.gz-menu-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.gz-menu-toggle.gz-menu-open span:nth-child(2) {
    opacity: 0;
}
.gz-menu-toggle.gz-menu-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.gz-nav > ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.gz-nav > ul > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.gz-nav > ul > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 22px;
    font-size: 15px;
    font-weight: bold;
    color: var(--gz-text);
    transition: all .3s;
    white-space: nowrap;
}

.gz-nav > ul > li > a:hover,
.gz-nav > ul > li.active > a {
    color: #fff;
    background: var(--gz-primary);
}

.gz-nav > ul > li.active > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: #fff;
}

/* Dropdown */
.gz-nav .gz-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    border-top: 3px solid var(--gz-primary);
    z-index: 200;
}

.gz-nav > ul > li:hover .gz-dropdown {
    display: block;
}

.gz-dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--gz-text-light);
    border-bottom: 1px solid var(--gz-border);
    transition: all .3s;
}

.gz-dropdown a:hover {
    color: var(--gz-primary);
    padding-left: 26px;
    background: var(--gz-bg-gray);
}

.gz-dropdown a::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--gz-primary);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

/* Third-level dropdown */
.gz-dropdown-group {
    position: relative;
}

.gz-dropdown-group > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gz-dropdown-group > a .fa {
    font-size: 12px;
    transition: transform .3s;
}

.gz-dropdown-sub {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 160px;
    background: #fff;
    box-shadow: 4px 4px 20px rgba(0,0,0,.1);
    border-top: 3px solid var(--gz-primary);
}

.gz-dropdown-group:hover > .gz-dropdown-sub {
    display: block;
}

.gz-dropdown-group:hover > a .fa {
    transform: rotate(90deg);
}

.gz-dropdown-sub a::before {
    background: transparent;
    border: 1px solid var(--gz-primary);
}

/* --- Banner (Swiper) --- */
.gz-banner {
    position: relative;
    border-bottom: 5px solid var(--gz-primary);
    overflow: hidden;
}

.gz-banner .swiper-slide {
    height: 680px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gz-banner .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    background: transparent;
    opacity: 1;
}

.gz-banner .swiper-pagination-bullet-active {
    border-color: var(--gz-primary);
    background: transparent;
}

.gz-banner .swiper-button-next,
.gz-banner .swiper-button-prev {
    color: #fff;
}

.gz-banner-caption {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
    text-align: center;
}

.gz-banner-caption h3 {
    font-size: 32px;
    font-weight: bold;
}

.gz-banner-caption p {
    font-size: 16px;
    margin-top: 10px;
}

/* --- Section Title --- */
.gz-section-title {
    text-align: center;
    padding: 50px 0 30px;
}

.gz-section-title h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--gz-text);
    margin: 0;
}

.gz-section-title h2 em {
    font-style: normal;
    color: var(--gz-primary);
}

.gz-section-title .gz-title-line {
    display: inline-block;
    width: 50px;
    height: 3px;
    background: var(--gz-primary);
    margin: 12px 0;
}

.gz-section-title p {
    font-size: 13px;
    color: var(--gz-text-muted);
    margin: 0;
}

.gz-section-title .gz-section-more {
    font-size: 14px;
    color: var(--gz-primary);
    margin-top: 8px;
    display: inline-block;
}

.gz-section-title .gz-section-more:hover {
    text-decoration: underline;
}

/* --- Solution Cards (首页解决方案) --- */
.gz-solution-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px 0 50px;
}

.gz-solution-card {
    flex: 1;
    max-width: 380px;
    border-radius: var(--gz-radius);
    overflow: hidden;
    box-shadow: var(--gz-shadow);
    transition: all .3s;
    background: #fff;
    position: relative;
}

.gz-solution-card:hover {
    box-shadow: var(--gz-shadow-hover);
    transform: translateY(-4px);
}

.gz-solution-card .gz-solution-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.gz-solution-card .gz-solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.gz-solution-card:hover .gz-solution-img img {
    transform: scale(1.05);
}

.gz-solution-card .gz-solution-name {
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    background: #fff;
    transition: all .3s;
}

.gz-solution-card:hover .gz-solution-name {
    color: var(--gz-primary);
}

.gz-solution-card .gz-solution-name a {
    color: inherit;
}

/* --- Product Grid --- */
.gz-product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0 50px;
}

.gz-product-card {
    width: 265px;
    border-radius: var(--gz-radius);
    overflow: hidden;
    box-shadow: var(--gz-shadow);
    transition: all .3s;
    background: #fff;
    position: relative;
}

.gz-product-card:hover {
    box-shadow: var(--gz-shadow-hover);
    border: 1px solid var(--gz-primary);
}

.gz-product-card .gz-product-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.gz-product-card .gz-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.gz-product-card:hover .gz-product-img img {
    transform: scale(1.05);
}

.gz-product-card .gz-product-name {
    text-align: center;
    padding: 12px 15px;
    font-size: 15px;
    background: #fff;
    transition: all .3s;
    border-radius: 0 0 var(--gz-radius) var(--gz-radius);
}

.gz-product-card:hover .gz-product-name {
    background: var(--gz-primary);
    color: #fff;
}

.gz-product-card .gz-product-name a {
    color: inherit;
}

/* --- News Cards --- */
.gz-news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 20px 0 50px;
}

.gz-news-card {
    display: flex;
    width: calc(50% - 12px);
    padding: 25px 20px;
    background: var(--gz-bg-gray);
    transition: all .3s;
}

.gz-news-card:hover {
    background: #fff;
    box-shadow: 0 0 15px #f0f0f0;
}

.gz-news-card:hover .gz-news-title {
    color: var(--gz-primary);
}

.gz-news-thumb {
    width: 150px;
    height: 91px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 4px;
}

.gz-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gz-news-body {
    flex: 1;
    min-width: 0;
}

.gz-news-title {
    font-size: 16px;
    color: var(--gz-text);
    margin: 0 0 8px;
    font-weight: normal;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gz-news-desc {
    font-size: 14px;
    color: #afafaf;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.gz-news-date {
    font-size: 13px;
    color: var(--gz-text-muted);
    margin-top: 6px;
    padding-left: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") no-repeat left center;
}

/* --- Article List Card (通用列表) --- */
.gz-article-list {
    padding: 10px 0;
}

.gz-article-card {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid var(--gz-border);
    transition: all .3s;
}

.gz-article-card:last-child {
    border-bottom: none;
}

.gz-article-card:hover .gz-article-title a {
    color: var(--gz-primary);
}

.gz-article-thumb {
    width: 180px;
    height: 120px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 6px;
}

.gz-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.gz-article-card:hover .gz-article-thumb img {
    transform: scale(1.05);
}

.gz-article-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gz-article-title {
    font-size: 17px;
    font-weight: normal;
    margin: 0 0 8px;
    line-height: 1.5;
}

.gz-article-title a {
    color: var(--gz-text);
}

.gz-article-intro {
    font-size: 14px;
    color: var(--gz-text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 10px;
}

.gz-article-meta {
    font-size: 13px;
    color: var(--gz-text-muted);
}

.gz-article-meta .gz-tag {
    display: inline-block;
    padding: 2px 10px;
    background: var(--gz-primary);
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    margin-right: 10px;
}

.gz-article-meta span {
    margin-right: 15px;
}

.gz-article-meta i {
    margin-right: 3px;
}

/* --- Gallery Article (多图) --- */
.gz-gallery-card {
    padding: 20px 0;
    border-bottom: 1px solid var(--gz-border);
}

.gz-gallery-card .gz-gallery-title {
    font-size: 17px;
    margin: 0 0 12px;
}

.gz-gallery-card .gz-gallery-title a {
    color: var(--gz-text);
}

.gz-gallery-card .gz-gallery-images {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.gz-gallery-card .gz-gallery-images img {
    width: calc(25% - 8px);
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

/* --- Partners Section (首页合作伙伴) --- */
.gz-partners {
    background: var(--gz-bg-gray);
    padding: 40px 0;
}

.gz-partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.gz-partner-item {
    width: 170px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    transition: all .3s;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
}

.gz-partner-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
}

.gz-partner-item img {
    max-width: 140px;
    max-height: 55px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .7;
    transition: all .3s;
}

.gz-partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* --- Tab Section (首页新闻/案例Tab) --- */
.gz-tabs {
    margin-bottom: 10px;
}

.gz-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 2px solid var(--gz-primary);
    margin-bottom: 20px;
}

.gz-tabs-nav a {
    display: inline-block;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
    color: var(--gz-text);
    background: var(--gz-bg-gray);
    transition: all .3s;
}

.gz-tabs-nav a:hover,
.gz-tabs-nav a.active {
    color: #fff;
    background: var(--gz-primary);
}

.gz-tab-pane {
    display: none;
}

.gz-tab-pane.active {
    display: block;
}

/* --- Page Category Header --- */
.gz-page-header {
    background: linear-gradient(135deg, var(--gz-bg-dark) 0%, #333 100%);
    color: #fff;
    padding: 40px 0;
    margin-bottom: 0;
}

.gz-page-header h1 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 20px;
}

.gz-breadcrumb {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 8px;
    font-size: 14px;
}

.gz-breadcrumb li::after {
    content: ">";
    margin-left: 8px;
    color: rgba(255,255,255,.5);
}

.gz-breadcrumb li:last-child::after {
    display: none;
}

.gz-breadcrumb a {
    color: rgba(255,255,255,.8);
}

.gz-breadcrumb a:hover {
    color: #fff;
}

.gz-page-header-btn {
    display: inline-block;
    color: #fff;
    line-height: 40px;
    font-size: 14px;
    background: var(--gz-primary);
    padding: 0 30px;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 10px;
    transition: all .3s;
}

.gz-page-header-btn:hover {
    background: var(--gz-primary-dark);
    color: #fff;
}

/* --- Filter Bar --- */
.gz-filter-bar {
    background: #fff;
    padding: 20px 0;
    border-bottom: 2px solid var(--gz-border);
}

.gz-filter-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.gz-filter-group:last-child {
    margin-bottom: 0;
}

.gz-filter-label {
    font-weight: bold;
    font-size: 14px;
    color: var(--gz-text);
    margin-right: 15px;
    line-height: 32px;
    flex-shrink: 0;
}

.gz-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gz-filter-options li a {
    display: inline-block;
    padding: 4px 14px;
    font-size: 14px;
    color: var(--gz-text-light);
    border-radius: 4px;
    transition: all .3s;
}

.gz-filter-options li a:hover,
.gz-filter-options li.active a {
    background: var(--gz-primary);
    color: #fff;
}

/* --- Order Bar --- */
.gz-order-bar {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gz-border);
    margin-bottom: 10px;
}

.gz-order-bar a {
    font-size: 14px;
    color: var(--gz-text-light);
    padding: 4px 12px;
    border-radius: 4px;
    transition: all .3s;
}

.gz-order-bar a:hover,
.gz-order-bar a.active {
    background: var(--gz-primary);
    color: #fff;
}

/* --- Sidebar --- */
.gz-sidebar-widget {
    background: #fff;
    margin-bottom: 25px;
    border-radius: var(--gz-radius);
    overflow: hidden;
    box-shadow: var(--gz-shadow);
}

.gz-sidebar-title {
    padding: 14px 18px;
    font-size: 16px;
    font-weight: bold;
    border-left: 4px solid var(--gz-primary);
    background: var(--gz-bg-gray);
    margin: 0;
}

.gz-sidebar-body {
    padding: 15px 18px;
}

/* Sidebar Hot Articles */
.gz-sidebar-body .gz-hot-item {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px dashed var(--gz-border);
}

.gz-sidebar-body .gz-hot-item:last-child {
    border-bottom: none;
}

.gz-hot-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--gz-border);
    color: var(--gz-text-light);
    font-size: 12px;
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
}

.gz-hot-item:nth-child(1) .gz-hot-num,
.gz-hot-item:nth-child(2) .gz-hot-num,
.gz-hot-item:nth-child(3) .gz-hot-num {
    background: var(--gz-primary);
    color: #fff;
}

.gz-hot-item a {
    font-size: 14px;
    color: var(--gz-text-light);
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gz-hot-item a:hover {
    color: var(--gz-primary);
}

/* Sidebar Category Tree */
.gz-sidebar-body .gz-cat-item {
    padding: 8px 0;
    border-bottom: 1px dashed var(--gz-border);
}

.gz-sidebar-body .gz-cat-item:last-child {
    border-bottom: none;
}

.gz-sidebar-body .gz-cat-item a {
    display: block;
    padding: 4px 0;
    font-size: 14px;
    color: var(--gz-text-light);
    transition: all .3s;
}

.gz-sidebar-body .gz-cat-item a:hover,
.gz-sidebar-body .gz-cat-item.active a {
    color: var(--gz-primary);
    padding-left: 8px;
}

.gz-sidebar-body .gz-cat-item a::before {
    content: "\f0da";
    font-family: "FontAwesome";
    margin-right: 8px;
    color: var(--gz-primary);
    font-size: 12px;
}

/* Sidebar Tags */
.gz-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gz-tags-cloud .gz-tag-item {
    display: inline-block;
    padding: 4px 12px;
    font-size: 13px;
    color: var(--gz-text-light);
    background: var(--gz-bg-gray);
    border-radius: 4px;
    transition: all .3s;
}

.gz-tags-cloud .gz-tag-item:hover {
    background: var(--gz-primary);
    color: #fff;
}

/* --- Pagination --- */
.gz-pagination {
    text-align: center;
    padding: 30px 0;
}

.gz-pagination .pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.gz-pagination .pagination li a,
.gz-pagination .pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--gz-primary);
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    transition: all .3s;
}

.gz-pagination .pagination li a:hover {
    background: var(--gz-primary-dark);
    color: #fff;
}

.gz-pagination .pagination li.active span {
    background: #999;
}

.gz-pagination .pagination li.disabled span {
    background: #ccc;
}

.gz-pagination .pagination li.disabled a,
.gz-pagination .pagination li.disabled a:hover {
    background: #ccc;
    color: #fff;
}

/* --- Article Detail --- */
.gz-detail {
    padding: 30px 0;
}

.gz-detail-content {
    background: #fff;
    border-radius: var(--gz-radius);
    box-shadow: var(--gz-shadow);
    padding: 35px 40px;
}

.gz-detail-title {
    font-size: 26px;
    font-weight: bold;
    color: var(--gz-text);
    margin: 0 0 15px;
    line-height: 1.4;
}

.gz-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gz-border);
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--gz-text-muted);
}

.gz-detail-meta i {
    margin-right: 5px;
    color: var(--gz-primary);
}

.gz-detail-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gz-text);
}

.gz-detail-text p {
    margin-bottom: 15px;
}

.gz-detail-text img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
}

.gz-detail-tags {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gz-border);
}

.gz-detail-tags .gz-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gz-bg-gray);
    color: var(--gz-text-light);
    border-radius: 4px;
    margin: 3px 5px 3px 0;
    font-size: 13px;
    transition: all .3s;
}

.gz-detail-tags .gz-tag:hover {
    background: var(--gz-primary);
    color: #fff;
}

/* Prev/Next */
.gz-prev-next {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--gz-border);
    margin-top: 20px;
    font-size: 14px;
}

.gz-prev-next a {
    color: var(--gz-text-light);
    max-width: 48%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gz-prev-next a:hover {
    color: var(--gz-primary);
}

/* --- Download Item --- */
.gz-download-item {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--gz-border);
    position: relative;
}

.gz-download-item:last-child {
    border-bottom: none;
}

.gz-download-info {
    flex: 1;
    min-width: 0;
}

.gz-download-title {
    font-size: 16px;
    color: var(--gz-text);
    margin: 0 0 5px;
}

.gz-download-title a {
    color: inherit;
}

.gz-download-item:hover .gz-download-title a {
    color: var(--gz-primary);
}

.gz-download-meta {
    font-size: 13px;
    color: var(--gz-text-muted);
}

.gz-download-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gz-primary);
    color: #fff !important;
    border-radius: 20px;
    font-size: 14px;
    transition: all .3s;
    flex-shrink: 0;
    margin-left: 20px;
}

.gz-download-btn:hover {
    background: var(--gz-primary-dark);
    color: #fff !important;
}

.gz-download-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--gz-primary);
    transition: width .3s;
    width: 0;
}

.gz-download-item:hover .gz-download-progress {
    width: 100%;
}

/* --- Comment Section --- */
.gz-comments {
    margin-top: 30px;
}

.gz-comments-title {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gz-primary);
    margin-bottom: 20px;
}

.gz-comment-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid var(--gz-border);
}

.gz-comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.gz-comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gz-comment-body {
    flex: 1;
}

.gz-comment-author {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.gz-comment-text {
    font-size: 14px;
    color: var(--gz-text-light);
    line-height: 1.6;
}

.gz-comment-time {
    font-size: 12px;
    color: var(--gz-text-muted);
    margin-top: 5px;
}

/* --- CTA --- */
.gz-cta {
    background: var(--gz-primary);
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.gz-cta h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 8px;
}

.gz-cta h2 {
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    opacity: .85;
}

/* --- Footer --- */
.gz-footer {
    background: var(--gz-bg-dark);
    color: #999;
    padding-top: 40px;
}

.gz-footer-main {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.gz-footer-col {
    width: 220px;
}

.gz-footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 20px;
}

.gz-footer-col a,
.gz-footer-col li {
    display: block;
    font-size: 14px;
    color: #999;
    line-height: 28px;
    transition: color .3s;
}

.gz-footer-col a:hover {
    color: #fff;
}

.gz-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gz-footer-contact li {
    padding-left: 20px;
    position: relative;
}

.gz-footer-contact li::before {
    content: "\f0e0";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    color: var(--gz-primary);
    font-size: 12px;
}

.gz-footer-bottom {
    text-align: center;
    padding: 15px 0;
    font-size: 13px;
    color: #666;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.gz-footer-bottom a {
    color: #666;
    margin: 0 15px;
}

.gz-footer-bottom a:hover {
    color: #fff;
}

.gz-footer-beian {
    color: #666;
}

/* --- Float Sidebar --- */
.gz-float {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    width: 160px;
    background: var(--gz-primary);
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    box-shadow: -2px 0 15px rgba(0,0,0,.15);
}

.gz-float-section {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255,255,255,.2);
    text-align: center;
}

.gz-float-section:last-child {
    border-bottom: none;
}

.gz-float-title {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.gz-float-group {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.gz-float-label {
    color: rgba(255,255,255,.85);
    font-size: 12px;
    margin-bottom: 5px;
}

.gz-float-group a img {
    width: 28px;
    height: 28px;
}

.gz-float-phone {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.gz-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 36px;
    color: #fff;
    background: rgba(255,255,255,.15);
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s;
}

.gz-float-btn:hover {
    background: rgba(255,255,255,.3);
}

.gz-back-top {
    margin-top: 4px;
}

/* --- Load More Button --- */
.gz-loadmore {
    text-align: center;
    padding: 30px 0;
}

.gz-loadmore-btn {
    display: inline-block;
    padding: 10px 40px;
    border: 2px solid var(--gz-primary);
    color: var(--gz-primary);
    font-size: 14px;
    border-radius: 25px;
    transition: all .3s;
    background: #fff;
    cursor: pointer;
}

.gz-loadmore-btn:hover {
    background: var(--gz-primary);
    color: #fff;
}

.gz-loadmore-nodata {
    text-align: center;
    padding: 30px 0;
    color: var(--gz-text-muted);
    font-size: 14px;
}

.gz-loadmore-nodata::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gz-border);
    vertical-align: middle;
    margin-right: 15px;
}

.gz-loadmore-nodata::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gz-border);
    vertical-align: middle;
    margin-left: 15px;
}

/* --- Search Page --- */
.gz-search-header {
    padding: 30px 0;
}

.gz-search-header h2 {
    font-size: 22px;
    margin: 0;
}

.gz-search-header h2 em {
    font-style: normal;
    color: var(--gz-primary);
}

/* --- User Center --- */
.gz-user-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: var(--gz-radius);
    box-shadow: var(--gz-shadow);
    margin-bottom: 20px;
}

.gz-user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.gz-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gz-user-name {
    font-size: 16px;
    font-weight: bold;
}

.gz-user-bio {
    font-size: 13px;
    color: var(--gz-text-muted);
    margin-top: 3px;
}

/* --- Channel Page --- */
.gz-channel-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gz-channel-card {
    width: calc(33.333% - 14px);
    padding: 25px;
    background: #fff;
    border-radius: var(--gz-radius);
    box-shadow: var(--gz-shadow);
    text-align: center;
    transition: all .3s;
}

.gz-channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(230,0,18,.15);
}

.gz-channel-card .gz-channel-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--gz-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.gz-channel-card h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 8px;
}

.gz-channel-card p {
    font-size: 13px;
    color: var(--gz-text-muted);
    margin: 0;
}

/* --- Related Articles --- */
.gz-related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

.gz-related-item {
    width: calc(25% - 15px);
}

.gz-related-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
}

.gz-related-item h4 {
    font-size: 14px;
    margin: 0;
    font-weight: normal;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gz-related-item h4 a {
    color: var(--gz-text);
}

.gz-related-item h4 a:hover {
    color: var(--gz-primary);
}

/* --- Page Layout --- */
.gz-main {
    min-height: 400px;
}

.gz-layout {
    display: flex;
    gap: 30px;
    padding: 30px 0;
}

.gz-layout-content {
    flex: 1;
    min-width: 0;
}

.gz-layout-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.gz-layout-full {
    padding: 30px 0;
}

/* --- Special/Tag Page --- */
.gz-special-banner {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.gz-special-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
}

.gz-special-banner h1 {
    position: relative;
    z-index: 1;
    font-size: 30px;
    font-weight: bold;
}

/* --- Responsive --- */
@media (max-width: 1199px) {
    .gz-wrap {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .gz-topbar .gz-wrap {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 15px;
    }

    .gz-topbar {
        height: auto;
    }

    /* Hamburger visible */
    .gz-menu-toggle {
        display: flex;
    }

    /* Mobile nav: full-width dropdown */
    .gz-nav {
        display: none;
        width: 100%;
        height: auto;
        order: 10;
        border-top: 1px solid var(--gz-border);
    }

    .gz-nav.gz-nav-open {
        display: block;
    }

    .gz-nav > ul {
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .gz-nav > ul > li {
        height: auto;
        width: 100%;
        border-bottom: 1px solid var(--gz-border);
    }

    .gz-nav > ul > li > a {
        height: auto;
        padding: 12px 15px;
        width: 100%;
        font-size: 14px;
    }

    .gz-nav > ul > li.active > a::after {
        display: none;
    }

    .gz-nav .gz-dropdown {
        display: none;
        position: static;
        box-shadow: none;
        border-top: none;
        background: var(--gz-bg-gray);
    }

    .gz-nav > ul > li.gz-dropdown-open .gz-dropdown {
        display: block;
    }

    .gz-dropdown a {
        padding-left: 35px;
    }

    .gz-dropdown-group > a .fa {
        transition: transform .3s;
    }

    .gz-dropdown-group.gz-sub-open > a .fa {
        transform: rotate(90deg);
    }

    .gz-dropdown-sub {
        display: none;
        position: static;
        box-shadow: none;
        border-top: none;
        background: rgba(0,0,0,.03);
    }

    .gz-dropdown-group.gz-sub-open > .gz-dropdown-sub {
        display: block;
    }

    .gz-dropdown-sub a {
        padding-left: 50px;
    }

    .gz-topbar-phone {
        display: none;
    }

    /* Banner responsive */
    .gz-banner .swiper-slide {
        height: 400px;
    }

    .gz-layout {
        flex-direction: column;
    }

    .gz-layout-sidebar {
        width: 100%;
    }

    .gz-news-card {
        width: 100%;
    }

    .gz-product-card {
        width: calc(33.333% - 14px);
    }

    .gz-solution-grid {
        flex-wrap: wrap;
    }

    .gz-solution-card {
        max-width: calc(50% - 10px);
    }

    .gz-channel-card {
        width: calc(50% - 10px);
    }

    .gz-related-item {
        width: calc(50% - 10px);
    }

    .gz-footer-main {
        flex-wrap: wrap;
        gap: 20px;
    }

    .gz-footer-col {
        width: calc(50% - 10px);
    }

    .gz-float {
        display: none;
    }
}

@media (max-width: 767px) {
    .gz-topbar .gz-wrap {
        flex-wrap: wrap;
        height: auto;
    }

    .gz-logo img {
        height: 40px;
    }

    .gz-topbar-phone {
        display: none;
    }

    .gz-banner .swiper-slide {
        height: 220px;
    }

    .gz-product-card {
        width: calc(50% - 10px);
    }

    .gz-solution-card {
        max-width: 100%;
    }

    .gz-news-card {
        flex-direction: column;
    }

    .gz-news-thumb {
        width: 100%;
        height: 150px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .gz-article-card {
        flex-direction: column;
    }

    .gz-article-thumb {
        width: 100%;
        height: 160px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .gz-footer-col {
        width: calc(50% - 10px);
    }

    .gz-channel-card {
        width: 100%;
    }

    .gz-related-item {
        width: calc(50% - 10px);
    }

    .gz-detail-content {
        padding: 20px;
    }

    .gz-detail-title {
        font-size: 20px;
    }

    .gz-page-header {
        padding: 25px 0;
    }

    .gz-page-header h1 {
        font-size: 22px;
    }

    .gz-cta h1 {
        font-size: 18px;
    }

    .gz-tabs-nav a {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gz-product-card {
        width: 100%;
    }

    .gz-footer-col {
        width: 100%;
    }

    .gz-related-item {
        width: 100%;
    }

    .gz-prev-next {
        flex-direction: column;
        gap: 10px;
    }

    .gz-partner-item {
        width: calc(50% - 10px);
    }
}

/* --- Bootstrap Compatibility --- */
.gzglzq-theme .panel {
    border-radius: var(--gz-radius);
    border: none;
    box-shadow: var(--gz-shadow);
}

.gzglzq-theme .panel-heading {
    border-bottom: none;
    background: var(--gz-bg-gray);
    border-radius: var(--gz-radius) var(--gz-radius) 0 0;
}

.gzglzq-theme .panel-title {
    font-weight: bold;
}

.gzglzq-theme .panel-body {
    padding: 15px;
}

/* --- CMS Specific Overrides --- */
.gzglzq-theme .category-title {
    display: none;
}

.gzglzq-theme .tabs-wrapper .tabs-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.gzglzq-theme .tabs-wrapper .tabs-group .title {
    font-weight: bold;
    font-size: 14px;
    margin-right: 15px;
    line-height: 30px;
    flex-shrink: 0;
}

.gzglzq-theme .tabs-wrapper .tabs-group .content {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gzglzq-theme .tabs-wrapper .tabs-group .content li a {
    display: inline-block;
    padding: 4px 14px;
    font-size: 14px;
    color: var(--gz-text-light);
    border-radius: 4px;
    transition: all .3s;
}

.gzglzq-theme .tabs-wrapper .tabs-group .content li.active a,
.gzglzq-theme .tabs-wrapper .tabs-group .content li a:hover {
    background: var(--gz-primary);
    color: #fff;
}

.gzglzq-theme .category-order {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gzglzq-theme .category-order li a {
    display: inline-block;
    padding: 4px 12px;
    font-size: 14px;
    color: var(--gz-text-light);
    border-radius: 4px;
    transition: all .3s;
}

.gzglzq-theme .category-order li a:hover,
.gzglzq-theme .category-order li a.active {
    background: var(--gz-primary);
    color: #fff;
}

/* --- Social Share Override --- */
.gzglzq-theme .social-share {
    display: flex;
    gap: 10px;
}

.gzglzq-theme .social-share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: all .3s;
}

.gzglzq-theme .social-share .icon-weibo {
    background: #E6162D;
}

.gzglzq-theme .social-share .icon-qq {
    background: #51b7ff;
}

.gzglzq-theme .social-share .icon-qzone {
    background: #faa64b;
}

.gzglzq-theme .social-share .icon-wechat {
    background: #7bc549;
}

/* --- Form overrides --- */
.gzglzq-theme .form-control {
    border: 2px solid var(--gz-border);
    border-radius: 6px;
    transition: border-color .3s;
}

.gzglzq-theme .form-control:focus {
    border-color: var(--gz-primary);
    box-shadow: 0 0 0 3px rgba(230,0,18,.1);
}

.gzglzq-theme .btn-primary {
    background: var(--gz-primary);
    border-color: var(--gz-primary);
    border-radius: 6px;
}

.gzglzq-theme .btn-primary:hover {
    background: var(--gz-primary-dark);
    border-color: var(--gz-primary-dark);
}

/* --- Layer popup overrides --- */
.gzglzq-theme .layui-layer-title {
    background: var(--gz-primary);
    color: #fff;
    border: none;
}
