:root {
    --primary-color: #0e8ce4;
    --secondary-color: #0779c9;
    --accent-color: #ff6a00;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --border-color: #e9ecef;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

body {
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    color: var(--dark-color);
    background-color: #f5f7fa;
}

/* 通用样式 */
.section-title {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}


/* 顶部信息栏 */
.top-bar {
    background-color: var(--light-color);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar-item {
    display: flex;
    align-items: center;
}

.top-bar-nav .nav-link
 {
    padding: 0 10px;
    color: var(--gray-color);
    transition: color 0.2s;
}

.top-bar-nav .nav-link:hover {
    color: var(--primary-color);
}

.qr-code-wrapper {
    position: relative;
}

.qr-code-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    padding: 5px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qr-code-wrapper:hover .qr-code-popup {
    display: block;
}

.qr-code-popup img {
    width: 120px;
    height: 120px;
}

/* 主导航栏 */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-middle {
    padding: 15px 0;
}

.logo-container img {
    max-height: 60px;
    width: auto;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-tags {
    font-size: 0.8rem;
}

.search-tag {
    color: var(--gray-color);
    text-decoration: none;
    margin-right: 10px;
    transition: color 0.2s;
}

.search-tag:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.header-action-item {
    display: flex;
    align-items: center;
}

.icon-box {
    margin-right: 10px;
}

.content-box {
    line-height: 1.2;
}


/*elements page *****************************************************/
.subcategory-container {
    padding-left: 2rem;
}

/* 轮播图 */
.hero-carousel {
    margin-bottom: 2rem;
}

.hero-carousel .carousel-item {
    height: 400px;
    background-size: cover;
    background-position: center;
}
.carousel-item img{
    max-height:400px;
}
.hero-carousel  {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    margin: 0 auto;
}

/* 特色区域 */
.features-section {
    margin: 2rem 0;
}

.feature-box {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* 产品卡片 */
.product-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-img-container {
    position: relative;
    padding-top: 75%;
    /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

.product-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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

/* 文章卡片 */
.article-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-img-container {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.article-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.article-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-excerpt {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.article-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-color);
}

/* 图片展示 */
.gallery-section {
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.gallery-img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 15px;
    color: white;
}

.gallery-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

/* 页脚 */
.footer {
    background-color: #fff;
    color: var(--dark-color);
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links li a {
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icon {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#back-to-top:hover {
    transform: translateY(-3px);
}

@media (max-width: 767.98px) {
    .footer-nav .nav-link {
        padding: 0.5rem 0;
    }

    .hero-carousel .carousel-item {
        height: 300px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .feature-box {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-carousel .carousel-item {
        height: 200px;
    }

    .hero-carousel .carousel-caption {
        padding: 10px;
    }

    .hero-carousel .carousel-caption h2 {
        font-size: 1.2rem;
    }

    .hero-carousel .carousel-caption p {
        font-size: 0.9rem;
    }
}


/* KAZCMS Components */
.kazcms-category-expand-icon {
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-color);
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.kazcms-category-expand-icon:hover {
    color: var(--primary-color);
    background-color: rgba(14, 140, 228, 0.08);
    transform: translateY(-1px);
    cursor: pointer;
}

.kazcms-category-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: inline-block;
}

.kazcms-category-link:hover {
    color: var(--primary-color);
    background-color: rgba(14, 140, 228, 0.05);
    transform: translateX(2px);
    text-decoration: none;
    cursor: pointer;

}

.kazcms-category-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 8px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.kazcms-category-link:hover::after {
    width: calc(100% - 16px);
}

.kazcms-badge-primary {
    background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
    border-radius: 6px;
    color: #006064;
    padding: 6px 12px;
    font-weight: 500;
    font-size: 0.85rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(178, 235, 242, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.kazcms-badge-primary:hover {
    background: linear-gradient(135deg, #b2ebf2, #4dd0e1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    border-color: rgba(77, 208, 225, 0.5);
}

.kazcms-badge-primary i {
    font-size: 0.9rem;
}

.kazcms-remove-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    border-radius: 50%;
    color: #842029;
    font-size: 12px;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid rgba(132, 32, 41, 0.2);
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;

}

.kazcms-remove-icon:hover {
    background-color: #f8d7da;
    color: #721c24;
    transform: scale(1.1);
    border-color: rgba(132, 32, 41, 0.4);

}

.kazcms-remove-icon:active {
    transform: scale(0.95);
}

.kazcms-remove-icon i {
    pointer-events: none;
    line-height: 1;
}

/* Animation for adding/removing categories */
@keyframes kazcms-fade-in {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kazcms-fade-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(5px);
    }
}

.kazcms-fade-in {
    animation: kazcms-fade-in 0.3s ease forwards;
}

.kazcms-fade-out {
    animation: kazcms-fade-out 0.3s ease forwards;
}

.remove-icon {
    cursor: pointer;

}


.kazcms_article-title {
    font-size: 1.8rem;
    color: #212529;
    line-height: 1.3;
}

.kazcms_article-meta {
    color: #6c757d;
}

.kazcms_article-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #343a40;
}

.kazcms_article-body p {
    margin-bottom: 1.5rem;
}

.kazcms_article-body h2,
.kazcms_article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.kazcms_article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.kazcms_article-body a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(13, 110, 253, 0.2);
    transition: all 0.2s ease;
}

.kazcms_article-body a:hover {
    border-bottom-color: var(--primary-color);
}

/* Gallery Styles */
.kazcms_gallery-item {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
}

.kazcms_gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.kazcms_gallery-overlay,
.kazcms_image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.kazcms_gallery-item:hover .kazcms_gallery-overlay,
.kazcms_single-image-container:hover .kazcms_image-overlay {
    opacity: 1;
}

.kazcms_zoom-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.kazcms_gallery-item:hover .kazcms_zoom-icon,
.kazcms_single-image-container:hover .kazcms_zoom-icon {
    transform: scale(1);
}

.kazcms_single-image-container {
    position: relative;
    overflow: hidden;
}

.kazcms_gallery-title {
    font-weight: 500;
    color: #343a40;
    border-left: 3px solid var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .kazcms_article-title {
        font-size: 1.5rem;
    }

    .kazcms_article-body {
        font-size: 1rem;
    }
}


.kazcms-image-modal.modal-backdrop.show {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(3px);
}


.kazcms-image-modal .modal-dialog {
    max-width: 90vw;
    max-height: 100vh;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kazcms-image-modal .modal-content {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dee2e6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 图片样式 */
.kazcms-image-modal #modalImage {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

/* 按钮美化 */
.kazcms-image-modal .btn {
    opacity: 0.7;
    transition: opacity 0.2s;
}

.kazcms-image-modal .btn:hover {
    opacity: 1;
}

/* 缩略图边框优化 */
.kazcms-image-modal .thumbnail-item img {
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.kazcms-image-modal .thumbnail-item:hover img,
.kazcms-image-modal .thumbnail-item.active img {
    border-color: #0d6efd;
}

.kazcms-header {
    background-color: #f8f9fa;
    color: #212529;
}

.kazcms-body {
    background-color: #ffffff;
    color: #212529;
}

.kazcms-thumbs {
    background-color: #f1f3f5;
    border-top: 1px solid #dee2e6;
}

.kazcms-image-modal .image-container {
    height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .kazcms-image-modal .image-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }

/* Search form styling */
.y-top-search-select {
    width: auto !important;
    min-width: 100px;
    max-width: 120px;
    flex: 0 0 auto;
}

.partner-showcase {
    background: linear-gradient(to right, rgba(248, 249, 250, 0.7), rgba(233, 236, 239, 0.7));
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px 15px;
}

.partner-item {
    transition: all 0.4s ease;
}

.partner-item:hover {
    transform: translateY(-8px);
}

.partner-logo-wrapper {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo-wrapper {
    box-shadow: 0 8px 20px rgba(14, 140, 228, 0.15);
}

.partner-logo {
    max-height: 70px;
    max-width: 100%;
    filter: grayscale(80%);
    opacity: 0.8;
    transition: all 0.4s ease;
}

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

.partner-name {
    font-weight: 500;
    font-size: 0.9rem;
    color: #495057;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-name {
    color: #0e8ce4;
}

.product-image-container {
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card {
  transition: all 0.3s ease;
  border-radius: 8px;
}

.product-card:hover {
  transform: translateY(-5px);
}

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

.section-header {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-title {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.card-img-top {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 10px;
}

.kazcms-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kazcms-nav .nav-link:hover, 
.kazcms-nav .nav-link:focus,
.kazcms-nav .nav-link.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.kazcms-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.kazcms-nav .nav-link:hover::after,
.kazcms-nav .nav-link:focus::after,
.kazcms-nav .nav-link.active::after {
    width: 70%;
}

.transition-all {
    transition: all 0.3s ease;
}
.kazcms-bottom-60{
    bottom: 60px;
}

.kazcms-bg-alt-1 { background-color: #ffffff; } /* 浅灰 */
.kazcms-bg-alt-2 { background-color: #ffffff; } /* 白色 */

.survey-question-container {
    transition: all 0.3s ease;
    background-color: #e9f5ff;      /* 很淡的蓝色，相当于 Tailwind 的 bg-blue-50 */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);  /* 类似 Tailwind 的 shadow-sm */
    border-radius: 0.5rem;          /* 8px 圆角，等于 Tailwind 的 rounded-lg */
    border: 1px solid #e5e7eb;      /* 灰色边框，等于 Tailwind 的 border-gray-200 */
    padding: 1.5rem;                /* 24px 内边距，等于 Tailwind 的 p-6 */
    margin-bottom: 15px;  

}

.survey-question-container:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.select-wrapper select[multiple] {
    min-height: 120px;
}

.select-wrapper select[multiple] option {
    padding: 8px 12px;
    margin-bottom: 2px;
}

.select-wrapper select[multiple] option:checked {
    background: #3b82f6;
    color: white;
}

.radio-group label:has(input:checked) {
    background-color: #eff6ff;
    border-color: #3b82f6;
}

.checkbox-group label:has(input:checked) {
    background-color: #eff6ff;
    border-color: #3b82f6;
}

.question-explanation {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .survey-question-container {
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .radio-group label,
    .checkbox-group label {
        padding: 0.75rem;
    }
}


/* 移动端菜单 */
.mobile-menu {
  background-color: #f6f3fc;
  border-top: 1px solid #dee2e6;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  right: 0;
}

.mobile-menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
}

.mobile-menu-item {
  flex: 0 0 calc(25% - 0.375rem);
}

.mobile-menu-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #6c757d;
  padding: 0.5rem 0.25rem;
  border-radius: 0.375rem;
  transition: all 0.15s ease-in-out;
  min-height: 60px;
  width: 100%;
}

.mobile-menu-link:hover {
  color: #0d6efd;
  background-color: #f8f9fa;
  text-decoration: none;
}

.mobile-menu-link.active {
  color: #0d6efd;
  background-color: rgba(13, 110, 253, 0.1);
}

.mobile-menu-link i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.menu-text {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

/* Custom breadcrumb style */
.custom-breadcrumb {
    background-color: transparent;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    padding: 0 0.5rem;
}

.breadcrumb-link {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #0a58ca;
    text-decoration: underline;
}

.thumbnail-wrapper {
    border: 1px solid transparent; /* 👈 初始必须有边框 */
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0.5rem; /* 可选：圆角 */
    padding: 0.5rem;        /* 可选：内边距 */
}

.thumbnail-wrapper:hover {
    border-color: #0d6efd; /* Bootstrap 蓝色 */
}

.filter-container {
    position: relative;
}
.show-more-btn {
    transition: all 0.3s ease;
    border-radius: 20px;
    font-size: 0.875rem;
}
.show-more-btn:hover {
    transform: translateY(-1px);
}
.filter-btn {
    transition: all 0.2s ease;
}
.filter-btn:hover {
    transform: translateY(-1px);
}

.sitelogo img{
    width: 30px;
    height: 30px;
    margin: 0px;
}

.carousel-caption{
    background-color: rgba(255, 255, 255, 0.7); /* 半透明白色 */
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: inline-block;
    color:#0a58ca
}
