/* ============================================================
   【8】图片资料板块（图片 + 浮动文字标签）
   对应 HTML: .img-box, .img-box-img, .img-span, .img-span-s, .img-text
   ============================================================ */

.img-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.img-box-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ---- 图片上的文字标签（普通定位） ---- */
.img-span {
    font-family: "HongLeiXingShu", "KaiTi", cursive;
    position: absolute;
    font-size: 22px;
    z-index: 10;
    color: #ff4500;
    font-weight: 700;
}

/* ---- 图片上的文字标签（竖向排列） ---- */
.img-span-s {
    writing-mode: vertical-rl;
    display: inline-block;
    vertical-align: top;
    font-family: "HongLeiXingShu", "KaiTi", cursive;
    position: absolute;
    font-size: 22px;
    z-index: 10;
    color: #ff4500;
    font-weight: 700;
}

/* ---- 图片上的多行文本（如六肖18码的号码区） ---- */
.img-text {
    position: absolute;
    font-size: 18px;
    z-index: 10;
    font-weight: 700;
    text-align: left;
}