/* 按截图还原样式（index.php 结构专用） */
html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100%;
    background: #e5e5e5;
    color: #222;
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    font-size: 14px;
}

.head {
    width: 100%;
    background: #0a5ea8;
    text-align: center;
    color: #fff;
    padding: 10px 8px 8px;
}

.head > div:first-child {
    display: none;
}

.head h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #fff;
}

.head > div:last-child {
    margin-top: 2px;
    font-size: 11px;
    line-height: 1.3;
    color: #fff;
    font-weight: 400;
}

.middle {
    width: 100%;
    max-width: 100%;
    margin: 0;

}

/* 覆盖 style.css 对 img 的全局影响 */
.middle img {
    width: auto;
    max-width: 100%;
    margin: 0;
    display: inline-block;
}

.Htitle {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #045f9b;
    line-height: 1.2;
}

.code {
    border: 1px solid #333;
    background: transparent;
    padding: 10px 10px 8px;
}

.code form {
    line-height: 1.8;
}

.code form > div {
    min-height: 22px;
    color: #d40000;
}

.code form input[type="text"] {
    width: 180px;
    height: 28px;
    border: 1px solid #333;
    background: #fff;
    font-size: 14px;
    padding: 0 6px;
    vertical-align: middle;
}

.code form input[type="submit"] {
    height: 30px;
    margin-left: 3px;
    border: 1px solid #666;
    background: #dfdfdf;
    color: #222;
    font-size: 14px;
    padding: 0 6px;
    vertical-align: middle;
    cursor: pointer;
}

.selectover {
    margin-top: 8px;
    color: #58b95c;
    font-size: 16px;
    line-height: 1.8;
    word-break: break-all;
}

.ACCOK,
.ACCERR {
    font-weight: 700;
    color: #58b95c;
}

.selectTime {
    margin-top: 2px;
    color: #58b95c;
}

.message {
    margin-top: 6px;
    border: 1px solid #333;
    padding: 10px 10px 8px;
    font-size: 14px;
    line-height: 1.9;
    color: #111;
}

.message .Htitle {
    margin-bottom: 4px;
}

/* 图片放大弹窗功能保留 */
.img-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.86);
    display: none;
    align-items: center;
    justify-content: center;
}

.img-modal-content {
    max-width: 92vw;
    max-height: 88vh;
}

.img-modal-close {
    position: absolute;
    top: 16px;
    right: 22px;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
}

.img-modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 8px 10px;
}

#imgModalPrev {
    left: 8px;
}

#imgModalNext {
    right: 8px;
}

.zoomable {
    cursor: zoom-in;
}
