.pan-content {
    padding: 20px;
    border-radius: 1rem;
    background-color: #2e2e2e;
    border: 1px solid #4e4e4e;
    width: auto;
}
.flex {
    display: flex;
}
.ac {
    align-items: center;
}
.jsb {
    justify-content: space-between;
}
.mr20 {
    margin-right: 20px;
}
.ml20 {
    margin-left: 20px;
}
.flex0 {
    flex: 0 0 auto;
}
.text-ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}
.file-download-name {
    font-size: 16px;
    color: #fff;
}
.but {
    display: inline-block;
    padding: 8px 16px;
    color: #fff; /* 文字颜色改为白色 */
    text-align: center;
    text-decoration: none;
    border-radius: .6rem;
    transition: all 0.3s ease;
    background-color: #4e6ef2; /* 按钮背景颜色 */
}
.show-permission-message {
    cursor: not-allowed;
}

.file-download-info {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
}
.file-download-desc {
    display: flex;
    justify-content: space-between;
    color: #8e8e8e;
}
.desc-left,
.desc-right {
    font-size: 14px;
}
.file-download-icon img {
    width: 45px;
    height: 45px;
    border-radius: 1rem;
}
/* 添加虚线边框 */
.download-code {
    border: 1px dashed #006eff;
    padding: 4px 8px;
    border-radius: .6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.download-code:hover {
    background-image: linear-gradient(45deg, #48c6ef 0%, #6f86d6 100%);
}
.small-links-container {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.small-link {
    font-size: 12px;
}
.small-link a {
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    background-color: #0080ff;
    border-radius: .6rem;
    text-decoration: none;
}
.small-link a:hover {
    background-color: #409fff;
}
.small-link span {
    margin-left: 5px;
    color: #fff;
    font-size: 12px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #2e2e2e;
    backdrop-filter: blur(5px);
    padding: 20px;
    width: 80%;
    max-width: 350px;
    border-radius: .6rem;
    text-align: center;
}
.tab-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}
.tab {
    background-color: #4e4e4e;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    border-radius: 10%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.tab.active {
    background-color: #8e8e8e;
}
.qr-container {
    width: 200px;
    height: 200px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10%;
    overflow: hidden;
}
.qr-container img {
    width: 100%;
    height: 100%;
    
    object-fit: cover;
}
.tab-content {
    display: none;
    padding: 6px 12px;
    border-top: 1px dashed #ccc;
}
.tab-content.active {
    display: block;
}
strong span {
    font-weight: bold;
}
strong span.blue {
    color: blue;
}
strong span.green {
    color: green;
}