#pageContent {
    height: 500px;
    /* 固定高度确保交互区域 */
    overflow: hidden;
    position: relative;
    width: 100% !important;
    border: 1px solid #eee;
}

#imgContainer {
    height: 100%;
    cursor: grab;
    /* 提示可拖拽 */
    position: relative;
}

#imgContainer:active {
    cursor: grabbing;
    /* 拖拽中光标变化 */
}

#imgContainer>div {
    width: 100% !important;
    height: 100% !important;
}

#imgContainer>div>div {
    width: 100%;
    height: 100%;
}

#imgContainer>div>img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    object-fit: cover;
}

.zoomButton {
    border: 0;
    cursor: pointer;
}

.watermask {
    position: absolute;
}

.page img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.buyit {
    display: none;
    position: fixed;
    bottom: 0;
    z-index: 2;
    left: 0;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 100%;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    background-color: #D82228;
    opacity: 0.8;
}

.next_screen.on {
    display: none;
    animation: goNext 1.5s infinite;
}

@keyframes goNext {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: translate(0, -10px);
        opacity: .1;
    }
}

.Box1 .container-md.row {
    margin: 0 auto;
    padding: 50px 0;
}

.Box1 .nr table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: 'Arial', sans-serif;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.Box1 .nr table thead tr {
    background-color: #0F4E85 !important;
    color: white;
}

.Box1 .nr table thead tr th {
    text-align: left;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid #eee;


}

.Box1 .nr table tbody {
    background-color: white;
    transition: background-color 0.3s ease;
}

.Box1 .nr table tbody td {
    padding: 14px 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}
.Box1 .nr table tr:hover {
    background-color: #f8f9fa ;
}
@media screen and (max-width:991px) {
    .Box1 .nr{
        margin-top: 50px;
    }
}