/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* 头部样式 */
.site-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.logo-area {
    margin-right: 40px;
}

.logo-area .site-logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-list li {
    position: relative;
}

.nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-list li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-more {
    margin-left: 15px;
    position: relative;
}

.more-trigger {
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.more-trigger:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.more-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    min-width: 150px;
    z-index: 100;
}

.more-dropdown li {
    padding: 5px 0;
}

.more-dropdown li a {
    color: #333;
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 14px;
}

.more-dropdown li a:hover {
    background-color: #f5f5f5;
}

.nav-more:hover .more-dropdown {
    display: block;
}

/* 多级下拉菜单样式 */
.dropdown-menus {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: none;
    width: auto;
}

.dropdown-menus.active {
    display: block;
}

.dropdown-panel {
    display: flex;
    padding: 10px 0;
}

.dropdown-column {
    width: 150px;
    padding: 0 10px;
    border-right: 1px solid #eee;
}

.dropdown-column:last-child {
    border-right: none;
    margin-right: 0;
}

.dropdown-column-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #667eea;
}

.dropdown-column-title a {
    color: #333;
    text-decoration: none;
}

.dropdown-column-title a:hover {
    color: #667eea;
}

.dropdown-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-items li {
    margin-bottom: 8px;
}

.dropdown-items li:last-child {
    margin-bottom: 0;
}

.dropdown-items {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.dropdown-items a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 4px 0 4px 20px;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-items a:hover {
    color: #667eea;
}

.dropdown-items a.has-children::before {
    content: '›';
    position: absolute;
    left: 8px;
    color: #667eea;
}

/* 多级子菜单 */
.level-dropdown {
    position: absolute;
    top: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 150px;
    padding: 10px;
    display: none;
    z-index: 1001;
}

.level-dropdown.active {
    display: block;
}

.level-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.level-dropdown li {
    margin-bottom: 6px;
}

.level-dropdown li:last-child {
    margin-bottom: 0;
}

.level-dropdown a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 4px 0 4px 20px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.level-dropdown a:hover {
    color: #667eea;
}

.level-dropdown a.has-children::before {
    content: '›';
    position: absolute;
    left: 8px;
    color: #667eea;
}

/* 主内容区域 */
.main-content {
    padding: 30px 0;
}

.content-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

/* 左侧主体区域 */
.main-section {
    width: 870px;
    padding: 0;
}

/* 右侧边栏 */
.sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-block {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

/* 搜索框包装器 */
.search-box-wrapper {
    margin-bottom: 20px;
}

/* 搜索框 */
.search-box {
    display: flex;
    gap: 0;
    height: 35px;
}

.search-box input {
    flex: 1;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    line-height: 35px;
    height: 35px;
    box-sizing: border-box;
}

.search-box button {
    padding: 0 2px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 35px;
    height: 35px;
    box-sizing: border-box;
    transition: background-color 0.3s;
    width: 40px;
}

.search-box button:hover {
    background: #5a6fd6;
}

/* 二维码区块 */
.qr-code-block {
    text-align: left;
}

.qr-code {
    margin-top: 10px;
    text-align: center;
}

.qr-code img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* 热门文章 */
.hot-articles {
    list-style: none;
    padding: 0;
}

.hot-articles li {
    margin-bottom: 10px;
}

.hot-articles li:last-child {
    margin-bottom: 0;
}

.hot-articles a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s;
}

.hot-articles a:hover {
    color: #667eea;
}

/* 标签云 */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 5px 12px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    border-radius: 20px;
    transition: all 0.3s;
}

.tag:hover {
    background: #667eea;
    color: #fff;
}

/* 广告位 */
.ad-space {
    display: block;
}

.ad-space img {
    width: 100%;
    border-radius: 4px;
}

/* 分类列表 */
.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.category-list a:hover {
    color: #667eea;
}

/* 区域标题 */
.section-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #667eea;
}

.section-header h1 {
    font-size: 22px;
    color: #333;
    margin: 0;
}

/* 面包屑导航 */
.breadcrumb {
    padding: 15px 20px;
    margin: 0 0 20px 0;
    border: none;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb li {
    margin-right: 8px;
}

.breadcrumb li::after {
    content: ">";
    margin-left: 8px;
    color: #999;
}

.breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb li:last-child a {
    color: #666;
    pointer-events: none;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 标签详情 */
.tag-detail {
    margin-bottom: 20px;
}

.tag-header {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.tag-title {
    font-size: 28px;
    color: #333;
    margin: 0 0 10px 0;
}

.tag-description {
    color: #666;
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.6;
}

.tag-article-count {
    color: #999;
    margin: 0;
    font-size: 14px;
}

/* 文章详情 */
.article-detail {
    width: 100%;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.article-header {
    margin-bottom: 30px;
}

.article-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    color: #666;
    font-size: 14px;
}

.meta-item {
    margin-right: 20px;
}

/* 文章详情页摘要区块 */
.article-summary-box {
    background: #f5f7fa;
    border: 1px solid #e8ecf0;
    border-radius: 8px;
    padding: 18px 22px;
    margin-bottom: 25px;
    position: relative;
    line-height: 1.7;
}

.article-summary-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px 0 0 8px;
}

.summary-label {
    font-size: 14px;
    font-weight: bold;
    color: #667eea;
}

.summary-content {
    font-size: 15px;
    color: #555;
}

.article-content {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.article-content h1, .article-content h2, .article-content h3,
.article-content h4, .article-content h5, .article-content h6 {
    margin: 20px 0 10px;
    color: #333;
}

.article-content p {
    margin: 10px 0;
}

.article-content ul, .article-content ol {
    padding-left: 20px;
    margin: 10px 0;
}

.article-tags {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-label {
    font-weight: bold;
    color: #333;
}

.tag-link {
    display: inline-block;
    padding: 4px 12px;
    background-color: #667eea;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.tag-link:hover {
    background-color: #5a6fd6;
}

.article-url {
    margin-top: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.url-label {
    font-weight: bold;
    color: #333;
}

.url-link {
    color: #667eea;
    text-decoration: none;
    word-break: break-all;
}

.url-link:hover {
    text-decoration: underline;
}

/* 分类头部 */
.category-header {
    margin-bottom: 30px;
}

.category-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.category-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 子分类 */
.sub-categories {
    margin-bottom: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.sub-categories h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.sub-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sub-categories li {
    margin: 0;
}

.sub-categories a {
    display: inline-block;
    padding: 5px 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.sub-categories a:hover {
    border-color: #667eea;
    color: #667eea;
}

/* 文章列表 */
/* 首页描述区块 */
.site-description {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.article-list {
    width: 100%;
}

.block {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 15px;
}

.article-item {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateY(-5px); }
    25% { transform: translateY(-8px); }
    50% { transform: translateY(-3px); }
    75% { transform: translateY(-7px); }
}

.article-item.has-image .article-content {
    flex: 1;
    min-width: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
}

.article-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CSS 伪图片样式 */
.article-image.css-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-image.css-thumb a {
    text-decoration: none;
    color: inherit;
}

.article-image.css-thumb > div {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* 文章详情页大缩略图样式 */
.article-large-thumbnail {
    width: 100%;
    max-width: 820px;
    height: 200px;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

.article-large-thumbnail > img,
.article-large-thumbnail > div {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-large-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-list .article-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 12px 0;
}

.article-list .article-title a {
    color: #333;
    text-decoration: none;
}

.article-list .article-title a:hover {
    color: #667eea;
}

.article-summary {
    color: #666;
    line-height: 1.6;
    margin: 12px 0 0 0;
    font-size: 14px;
    background: transparent;
    padding: 0;
    border-left: none;
    border-radius: 0;
}

.article-meta {
    color: #999;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
}

.meta-category {
    color: #667eea;
}

.meta-divider {
    color: #ddd;
}

.meta-time::before {
    content: "📅 ";
}

.meta-views::before {
    content: "👁 ";
}

.article-meta a {
    color: #667eea;
    text-decoration: none;
}

.article-meta a:hover {
    text-decoration: underline;
}

.no-articles {
    text-align: center;
    padding: 60px 0;
    color: #999;
}

/* 底部 */
.site-footer {
    background: #1a1a1a;
    color: #b0b0b0;
    padding: 30px 0;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-row {
    font-size: 14px;
    line-height: 1.8;
    margin: 5px 0;
}

.footer-container a {
    color: #b0b0b0;
    text-decoration: underline;
}

.footer-container a:hover {
    color: #ffffff;
}

/* 下拉菜单容器 */
.dropdown-menus {
    display: none;
}

/* 本文标签卡片 - 独立白色区块 */
.article-tags-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-top: 20px;
}

/* 本文地址卡片 - 独立白色区块 */
.article-url-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-top: 20px;
}

/* 上一篇/下一篇导航卡片 - 独立白色区块 */
.article-nav-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-top: 20px;
}

/* 上一篇/下一篇导航 */
.article-nav {
    display: flex;
    gap: 20px;
}

.nav-prev,
.nav-next {
    flex: 1;
}

.article-nav-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 100px;
    padding: 15px;
    background: #4A90D9;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.article-nav-link:hover {
    background: #3A7BC8;
}

.nav-empty {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 100px;
    padding: 15px;
    background: #4A90D9;
    border-radius: 8px;
    color: #fff;
}

.nav-label {
    font-size: 12px;
}

.nav-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.nav-date {
    font-size: 12px;
    opacity: 0.85;
}

.nav-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

/* 相关推荐卡片 - 独立白色区块 */
.related-articles-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-top: 20px;
}

.related-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #667eea;
}

.related-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.related-articles-card .article-list {
    margin-top: 0;
}

.related-articles-card .article-item {
    padding: 15px 0;
}

.related-articles-card .article-item:first-child {
    padding-top: 0;
}

.related-articles-card .article-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* 标签汇总页样式 */
.tag-index {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 20px;
}

.tag-index .page-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.tag-index .tag-count {
    color: #999;
    font-size: 14px;
    margin: 0 0 20px 0;
}

/* 字母索引导航 */
.tag-alphabet {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
}

.tag-alphabet .alphabet-link {
    display: inline-block;
    padding: 4px 12px;
    margin: 2px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.tag-alphabet .alphabet-link:hover {
    background: #667eea;
    border-color: #667eea;
    color: #fff;
}

/* 标签列表 */
.tag-list {
    margin-top: 0;
}

.tag-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.tag-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tag-group .letter-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
    padding-left: 10px;
    border-left: 4px solid #667eea;
}

.tag-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f5f7fa;
    border-radius: 20px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.tag-item:hover {
    background: #667eea;
    color: #fff;
}

.tag-item .tag-name {
    margin-right: 6px;
}

.tag-item .tag-count {
    font-size: 12px;
    opacity: 0.7;
    margin: 0;
}

.tag-item:hover .tag-count {
    opacity: 1;
}

.tag-items .no-tag {
    color: #999;
    font-size: 14px;
    padding: 6px 14px;
    font-style: italic;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .content-container {
        width: 100%;
        padding: 0 15px;
        flex-direction: column;
    }
    
    .main-section {
        width: 100%;
    }
    
    .sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .article-nav {
        flex-direction: column;
    }
    
    .qr-code-block {
        display: none;
    }
}

/* 分页样式 */
.pagination {
    margin-top: 30px;
    text-align: center;
    clear: both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pagination ul {
    list-style-type: none !important;
    display: inline-flex !important;
    gap: 8px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.pagination li {
    display: inline-block !important;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.pagination li a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #667eea;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination li a:hover {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
}

.pagination li.active span {
    display: block;
    padding: 8px 16px;
    background: #667eea;
    color: #fff;
    border: 1px solid #667eea;
    border-radius: 4px;
}

.pagination li:first-child a,
.pagination li:last-child a {
    font-weight: bold;
}

.pagination-jump {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    vertical-align: middle;
}

.pagination-jump input {
    width: 60px;
    padding: 6px 8px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.pagination-jump button {
    padding: 6px 16px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.pagination-jump button:hover {
    background: #5a6fd6;
}