/* 归档页样式 - 复用文章列表页的样式 */
.kiwi-archive-page {
    font-family: "Microsoft YaHei", "SimSun", Arial, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    padding-bottom: 40px;
}

.kiwi-banner {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.banner-content {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    max-width: 90%;
}

.banner-title {
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.banner-subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    font-weight: 400;
}

@media (max-width: 767.98px) {
    .kiwi-banner {
        height: 200px;
    }
    
    .banner-image {
        height: 200px;
        object-fit: cover;
    }
    
    .banner-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .banner-subtitle {
        font-size: 14px;
    }
    
    .banner-content {
        padding: 15px;
    }
}

.kiwi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.kiwi-sidebar {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 20px;
}

.sidebar-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.nav-button {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.nav-button.primary {
    background-color: #4CAF50;
    color: #fff;
}

.nav-button.primary:hover {
    background-color: #45a049;
    color: #fff;
    text-decoration: none;
}

.nav-button i {
    margin-right: 10px;
    font-size: 18px;
}

.nav-button span {
    flex: 1;
}

.nav-submenu {
    padding-left: 20px;
}

.nav-sub-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    background-color: #f9f9f9;
}

.nav-sub-item:hover {
    background-color: #e8f5e9;
    color: #4CAF50;
    text-decoration: none;
}

.nav-sub-item i {
    margin-right: 8px;
    font-size: 12px;
    color: #999;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.product-item {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.product-item:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-3px);
}

.product-image {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background-color: #f0f0f0;
    margin-bottom: 8px;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image .no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 24px;
}

.product-title {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

.contact-section {
    margin-top: 30px;
}

.contact-box {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.contact-title {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.contact-phone {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.6;
    padding-top: 5px;
}

.kiwi-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #45a049;
    text-decoration: none;
}

.breadcrumb-link i {
    margin-right: 5px;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb-current {
    color: #666;
}

.archive-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #4CAF50;
}

.archive-title {
    font-size: 24px;
    font-weight: normal;
    color: #333;
    margin-bottom: 15px;
}

.archive-title span {
    color: #4CAF50;
}

.archive-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.archive-count {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background-color: #e8f5e9;
    color: #4CAF50;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.archive-count i {
    margin-right: 8px;
}

.articles-list {
    margin-top: 20px;
}

.article-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.article-item:last-child {
    border-bottom: none;
}

.article-item:hover {
    background-color: #fafafa;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 6px;
}

.article-thumbnail {
    width: 200px;
    min-width: 200px;
    margin-right: 20px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.article-thumbnail a {
    display: block;
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.article-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-item:hover .article-thumbnail img {
    transform: scale(1.05);
}

.no-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 48px;
    background-color: #f5f5f5;
}

.article-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 文章列表页的标题 */
.article-item .article-title,
.articles-list .article-title {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 12px;
    line-height: 1.5;
}

.article-item .article-title a,
.articles-list .article-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-item .article-title a:hover,
.articles-list .article-title a:hover {
    color: #4CAF50;
    text-decoration: none;
}

.article-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #999;
}

.article-date {
    display: flex;
    align-items: center;
}

.article-date i {
    margin-right: 5px;
}

.pagination-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pagination-wrapper .pagination {
    justify-content: center;
}

.pagination-wrapper .page-link {
    color: #4CAF50;
    border-color: #e0e0e0;
}

.pagination-wrapper .page-link:hover {
    background-color: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}

.pagination-wrapper .page-item.active .page-link {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: #fff;
}

.no-articles {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-articles i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #ddd;
}

.no-articles h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #666;
}

.no-articles p {
    font-size: 14px;
    color: #999;
}

@media (max-width: 991.98px) {
    .kiwi-sidebar {
        margin-top: 30px;
        position: static;
        padding: 15px;
    }
    
    .sidebar-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .nav-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .nav-button i {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-image {
        padding-top: 75%;
    }
    
    .product-title {
        font-size: 12px;
    }
    
    .nav-submenu {
        padding-left: 10px;
    }
    
    .nav-sub-item {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .contact-box {
        padding: 15px;
    }
    
    .contact-title {
        font-size: 13px;
    }
    
    .contact-phone {
        font-size: 12px;
    }
    
    .article-item {
        flex-direction: column;
    }
    
    .article-thumbnail {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .article-thumbnail a {
        padding-top: 56.25%;
    }
}

@media (max-width: 767.98px) {
    .kiwi-content {
        padding: 15px;
    }
    
    .kiwi-sidebar {
        padding: 12px;
    }
    
    .sidebar-section {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .nav-button {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .product-image {
        padding-top: 75%;
    }
    
    .product-title {
        font-size: 11px;
    }
    
    .nav-sub-item {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .contact-box {
        padding: 12px;
    }
    
    .contact-title {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .contact-phone {
        font-size: 11px;
    }
    
    .archive-title {
        font-size: 20px;
    }
    
    .article-title {
        font-size: 16px;
    }
    
    .article-excerpt {
        font-size: 13px;
    }
}





/* 文章详情页样式 */
.kiwi-article-page {
    font-family: "Microsoft YaHei", "SimSun", Arial, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    padding-bottom: 40px;
}

/* 通用样式已在文件开头定义，此处不再重复 */

.breadcrumb-nav {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #45a049;
    text-decoration: none;
}

.breadcrumb-link i {
    margin-right: 5px;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb-current {
    color: #666;
}

/* 文章内容 */
.article-main {
    margin-top: 20px;
}

.article-header-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.article-title-meta-wrapper {
    flex: 1;
    min-width: 0;
}

/* 文章详情页的标题 */
.article-main .article-title,
.article-header .article-title,
.article-header-wrapper .article-title {
    font-size: 24px;
    font-weight: normal;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.5;
}



.article-thumbnail-small {
    width: 120px;
    min-width: 120px;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f0f0f0;
    flex-shrink: 0;
    align-self: flex-start;
}

.article-thumbnail-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-header {
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
    font-size: 13px;
    color: #999;
}

.meta-item {
    display: flex;
    align-items: center;
}

.meta-item i {
    margin-right: 5px;
}

.meta-item a {
    color: #4CAF50;
    text-decoration: none;
}

.meta-item a:hover {
    text-decoration: underline;
}

/* 移除大图样式，因为缩略图已移到标题右侧 */

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.article-content h2 {
    font-size: 22px;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
}

.article-content h3 {
    font-size: 20px;
}

.article-content h4 {
    font-size: 18px;
}

/* 列表样式 */
.article-content ul,
.article-content ol {
    margin: 1.5em 0;
    padding-left: 2em;
    line-height: 1.8;
}

.article-content ul {
    list-style-type: disc;
}

.article-content ol {
    list-style-type: decimal;
}

.article-content li {
    margin: 0.5em 0;
    line-height: 1.8;
}

.article-content ul ul,
.article-content ol ol,
.article-content ul ol,
.article-content ol ul {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.article-content ul ul {
    list-style-type: circle;
}

.article-content ul ul ul {
    list-style-type: square;
}

/* 表格样式 */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.article-content th,
.article-content td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.article-content th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2d3748;
}

.article-content tr:nth-child(even) {
    background-color: #f8f9fa;
}

.article-content tr:hover {
    background-color: #f0f7ff;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tags-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.tag-link {
    display: inline-block;
    padding: 5px 12px;
    background-color: #e8f5e9;
    color: #4CAF50;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
}

/* 上一篇下一篇导航 */
.article-navigation {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.nav-prev,
.nav-next {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.nav-prev:hover,
.nav-next:hover {
    background-color: #e8f5e9;
    border-color: #4CAF50;
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}

.nav-prev.disabled,
.nav-next.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.nav-prev {
    text-align: left;
}

.nav-next {
    text-align: right;
    flex-direction: row;
    justify-content: flex-end;
}

.nav-next .nav-content {
    order: 1;
}

.nav-icon-right {
    order: 2;
    margin-left: 15px;
    margin-right: 0;
}

.nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    flex-shrink: 0;
    margin: 0 15px;
}

.nav-prev:hover .nav-icon,
.nav-next:hover .nav-icon {
    background-color: #45a049;
    transform: scale(1.1);
}

.nav-content {
    flex: 1;
}

.nav-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-title {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

.nav-prev:hover .nav-title,
.nav-next:hover .nav-title {
    color: #4CAF50;
}

/* 相关文章 - 文章详情页专用 */
.related-articles {
    margin-top: 40px;
    padding-top: 30px;
}

.related-articles .section-article-title {
    font-size: 20px;
    font-weight: normal;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4CAF50;
}

.related-articles .related-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles .related-list li {
    margin: 0;
}

.related-articles .related-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    gap: 12px;
}

.related-articles .related-item:hover {
    background-color: #fff;
    border-color: #4CAF50;
    text-decoration: none;
    color: inherit;
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.related-articles .related-image {
    width: 100px;
    min-width: 100px;
    height: 75px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f0f0f0;
    flex-shrink: 0;
}

.related-articles .related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-articles .related-item:hover .related-image img {
    transform: scale(1.05);
}

.related-articles .related-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 24px;
}

.related-articles .related-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.related-articles .related-title {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 6px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-articles .related-item:hover .related-title {
    color: #4CAF50;
}

.related-articles .related-excerpt {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-articles .related-meta {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.related-articles .related-date {
    display: flex;
    align-items: center;
}

.related-articles .related-date i {
    margin-right: 4px;
    font-size: 11px;
}

/* 侧边栏最新资讯列表样式 */
.latest-articles-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.latest-articles-list li {
    margin: 0;
}

.latest-article-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.latest-article-item:hover {
    background-color: #fff;
    border-color: #4CAF50;
    text-decoration: none;
    color: inherit;
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.latest-article-image {
    width: 80px;
    min-width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f0f0f0;
    flex-shrink: 0;
}

.latest-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.latest-article-title {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    margin: 0 0 6px 0;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-article-item:hover .latest-article-title {
    color: #4CAF50;
}

.latest-article-date {
    font-size: 11px;
    color: #999;
    line-height: 1.2;
}

/* 响应式设计 */
@media (max-width: 991.98px) {
    .kiwi-sidebar {
        margin-top: 30px;
        position: static;
    }
    
    /* 文章详情页标题在平板端 */
    .article-main .article-title,
    .article-header .article-title,
    .article-header-wrapper .article-title {
        font-size: 20px;
    }
    
    /* 相关阅读在平板端 */
    .related-articles .related-image {
        width: 80px;
        min-width: 80px;
        height: 60px;
    }
    
    .article-header-wrapper {
        flex-direction: column;
    }
    
    .article-title-meta-wrapper {
        width: 100%;
    }
    
    .article-thumbnail-small {
        width: 100%;
        min-width: 100%;
        height: auto;
        padding-top: 56.25%;
        position: relative;
        align-self: stretch;
        margin-top: 15px;
    }
    
    .article-thumbnail-small img {
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .article-navigation {
        flex-direction: row;
        gap: 15px;
    }
    
    .nav-prev,
    .nav-next {
        flex: 1;
        padding: 15px 12px;
        min-width: 0;
    }
    
    .nav-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
        margin: 0 10px;
    }
    
    .nav-label {
        font-size: 11px;
    }
    
    .nav-title {
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .kiwi-content {
        padding: 15px;
    }
    
    .kiwi-sidebar {
        padding: 12px;
    }
    
    .sidebar-section {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .nav-button {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .product-image {
        padding-top: 75%;
    }
    
    .product-title {
        font-size: 11px;
    }
    
    .latest-articles-list {
        gap: 8px;
    }
    
    .latest-article-item {
        padding: 6px;
        gap: 8px;
    }
    
    .latest-article-image {
        width: 50px;
        min-width: 50px;
        height: 38px;
    }
    
    .latest-article-title {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .latest-article-date {
        font-size: 9px;
    }
    
    .nav-submenu {
        padding-left: 8px;
    }
    
    .nav-sub-item {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .contact-box {
        padding: 12px;
    }
    
    .contact-title {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .contact-phone {
        font-size: 11px;
    }
    
    .article-header-wrapper {
        flex-direction: column;
    }
    
    .article-title-meta-wrapper {
        width: 100%;
    }
    
    .article-thumbnail-small {
        width: 100%;
        min-width: 100%;
        height: auto;
        padding-top: 56.25%;
        position: relative;
        align-self: stretch;
        margin-top: 15px;
    }
    
    .article-thumbnail-small img {
        position: absolute;
        top: 0;
        left: 0;
    }
    

    .article-main .article-title,
    .article-header .article-title,
    .article-header-wrapper .article-title {
        font-size: 18px;
    }
    
    .article-content {
        font-size: 14px;
    }
    
    .article-navigation {
        flex-direction: row;
        gap: 10px;
    }
    
    .nav-prev,
    .nav-next {
        flex: 1;
        padding: 12px 10px;
        min-width: 0;
    }
    
    .nav-prev {
        flex-direction: row;
    }
    
    .nav-next {
        flex-direction: row;
        justify-content: flex-end;
    }
    
    .nav-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin: 0 8px;
    }
    
    .nav-content {
        flex: 1;
        min-width: 0;
    }
    
    .nav-label {
        font-size: 10px;
    }
    
    .nav-title {
        font-size: 13px;
    }
    

    .related-articles .related-item {
        flex-direction: column;
        padding: 10px;
    }
    
    .related-articles .related-image {
        width: 100%;
        min-width: 100%;
        height: auto;
        padding-top: 56.25%;
        position: relative;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .related-articles .related-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .related-articles .related-content {
        width: 100%;
    }
    
    .related-articles .related-title {
        font-size: 14px;
    }
    
    .related-articles .related-excerpt {
        font-size: 11px;
    }
    
    .latest-article-item {
        flex-direction: row;
    }
}




/* 文章列表页样式 */
.kiwi-articles-page {
    font-family: "Microsoft YaHei", "SimSun", Arial, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    padding-bottom: 40px;
}

/* 通用样式已在文件开头定义，此处不再重复 */


.kiwi-articles-page .kiwi-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 
                0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

/* 标签列表样式 */
.tags-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-list li {
    margin: 0;
}

.tag-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background-color: #f9f9f9;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.tag-item:hover {
    background-color: #e8f5e9;
    color: #4CAF50;
    border-color: #4CAF50;
    text-decoration: none;
    transform: translateY(-2px);
}

.tag-item i {
    margin-right: 5px;
    font-size: 11px;
}

.product-item.placeholder {
    opacity: 0.5;
    pointer-events: none;
}

.articles-list-container {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.articles-list-container li {
    margin: 0;
}

/* 文章列表 */
.articles-list {
    margin-top: 20px;
}

.article-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    list-style: none;
}

.article-item:last-child {
    border-bottom: none;
}

.article-item:hover {
    background-color: transparent;
}

.article-item article {
    display: flex;
    width: 100%;
    gap: 20px;
    align-items: flex-start;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.article-item:hover article {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

/* 文章缩略图 */
.article-thumbnail {
    width: 200px;
    min-width: 200px;
    margin-right: 20px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f0f0f0;
    flex-shrink: 0;
}

.article-thumbnail a {
    display: block;
    width: 100%;
    padding-top: 60%;
    position: relative;
    overflow: hidden;
}

.article-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-item:hover .article-thumbnail img {
    transform: scale(1.05);
}

.article-info {
    flex: 1;
    min-width: 0;
}

.no-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 48px;
    background-color: #f5f5f5;
}

/* 文章信息 */
.article-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-title {

    font-weight: normal;
    margin-bottom: 12px;
    line-height: 1.5;
}

.article-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #4CAF50;
    text-decoration: none;
}

.article-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #999;
    margin-top: 8px;
}

.article-date {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #e9ecef;
    font-weight: 500;
    transition: all 0.3s ease;
}

.article-item:hover .article-date {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border-color: #4CAF50;
    color: #4CAF50;
}

.article-date i {
    margin-right: 6px;
    color: #4CAF50;
    font-size: 12px;
}

.article-item:hover .article-date i {
    color: #45a049;
}

/* 分页 */
.pagination-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pagination-wrapper .pagination {
    justify-content: center;
}

.pagination-wrapper .page-link {
    color: #4CAF50;
    border-color: #e0e0e0;
}

.pagination-wrapper .page-link:hover {
    background-color: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}

.pagination-wrapper .page-item.active .page-link {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: #fff;
}

/* 无文章 */
.no-articles {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-articles i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #ddd;
}

.no-articles h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #666;
}

.no-articles p {
    font-size: 14px;
    color: #999;
}

/* 响应式设计 */
@media (max-width: 991.98px) {
    .kiwi-sidebar {
        margin-top: 30px;
        position: static;
        padding: 15px;
    }
    
    .sidebar-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .nav-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .nav-button i {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .tags-list {
        gap: 6px;
    }
    
    .tag-item {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .nav-submenu {
        padding-left: 10px;
    }
    
    .nav-sub-item {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .contact-box {
        padding: 15px;
    }
    
    .contact-title {
        font-size: 13px;
    }
    
    .contact-phone {
        font-size: 12px;
    }
    
    .article-item article {
        flex-direction: column;
    }
    
    .article-thumbnail {
        width: 100%;
        min-width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .article-thumbnail a {
        padding-top: 50%;
    }
    
    .article-info {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .kiwi-content {
        padding: 15px;
    }
    
    .kiwi-sidebar {
        padding: 12px;
    }
    
    .sidebar-section {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .nav-button {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .tags-list {
        gap: 5px;
    }
    
    .tag-item {
        padding: 5px 8px;
        font-size: 11px;
    }
    
    .nav-sub-item {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .contact-box {
        padding: 12px;
    }
    
    .contact-title {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .contact-phone {
        font-size: 11px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .article-item article {
        flex-direction: column;
    }
    
    .article-thumbnail {
        width: 100%;
        min-width: 100%;
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .article-thumbnail a {
        padding-top: 50%;
    }
    
    .article-info {
        width: 100%;
    }
    
    .article-title {
        font-size: 16px;
    }
    
    .article-excerpt {
        font-size: 13px;
    }
    
    .article-date {
        padding: 5px 10px;
        font-size: 12px;
    }
}








/* 友情链接页样式 */
.kiwi-friend-links-page {
    font-family: "Microsoft YaHei", "SimSun", Arial, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    padding-bottom: 40px;
}

/* 通用样式已在文件开头定义，此处不再重复 */

.page-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #4CAF50;
}

.page-title {
    font-size: 24px;
    font-weight: normal;
    color: #333;
    margin-bottom: 10px;
}

.page-title span {
    color: #4CAF50;
}

.page-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.link-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.link-card:hover {
    border-color: #4CAF50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
    transform: translateY(-3px);
}

.link-header {
    margin-bottom: 15px;
}

.link-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.link-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-url {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
    word-break: break-all;
}

.link-url i {
    margin-right: 8px;
    color: #999;
    font-size: 12px;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.link-btn:hover {
    background-color: #45a049;
    color: #fff;
    text-decoration: none;
    transform: translateX(3px);
}

.link-btn i {
    margin-right: 5px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-state i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #ddd;
}

.empty-state h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #666;
}

.empty-state p {
    font-size: 14px;
    color: #999;
}

@media (max-width: 991.98px) {
    .kiwi-sidebar {
        margin-top: 30px;
        position: static;
        padding: 15px;
    }
    
    .sidebar-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .nav-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .nav-button i {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-image {
        padding-top: 75%;
    }
    
    .product-title {
        font-size: 12px;
    }
    
    .nav-submenu {
        padding-left: 10px;
    }
    
    .nav-sub-item {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .contact-box {
        padding: 15px;
    }
    
    .contact-title {
        font-size: 13px;
    }
    
    .contact-phone {
        font-size: 12px;
    }
    
    .links-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .kiwi-content {
        padding: 15px;
    }
    
    .kiwi-sidebar {
        padding: 12px;
    }
    
    .sidebar-section {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .nav-button {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .product-image {
        padding-top: 75%;
    }
    
    .product-title {
        font-size: 11px;
    }
    
    .nav-sub-item {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .contact-box {
        padding: 12px;
    }
    
    .contact-title {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .contact-phone {
        font-size: 11px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
}


/* 页面样式 - 复用文章详情页的样式 */
.kiwi-page {
    font-family: "Microsoft YaHei", "SimSun", Arial, sans-serif;
    background-color: #f5f5f5;
    padding-bottom: 40px;
}

/* 通用样式已在文件开头定义，此处不再重复 */

/* 页面特有的 contact-phone 样式 */
.kiwi-page .contact-phone {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.page-main {
    margin-top: 20px;
}

.page-title {
    font-size: 24px;
    font-weight: normal;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

.page-featured-image {
    margin-bottom: 25px;
    border-radius: 6px;
    overflow: hidden;
}

.page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.page-content p {
    margin-bottom: 15px;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

/* 列表样式 */
.page-content ul,
.page-content ol {
    margin: 1.5em 0;
    padding-left: 2em;
    line-height: 1.8;
}

.page-content ul {
    list-style-type: disc;
}

.page-content ol {
    list-style-type: decimal;
}

.page-content li {
    margin: 0.5em 0;
    line-height: 1.8;
}

.page-content ul ul,
.page-content ol ol,
.page-content ul ol,
.page-content ol ul {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.page-content ul ul {
    list-style-type: circle;
}

.page-content ul ul ul {
    list-style-type: square;
}

/* 表格样式 */
.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-content th,
.page-content td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.page-content th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2d3748;
}

.page-content tr:nth-child(even) {
    background-color: #f8f9fa;
}

.page-content tr:hover {
    background-color: #f0f7ff;
}

.page-content h2 {
    font-size: 22px;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
}

.page-content h3 {
    font-size: 20px;
}

.page-content h4 {
    font-size: 18px;
}

.page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #999;
}

.meta-item {
    display: flex;
    align-items: center;
}

.meta-item i {
    margin-right: 5px;
}

@media (max-width: 991.98px) {
    .kiwi-sidebar {
        margin-top: 30px;
        position: static;
    }
}

@media (max-width: 767.98px) {
    .kiwi-content {
        padding: 15px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .page-content {
        font-size: 14px;
    }
}




/* 产品详情页样式 */
.kiwi-product-page {
    font-family: "Microsoft YaHei", "SimSun", Arial, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    padding-bottom: 40px;
}

.kiwi-banner {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.banner-content {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    max-width: 90%;
}

.banner-title {
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.banner-subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    font-weight: 400;
}

@media (max-width: 767.98px) {
    .kiwi-banner {
        height: 200px;
    }
    
    .banner-image {
        height: 200px;
        object-fit: cover;
    }
    
    .banner-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .banner-subtitle {
        font-size: 14px;
    }
    
    .banner-content {
        padding: 15px;
    }
}

.kiwi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.kiwi-sidebar {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 20px;
}

.sidebar-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.nav-button {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.nav-button.primary {
    background-color: #4CAF50;
    color: #fff;
}

.nav-button.primary:hover {
    background-color: #45a049;
    color: #fff;
    text-decoration: none;
}

.nav-button i {
    margin-right: 10px;
    font-size: 18px;
}

.nav-button span {
    flex: 1;
}

.nav-submenu {
    padding-left: 20px;
}

.nav-sub-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    background-color: #f9f9f9;
}

.nav-sub-item:hover {
    background-color: #e8f5e9;
    color: #4CAF50;
    text-decoration: none;
}

.nav-sub-item i {
    margin-right: 8px;
    font-size: 12px;
    color: #999;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.product-item {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.product-item:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-3px);
}

.product-image {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background-color: #f0f0f0;
    margin-bottom: 8px;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image .no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 24px;
}

/* 侧边栏推荐产品标题 */
.sidebar-section .product-item .product-title,
.sidebar-section .product-title {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    margin-bottom: 5px;
}

.product-price {
    font-size: 12px;
    color: #e74c3c;
    font-weight: 600;
    text-align: center;
}

.contact-section {
    margin-top: 30px;
}

.contact-box {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.contact-title {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.contact-phone {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.6;
    padding-top: 5px;
}

.kiwi-content {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #45a049;
    text-decoration: none;
}

.breadcrumb-link i {
    margin-right: 5px;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb-current {
    color: #666;
}

.product-main {
    margin-top: 20px;
}

/* 主内容区域的产品标题 */
.product-main .product-title,
.product-header .product-title {
    font-size: 24px;
    font-weight: normal;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-meta {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.product-price-section {
    margin-bottom: 15px;
}

.current-price {
    font-size: 28px;
    color: #e74c3c;
    font-weight: 600;
    margin-right: 15px;
}

.original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.product-info-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background-color: #e9ecef;
    color: #666;
}

.meta-item i {
    color: #999;
    font-size: 12px;
}

/* 产品图片轮播样式 */
.product-images-carousel {
    margin-bottom: 40px;
}

.carousel-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f8f9fa;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%; /* 调整为更小的比例 */
    overflow: hidden;
    max-width: 800px; /* PC端最大宽度限制 */
    margin: 0 auto;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: #4CAF50;
    border-color: #4CAF50;
    width: 24px;
    border-radius: 6px;
}

.carousel-thumbnails {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.carousel-thumbnails .thumbnail-item {
    width: 80px;
    height: 80px;
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    padding: 0;
    position: relative;
}

.carousel-thumbnails .thumbnail-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}

.carousel-thumbnails .thumbnail-item:hover::after {
    background: rgba(0,0,0,0.1);
}

.carousel-thumbnails .thumbnail-item.active {
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.carousel-thumbnails .thumbnail-item:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

.carousel-thumbnails .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-submenu-list li {
    margin: 0;
}

.products-grid-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.products-grid-list li {
    margin: 0;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    margin: 0;
}

.related-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.related-grid li {
    margin: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: #4CAF50;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.product-content p {
    margin-bottom: 12px;
    text-align: justify;
}

.product-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 15px 0;
    border: 1px solid #e0e0e0;
}

.product-content h2,
.product-content h3,
.product-content h4 {
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c3e50;
}

.product-content h2 {
    font-size: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
}

.product-content h3 {
    font-size: 18px;
}

.product-content h4 {
    font-size: 16px;
}

/* 产品详细信息样式 */
.product-details-section {
    margin-bottom: 40px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.product-details-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
}

.product-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.detail-label i {
    color: #4CAF50;
    font-size: 13px;
}

.detail-value {
    font-size: 14px;
    color: #333;
}

.stock-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
}

.stock-badge.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.stock-badge.out-of-stock {
    background: #ffebee;
    color: #c62828;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
}

.status-badge.status-in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge.status-out-stock {
    background: #ffebee;
    color: #c62828;
}

.status-badge.status-pre-order {
    background: #fff3e0;
    color: #e65100;
}

.product-specifications {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.spec-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    gap: 15px;
}

.spec-key {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    min-width: 100px;
    flex-shrink: 0;
}

.spec-value {
    font-size: 14px;
    color: #333;
    flex: 1;
}

.product-specifications {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.spec-title {
    font-size: 18px;
    font-weight: normal;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4CAF50;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid #eee;
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-key {
    width: 30%;
    padding: 12px;
    background-color: #f5f5f5;
    font-weight: 600;
    color: #666;
}

.spec-value {
    padding: 12px;
    color: #333;
}

/* 内容列表样式 - 与文章页面不同的样式 */
.product-content ul,
.product-content ol {
    margin: 1.2em 0;
    padding-left: 1.8em;
    line-height: 1.7;
}

.product-content ul {
    list-style-type: square;
}

.product-content ol {
    list-style-type: decimal;
}

.product-content li {
    margin: 0.4em 0;
    line-height: 1.7;
    color: #555;
}

.product-content ul ul,
.product-content ol ol,
.product-content ul ol,
.product-content ol ul {
    margin-top: 0.4em;
    margin-bottom: 0.4em;
}

.product-content ul ul {
    list-style-type: circle;
}

.product-content ul ul ul {
    list-style-type: disc;
}

/* 内容表格样式 */
.product-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-content th,
.product-content td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.product-content th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2d3748;
}

.product-content tr:nth-child(even) {
    background-color: #f8f9fa;
}

.product-content tr:hover {
    background-color: #f0f7ff;
}

/* 规格表格增强样式 */
.spec-table {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.spec-table tr:hover {
    background-color: #f0f7ff;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tags-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.tag-link {
    display: inline-block;
    padding: 5px 12px;
    background-color: #e8f5e9;
    color: #4CAF50;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
}

/* 相关详情页专用 */
.related-products {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.related-products .related-products-title {
    font-size: 20px;
    font-weight: normal;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4CAF50;
}

.related-products .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-products .related-grid li {
    margin: 0;
}

.related-products .related-item {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.related-products .related-item:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.related-products .related-image {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background-color: #f0f0f0;
    margin-bottom: 10px;
}

.related-products .related-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-products .related-image .no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 24px;
}

.related-products .related-title {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
}

.related-products .related-price {
    font-size: 16px;
    color: #e74c3c;
    font-weight: 600;
}

.related-products .related-item:hover .related-title {
    color: #4CAF50;
}

@media (max-width: 991.98px) {
    .kiwi-sidebar {
        margin-top: 30px;
        position: static;
        padding: 15px;
    }
    
    .sidebar-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .nav-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .nav-button i {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .products-grid-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-image {
        padding-top: 75%;
    }
    
    .product-title {
        font-size: 12px;
    }
    
    .nav-submenu {
        padding-left: 10px;
    }
    
    .nav-sub-item {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .contact-box {
        padding: 15px;
    }
    
    .contact-title {
        font-size: 13px;
    }
    
    .contact-phone {
        font-size: 12px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 轮播响应式样式 */
@media (max-width: 991.98px) {
    .carousel-wrapper {
        padding-top: 70%;
        max-width: 100%; /* 移动端取消最大宽度限制 */
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-thumbnails .thumbnail-item {
        width: 70px;
        height: 70px;
    }
    
    .product-details-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .carousel-wrapper {
        padding-top: 65%;
        max-width: 100%; /* 移动端取消最大宽度限制 */
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .carousel-prev {
        left: 8px;
    }
    
    .carousel-next {
        right: 8px;
    }
    
    .carousel-indicators {
        bottom: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 20px;
    }
    
    .carousel-thumbnails {
        gap: 8px;
        padding: 8px;
    }
    
    .carousel-thumbnails .thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    .product-details-section {
        padding: 20px;
    }
    
    .product-details-title,
    .related-products-title {
        font-size: 16px;
    }
    
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .detail-item {
        padding: 12px;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .spec-item {
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .spec-key {
        min-width: auto;
    }
    .kiwi-content {
        padding: 15px;
    }
    
    .kiwi-sidebar {
        padding: 12px;
    }
    
    .sidebar-section {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .nav-button {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .products-grid-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .product-image {
        padding-top: 75%;
    }
    
    .product-title {
        font-size: 11px;
    }
    
    .nav-sub-item {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .contact-box {
        padding: 12px;
    }
    
    .contact-title {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .contact-phone {
        font-size: 11px;
    }
    
    .product-title {
        font-size: 18px;
    }
    
    .current-price {
        font-size: 24px;
    }
    
    .product-content {
        font-size: 14px;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}


/* 产品列表页样式 */
.kiwi-products-page {
    font-family: "Microsoft YaHei", "SimSun", Arial, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    padding-bottom: 40px;
}

.kiwi-banner {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.banner-content {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    max-width: 90%;
}

.banner-title {
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.banner-subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    font-weight: 400;
}

@media (max-width: 767.98px) {
    .kiwi-banner {
        height: 200px;
    }
    
    .banner-image {
        height: 200px;
        object-fit: cover;
    }
    
    .banner-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .banner-subtitle {
        font-size: 14px;
    }
    
    .banner-content {
        padding: 15px;
    }
}

.kiwi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.kiwi-sidebar {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 20px;
}

.sidebar-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.nav-button {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.nav-button.primary {
    background-color: #4CAF50;
    color: #fff;
}

.nav-button.primary:hover {
    background-color: #45a049;
    color: #fff;
    text-decoration: none;
}

.nav-button i {
    margin-right: 10px;
    font-size: 18px;
}

.nav-button span {
    flex: 1;
}

.nav-submenu {
    padding-left: 20px;
}

.nav-sub-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    background-color: #f9f9f9;
}

.nav-sub-item:hover {
    background-color: #e8f5e9;
    color: #4CAF50;
    text-decoration: none;
}

.nav-sub-item i {
    margin-right: 8px;
    font-size: 12px;
    color: #999;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.product-item {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.product-item:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-3px);
}

.product-image {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background-color: #f0f0f0;
    margin-bottom: 8px;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image .no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 24px;
}

.product-title {
    font-size: 12px;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    margin-bottom: 5px;
}

.product-price {
    font-size: 12px;
    color: #e74c3c;
    font-weight: 600;
    text-align: center;
}

.contact-section {
    margin-top: 30px;
}

.contact-box {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.contact-title {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.contact-phone {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.6;
    padding-top: 5px;
}

.kiwi-content {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #45a049;
    text-decoration: none;
}

.breadcrumb-link i {
    margin-right: 5px;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb-current {
    color: #666;
}

.products-list {
    margin-top: 20px;
}

.products-grid-main {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.products-grid-main li {
    margin: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-thumbnail {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
}

.product-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-thumbnail img {
    transform: scale(1.05);
}

.product-thumbnail .no-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 48px;
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 14px;
    font-weight: normal;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 18px;
    color: #e74c3c;
    font-weight: 600;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.pagination-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pagination-wrapper .pagination {
    justify-content: center;
}

.pagination-wrapper .page-link {
    color: #4CAF50;
    border-color: #e0e0e0;
}

.pagination-wrapper .page-link:hover {
    background-color: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}

.pagination-wrapper .page-item.active .page-link {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: #fff;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-products i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #ddd;
}

.no-products h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #666;
}

.no-products p {
    font-size: 14px;
    color: #999;
}

@media (max-width: 991.98px) {
    .kiwi-sidebar {
        margin-top: 30px;
        position: static;
        padding: 15px;
    }
    
    .sidebar-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .nav-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .nav-button i {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-image {
        padding-top: 75%;
    }
    
    .product-title {
        font-size: 12px;
    }
    
    .nav-submenu {
        padding-left: 10px;
    }
    
    .nav-sub-item {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .contact-box {
        padding: 15px;
    }
    
    .contact-title {
        font-size: 13px;
    }
    
    .contact-phone {
        font-size: 12px;
    }
    
    .products-grid-main {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 767.98px) {
    .kiwi-content {
        padding: 15px;
    }
    
    .kiwi-sidebar {
        padding: 12px;
    }
    
    .sidebar-section {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .nav-button {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .product-image {
        padding-top: 75%;
    }
    
    .product-title {
        font-size: 11px;
    }
    
    .nav-sub-item {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .contact-box {
        padding: 12px;
    }
    
    .contact-title {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .contact-phone {
        font-size: 11px;
    }
    
    .products-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .current-price {
        font-size: 16px;
    }
}




.kiwi-friend-links {
    background-color: #f5f5f5;
    padding-bottom: 30px;
}

.friend-links-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 顶部标题区：与最新文章区块风格一致 */
.friend-links-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 10px 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f7ff 45%, #e6f5ff 100%);
    box-shadow: 0 6px 18px rgba(15, 79, 164, 0.08);
}

.friend-links-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.friend-links-title-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: radial-gradient(circle at 20% 20%, #4caf50 0%, #2e7d32 40%, #0d47a1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 18px rgba(76, 175, 80, 0.35);
}

.friend-links-title-icon i {
    font-size: 20px;
}

.friend-links-title-text {
    display: flex;
    flex-direction: column;
}

.friend-links-title-text strong {
    font-size: 22px;
    color: #222;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.friend-links-title-text span {
    font-size: 13px;
    color: #8a9bb1;
}

.friend-links-view-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #0d47a1;
    background-color: #ffffff;
    border: 1px solid rgba(13, 71, 161, 0.12);
    box-shadow: 0 4px 10px rgba(13, 71, 161, 0.12);
    text-decoration: none;
    transition: all 0.25s ease;
}

.friend-links-view-more i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.friend-links-view-more:hover {
    color: #0d47a1;
    border-color: rgba(13, 71, 161, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(13, 71, 161, 0.22);
    text-decoration: none;
}

.friend-links-view-more:hover i {
    transform: translateX(3px);
}

/* 链接网格：白色卡片风格 */
.friend-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 16px 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.friend-link-item {
    display: block;
    padding: 12px 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
    color: #222;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid #e9ecef;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.friend-link-item-inner {
    position: relative;
    z-index: 1;
}

.friend-link-item .text-truncate {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.friend-link-item:hover {
    background-color: #e3f2fd;
    color: #0d47a1;
    border-color: rgba(13, 71, 161, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.15);
    text-decoration: none;
}

.friend-links-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 14px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px dashed #dee2e6;
}

/* 自适应处理 */
@media (max-width: 991.98px) {
    .friend-links-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .friend-links-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 767.98px) {
    .kiwi-friend-links {
        padding: 28px 0;
    }

    .friend-links-title-text strong {
        font-size: 20px;
    }

    .friend-links-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
        padding: 12px 14px;
    }

    .friend-link-item {
        padding: 10px 8px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .friend-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .friend-link-item {
        padding: 8px 6px;
        font-size: 12px;
    }
}


.kiwi-latest-articles {
    background-color: #f5f5f5;
    padding: 40px 0;
}

.latest-articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 顶部标题区：更扁平、偏企业站风格 */
.latest-articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 10px 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f7ff 45%, #e6f5ff 100%);
    box-shadow: 0 6px 18px rgba(15, 79, 164, 0.08);
}

.latest-articles-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.latest-articles-title-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: radial-gradient(circle at 20% 20%, #4caf50 0%, #2e7d32 40%, #0d47a1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 18px rgba(76, 175, 80, 0.35);
}

.latest-articles-title-icon i {
    font-size: 20px;
}

.latest-articles-title-text {
    display: flex;
    flex-direction: column;
}

.latest-articles-title-text strong {
    font-size: 22px;
    color: #222;
    letter-spacing: 0.5px;
}

.latest-articles-title-text span {
    font-size: 13px;
    color: #8a9bb1;
}

/* 主体布局：左侧轮播 + 右侧列表 */
.latest-articles-layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 24px;
}

/* 左侧大图轮播 */
.latest-hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background-color: #000;
    height: 100%; /* 跟随整个布局高度，保证与右侧同高 */
}

.latest-hero-slides {
    position: relative;
    width: 100%;
    height: 100%; /* 跟随外层高度 */
}

.latest-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
}

.latest-hero-slide > a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.latest-hero-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.latest-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.latest-hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 24px 16px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.9) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.latest-hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.88;
    margin-bottom: 8px;
}

.latest-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.latest-hero-meta i {
    font-size: 13px;
}

.latest-hero-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 6px;
}

.latest-hero-excerpt {
    font-size: 13px;
    opacity: 0.92;
}

.latest-hero-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 6; /* 圆点也在最上层 */
}

.latest-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.latest-hero-dot.is-active {
    width: 18px;
    border-radius: 999px;
    background-color: #4caf50;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.6);
}

.latest-hero-nav {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 5; /* 确保在轮播内容之上可以点击 */
}

.latest-hero-nav button {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.45);
    color: #fff;
    margin: 0 10px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.latest-hero-nav button:hover {
    background-color: rgba(0,0,0,0.7);
    transform: translateY(-1px);
}

/* 右侧列表区：最近 6 篇 */
.latest-side-list {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 16px 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    height: 100%; /* 跟随布局高度，与轮播同高 */
    overflow-y: auto;
}

.latest-side-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f5;
}

.latest-side-item:last-child {
    border-bottom: none;
}

.latest-side-main {
    flex: 1;
    min-width: 0;
}

.latest-side-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0 0 4px;
    line-height: 1.5;
}

.latest-side-title a {
    color: inherit;
    text-decoration: none;
}

.latest-side-title a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

.latest-side-excerpt {
    font-size: 12px;
    color: #65738a;
    margin-bottom: 4px;
}

.latest-side-meta {
    font-size: 12px;
    color: #9aa4b5;
}

.latest-side-meta span {
    margin-right: 10px;
}

.latest-side-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    margin-left: 10px;
}

.latest-side-action a {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #4caf50;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4caf50;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.latest-side-action a:hover {
    background-color: #4caf50;
    color: #ffffff;
}

/* PC 端固定整体高度，保证左右区块等高 */
@media (min-width: 992px) {
    .latest-articles-layout {
        height: 360px;
        align-items: stretch;
    }
}

/* 自适应处理 */
@media (max-width: 991.98px) {
    .latest-articles-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .latest-articles-layout {
        grid-template-columns: minmax(0, 1fr);
        height: auto; /* 移动端自适应高度 */
    }

    .latest-hero-slider {
        height: auto; /* 不跟随右侧固定高度，自适应内容 */
    }

    .latest-hero-slides {
        height: 0;
        padding-bottom: 56%; /* 16:9 比例盒子，保证图片可见 */
    }

    .latest-side-list {
        height: auto;       /* 移动端右侧列表正常自适应 */
        overflow-y: visible;
    }
}

@media (max-width: 767.98px) {
    .kiwi-latest-articles {
        padding: 28px 0;
    }

    .latest-articles-title-text strong {
        font-size: 20px;
    }

    .latest-hero-overlay {
        padding: 14px 14px 16px;
    }

    .latest-hero-title {
        font-size: 16px;
    }

    .latest-side-item {
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .latest-side-excerpt {
        display: none;
    }
}