.UIImageDetail {
        max-width: 1200px;
        max-height: 405px;
        margin: 0 auto;
        background: #fff;
        padding: 15px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        overflow: hidden;
        /* Cắt phần thừa */
        position: relative;
}
.UIImageDetail .title {
        display: none;
}
.UIImageDetail .list {
        display: flex;
        flex-wrap: nowrap !important;
        width: auto !important;
        align-content: center;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        flex-direction: row;
}
.UIImageDetail .item {
        /* Width sẽ được set cứng bằng JS (pixel) */
        flex-shrink: 0;
        /* Không cho ảnh tự co lại */
        height: 280px;
        box-sizing: border-box;
        padding: 0 10px;
        /* Khoảng cách giữa các ảnh */
        text-align: center;
}
.UIImageDetail .item a {
        height: 100%;
        display: block;
        border-radius: 5px;
        border: 1px solid #ddd;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        overflow: hidden;
}
.UIImageDetail .item img {
        width: 100%;
        height: 100%;
        /* Chiều cao cố định nhỏ gọn */
        object-fit: cover;
        display: block;
}
/* Ẩn các phần không cần thiết */
.UIImageDetail .paging, span[id$="lblEror"] {
        display: none;
}
