
.quick-nav-section {
    display: flex;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.navigation-menu {
    width: 25%;
    background-color: #f8f9fa;
    border-right: 1px solid #eee;
}

.nav-title {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.nav-title i {
    margin-right: 10px;
    font-size: 18px;
}

.nav-list {
    list-style: none;
}

.nav-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

.nav-item:last-child {
    border-width: 0px;
}

.nav-item.active {
    background-color: #eef7f2;
    color: #2e8b57;
}

/* .nav-item:hover {
    background-color: #eef7f2;
    color: #2e8b57;
} */

.nav-item-left {
    display: flex;
    font-size: 16px;
    align-items: center;
}

.nav-item-left i {
    margin-right: 10px;
    font-size: 18px;
    width: 20px;
    color: #2e8b57;
}

.product-display {
    flex: 1;
    padding: 20px;
}

.info-header {
    background-color: #f8dda7;
    color: #333;
    font-size: 16px;
    padding: 8px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: bold;
}

.info-categories {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.info-category {
    padding: 5px 12px;
    background-color: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-category:hover,
.info-category.active {
    background-color: #e8f5e9;
    color: #2e8b57;
    border-color: #2e8b57;
}

.featured-article {
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 14px;
    background-color: #f9f9f9;
}

.article-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2e8b57;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 14px;
    color: #888;
}

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

.article-tag {
    display: inline-block;
    padding: 2px 8px;
    background-color: #e8f5e9;
    color: #2e8b57;
    border-radius: 3px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 10px;
}

.article-excerpt {
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
    min-height: 76px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: #2e8b57;
    font-size: 14px;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.recent-articles-header {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.recent-articles {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

.recent-article {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.recent-article-content {
    width: 100%;
}

.recent-article-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.recent-article-title:hover {
    color: #2e8b57;
}

.health_art-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 40px;
    row-gap: 5px;
}

.health_art-list p {
    position: relative;
    padding-left: 14px;
    font-size: 16px;
    line-height: 30px;
}

.health_art-list p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
    width: 4px;
    height: 4px;
    background: #D5D8E2;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}



/* 鍋ュ悍鏍忕洰瀵艰埅 */
.channel-grid {
    padding: 10px 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.channel-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
}

.channel-card-header {
    padding: 15px;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
}

.channel-card:hover {
    border-color: #2e8b57;
    transform: translateY(-3px);
}

.channel-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 20px;
    color: white;
    background-color: #4CAF50;
}

.channel-title {
    font-size: 16px;
    font-weight: bold;
    color: coral;
}

.channel-badge {
    display: inline-block;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
    color: white;
}

.channel-card-body {
    padding: 15px;
}

.channel-link {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #f0f0f0;
}

.channel-link .channel-link-box {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
}

.channel-link-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    color: #666;
}

.channel-link-text {
    flex: 1;
    font-size: 14px;
}

.channel-footer {
    padding: 10px 15px;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.channel-more {
    font-size: 14px;
    color: #2e8b57;
    text-decoration: none;
}

.toggle-container {
    text-align: center;
    margin-top: 20px;
}

.toggle-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #00a86b;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    border: none;
    outline: none;
    position: relative;
}

.toggle-btn-text {
    display: inline-block;
    transition: opacity 0.2s;
}

.channel-grid {
    position: relative;
    line-height: 1.6;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.channel-grid.collapsed {
    max-height: 553px;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* 鏍囬 */
.djk-section-title {
    font-size: 20px;
    color: #2e8b57;
    padding-bottom: 10px;
    border-bottom: 2px solid #2e8b57;
    margin-bottom: 15px;
}

/* 淇濆仴鍝佹帹鑽愬尯鍩熸ā鍧� */
.product-section {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 20px;
    box-sizing: border-box;
}

.product-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-tabs {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tab {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    cursor: pointer;
}

.filter-tab.active {
    background-color: #2e8b57;
    color: white;
}

.filter-tab.inactive {
    background-color: #f5f5f5;
    color: #666;
}


.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.product-card {
    width: calc(25% - 15px);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-image-container {
    position: relative;
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.tag-hot {
    background-color: #ff6b6b;
}

.tag-new {
    background-color: #4caf50;
}

.tag-sale {
    background-color: #ff9800;
}

.tag-featured {
    background-color: #2196f3;
}

.product-details {
    padding: 15px;
}

.product-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.product-pricing {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.product-original-price {
    color: #999;
    font-size: 12px;
    text-decoration: line-through;
    margin-right: 5px;
}

.product-current-price {
    color: #e53935;
    font-weight: bold;
    font-size: 16px;
}

.product-discount {
    background-color: #ffebee;
    color: #e53935;
    font-size: 12px;
    padding: 1px 5px;
    margin-left: 8px;
    border-radius: 2px;
}

.product-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-sales {
    width: 60%;
    color: #999;
    font-size: 12px;
}

.buy-button {
    background-color: #2e8b57;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-button:hover {
    color: white;
    background-color: #3a6742;
    box-shadow: 0 6px 15px rgba(90, 143, 105, 0.4);
}

.brands-section {
    margin-top: 20px;
}

.brands-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.brands-title {
    font-size: 18px;
    color: #333;
}

.brands-grid {
    display: grid;
    column-gap: 20px;
    row-gap: 20px;
    grid-template-columns: repeat(6, 1fr);
    margin-bottom: 30px;
}

.brand-card {
    cursor: pointer;
    text-align: center;
    padding: 15px 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.brand-logo {
    width: 80px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 8px;
}

.brand-name {
    font-size: 14px;
    color: #333;
    margin: 0;
}



/* icon */
@font-face {
    font-family: "ttk";
    /* Project id 4005981 */
    src: url('//at.alicdn.com/t/c/font_4005981_u97u53ym7oq.woff2?t=1744263468986') format('woff2'),
    url('//at.alicdn.com/t/c/font_4005981_u97u53ym7oq.woff?t=1744263468986') format('woff'),
    url('//at.alicdn.com/t/c/font_4005981_u97u53ym7oq.ttf?t=1744263468986') format('truetype');
}

.ttk {
    font-family: "ttk" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-jiankang:before {
    content: "\e653";
}