﻿body {
    margin: 0;
    background-color: #f0f0f0;
    overflow: hidden;
} 
body, html {
  height: 100%;
}
#panorama-selector {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0,0,0,0.4);
    padding: 0px 0;
    border-radius: 5px;
    color: white;
    max-height: 300px;
    overflow-y: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}


    #panorama-selector .swiper-button-next {
        right: calc((100% - 1270px) / 2 - 60px);
        color: #fff;
    }

    #panorama-selector .swiper-button-prev {
        left: calc((100% - 1270px) / 2 - 60px);
        color: #fff;
    }

#panorama-thumbnails {
    max-width: 1270px;
    width: 100%;
}

    #panorama-thumbnails .swiper-slide {
        padding: 5px;
        box-sizing: border-box;
    }

.panorama-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 5px;
    padding:5px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    text-align: center;        box-shadow: 0 0 0 2px #FFF;
}

    .panorama-btn:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-3px);
    }

    .panorama-btn.active {
        background: rgba(255,255,255,0.3);
        box-shadow: 0 0 0 2px rgb(250, 100, 0);
    }

    .panorama-btn img {
        display: block;
        margin: 0 auto;
        border-radius: 3px;
        width: 100%;
        height: 45px;
        object-fit: cover;
    }

    .panorama-btn span {
        font-size: 12px;
        margin-top: 5px;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 768px) {
    #panorama-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
}


#context-menu {
    position: absolute;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-radius: 6px;
    min-width: 180px;
    z-index: 100;
    display: none;
    font-family: Arial;
}

.menu-item {
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

    .menu-item:hover {
        background: #f0f0f0;
    }


/* 遮罩层 */
#loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: rgba(0, 0, 0, 0.4); /* 半透明黑 */
    padding: 20px 30px;
    border-radius: 8px;
    display: none; /* 默认隐藏 */
    align-items: center;
    justify-content: center;
    flex-direction: row;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* 旋转圆环 */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top-color: #1e90ff; /* 主题蓝 */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* 旋转动画 */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 文本 */
#loading span {
    color: #fff;
    margin-left: 12px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

/* 左上角人气量 */
#viewer-count {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.4); /* 半透明背景 */
    padding: 6px 12px;
    border-radius: 20px; /* 圆角 */
    color: white;
    font-size: 14px;
    font-family: Arial, sans-serif;
    display: flex; /* 图标和文字并排 */
    align-items: center;
    gap: 6px; /* 图标和数字间距 */
    backdrop-filter: blur(6px); /* 毛玻璃效果 */
}

    /* 左上角人气量图标 */
    #viewer-count img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    /* 左上角数字 */
    #viewer-count span {
        font-weight: bold;
    }


#vr-toolbar {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 10px;
    backdrop-filter: blur(8px); /* 毛玻璃效果 */
    transition: opacity 0.3s;
}

    #vr-toolbar button {
        width: 42px;
        height:42px;
        padding: 6px;
        border: none;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.08);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s, transform 0.2s;
    }

        #vr-toolbar button:hover {
            background-color: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
        }

        #vr-toolbar button img {
            width: 25px;
            height: 25px;
            object-fit: contain;
            filter: brightness(1.2) drop-shadow(0 0 2px rgba(0,0,0,0.4));
            pointer-events: none; /* 避免点击事件被图片阻挡 */
        }

/* 弹窗通用样式 */
.custom-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: none;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
}


    /*
#intro-modal .custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, .6);
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: none;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
}
*/

    .custom-modal .close-btn {
        position: absolute;
        width: 50px;
        height: 50px;
        cursor: pointer;
        background: url(../image/btn_close.png);
        display: block;
        right: 20px;
        top: 20px;
    }

.contact-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

@keyframes xuanzhuan {
    0% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

a {
    text-decoration: none;
    color: #555;
}

.contact-info {
    color: #555;
}

.custom-modal .close-btn:hover {
    background-position-y: 50px;
    animation: xuanzhuan 1s ease;
    animation-fill-mode: forwards;
}
/* 名片弹窗里的所有图标 */
.custom-modal .tb-img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    width: calc((100% - 40px) / 3);
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 5px;
    border-bottom: 1px solid #ddd;
}


.custom-modal .modal-content {
    /*        text-align: center;*/
}

._center {
    text-align: center;
}

.custom-modal .modal-content h2 {
    margin-top: 0;
}

.inquiry_wrapper {
    /*
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10000;
    left: 0;
    top: 0;
*/
}

/*
.inquiry_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    z-index: 2;
    left: 0;
    top: 0;
}
*/

.inquiry_form {
    /*    position: absolute;*/
    background: #fff;
    padding: 50px 40px 50px;
    /*
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
*/
    z-index: 3;
}

input, textarea {
    outline: 0;
}

.inquiry_form_item input, .inquiry_form_item textarea {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 20px;
    line-height: 40px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.inquiry_form_save {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

    .inquiry_form_save input {
        background: #C8565F;
        color: #fff;
        text-align: center;
        padding: 0 20px;
        line-height: 34px;
        border-radius: 3px;
        font-size: 20px;
        border: 1px solid #C8565F;
    }

        .inquiry_form_save input:hover {
            background: #fff;
            color: #C8565F;
        }

.toOpacity0 {
    animation: toOpacity0 .5s ease;
    animation-fill-mode: forwards;
}

.toOpacity10 {
    animation: toOpacity10 1s ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes toOpacity0 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes toOpacity10 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*
@keyframes toRight {
	0%, 100%, 60%, 75%, 90% {
		-webkit-transition-timing-function: cubic-bezier(0.215,.61,.355,1);
		transition-timing-function: cubic-bezier(0.215,.61,.355,1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
	100% {
		-webkit-transform: none;
		transform: none;
	}
}
*/

._iconF {
    display: block;
    text-align: center;
}

._icon {
    width: 80px;
}

._inquiry_title {
    font-size: 30px;
    text-align: center;
    padding: 10px 0;
}

._inquiry_wrap {
    padding-bottom: 20px;
}

    ._inquiry_wrap p {
        text-align: center;
        font-size: 16px;
    }

.shemei-madal {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    padding: 5px;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
}

.social_list {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

    .social_list li.item {
        list-style: none;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(0, 0, 0, .15);
    }

    .social_list li a {
        color: #fff;
        font-size: 26px;
        line-height: 50px;
    }


.hotspot-context-menu {
    display: none;
    position: absolute;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(204, 204, 204);
    padding: 10px;
    border-radius: 6px;
    left: 847px;
    top: 106px;
    padding: 20px 30px;
}


.hotspot-form-list {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.hotspot-form-control {
    display: flex;
    gap: 10px;
}

    .hotspot-form-control label {
        width: 120px;
    }

    .hotspot-form-control input, .hotspot-form-control select {
        flex: 1;
        width: 100%;
    }

.hotspot-form-btn {
    padding-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}



.muan {
    position: absolute;
    left: 100px;
    top: 20px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
}

    .muan .fa {
        color: #fff;
    }

.close .fa-align-right::before {
    content: "\f00d" !important;
}

.muan-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 150px;
    display: none;
    background: rgba(0, 0, 0, 0.8);
    height: 100vh;
    padding-top: 5%;
    z-index: 999;
}

    .muan-nav a {
        float: left;
        color: #fff;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
        width: 100%;
        font-weight: bold;
        font-size: 14px;
        cursor: pointer;
    }

        .muan-nav a:hover {
            color: #F00;
        }
.tiopm{width:100%;float:left; text-align:center; position:fixed;bottom:20px;animation: BanMouse 1.6s ease infinite;}
.tiopm .fa {color: #fff; font-size:24px; cursor:pointer;}
.dowo .fa-arrow-down::before {content: "\f062" !important;}
@keyframes BanMouse {
	0% {
		bottom: 30px;
	}

	100% {
		bottom: 44px;
	}
}
 
	
@media(max-width:1000px) {
    #panorama-thumbnails {
        max-width: 100%;
    }
}



@media(max-width:800px) {

#vr-toolbar button{width: 25px;height: 25px;}
#vr-toolbar button img { width: 15px;height: 15px;}
.panorama-btn span{ font-size:10px;}
.muan .fa{font-size: 12px;}.muan{padding: 2px 12px;}#viewer-count{padding: 2px 12px;font-size: 12px;}
#vr-toolbar{gap: 10px;padding: 5px;}.muan-nav{z-index: 99999;padding-top: 20%;}.muan{z-index: 999999;}
.muan-nav a{ font-size:12px;padding-top: 10px;padding-bottom: 10px;}

.custom-modal{padding: 30px 20px;width:85%;max-height: 50%;}.custom-modal p{ font-size:14px;line-height:25px;}
.custom-modal .modal-content h2{ font-size:16px; text-align:center;}
.custom-modal .modal-content h1{ font-size:16px; text-align:center;}
.contact-list{display: block;}.contact-item{width:100%;}
._inquiry_title{ font-size:16px; text-align:center;}
.inquiry_form{padding:20px;}.custom-modal img{margin: auto;display: block;}

}







