/* assets/css/custom.css */

/* --- GLOBAL & UTILITY STYLES --- */
body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    /* 'Open Sans' was also mentioned, choose one primary font family */
    /* font-family: 'Open Sans', sans-serif; */
    line-height: 1.6;
    color: #333;
}

/* --- HEADER --- */
.site-header .navbar-brand img {
    max-height: 50px; /* Adjust logo maximum height */
}

/* --- PAGINATION (General - might be overridden by more specific .product-pagination) --- */
.pagination .nav-links {
    display: flex;
    padding-left: 0;
    list-style: none;
}
.pagination .page-numbers {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #0d6efd; /* Bootstrap primary color */
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none;
}
.pagination .page-numbers:hover {
    z-index: 2;
    color: #0a58ca;
    background-color: #e9ecef;
    border-color: #dee2e6;
}
.pagination .page-numbers.current {
    z-index: 3;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.pagination .dots {
    padding: .5rem .75rem;
}


/* --- MyTechTheme PRODUCT ARCHIVE PAGE (archive-product.php) --- */
.mytechtheme-product-archive .container {
    max-width: 1200px; /* Or your preferred max width */
}

/* Page Header Styles */
.mytechtheme-product-archive .page-header {
    padding-bottom: 1.5rem;
    margin-bottom: 2rem; /* Increased margin */
    border-bottom: 1px solid #e9ecef; /* Softer border */
}

.mytechtheme-product-archive .page-title {
    color: #2c3e50; /* A darker, more modern blue/grey */
    margin-bottom: 0.5rem;
}

.mytechtheme-product-archive .taxonomy-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Sidebar Styles */
.product-sidebar .sidebar-widget {
    background-color: #f8f9fa; /* Light grey background */
    border-radius: 0.375rem; /* Bootstrap's default rounded value */
}

.product-sidebar .widget-title {
    font-size: 1.25rem; /* Slightly larger widget title */
    color: #343a40;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #0d6efd; /* Primary color accent */
    margin-bottom: 1rem;
}

.product-sidebar ul {
    padding-left: 0;
    list-style: none;
}

.product-sidebar ul li {
    margin-bottom: 0.3rem; /* Spacing between list items */
}

.product-sidebar ul li a {
    display: block;
    padding: 0.35rem 0.5rem; /* Padding for better click area */
    color: #495057; /* Dark grey for links */
    text-decoration: none;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.product-sidebar ul li a:hover,
.product-sidebar ul li a.fw-bold.text-primary /* Active link style */ {
    background-color: #e9ecef; /* Light hover background */
    color: #0056b3 !important; /* Darker primary on hover/active */
}

.product-sidebar ul li a.fw-bold.text-primary {
    font-weight: 600 !important; /* Ensure active is bold */
}

.product-sidebar ul li a .badge {
    font-size: 0.75em;
    vertical-align: middle;
    margin-left: 0.5em;
    background-color: #6c757d; /* Bootstrap secondary */
}

/* --- PRODUCT CARD STYLES (GENERAL - APPLIES TO HOMEPAGE FEATURED PRODUCTS) --- */
/* This assumes your homepage featured products have a card with class .product-card */
.product-card .product-image-wrapper {
    height: 230px;
    background-color: #f8f9fa;
    border-top-left-radius: calc(0.375rem - 1px);
    border-top-right-radius: calc(0.375rem - 1px);
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative; /* 为图片定位提供参考 */
}

.product-card .product-image-wrapper .card-img-top {
    max-height: 100%;    /* 限制最大高度 */
    max-width: 100%;     /* 限制最大宽度 */
    width: auto;         /* 保持原始宽高比 */
    height: auto;        /* 保持原始宽高比 */
    object-fit: contain; /* 保持比例完整显示 */
    position: absolute;  /* 使用绝对定位更灵活控制 */
    top: 50%;           /* 垂直居中 */
    left: 50%;          /* 水平居中 */
    transform: translate(-50%, -50%); /* 精确居中 */
}


.product-card .card-title { /* For homepage featured products */
    height: 3em; /* Adjust as needed for 1-2 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0.75rem; /* Or your preferred margin */
}

.product-card .card-title a { /* For homepage featured products */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Ensure link also truncates */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Fallback */
    color: inherit; /* Or your specific link color */
    text-decoration: none;
}
.product-card .card-title a:hover {
    color: #0056b3; /* Example hover */
}


/* --- PRODUCT ARCHIVE CARD STYLES (Applies to archive-product.php product list) --- */
.product-archive-card {
    background-color: #fff;
    border: 1px solid #e3e3e3; /* Softer border for card */
    border-radius: 0.375rem; /* Consistent rounding */
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    display: flex;
    flex-direction: column;
    height: 100%; /* Bootstrap's h-100 applied in HTML usually handles this */
}

.product-archive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08) !important; /* Softer, more modern shadow */
}

/* Image container for archive products */
/* 图片容器 - 修改版 */
.product-archive-card .product-card-img-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* 保留用于悬停效果 */
    background-color: #f8f9fa;
    border-top-left-radius: calc(0.375rem - 1px);
    border-top-right-radius: calc(0.375rem - 1px);
    position: relative;
}

/* 图片样式 - 优化版 */
.product-archive-card .product-thumbnail {
    max-height: 90%;  /* 留出上下边距 */
    max-width: 90%;   /* 留出左右边距 */
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease; /* 平滑过渡 */
    
    /* 使用margin居中替代absolute定位 */
    margin: 0 auto;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

/* 悬停效果 - 优化版 */
.product-archive-card:hover .product-thumbnail {
    transform: scale(1.05); /* 更自然的放大效果 */
}

/* 卡片布局保持 */
.product-archive-card .card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* 确保卡片高度不受影响 */
.product-archive-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
/* 移除可能存在的冲突样式 */
.product-archive-card .product-thumbnail {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.product-archive-card:hover .product-thumbnail {
    transform: scale(1.03); /* Subtle zoom on hover if using object-fit: cover; less noticeable with contain */
}

.product-archive-card .card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allow card body to grow and push footer down */
}

.product-archive-card .card-title { /* For archive products */
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    /* For consistent height and truncation on archive cards (optional, adjust as needed): */
    min-height: 1.2em; /* Approx 2 lines, adjust based on font-size & line-height */
    /* If strict truncation needed:
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    */
}

.product-archive-card .card-title a.product-title-link {
    color: #343a40;
    text-decoration: none;
    /* If using strict truncation for title:
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    */
}

.product-archive-card .card-title a.product-title-link:hover {
    color: #0056b3;
}

.product-archive-card .product-meta {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}
.product-archive-card .product-meta a {
    color: #6c757d;
    text-decoration: none;
}
.product-archive-card .product-meta a:hover {
    color: #5a6268;
    text-decoration: underline;
}

.product-archive-card .product-excerpt {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
    flex-grow: 1; /* Allow excerpt to take available space */
    /* Optional: control height if excerpts are too long
    max-height: 4.5em; /* e.g., for 3 lines
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    */
}

.product-archive-card .card-footer {
    background-color: transparent;
    border-top: 1px solid #f1f1f1;
    padding: 0.75rem 1rem;
    margin-top: auto; /* Pushes footer to bottom due to card-body flex-grow:1 */
}

.product-archive-card .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.product-archive-card .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Pagination Styles for Product Archive */
.product-pagination {
    margin-top: 3rem;
    clear: both;
}

.product-pagination ul.page-numbers { /* Targets the <ul> output by the_posts_pagination with type 'list' */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.product-pagination .page-numbers li { /* Targets the <li> generated by the_posts_pagination */
    margin: 0.25rem;
}

.product-pagination .page-numbers a,
.product-pagination .page-numbers span { /* Targets <a> and <span>.current, span.dots */
    display: inline-block;
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    line-height: 1.5;
}

.product-pagination .page-numbers a:hover {
    color: #0056b3;
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.product-pagination .page-numbers span.current {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.product-pagination .page-numbers .dots { /* Specific styling for dots if needed */
    color: #6c757d;
    border: none;
    background-color: transparent;
    padding: 0.5rem 0.4rem; /* Adjust padding if needed */
}

/* No Products Found Message */
.no-products-found {
    padding: 3rem 1rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    text-align: center;
}

.no-products-found .lead {
    font-size: 1.25rem;
    color: #495057;
}

.no-products-found a {
    color: #007bff;
    text-decoration: underline;
}
.no-products-found a:hover {
    color: #0056b3;
}

/* --- SINGLE PRODUCT PAGE STYLES (single-product.php) --- */
/* .mytechtheme-single-product-content .entry-title was removed as it might be too generic if .product-title is used. */
/* If needed, use .mytechtheme-single-product-page .product-title for more specificity */

.mytechtheme-single-product-page .product-title { /* Targets h1.product-title in your PHP */
    color: #2c3e50;
    margin-bottom: 0.75rem; /* Bootstrap default is mb-0 for display-5 */
}

.mytechtheme-single-product-page .product-main-info {
    /* Styles for the main row containing gallery and summary */
}

.mytechtheme-single-product-page .product-gallery-area .product-featured-image-wrapper .product-main-image {
    /* max-width: 100%; -- Bootstrap's img-fluid handles this */
    /* height: auto; -- Bootstrap's img-fluid handles this */
    border-radius: 0.375rem; /* From your PHP example, ensuring it's applied */
    display: block;
}
.mytechtheme-single-product-page .product-gallery-area .product-featured-image-wrapper .image-zoom-overlay {
    transition: background-color 0.3s ease;
}
.mytechtheme-single-product-page .product-gallery-area .product-featured-image-wrapper:hover .image-zoom-overlay {
    background-color: rgba(0,0,0,0.4) !important; /* Darker overlay on hover */
}

.mytechtheme-single-product-page .product-gallery-area .product-thumbnail-gallery .img-thumbnail {
    transition: opacity 0.2s ease;
}
.mytechtheme-single-product-page .product-gallery-area .product-thumbnail-gallery .img-thumbnail:hover {
    opacity: 0.75;
}

/* Summary Area specific styles */
.mytechtheme-single-product-page .product-summary-area .product-summary-content {
    /* background-color: #f8f9fa; -- from your PHP */
    /* padding: 1.5rem; -- from your PHP (p-4) is 1.5rem */
    /* border-radius: 0.375rem; -- from your PHP */
}

.mytechtheme-single-product-page .product-summary-area .product-price { /* If you add a price element */
    font-size: 2rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mytechtheme-single-product-page .product-summary-area .product-meta-details .product-sku strong,
.mytechtheme-single-product-page .product-summary-area .product-meta-details .product-model strong {
    color: #343a40;
}
.mytechtheme-single-product-page .product-summary-area .product-meta-details .product-categories-list a {
    /* text-decoration: none; -- from your PHP */
    color: #007bff;
}
.mytechtheme-single-product-page .product-summary-area .product-meta-details .product-categories-list a:hover {
    text-decoration: underline;
}

/* Tabs Styling */
.mytechtheme-single-product-page .product-details-tabs .nav-tabs .nav-link {
    color: #495057;
    border-bottom-width: 2px; /* Slightly thicker inactive tab border */
}
.mytechtheme-single-product-page .product-details-tabs .nav-tabs .nav-link.active {
    color: #0d6efd; /* Bootstrap primary */
    border-color: #dee2e6 #dee2e6 #fff; /* Standard active tab border */
    border-bottom-color: #0d6efd !important; /* Ensure bottom border is primary color for active tab */
    font-weight: 500;
}
.mytechtheme-single-product-page .product-details-tabs .nav-tabs .nav-link:hover:not(.active) {
    border-color: #e9ecef #e9ecef #dee2e6;
    color: #0056b3;
}

.mytechtheme-single-product-page .product-details-tabs .tab-content {
    border: 1px solid #dee2e6;
    border-top: none; /* Tabs provide the top border visual */
    padding: 1.5rem;
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}


/* Product Full Description (inside tab) */
.mytechtheme-single-product-page .product-full-description {
    /* padding-top: 2rem; */ /* Handled by tab-content padding */
    /* margin-top: 2rem; */  /* Handled by tab-content padding */
    /* border-top: 1px solid #e9ecef; */ /* Handled by tab structure */
}

.mytechtheme-single-product-page .product-full-description h2,
.mytechtheme-single-product-page .product-full-description h3,
.mytechtheme-single-product-page .product-full-description h4,
.mytechtheme-single-product-page .product-full-description h5,
.mytechtheme-single-product-page .product-full-description h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #343a40;
}

.mytechtheme-single-product-page .product-full-description p {
    line-height: 1.7;
    margin-bottom: 1em;
}

/* Product Post Navigation (Previous/Next) */
.mytechtheme-single-product-page .product-post-navigation-wrapper {
    /* margin-top: 3rem; */ /* Already has mt-5 (3rem) from PHP */
    /* padding-top: 1.5rem; */ /* Already has pt-4 (1.5rem) from PHP */
    /* border-top: 1px solid #dee2e6; */ /* Already has border-top from PHP */
}

.mytechtheme-single-product-page .product-post-navigation-wrapper .product-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mytechtheme-single-product-page .product-post-navigation-wrapper .product-navigation .nav-previous {
    text-align: left;
}

.mytechtheme-single-product-page .product-post-navigation-wrapper .product-navigation .nav-next {
    text-align: right;
}

.mytechtheme-single-product-page .product-post-navigation-wrapper .product-navigation .nav-links a.btn {
    /*max-width: 68%; /* Allow some gap */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-flex; /* For better alignment of icon and text */
    align-items: center;
}

.mytechtheme-single-product-page .product-post-navigation-wrapper .product-navigation .nav-links a.btn .post-title {
    vertical-align: middle; /* Or rely on flex align-items */
}

.mytechtheme-single-product-page .product-post-navigation-wrapper .product-navigation .nav-links .dashicons {
    /* vertical-align: middle; -- Handled by flex align-items */
    font-size: 1.1em; /* Adjust as needed for btn-outline-secondary */
    line-height: 1; /* Prevent extra space */
}
.mytechtheme-single-product-page .product-post-navigation-wrapper .product-navigation .nav-previous .dashicons {
    margin-right: 0.35rem; /* Space between icon and "Previous:" */
}
.mytechtheme-single-product-page .product-post-navigation-wrapper .product-navigation .nav-next .dashicons {
    margin-left: 0.35rem; /* Space between "Next:" and icon */
}


/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991.98px) { /* Below lg breakpoint */
    .product-sidebar {
        margin-bottom: 2rem;
    }
    /* Single product page specific adjustments */
    .mytechtheme-single-product-page .product-gallery-area {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) { /* Below md breakpoint */
    .mytechtheme-product-archive .page-title {
        font-size: 2rem;
    }
    .product-archive-card .card-title { /* For archive cards */
        font-size: 1rem;
        min-height: 2.4em; /* Adjust for smaller font size */
    }
    .product-archive-card .product-excerpt {
        font-size: 0.85rem;
    }

    /* Homepage featured products card title on mobile */
    .product-card .card-title {
        height: 2.6em; /* Adjust for smaller font sizes if titles are shorter on mobile */
        font-size: 1rem; /* Example smaller font for title on mobile */
    }
    .product-card .product-image-wrapper {
        height: 180px; /* Example: smaller image slot on mobile for homepage featured */
    }

    /* Single Product Post Navigation on smaller screens */
    /* d-none d-sm-inline on .post-title in PHP handles hiding title on xs */
    .mytechtheme-single-product-page .product-post-navigation-wrapper .product-navigation .nav-links a.btn {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        /* max-width: none; */ /* If you want them to take more space but still be buttons */
    }
    .mytechtheme-single-product-page .product-post-navigation-wrapper .product-navigation .nav-links a.btn .meta-nav {
        /* If you also want to hide "Previous:" / "Next:" on very small screens (keep only icon and title if title is shown) */
        /* display: none; */
    }
}

@media (max-width: 575.98px) { /* Bootstrap sm breakpoint below (xs screens) */
    /* For product post navigation, the .post-title is already hidden via d-none d-sm-inline */
    /* You might want to make the "Previous:" and "Next:" text smaller or also hide it if buttons are too crowded */
    .mytechtheme-single-product-page .product-post-navigation-wrapper .product-navigation .nav-links a.btn .meta-nav {
        font-size: 0.8em; /* Make "Previous:" / "Next:" smaller */
    }
     .mytechtheme-single-product-page .product-post-navigation-wrapper .product-navigation .nav-links a.btn {
        /* Buttons might be just icons and smaller text at this point */
    }
}
/* Testimonials section styles */
.testimonials-section {
    background-color: #f8f9fa;
    overflow: hidden;
}

/* Scrolling container styles */
.testimonials-scroller-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonials-scroller {
    display: inline-flex;
    animation: scroll 40s linear infinite;
    white-space: nowrap;
}

/* Individual testimonial card styles */
.testimonial-item {
    flex: 0 0 auto;
    padding: 0 5px;
    width: 300px; /* Fixed width for each testimonial card */
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0; /* 去掉内边距让图片和卡片贴合 */
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* 防止图片溢出圆角 */
}

.testimonial-image {
    width: 100%;
    height: 180px; /* 固定高度，调整图片框大小 */
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 图片填满并裁剪 */
    display: block;
}

.testimonial-content {
    padding: 15px; /* 内容部分有内边距 */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    white-space: normal;
    line-height: 1.6;
}

.client-name {
    font-weight: bold;
    color: #333;
    margin-top: auto;
    text-align: right;
}

/* Scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.testimonials-scroller-wrapper:hover .testimonials-scroller {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-item {
        width: 250px;
        padding: 0 10px;
    }
    
    .testimonial-image {
        height: 150px; /* 响应式下图片框变小 */
    }
    
    .testimonial-content {
        padding: 12px;
    }
}
form textarea {
  resize: vertical;
}
a {
  color: #0d6efd;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.contact-section {
  margin-top: 80px;
  margin-bottom: 80px;
}

.contact-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-wrapper h3 {
  margin-bottom: 24px;
  font-weight: 600;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
}

.alert-warning {
  background-color: #fff3cd;
  color: #856404;
}
/* 去掉 Bootstrap 下拉菜单的小箭头 */
.dropdown-toggle::after {
    display: none !important;
}

/* 鼠标悬停时显示子菜单 */
.navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0; /* 避免出现下拉时的间距跳动 */
}
/* Footer Styles - White Text & Links */
.site-footer, .site-footer p {
    color: rgba(255, 255, 255, 0.9); /* 让普通文本也是白色 */
}

/* 强制所有页脚链接为白色 */
.site-footer a {
    color: #ffffff;
    text-decoration: none; /* 默认无下划线 */
    transition: opacity 0.3s ease;
}

/* 鼠标悬停在链接上时，降低一点透明度作为反馈，而不是变色 */
.site-footer a:hover {
    color: #ffffff;
    opacity: 0.8;
    text-decoration: underline; /* 也可以用下划线作为反馈 */
}

/* 设置非主要文本的颜色，比如公司简介和底部版权信息栏 */
.site-footer .text-white-50 {
   color: rgba(255, 255, 255, 0.7) !important; 
}

