/* 封禁印章样式 */
.ban-stamp-container {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 350px;
    z-index: 9999;
    pointer-events: none;
    overflow: visible;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ban-stamp {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    font-family: 'SimHei', '黑体', sans-serif;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
    box-shadow: none;
    transform: rotate(20deg); /* 左高右低 */
    padding: 40px;
    box-sizing: border-box;
    clip-path: polygon(5% 0%, 95% 0%, 100% 10%, 100% 90%, 95% 100%, 5% 100%, 0% 90%, 0% 10%);
    pointer-events: none;
}

.ban-stamp::before {
    content: none;
}

/* 临时封禁样式 - 黄色 */
.ban-stamp-temporary {
    color: #ffc107;
    border: 5px dashed #ffc107;
}

.ban-stamp-temporary .ban-stamp-type {
    border-bottom: 2px solid #ffc107;
}

.ban-stamp-temporary .ban-stamp-endtime {
    border: 2px dashed #ffc107;
}

/* 永久封禁样式 - 红色 */
.ban-stamp-permanent {
    color: red;
    border: 5px dashed red;
}

.ban-stamp-permanent .ban-stamp-type {
    border-bottom: 2px solid red;
}

.ban-stamp-permanent .ban-stamp-endtime {
    border: 2px dashed red;
}

/* 共同样式 */
.ban-stamp-type {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: none;
    padding-bottom: 5px;
    width: 100%;
}

.ban-stamp-reason {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 8px;
    text-shadow: none;
    width: 100%;
}

.ban-stamp-endtime {
    font-size: 12px;
    line-height: 1.2;
    text-shadow: none;
    background: transparent;
    padding: 5px 10px;
    border-radius: 10px;
    width: fit-content;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .ban-stamp-container {
        width: 400px;
        height: 220px;
    }
    
    .ban-stamp {
        padding: 35px;
    }
    
    .ban-stamp-type {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .ban-stamp-container {
        width: 350px;
        height: 200px;
    }
    
    .ban-stamp {
        padding: 30px;
    }
    
    .ban-stamp-type {
        font-size: 22px;
    }
    
    .ban-stamp-reason {
        font-size: 13px;
    }
    
    .ban-stamp-endtime {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .ban-stamp-container {
        width: 300px;
        height: 180px;
    }
    
    .ban-stamp {
        padding: 25px;
    }
    
    .ban-stamp-type {
        font-size: 20px;
    }
    
    .ban-stamp-reason {
        font-size: 12px;
    }
    
    .ban-stamp-endtime {
        font-size: 10px;
    }
}