.page-header {
    background: #edf6ff;
    padding: 16px 24px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 20px auto;
}

.page-title {
    font-size: 20px;
    font-weight: bold;
    color: #0066CD;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-buttons > a {
    padding: 8px 18px;
    border-radius: 6px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    border: solid 1px #0066CD;
}

.active {
    background-color: #0066CD!important;
    color: #fff!important;
}

.active:hover{
    background-color:#045DB7!important;
}

.btn-normal {
    background-color: #fff;
    color: #333;
    border: 1px solid #ccd6e0 ;
    margin-left: 8px;
    display:inline-block;
}
.btn-normal:hover{
  background: #EDF6FF;
  border: solid 1px #0066CD;
    color: #0066CD;
}

.ban-card-wrap {
    max-width: 1240px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ban-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.ban-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

/* 外层定位容器，用来放溢出的角标 */
.ban-avatar-wrap {
    width: 60px;
    height: 60px;
    position: relative;
    flex-shrink: 0;
    overflow: visible;
}
/* 内层负责把图片裁成圆形 */
.banavatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #b7d6f5;
    overflow: hidden;
}
.banavatar a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.banavatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 封角标，探出头像右上角 */
.ban-tag {
    position: absolute;
    top: -5px;
    right: -5px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #dd3333;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 0 0 2px #fff;
}

.user-name {
    font-weight: bold;
    font-size: 16px;
    color: #222;
    margin-bottom: 10px;
}

.user-name a {
    color: #222;
    text-decoration: none;
}

.user-name a:hover {
    color: #0066CD;
}

.user-uid {
    color: #777;
    font-size: 14px;
    font-weight: normal;
}

.time-row {
    font-size: 12px;
    color: #555;
    line-height: 1.7;
    margin: 0px 0;
}

/* 分隔线 */
.reason-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 14px 0 10px;
}

.reason-row {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    display: flex;
    gap: 6px;
    align-items: center;
}
.bancon{
    color: #0066CD;
    word-break: break-word;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .ban-card-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .ban-card-wrap {
        grid-template-columns: 1fr;
    }
}