/* 全景查看器样式 */
.panorama-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 20px 0;
}

.cloudimage-360 {
    width: 100%;
    height: 100%;
}

/* 模态框样式 */
.panorama-modal .modal-content {
    background-color: transparent;
    border: none;
}

.panorama-modal .modal-body {
    padding: 0;
    text-align: center;
}

.panorama-modal img {
    max-height: 80vh;
    width: auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .panorama-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .panorama-container {
        height: 250px;
    }
}





/* 全景图片容器样式 */
.panorama-image-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.panorama-view-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #007cba;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    z-index: 100;
    font-size: 12px;
    transition: all 0.3s ease;
}

.panorama-view-button:hover {
    background: #005a87;
    transform: scale(1.05);
}

/* 全景模态框样式 */
.panorama-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panorama-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    z-index: 10000;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.panorama-close-btn:hover {
    background: #f0f0f0;
}

.panorama-content .cloudimage-360 {
    width: 100% !important;
    height: 100% !important;
}