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

body {
    font-family: "Microsoft YaHei", sans-serif;
    background: #f5f5f5 url(../image/index_bg.jpg) no-repeat top center;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 顶部统计信息 */
.stats-bar {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats-item {
    font-size: 16px;
}

.stats-item i {
    color: #e74c3c;
    font-weight: bold;
}

/* 标题样式 */
.section-title {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    margin: 30px 0 20px;
    padding-left: 15px;
    color: #333;
}

.section-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 22px;
    background: linear-gradient(to bottom, #ff6b6b, #ff8e53);
    border-radius: 2px;
}

/* 置顶推荐样式 - 单行布局 */
.top-recommend {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.top-recommend-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.top-item {
    background: #f9f9f9;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    padding: 15px;
}

.top-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.top-item-header {
    display: flex;
    align-items: center;
    min-width: 250px;
}

.top-item-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
}

.top-item-logo img {
    max-width: 100%;
    max-height: 100%;
}

.top-item-title {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
}

.top-item-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-item-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.top-item-time {
    font-size: 14px;
    color: #666;
}

.top-item-hot {
    font-size: 14px;
    color: #e74c3c;
    font-weight: bold;
}

.top-item-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
    max-width: 400px;
}

.top-item-actions {
    display: flex;
    gap: 10px;
}

.btn {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    min-width: 80px;
}

.btn-qq {
    background: #12b7f5;
    color: white;
}

.btn-visit {
    background: #4CAF50;
    color: white;
}

.btn-line {
    background: #9C27B0;
    color: white;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* 新服推荐样式 - 修复按钮高度 */
.new-server-recommend {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.server-table {
    width: 100%;
    border-collapse: collapse;
}

.server-table thead {
    background: linear-gradient(to right, #4a6ee0, #6a82fb);
}

.server-table th {
    color: white;
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.server-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
    height: 60px;
}

.server-table tbody tr:hover {
    background: #f9f9f9;
}

.server-table td {
    padding: 12px 8px;
    text-align: center;
    font-size: 13px;
    vertical-align: middle;
}

.server-name {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    color: #2c3e50;
}

.server-version {
    color: #e74c3c;
}

.server-time {
    color: #3498db;
}

.server-game {
    color: #9b59b6;
}

.server-desc {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #7f8c8d;
}

.server-qq {
    color: #12b7f5;
}

.server-link {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background: #4CAF50;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    height: 36px;
    min-width: 90px;
    box-sizing: border-box;
}

.server-link a:hover {
    background: #388E3C;
    transform: translateY(-2px);
}

/* 底部推荐区域 */
.bottom-recommend {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.recommend-section {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

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

.section-header h3 {
    font-size: 18px;
    color: #333;
}

.section-header a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.section-header a:hover {
    color: #4a6ee0;
}

/* 精品私服推荐样式 */
.Min5 {
    margin: 40px 0;
}

.QZtitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eaeaea;
}

.QZtitle span {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    position: relative;
    padding-left: 15px;
}

.QZtitle span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(to bottom, #4a6ee0, #6a82fb);
    border-radius: 2px;
}

.QZtitle .more {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.QZtitle .more:hover {
    color: #4a6ee0;
}

.QZtitle .more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.QZtitle .more:hover i {
    transform: translateX(3px);
}

.zt_item {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    list-style: none;
}

.zt_item li {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.zt_item li:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: 85%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.zt_item li:hover .bg-image {
    transform: scale(1.05);
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.content-wrapper {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
    color: white;
}

.game-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.game-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.game-title {
    flex: 1;
}

.game-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.game-type {
    font-size: 12px;
    opacity: 0.9;
}

.game-desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.game-hot {
    color: #ff6b6b;
    font-weight: bold;
}

.game-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    flex: 1;
    text-align: center;
    padding: 8px 5px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
}

.action-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.action-btn.qq {
    background: rgba(18, 183, 245, 0.7);
}

.action-btn.visit {
    background: rgba(76, 175, 80, 0.7);
}

.action-btn.line {
    background: rgba(156, 39, 176, 0.7);
}

/* 保留原有的表格样式 */
.content_table th {
    text-align: center;
}

.tableBorder1 {
    FONT-WEIGHT: normal; 
    FONT-SIZE: 12px; 
    LINE-HEIGHT: normal; 
    FONT-STYLE: normal; 
    FONT-VARIANT: normal;
    width:1200px;
    margin:0 auto;
}

.content_table TH {
    FONT-WEIGHT: solid; 
    FONT-SIZE: 12px; 
    COLOR: #FFFF00; 
    HEIGHT: 22px; 
    BACKGROUND-COLOR: #993333;
}

.content_table TH A {
    COLOR: #ffffff; 
    TEXT-DECORATION: none;
}

.content_table TH A:hover {
    COLOR: #ffffcc; 
    TEXT-DECORATION: underline;
}

.content_table TR.TableRow {
    FONT-WEIGHT: normal; 
    FONT-SIZE: 12px; 
    COLOR: #f7f7f7; 
    HEIGHT: 22px; 
}

.content_table TD.TableRow {
    BACKGROUND-COLOR: #0e0280;
}

.announce {
    padding-LEFT: 305px;
    padding-top: 5px;
}

td.TableTitle1 { background-color: #335EA8; Color: #FFFFFF; }
td.TableTitle2 { background-color: #E4E8EF; }
td.TableBody1 { background-color: #FFFFFF; line-height: normal; }
td.TableBody2 { background-color: #E4E8EF; line-height: normal; }
.tableBorder3 { border: 1px #547FD1 solid; background-color: #D6E0EF; }
.content_table table {
    border-collapse: collapse;
    border-spacing: 0;
}

table th{padding:6px 0;}
table td{border:0;padding:5px 0;}
#footer table td{padding:0;}
.time{color:red!important;}
.legendCon thead th{background-color:#00BFFF;color:#FFFF00;font-weight:bold;}
.tableBorder1 td,.legendCon td{border:1px solid #cb8181; overflow: hidden;word-break: break-all;font-weight:bold;}
.tableBorder1 tr:first-of-type td,.legendCon tr:first-of-type td{border-top:0!important;font-weight:bold;}
.tableBorder1 th{border:1px solid #cb8181;border-top:0;font-weight:bold;}
.tableBorder1 tr td:nth-of-type(5),.legendCon tr td:nth-of-type(5){text-align:center;padding-left:5px;color:#FF4500;font-weight:bold;}
.tableBorder2 td{padding:0;}
.fb{font-weight:bold;}
.color1{color:#00FA9A!important;}
table tr td.tl{text-align:center!important;padding-left:5px;}
table td{height: 18px;line-height: 30px;overflow:hidden }
table td a{height: 18px;line-height: 18px; }

table tbody tr:hover .rkk {
    display: inline-block;
    background: #f00;
    background-size: contain;
    width: 84px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .stats-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-item {
        flex-direction: column;
        text-align: center;
    }
    
    .top-item-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0 0 0;
    }
    
    .top-item-desc {
        max-width: 100%;
    }
    
    .server-table {
        display: block;
        overflow-x: auto;
    }
    
    .server-table th, 
    .server-table td {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .server-desc {
        max-width: 150px;
    }
    
    .bottom-recommend {
        flex-direction: column;
    }
    
    .zt_item {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        gap: 15px;
    }
    
    .QZtitle {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .zt_item li {
        min-height: 280px;
    }
    
    .game-header {
        flex-direction: column;
        text-align: center;
    }
    
    .game-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 992px) {
    .zt_item {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

/* 加载动画 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.zt_item li {
    animation: fadeIn 0.5s ease forwards;
}

/* 为每个卡片设置不同的延迟动画 */
.zt_item li:nth-child(1) { animation-delay: 0.1s; }
.zt_item li:nth-child(2) { animation-delay: 0.2s; }
.zt_item li:nth-child(3) { animation-delay: 0.3s; }
.zt_item li:nth-child(4) { animation-delay: 0.4s; }
.zt_item li:nth-child(5) { animation-delay: 0.5s; }
.zt_item li:nth-child(6) { animation-delay: 0.6s; }

/* 分类标签样式 */
.category-tabs {
    margin: 15px 0;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
}

.tab-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tab-tag {
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    color: #333;
}

.tab-tag:hover {
    border-color: #1890ff;
    color: #1890ff;
}

.tab-tag.active {
    background: #1890ff;
    color: #fff;
    border-color: #1890ff;
}
/* 分类标签样式 - 与原有设计协调 */
.category-tabs {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tab-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tab-tag {
    padding: 8px 16px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    text-decoration: none;
}

.tab-tag:hover {
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.2);
}

.tab-tag.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

/* 分类列表样式 */
.category-list {
    display: none;
    animation: fadeIn 0.3s ease;
}

.category-list.active {
    display: block;
}

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

/* 表格基础样式 - 与原有设计协调 */
.server-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.server-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.server-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #495057;
}

.server-table tr:hover {
    background-color: #f8f9fa;
}

.server-table tr:last-child td {
    border-bottom: none;
}

/* 响应式设计修复 */
@media screen and (max-width: 1200px) {
    .server-table {
        font-size: 13px;
    }
    
    .server-table th,
    .server-table td {
        padding: 10px 12px;
    }
}

@media screen and (max-width: 992px) {
    .tab-tags {
        gap: 8px;
    }
    
    .tab-tag {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .server-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media screen and (max-width: 768px) {
    .category-tabs {
        margin: 15px 0;
        padding: 10px;
    }
    
    .tab-tags {
        justify-content: flex-start;
        gap: 6px;
    }
    
    .tab-tag {
        padding: 6px 10px;
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .server-table {
        font-size: 12px;
    }
    
    .server-table th,
    .server-table td {
        padding: 8px 10px;
    }
    
    /* 移动端表格列调整 */
    .server-name { min-width: 120px; }
    .server-version { min-width: 100px; }
    .server-time { min-width: 140px; }
    .server-game { min-width: 80px; }
    .server-desc { min-width: 150px; }
    .server-qq { min-width: 80px; }
    .server-link { min-width: 80px; }
}

@media screen and (max-width: 576px) {
    .category-tabs {
        padding: 8px;
    }
    
    .tab-tags {
        gap: 4px;
    }
    
    .tab-tag {
        padding: 5px 8px;
        font-size: 11px;
        border-radius: 15px;
    }
    
    .server-table {
        font-size: 11px;
    }
    
    .server-table th,
    .server-table td {
        padding: 6px 8px;
    }
    
    /* 进一步调整列宽 */
    .server-name { min-width: 100px; }
    .server-version { min-width: 80px; }
    .server-time { min-width: 120px; }
    .server-game { min-width: 60px; }
    .server-desc { min-width: 120px; }
    .server-qq { min-width: 60px; }
    .server-link { min-width: 60px; }
}

/* 特殊样式处理表情符号 */
.server-table td {
    line-height: 1.4;
}

/* 链接样式 */
.server-link a {
    color: #007bff;
    text-decoration: none;
    padding: 4px 8px;
    border: 1px solid #007bff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.server-link a:hover {
    background: #007bff;
    color: white;
}

/* 加载状态 */
.category-list.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* 空状态提示 */
.category-list:empty::before {
    content: "暂无数据";
    display: block;
    text-align: center;
    padding: 40px;
    color: #6c757d;
    font-style: italic;
}
/* 方案1：蓝色渐变配色方案 - 现代专业 */
.category-tabs.scheme-tech {
    background: #f0f8ff;
    border: 1px solid #3399ff;
}

.tab-tag.scheme-tech {
    background: #fff;
    border: 2px solid #b3d9ff;
    color: #0066cc;
}

.tab-tag.scheme-tech:hover {
    border-color: #3399ff;
    color: #3399ff;
    transform: translateY(-1px);
}

.tab-tag.scheme-tech.active {
    background: linear-gradient(135deg, #3399ff, #0066cc);
    color: #fff;
    border-color: #0052cc;
    box-shadow: 0 4px 12px rgba(51, 153, 255, 0.3);
}

.server-table.scheme-tech th {
    background: linear-gradient(135deg, #3399ff, #0066cc);
    color: white;
}

/* 方案2：活力橙红色系 - 热情游戏风 */
.category-tabs.scheme-gaming {
    background: #fff5f5;
    border: 1px solid #fed7d7;
}

.tab-tag.scheme-gaming {
    background: #fff;
    border: 2px solid #fc8181;
    color: #c53030;
}

.tab-tag.scheme-gaming:hover {
    border-color: #e53e3e;
    color: #e53e3e;
    transform: scale(1.05);
}

.tab-tag.scheme-gaming.active {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: #fff;
    border-color: #c05621;
    box-shadow: 0 4px 12px rgba(237, 137, 54, 0.3);
}

.server-table.scheme-gaming th {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
}

/* 方案3：自然绿色系 - 清新舒适 */
.category-tabs.scheme-nature {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
}

.tab-tag.scheme-nature {
    background: #fff;
    border: 2px solid #68d391;
    color: #2f855a;
}

.tab-tag.scheme-nature:hover {
    border-color: #38a169;
    color: #38a169;
}

.tab-tag.scheme-nature.active {
    background: linear-gradient(135deg, #38a169, #2f855a);
    color: #fff;
    border-color: #276749;
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.3);
}

.server-table.scheme-nature th {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
}

/* 方案4：深色模式 - 高端大气 */
.category-tabs.scheme-dark {
    background: #2d3748;
    border: 1px solid #4a5568;
}

.tab-tag.scheme-dark {
    background: #4a5568;
    border: 2px solid #718096;
    color: #e2e8f0;
}

.tab-tag.scheme-dark:hover {
    border-color: #90cdf4;
    color: #90cdf4;
}

.tab-tag.scheme-dark.active {
    background: linear-gradient(135deg, #805ad5, #6b46c1);
    color: #fff;
    border-color: #553c9a;
    box-shadow: 0 4px 12px rgba(128, 90, 213, 0.3);
}

.server-table.scheme-dark th {
    background: linear-gradient(135deg, #805ad5, #6b46c1);
    color: white;
}

.server-table.scheme-dark {
    background: #2d3748;
    color: #e2e8f0;
}

.server-table.scheme-dark td {
    border-bottom: 1px solid #4a5568;
    color: #cbd5e0;
}

/* 响应式设计保持 */
@media screen and (max-width: 768px) {
    .tab-tag {
        padding: 6px 10px;
        font-size: 12px;
        margin-bottom: 5px;
    }
}

/* 基础样式保持不变 */
.category-tabs {
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
}

.tab-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-tag {
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.server-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.server-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
}

.server-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
}