
.content-container {
    width: 1200px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}

.banner {
    height: 600px;
    line-height: 20px;
    background: linear-gradient(180deg, #ffa04d 0%, #f60 100%);
    color: #fff;
    font-size: 14px;
}

.banner-container {
    width: 1200px;
    max-width: 100%;
    display: flex;
    margin: 0 auto;

    justify-content: space-between
}

.banner-left {
    width: 816px;
    max-width: 65%;
    padding-top: 100px;
}

.banner-right {
    width: 300px;
    max-width: 35%;
    height: 500px;
    background-color: #fff;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.banner-left h1 {
    font-size: 36px;
    line-height: 50px;
    font-weight: 500;
    margin-bottom: 30px;
}

.banner-left p {
    font-size: 18px;
    line-height: 30px;
    color: whitesmoke;
}

.not-login {
    padding-top: 150px;
}

.not-login p {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid #bbb;
    margin: 0 auto 15px;
    padding-top: 13px;
}

.is-login {
    padding-top: 30px;
}

.is-login > p {
    width: 100px;
    height: 100px;
    background-color: #FF6B35;
    border-radius: 50%;
    margin: 0 auto 15px;
    padding-top: 13px;
}

.info li {
    list-style: none;
    display: flex;
    color: #333;
    font-size: 14px;
    padding-left: 45px;
    margin-top: 40px;
}

.info img {
    height: 58px;
}

.is-login b {
    font-size: 20px;
    color: #333;
}

.info {
    margin-top: 35px;
}

.info span {
    font-size: 18px;
}

.info p {
    line-height: 25px;
    text-align: left;
    padding-left: 10px;
}

.content {
    width: 1440px;
    max-width: 100%;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    margin: 0 auto;
    position: relative;
    top: -100px;
    padding: 45px 0;
}

.title-tag {
    display: inline-block;
    width: 125px;
    height: 32px;
    line-height: 32px;
    border-radius: 2px;
    background-color: rgba(230, 244, 255, 1);
    color: #003366;
    font-size: 14px;
    text-align: center;
    margin-right: 20px;
}

.tag {
    color: #003366;
}

.time {
    color: #666;
}

.top {
    width: 180px;
    height: 36px;
    border-radius: 2px;
    background-color: rgba(241, 127, 25, 1);
    color: #fff;
    float: right;
    line-height: 36px;
    font-size: 14px;
    display: flex;
    justify-content: center;
}

.list {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-around; */
    margin-top: 40px;

}

.list-item {
    list-style: none;
    width: 380px;
    height: 180px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(241, 193, 157, 1);
    padding: 20px 25px;
    margin-bottom: 20px;
    margin-right: 10px;
    /* transition: .5s; */
}

.list-item a {
    display: block;
    line-height: 25px;
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
}

.list-item a:hover {
    color: #000;
}

.tags span {
    display: inline-block;
    width: 70px;
    height: 20px;
    border-radius: 8px;
    color: #003366;
    font-size: 12px;
    text-align: center;
    background-color: #E6F4FF;
    margin-right: 5px;
}

.tags .guide {
    color: #1677ff; /* 蓝：引导/信息 */
    background-color: #e6f4ff; /* 浅蓝底 */
}

.tags .very-easy {
    color: #2ea043; /* 绿：非常简单 */
    background-color: #eaf7ee; /* 浅绿底 */
}

.tags .easy {
    color: #238636; /* 深一点的绿：简单 */
    background-color: #dff6e6; /* 更“实”一点的浅绿底 */
}

.tags .medium {
    color: #d97706; /* 橙：中等/提醒 */
    background-color: #fff7ed; /* 浅橙底 */
}

.tags .difficult {
    color: #dc2626; /* 红：困难 */
    background-color: #fee2e2; /* 浅红底 */
}

.tags .very-difficult {
    color: #7f1d1d; /* 暗红：非常困难 */
    background-color: #fbd5d5; /* 更深一点的浅红底 */
}


.tags {
    padding-bottom: 30px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(187, 187, 187, 0.24);
}

.result {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
}

.success {
    color: rgba(50, 205, 50, 1);
}

.fail {
    color: rgba(255, 68, 68, 1);
}

.result font {
    color: rgba(255, 165, 0, 1);
    font-size: 16px;
}

/* ===== 更干净的分页条（白底 + 橙主题）===== */
.pagenation{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 8px;
  margin-top: 60px;
  padding: 0;
  user-select:none;
}

.pagenation li{
  list-style:none;
}

.pagenation li a,
.pagenation li span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 36px;
  min-width: 36px;
  padding: 0 12px;

  border-radius: 10px;
  border: 1px solid rgba(241, 193, 157, 0.75);
  background: #fff;
  color: rgba(83, 77, 78, 1);

  text-decoration:none;
  transition: .15s ease;
}

.pagenation li a:hover{
  border-color: rgba(241, 127, 25, 0.75);
  color: rgba(241, 127, 25, 1);
  background: rgba(241, 127, 25, 0.06);
}

.pagenation li.active a{
  background: rgba(241, 127, 25, 1);
  border-color: rgba(241, 127, 25, 1);
  color: #fff;
  cursor: default;
}

.pagenation li.disabled a{
  opacity: .45;
  pointer-events:none;
}

.pagenation li.nav a{
  font-weight: 800;
}

.pagenation li.ellipsis span{
  border-color: transparent;
  background: transparent;
  color: #999;
  min-width: 12px;
  padding: 0 6px;
}

.ticker {
    height: 32px; /* 一条的高度，按你的UI改 */
    overflow: hidden;
    position: relative;
}

.ticker-list {
    will-change: transform;
}

.ticker-item {
    height: 32px;
    line-height: 32px;
    white-space: nowrap;
}

/* ===== Banner 右侧用户卡片（白+橙，高级感） ===== */
.banner-container {
    align-items: center; /* 让左右在 banner 内垂直对齐 */
}

.banner-right {
    width: 380px;
    max-width: 35%;
    height: auto; /* 不要 500px 白墙 */
    background: transparent; /* 不要整块白底 */
    padding-top: 0; /* 交给容器居中 */
    display: flex;
    justify-content: flex-end;
}

/* ===== 右侧浮层卡片：更协调（白卡 + 橙按钮） ===== */
.banner-user-card {
    width: 340px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(241, 193, 157, 0.55);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    color: #333;
    margin-top: 25%;
}

.banner-user-card .card-head {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(187, 187, 187, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-user-card .head-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.banner-user-card .head-sub {
    font-size: 12px;
    color: #999;
}

.banner-user-card .card-body {
    padding: 14px 16px 16px;
}

/* 登录按钮：跟你站内橙色一致，别用太“花”的渐变 */
.banner-login-btn {
    width: 100%;
    height: 38px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    background: #ff7a2f; /* 更接近你主题橙 */
    box-shadow: 0 10px 20px rgba(255, 122, 47, 0.25);
}

.banner-login-btn:hover {
    filter: brightness(0.98);
}

.guest-hint {
    margin-top: 10px;
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* 已登录：头部区域 */
.card-head .head-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f3f3f3;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(241, 193, 157, 0.55);
}

.nickname {
    font-size: 14px;
    font-weight: 700;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.realm {
    margin-top: 3px;
    font-size: 12px;
    color: #777;
}

.realm .badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(241, 127, 25, 0.12);
    color: rgba(241, 127, 25, 1);
    margin-right: 6px;
}

/* 排名：小胶囊，不要太抢 */
.rank-pill {
    min-width: 76px;
    height: 44px;
    border-radius: 12px;
    background: rgba(241, 127, 25, 1);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rank-top {
    font-size: 12px;
    opacity: .9;
    line-height: 1;
}

.rank-num {
    font-size: 16px;
    font-weight: 800;
    margin-top: 4px;
    line-height: 1;
}

/* 数据区：更像你站的 list-item 风格 */
.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.stat {
    border: 1px solid rgba(187, 187, 187, 0.24);
    border-radius: 12px;
    padding: 10px 10px;
    background: rgba(255, 255, 255, 1);
}

.stat-label {
    font-size: 12px;
    color: #888;
}

.stat-value {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.card-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

.card-link {
    flex: 1;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.card-link--primary {
    background: rgba(241, 127, 25, 1);
    color: #fff;
}

.card-link--ghost {
    background: #fff;
    color: rgba(241, 127, 25, 1);
    border: 1px solid rgba(241, 127, 25, 0.55);
}

/* ===== 突破按钮样式 ===== */
.breakthrough-btn {
    width: 50px;
    height: 36px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff7a2f, #ff9f00);
    box-shadow: 0 10px 20px rgba(255, 122, 47, 0.25);
    position: relative;
    top: 18px;
    transform: translateY(-50%);
    text-align: center;
    line-height: 36px;
    transition: all 0.3s ease;
}

.breakthrough-btn:hover {
    filter: brightness(1.1);
}

.breakthrough-btn:focus {
    outline: none;
}

/* ===== 右上角按钮组：排行榜 + 修仙指引 ===== */
.top-actions{
    float: right;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* 你原来的 .top 有 float:right，这里在按钮组里禁用掉 */
.top-actions .top{
    float: none;
}

/* 修仙指引：描边/幽灵按钮（白底 + 橙描边），和排行榜主按钮形成主次 */
.top.top--guide{
    width: 120px;               /* 你也可以改 130/140 */
    background: #fff;
    color: rgba(241, 127, 25, 1);
    border: 1px solid rgba(241, 127, 25, 0.55);
    box-sizing: border-box;
}

.top.top--guide:hover{
    filter: brightness(0.99);
}

.top-emoji{
    margin-right: 6px;
    font-size: 16px;
    line-height: 1;
}
