@charset "UTF-8";

:root {
    --primary-color: #3b82f6;
    --card-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --border-radius: 0.75rem;
}

/* 全局盒模型和溢出控制 */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* 防止Bootstrap负边距导致横向滚动 */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* 容器宽度限制 - PC端友好 */
.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* 响应式容器宽度控制 */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (max-width: 576px) {
    .container-fluid {
        padding-left: 8px !important;
        padding-right: 8px !important;
        max-width: 100vw;
    }
}

/* Footer特殊处理 - 背景占满宽度 */
footer .container-fluid {
    max-width: none;
    margin: 0;
}

footer .footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* 主要内容区域宽度优化 */
@media (min-width: 1200px) {
    .main-content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (min-width: 1400px) {
    .main-content-wrapper {
        max-width: 1300px;
        width: 100%;
    }
}

/* 小屏幕响应式优化 */
@media (max-width: 768px) {
    .main-content-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }
}

body {
    font-family: quote-cjk-patch,Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Noto Sans,Ubuntu,Cantarell,Helvetica Neue,Oxygen,Open Sans,sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #374151;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* 防止浏览器记住滚动位置 */
html {
    scroll-behavior: auto;
}

/* Header 现代化美化设计 */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 6px 0;
}

/* 修复模态框打开时Header内容偏移问题 */
body {
    --scrollbar-width: 0px;
}

body.modal-open {
    padding-right: var(--scrollbar-width) !important;
}

body.modal-open .navbar {
    padding-right: var(--scrollbar-width) !important;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* 移动端品牌链接样式优化 */
@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 1.3rem;
        margin: 0;
    }
}

/* 搜索框现代化设计 */
.search-container {
    position: relative;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
        width: calc(100% - 20px);
    }
}

.search-container .input-group {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.search-container .input-group:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.search-container .input-group:focus-within {
    border-color: #3b82f6;
    box-shadow:
            0 0 0 4px rgba(59, 130, 246, 0.12),
            0 8px 25px rgba(59, 130, 246, 0.15),
            0 16px 40px rgba(59, 130, 246, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.7);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border-width: 2px;
    position: relative;
}

.search-container .input-group:focus-within::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg,
    rgba(59, 130, 246, 0.03) 0%,
    rgba(59, 130, 246, 0.01) 50%,
    rgba(59, 130, 246, 0.03) 100%);
    pointer-events: none;
}

.search-container .form-control {
    border: none;
    background: transparent;
    padding: 12px 54px 12px 18px;
    font-size: 0.95rem;
    color: #374151;
    transition: all 0.3s ease;
}

.search-container .form-control:focus {
    box-shadow: none;
    background: transparent;
    color: #1f2937;
    outline: none;
}

.search-container .form-control:focus::placeholder {
    color: #9ca3af;
    opacity: 0.7;
    transform: translateX(2px);
    transition: all 0.3s ease;
}

.search-container .form-control::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.search-container .btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    border-radius: 8px !important;
    padding: 8px 12px;
    transition: all 0.3s ease;
    width: 40px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    outline: none !important;
    box-shadow: none !important;
}

.search-container .btn:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    transform: translateY(-50%) !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.search-container .btn:active {
    transform: translateY(-50%) !important;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%) !important;
    box-shadow: 0 1px 3px rgba(59, 130, 246, 0.2);
}

.search-container .btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.search-container .input-group:focus-within .btn {
    border-radius: 8px !important;
}

.search-container .input-group:focus-within .btn:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    transform: translateY(-50%) !important;
}

.search-container .btn i {
    font-size: 1rem;
    color: #6b7280;
    transition: color 0.3s ease;
}

.search-container .btn:hover i {
    color: #374151 !important;
}

/* Header 按钮简洁设计 */
.navbar .btn-outline-primary {
    background: transparent;
    border: none;
    color: #6b7280;
    border-radius: 6px;
    padding: 6px 10px;
    font-weight: 500;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    min-width: 52px;
    outline: none !important;
    box-shadow: none !important;
}

.navbar .btn-outline-primary:hover {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
    transform: translateY(-1px);
}

.navbar .btn-outline-primary:focus {
    outline: none !important;
    box-shadow: none !important;
}

.navbar .btn-outline-primary i {
    margin-right: 0;
    margin-bottom: 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.navbar .btn-outline-primary:hover i {
    transform: scale(1.1);
}

/* 移动端优化 */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(248, 250, 252, 0.8);
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler:hover {
    background: rgba(59, 130, 246, 0.1);
}

.navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .navbar {
        padding: 4px 0;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .search-container {
        max-width: 100%;
        margin: 10px 0;
        width: calc(100% - 20px);
    }

    .navbar .btn-outline-primary {
        width: 100%;
        margin: 4px 0;
        justify-content: center;
        padding: 8px 10px;
    }

    .container-fluid {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .main-content-wrapper {
        margin: 0;
        padding: 0;
    }
}

.sidebar, .main-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.nav-pills .nav-link {
    border-radius: 0.5rem;
    color: #6b7280;
    font-weight: 400;
    margin-bottom: 0.125rem;
    transition: all 0.25s ease;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    border: none;
    background: transparent;
}

.nav-pills .nav-link:hover {
    background: rgba(59, 130, 246, 0.06);
    color: var(--primary-color);
    transform: translateX(2px);
}

.nav-pills .nav-link:hover .nav-icon {
    transform: scale(1.05);
}

.nav-pills .nav-link.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    font-weight: 500;
}

.nav-category {
    margin-left: 1rem;
    border-left: none;
    padding-left: 1rem;
    position: relative;
}

.nav-category::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(209, 213, 219, 0.1), rgba(209, 213, 219, 0.4) 20%, rgba(209, 213, 219, 0.4) 80%, rgba(209, 213, 219, 0.1));
    border-radius: 1px;
}


.nav-category .nav-link {
    padding-left: 0.75rem;
    font-size: 0.9rem;
}

.nav-category .nav-link:hover {
    transform: translateX(3px);
}

.nav-category .nav-link.active {
    background: rgba(59, 130, 246, 0.1);
}

.nav-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.plugin-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.plugin-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    /*box-shadow: var(--card-shadow);*/
}

/* 按钮简洁大气设计 */
.btn-download-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    border-radius: 8px;
    padding: .7rem 1.4rem;
    font-size: .875rem;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
    letter-spacing: 0.02em;
}

.btn-download-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
    color: white;
    text-decoration: none;
}

.btn-download-primary:active {
    transform: translateY(0);
}

.btn-outline-modern {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #475569;
    padding: .7rem 1.4rem;
    font-size: .875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.btn-outline-modern:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #334155;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.btn-outline-secondary-modern {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    padding: .7rem 1.4rem;
    font-size: .875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.btn-outline-secondary-modern:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;;
    color: #475569;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.btn-icon {
    margin-right: 8px;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.btn-download-primary:hover .btn-icon,
.btn-outline-modern:hover .btn-icon,
.btn-outline-secondary-modern:hover .btn-icon {
    transform: translateX(1px);
}

.btn-group-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    align-items: center;
}

@media (max-width: 768px) {
    .btn-group-modern {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-download-primary,
    .btn-outline-modern,
    .btn-outline-secondary-modern {
        width: 100%;
        justify-content: center;
        max-width: 100%;
        word-wrap: break-word;
    }
}

/* 轮播图简洁现代化设计 */
.carousel {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 100%;
    width: 100%;
}

.carousel-item img {
    object-fit: contain;
    width: 100%;
    height: 400px;
    background: white;
    max-width: 100%;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 250px;
    }
}

/* 指示器精美设计 */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.carousel-indicators [data-bs-target]:hover {
    background-color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.2);
}

.carousel-indicators .active {
    width: 16px;
    height: 6px;
    border-radius: 3px;
    background-color: #165DFF;
    border: none;
    box-shadow: 0 2px 8px rgba(22, 93, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(1px); /* 轻微下移，与圆点的视觉中心对齐 */
}

/* 控制按钮简洁设计 */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
    opacity: 0.8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    overflow: hidden;
}

.carousel-control-prev {
    left: 16px;
}

.carousel-control-next {
    right: 16px;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: white;
    border-color: rgba(0, 0, 0, 0.15);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.carousel-control-prev:active,
.carousel-control-next:active {
    background: rgba(249, 250, 251, 0.95);
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 16px;
    height: 16px;
    background-size: 100%;
    filter: invert(0.4);
    transition: all 0.2s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(0.2);
    transform: scale(1.1);
}

.carousel-control-prev:active .carousel-control-prev-icon,
.carousel-control-next:active .carousel-control-next-icon {
    filter: invert(0.1);
    transform: scale(0.9);
}

/* 点击波纹效果 */
.carousel-control-prev::after,
.carousel-control-next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.carousel-control-prev:active::after,
.carousel-control-next:active::after {
    width: 60px;
    height: 60px;
    opacity: 1;
    transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}

.info-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.related-plugin-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-plugin-item:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.related-plugin-icon {
    width: 50px;
    height: 50px;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #fbbf24;
}

.star-empty {
    color: #e5e7eb;
}

/* 动态评分组件样式 */
.rating-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0; /* 防止缩放导致换行 */
    vertical-align: middle; /* 确保与文本基线对齐 */
    line-height: 1; /* 重置行高，避免多余空间 */
}

.rating-star {
    position: relative;
    width: 16px;
    height: 16px;
    font-size: 16px;
    color: #e5e7eb;
    transition: all 0.2s ease;
    margin-right: 1px; /* 直接控制星星间距 */
    line-height: 1; /* 确保星星垂直居中 */
    vertical-align: middle; /* 垂直对齐 */
    font-style: normal; /* 确保iconfont正常显示 */
}

.rating-star:last-child {
    margin-right: 0; /* 最后一颗星不需要右间距 */
}

.rating-star.filled {
    color: #fbbf24;
}

.rating-star.partial {
    background: linear-gradient(90deg, #fbbf24 var(--fill-percent), #e5e7eb var(--fill-percent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* 确保渐变效果在所有浏览器中正常工作 */
    background-size: 100% 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
}

/* 为不支持 background-clip: text 的浏览器提供兜底方案 */
.rating-star.partial.fallback {
    position: relative;
    overflow: hidden;
}

.rating-star.partial.fallback::before {
    content: "\e60f"; /* iconfont icon-pingfen 的Unicode编码 */
    position: absolute;
    top: 0;
    left: 0;
    width: var(--fill-percent);
    color: #fbbf24;
    overflow: hidden;
}

/* 支持不同大小的评分组件 */
.rating-container.rating-sm .rating-star {
    width: 14px;
    height: 14px;
    font-size: 14px;
}

.rating-container.rating-lg .rating-star {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

@media (max-width: 767.98px) {
    .plugin-title {
        font-size: 1.75rem;
        word-wrap: break-word;
        max-width: 100%;
    }

    .main-card {
        padding: 1rem !important;
        margin: 0;
        max-width: 100%;
    }

    /* 小屏幕下隐藏侧边栏 */
    .sidebar {
        display: none !important;
    }

    .row {
        margin: 0 !important;
    }

    .col-lg-3, .col-lg-9, .col-lg-8, .col-lg-4,
    .col-md-4, .col-md-8 {
        padding-left: 8px !important;
        padding-right: 8px !important;
        max-width: 100%;
    }

    /* 小屏幕下主内容占满宽度 */
    .col-lg-9.col-md-8 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* 移动端内容间距优化 */
    .main-card > .row.mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .main-card > .row.mb-4 + .row.mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .main-card > .row:not(.mb-4) > .col-lg-8 > .mb-4,
    .main-card > .row:not(.mb-4) > .col-lg-4 > .mb-4 {
        margin-bottom: 1.5rem !important;
    }

    /* 移动端插件元信息间距优化 */
    .d-flex.flex-wrap.gap-4.mb-3 {
        gap: 1rem !important;
        margin-bottom: 1rem !important;
    }

    /* 移动端按钮组优化 */
    .btn-group-modern {
        gap: 0.5rem !important;
    }

    .btn-download-primary,
    .btn-outline-modern,
    .btn-outline-secondary-modern {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.875rem !important;
    }
}

/* 插件介绍标题现代化设计 */
.plugin-introduction-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plugin-introduction-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

/* 插件介绍内容简约设计 */
.content {
    padding: 0;
    margin-bottom: 2rem;
}

.content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.content p:last-of-type {
    margin-bottom: 0;
}

.content h5, .content h6 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.content h5:first-child, .content h6:first-child {
    margin-top: 0;
}

.content h5 {
    font-size: 1.05rem;
    position: relative;
    padding-left: 0.75rem;
}

.content h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 3px;
    height: 1rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

.content h6 {
    font-size: 0.95rem;
    color: #3b82f6;
    margin-bottom: 0.75rem;
}

.content ul {
    margin: 0;
    padding-left: 0;
}

.content ul li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    position: relative;
}

.content ul li:last-child {
    margin-bottom: 0;
}

.content ul li i {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 0.85rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .content h5 {
        font-size: 1rem;
    }

    .content h6 {
        font-size: 0.9rem;
    }

    .content ul li {
        font-size: 0.85rem;
    }

    /* 移动端轮播图间距优化 */
    .carousel {
        margin-bottom: 1rem !important;
    }
}

/* 相关插件标题现代化设计 */
.related-plugins-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-plugins-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

/* 相关插件列表设计 */
.related-plugins-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-plugin-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.related-plugin-item:last-child {
    border-bottom: none;
}

.related-plugin-item:hover {
    color: inherit;
    text-decoration: none;
    padding-left: 0.5rem;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.02), transparent);
    border-radius: 4px;
}

.related-plugin-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    margin-right: 1rem;
    object-fit: cover;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-plugin-item:hover .related-plugin-icon {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.related-plugin-info h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.4;
}

.related-plugin-item:hover .related-plugin-info h3 {
    color: #2563eb;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .related-plugin-item {
        flex-direction: row;
        gap: 0.75rem;
    }

    .related-plugin-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
    }

    .related-plugin-info h3 {
        font-size: 0.85rem;
    }

    /* 相关插件评分值在小屏幕上的样式 */
    .related-plugin-info .d-flex {
        flex-wrap: wrap;
    }

    .related-plugin-info .stars {
        flex-shrink: 0;
    }

    .related-plugin-info .small {
        font-size: 0.8rem;
    }
}

/* 插件详情标题现代化设计 */
.plugin-details-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plugin-details-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

/* 插件详情现代化设计 */
.plugin-details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.detail-item:hover {
    border-radius: 4px;
}

.detail-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    min-width: 100px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.detail-label i {
    color: #3b82f6;
    font-size: 0.9rem;
    opacity: 0.8;
}

.detail-content {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
    text-align: right;
    max-width: 60%;
    word-wrap: break-word;
}

/* 分类链接现代化设计 */
.category-link {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(59, 130, 246, 0.05);
    color: #3b82f6;
    text-decoration: none;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.15);
}

.category-link:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(59, 130, 246, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .detail-item {
        flex-direction: column;
        gap: 0.25rem;
        align-items: flex-start;
    }

    .detail-content {
        text-align: left;
        max-width: 100%;
    }

    .detail-label {
        min-width: auto;
    }
}
footer {
    background: linear-gradient(135deg, #1a1d29 0%, #2d3748 50%, #1a1d29 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

footer .footer-content {
    position: relative;
    z-index: 2;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-copyright a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.footer-beian {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-beian a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.footer-beian a:hover {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

/* 响应式Footer设计 */
@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-copyright, .footer-beian {
        text-align: center !important;
        margin-bottom: 0.5rem;
    }

    .footer-beian {
        margin-bottom: 0;
    }
}

/* Offcanvas 侧边栏样式 */
.offcanvas {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.offcanvas-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.offcanvas-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.offcanvas-body {
    padding: 1rem 0;
}

/* Offcanvas 导航样式 */
.offcanvas .nav-pills .nav-link {
    border-radius: 0;
    margin: 0;
    padding: 0.75rem 1.5rem;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.offcanvas .nav-pills .nav-link:hover {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.05), transparent);
    color: #3b82f6;
    transform: translateX(4px);
}

.offcanvas .nav-pills .nav-link.active {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), transparent);
    color: #3b82f6;
    font-weight: 600;
}

.offcanvas .nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.offcanvas .nav-icon i {
    font-size: 1rem;
    color: inherit;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.offcanvas .nav-pills .nav-link:hover .nav-icon i {
    opacity: 1;
    transform: scale(1.05);
}

.offcanvas .nav-category {
    padding-left: 0;
}

.offcanvas .nav-category .nav-link {
    padding-left: 2.5rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.offcanvas .nav-category .nav-link:hover {
    color: #3b82f6;
}

.offcanvas .nav-category .nav-link.active {
    color: #3b82f6;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.08), transparent);
}

/* 现代化侧边栏按钮样式 */
.sidebar-toggle-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #374151;
    border-radius: 8px;
    padding: 6px 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sidebar-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.sidebar-toggle-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

.sidebar-toggle-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* 返回顶部按钮样式 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #374151;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.back-to-top:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

/* 移动端返回顶部按钮样式 */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* 移动端主内容间距优化 */
@media (max-width: 767.98px) {
    .main-content-container {
        margin-top: 4rem !important;
        padding-top: 0.5rem !important;
    }
}

/* 模态框精美设计 */
.modal {
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
}

.modal-dialog {
    max-width: 500px;
    margin: 3rem auto;
}

.modal-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: transparent;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    padding: 20px 24px 16px;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title i {
    font-size: 1.4rem;
}

.btn-close {
    border-radius: 6px;
    width: 24px;
    height: 24px;
    padding: 0;
    transition: all 0.2s ease;
    opacity: 0.7;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b7280'%3e%3cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    background-size: 26px;
    background-position: center;
    background-repeat: no-repeat;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.btn-close:hover {
    background: rgba(107, 114, 128, 0.08);
    opacity: 1;
    transform: scale(1.05);
    /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ef4444'%3e%3cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important; */
    background-size: 26px;
    background-position: center;
    background-repeat: no-repeat;
}

.btn-close:focus {
    outline: none !important;
    box-shadow: none !important;
}

.modal-body {
    padding: 24px;
    line-height: 1.6;
}

.modal-body p {
    color: #4b5563;
    margin-bottom: 16px;
}

.modal-body ol {
    color: #4b5563;
    padding-left: 18px;
}

.modal-body ol li {
    margin-bottom: 12px;
}

.modal-body strong {
    color: #1f2937;
    font-weight: 600;
}

.modal-body a {
    color: #3b82f6;
    font-weight: 500;
    transition: color 0.2s ease;
}

.modal-body a:hover {
    color: #2563eb;
}

.modal-body img {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.modal-body img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* 响应式模态框 */
@media (max-width: 576px) {
    .modal-dialog {
        max-width: 95%;
        margin: 1.5rem auto;
    }

    .modal-header,
    .modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Tooltip 现代化美化设计 - 精美大气、内敛 */
.tooltip {
    font-family: inherit;
    z-index: 1080;
}

.tooltip .tooltip-inner {
    background: linear-gradient(135deg, rgba(28, 28, 30, 0.95), rgba(35, 35, 40, 0.95));
    color: white;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.12),
            0 4px 16px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 250px;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

/* 箭头美化 - 渐变色配合 */
.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: rgba(28, 28, 30, 0.95);
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: rgba(28, 28, 30, 0.95);
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: rgba(28, 28, 30, 0.95);
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: rgba(28, 28, 30, 0.95);
}

/* Meta 信息悬停效果 - 移除动效 */
[data-bs-toggle="tooltip"] {
    cursor: pointer;
}

/* 轮播图图片点击效果 */
.carousel-image {
    cursor: zoom-in;
    transition: all 0.3s ease;
}

.carousel-image:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

/* 小红书风格图片查看器 */
.image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: none;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.image-viewer.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.image-viewer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.image-viewer-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.image-viewer-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 10;
}

.image-counter {
    color: white;
    font-size: 16px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.image-viewer-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.image-viewer-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.image-viewer-close i {
    font-size: 20px;
}

.image-viewer-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 80px;
}

.image-container {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* 图片切换动画类 - 仅支持左右滑动效果 */
.image-slide-left {
    animation: slideLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-slide-right {
    animation: slideRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 左右滑动动画关键帧 */
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.image-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.image-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.image-nav-prev {
    left: 20px;
}

.image-nav-next {
    right: 20px;
}

.image-nav-btn i {
    font-size: 24px;
}

.image-viewer-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.image-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

/* 移动端优化 */
@media (max-width: 768px) {
    .image-viewer-content {
        padding: 60px 20px;
    }

    .image-nav-btn {
        width: 40px;
        height: 40px;
    }

    .image-nav-btn i {
        font-size: 20px;
    }

    .image-counter {
        font-size: 14px;
        padding: 6px 12px;
    }

    .image-viewer-close {
        width: 36px;
        height: 36px;
    }

    .image-viewer-close i {
        font-size: 18px;
    }
}

.header-div {
    text-indent: -9999px;
    background-image: url(/static/logo11.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 40px;
    width: 178px;
}