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

body {
    margin: 0;
    overflow: hidden;
}

.v3d-container {
    position: absolute;
    top: 0;
    left: 0;
    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-dialog {
    padding: 8px;
    min-width: 0;
    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.radio_button.active{
    /* 浅蓝色边框 */
    border: 5px solid #87CEFA; /* 这里的颜色可以根据需要调整 */

    /* 倒圆角 */
    border-radius: 50%; /* 圆角大小可以根据需要调整 */

    /* 发光效果 */
    box-shadow: 0 0 5px #87CEFA, 0 0 10px #87CEFA, 0 0 15px #87CEFA, 0 0 20px #87CEFA;

    /* 脉动闪烁动画 */
    animation: pulse 2s infinite;
}

/*脉动闪烁动画*/
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 5px #87CEFA, 0 0 10px #87CEFA, 0 0 15px #87CEFA, 0 0 20px #87CEFA;
    }
    50% {
        box-shadow: 0 0 10px #87CEFA, 0 0 20px #87CEFA, 0 0 30px #87CEFA, 0 0 40px #87CEFA;
    }
}

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

}

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

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

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

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

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

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

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