*{
    
    margin: 0;
    /* padding: 0; */
}
body {
    text-align: center;
    
}
.div{
    margin: 0px;
}
.head{
    background: rgb(0,90,166);
    color: #ffffff;
}
.middle{
width: 370px;
    
}
.middle>div{
    padding: 10px;
    text-align: left;
    max-width: 370px;
    margin: 5px;
    border: 1px solid ;
    
}
.Htitle{
    color: rgb(16,115,159);
}
.selectover{
    color: rgb(96,179,78);
}
.ACCERR{
    color: rgb(255,0,0);
}
body>div{
    
    margin: auto
    
}
.data {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}
.data > div {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* 顶部对齐 */
}
.adaptive-img {
    width: 100%;
    height: auto;
    max-width: 300px;
    object-fit: contain;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.adaptive-img:hover {
    box-shadow: 0 0 8px #888;
}
.img-modal {
    display: flex;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}
.img-modal-content {
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 8px;
    box-shadow: 0 0 20px #000;
    background: #fff;
    object-fit: contain;
}
.img-modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}
.img-modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    user-select: none;
    padding: 0 20px;
    opacity: 0.7;
}
#imgModalPrev { left: 10px; }
#imgModalNext { right: 10px; }
.img-modal-arrow:hover { opacity: 1; }