/* 此css文件仅用作software */
.content-container img {
    max-width: 75%;
}


#no-border {
    border: none;
}

.content-container .two-column-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.content-container .two-column-img-container img {
    max-width: 45%;
}

.video-container {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10px calc(50% - 280px);
}

.content-container .code-container {
    position: relative;
    width: auto;
    height: auto;
    background-color: #9ca39c6c;
    padding: 5px 2vw;
    border-radius: 10px;
}

.content-container .code-container p {
    font-size: 14.7pt;
    font-family: 'Cascadia Code', sans-serif;
}

.small-code-container {
    display: inline-block;
    width: auto;
    height: auto;
    text-align: center;
    background-color: #9ca39c6c;
    border-radius: 0.2rem;
    margin: 0 0.2rem;
    padding: 0 0.5rem;
    font-size: 12.7pt;
    font-family: 'Cascadia Code', sans-serif;
    color: #9c3d2a;
}

/* 附注 */
blockquote {
    font-size: 12.7pt;
    font-style: italic;
}

    #fig1 {
        cursor: zoom-in;
        transition: transform 0.3s ease;
    }
    
    #fig1:hover {
        transform: scale(1.02);
    }
    
    /* 全屏查看器样式 */
    .fullscreen-viewer {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(100, 100, 100, 0.8); /* 灰色半透明背景 */
        z-index: 9999;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    /* 全屏查看器显示状态 */
    .fullscreen-viewer.active {
        opacity: 1;
    }
    
    /* 全屏图片样式及动画 */
    .fullscreen-image {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        transform: scale(0.9);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                    opacity 0.4s ease;
    }
    
    /* 全屏图片显示状态 */
    .fullscreen-viewer.active .fullscreen-image {
        transform: scale(1.4);
        opacity: 1;
    }



/* 此css文件仅用作software */
