.trigger-link{
    border-bottom: none;
}
.floating-window {
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-color: #4c5c96;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
}

/* 关闭按钮样式 */
.fw-close {
    background-image: url('images/close.svg');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border: none;
    content: '';
    height: 4em;
    overflow: hidden;
    position: absolute;
    right: 0;
    text-align: center;
    text-indent: 4em;
    width: 4em;
}

.fw-close:hover {
    opacity: 1;
}
.frame-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    /*border-bottom: 1px solid #dee2e6;*/
}
.doc-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.trigger-link {
    cursor: pointer;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* 半透明黑色背景 */
    z-index: 9998; /* 确保在浮窗下方 */
    display: none; /* 默认隐藏 */
}

.result img{
    width: 33%;
    object-fit: cover; /* 保证图片比例，多出部分进行裁剪 */
}
.resultImg{
    margin-left: 0.8em;

}
.fw-close{
    box-shadow: none;
}
