/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

body {
    margin: 0px;
    overflow: hidden;
}

.v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.fullscreen-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: none;
    z-index: 1;
}

.fullscreen-open {
    background-image: url('media/fullscreen_open.svg');
}

.fullscreen-close {
    background-image: url('media/fullscreen_close.svg');
}

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }

.v3d-annotation {
    width: 32px;
    height: 32px;
    /* min-width: 0px; */
    padding: 0px;
    /* font-size: 0px; */
    border: none;
    color: white;
    display: flex;
    /* 使用flex布局 */
    justify-content: center;
    /* 水平居中（左右居中） */
    align-items: center;
    /* 垂直居中（上下居中） */
    background-image: url('./img/location.png');
    background-size: contain;
    background-color: #ffffff00;
}

.v3d-annotation-dialog {
    padding: 8px;
    min-width: 0em;
    white-space: nowrap;
    text-align: justify;
    background-color: rgba(0, 0, 0, 0.5);
}

.v3d-annotation-transparent {
    background-image: url('./img/location_disabled.png');
    color: #ffffff60;
}

/* div.tool_shelf {
    position: fixed;
    bottom: 0;
    width: 4em;
    z-index: 99;
}

div.tool_shelf>ul {
    list-style: none;
}

div.tool_shelf>ul>li>a>img {
    width: 3em;
}

a.tool_button {
    background-size: contain;
    display: flex;
    width: 3em;
    height: 3em;
    border: none;
    transition: background-image 0.3s ease;
} */

a#label_display_switch {
    background-image: url('img/infomation_disabled.png');

}

a#label_display_switch.active {
    background-image: url('img/infomation.png');
}

a#auto_rotate_switch {
    background-image: url('img/rotation.png');
}

a#auto_rotate_switch {
    background-image: url('img/rotation.png');
}

a#auto_rotate_switch.disabled {
    background-image: url('img/rotation_disabled.png');
}

a#play {
    background-image: url('img/play.png');
}

a#explode {
    background-image: url('img/expored.png');
}

a#explode.active {
    background-image: url('img/assembled.png');
}