/* skin/css/index.css */

/* Banner */
.banner-box { margin-bottom: 25px; padding: 15px 0; }
.main-swiper {
    border-radius: 12px; border: 2px solid var(--mem-black);
    box-shadow: 4px 4px 0 var(--mem-purple);
}
.swiper-pagination-bullet-active { background: var(--mem-yellow); border: 1px solid #000; }

/* List */
.list-wrapper { padding: 0 5px; }
.row-item {
    display: flex; align-items: center; padding: 15px; margin-bottom: 15px;
}
.row-item img {
    width: 60px; height: 60px; border-radius: 12px; border: 2px solid var(--mem-black);
    margin-right: 15px; background: #fff;
}
.ri-info { flex: 1; }
.ri-info h3 { font-size: 16px; font-weight: 900; margin-bottom: 4px; }
.ri-info p { font-size: 12px; font-weight: bold; color: #777; background: #eee; display: inline-block; padding: 2px 6px; border-radius: 4px; }

/* Grid 4 */
.grid-4 {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px;
    padding: 15px;
}
.g4-item { text-align: center; }
.g4-item img {
    width: 44px; height: 44px; border-radius: 10px; margin: 0 auto 5px;
    border: 2px solid var(--mem-black); box-shadow: 2px 2px 0 var(--mem-black);
}
.g4-item span { font-size: 11px; font-weight: bold; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }

/* Simple List */
.sl-row {
    display: flex; align-items: center; padding: 10px 0;
    border-bottom: 2px dashed #eee;
}
.sl-row:last-child { border-bottom: none; }
.sl-row img { width: 32px; height: 32px; border-radius: 8px; margin-right: 10px; border: 2px solid var(--mem-black); }
.sl-row span { flex: 1; font-weight: bold; }
.btn-mem.small { padding: 4px 10px; font-size: 11px; background: var(--mem-pink); }

/* Rank */
.rank-home { padding: 10px 15px; }
.rank-row { display: flex; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; }
.rank-row:last-child { border-bottom: none; }
.num { width: 24px; text-align: center; font-weight: 900; color: #ccc; margin-right: 10px; }
.num.n1 { color: var(--mem-pink); font-size: 18px; }
.num.n2 { color: var(--mem-yellow); font-size: 18px; }
.num.n3 { color: var(--mem-green); font-size: 18px; }
.name { flex: 1; font-weight: bold; }
.hot { font-size: 12px; font-weight: bold; color: #999; }