    #box{
        position: relative;
    }
    #diyUploads div:nth-child(2),#diyUploads2 div:nth-child(2){
        width: 30%!important;height:100%!important;
    }

    .loadpos{

        font-size: 24px;

        font-weight: 500;

        color: rgba(0,0,0,0.88);

        line-height: 33px;

    }

    .loadpos:after {

        overflow: hidden;

        display: inline-block;

        vertical-align: bottom;

        -webkit-animation: ellipsis steps(4,end) 900ms infinite;

        animation: ellipsis steps(4,end) 900ms infinite;

        content: "\2026"; /* ascii code for the ellipsis character */

        width: 0px;

    }

    @keyframes ellipsis {

        to {

            width: 1.25em;

        }

    }

    @-webkit-keyframes ellipsis {

        to {

            width: 1.25em;

        }

    }
    .data-td{
        width: 180px; /* 定义单元格宽度 */
        word-wrap: break-word; /* 强制在长单词或URL内部进行换行 */
        white-space: nowrap; /* 允许内容中的空白符被解析，并允许文本换行 */
        overflow: hidden; /* 隐藏溢出的内容 */
        text-overflow: ellipsis;
    }
    .data-td-kp{
        width: 350px; /* 定义单元格宽度 */
        word-wrap: break-word; /* 强制在长单词或URL内部进行换行 */
        white-space: nowrap; /* 允许内容中的空白符被解析，并允许文本换行 */
        overflow: hidden; /* 隐藏溢出的内容 */
        text-overflow: ellipsis;
        
    }
        .data-td-lj{
        width: 100%; /* 定义单元格宽度 */
        word-wrap: break-word; /* 强制在长单词或URL内部进行换行 */
        white-space: nowrap; /* 允许内容中的空白符被解析，并允许文本换行 */
        overflow: hidden; /* 隐藏溢出的内容 */
        text-overflow: ellipsis;
        
    }
    .data-td-bt{
        width: 95%; /* 定义单元格宽度 */
        word-wrap: break-word; /* 强制在长单词或URL内部进行换行 */
        white-space: nowrap; /* 允许内容中的空白符被解析，并允许文本换行 */
        overflow: hidden; /* 隐藏溢出的内容 */
        text-overflow: ellipsis;
    }
    *{
        text-decoration: none;
    }
    .btn-links{
        color: #fff;
        background-color: #007bff;
        border-color: #007bff;
        padding: .275rem .55rem
    }
    .btn-links:hover {
        text-decoration: none;
        color: #adabab;
    }
    .btn-edit{
        color: #fff;
        background-color: #28a745;
        border-color: #28a745;
        padding: .275rem .55rem
    }
     .btn-edit:hover {
        text-decoration: none;
        color: #adabab;
    }
    .btn-red{
            color: #fff;
        background-color: #dc3545;
        border-color: #dc3545;
        padding: .275rem .55rem
    }
     .btn-red:hover {
        text-decoration: none;
        color: #adabab;
    }
        /* 创建卡片样式 */
        .create-card {
            padding: 20px;
        }

        .create-title {
            font-size: 20px;
            color: #333;
            margin-bottom: 24px;
            text-align: center;
            font-weight: 500;
        }

        .create-form {
            max-width: 500px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-size: 14px;
            font-weight: 500;
        }

        .required {
            color: #dc3545;
            margin-left: 4px;
        }
        .huiyuandq {
            color: #dc3545;
     
        }
        .form-control {
            width: 100%;

            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: #4a90e2;
            box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
        }

        .form-control::placeholder {
            color: #999;
        }

        /* 上传区域样式 */
        .upload-area {
            margin-top: 8px;
        }

        .upload-btns {
            display: flex;
            gap: 12px;
            margin-top: 12px;
        }

        .upload-btn {
            flex: 1;
            position: relative;
            padding: 10px;
            background: #f5f7fa;
            border-radius: 8px;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s;
            overflow: hidden;
        }

        .upload-btn:hover {
            background: #e9ecf1;
        }

        .upload-btn i {
            font-size: 16px;
            color: #666;
            margin-right: 6px;
        }

        .upload-btn span {
            font-size: 14px;
            color: #666;
        }

        .file-input {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }

        .material-btn {
            background: #edf2fc;
        }

        .material-btn:hover {
            background: #e3ebfa;
        }

        .preview-image {
            margin-top: 12px;
            text-align: center;
        }

        .preview-image img {
            max-width: 200px;
            border-radius: 8px;
        }

        /* 提交按钮 */
        .submit-btn {
            width: 100%;
            padding: 12px;
            background: #4a90e2;
            border: none;
            border-radius: 8px;
            color: #fff;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .submit-btn:hover {
            background: #357abd;
            transform: translateY(-1px);
        }

        .submit-btn i {
            font-size: 16px;
        }

        /* 错误提示 */
        .error-tip {
            color: #09F;
            font-size: 12px;
            margin-top: 4px;
            display: none;
        }

        /* Modal样式优化 */
        .modal-content {
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.1);
        }

        .modal-body {
            padding: 1rem;
        }

        /* 响应式优化 */
        @media (max-width: 576px) {
            .create-card {
                padding: 15px;
            }

            .upload-btns {
                flex-direction: column;
            }
        }
              /* 弹窗样式 */


        .link-box {
            position: relative;
            padding-bottom: 50px;
        }

        /* 链接样式 */
        .link-item {
            margin-bottom: 20px;
        }

        .link-label {
            font-size: 15px;
            color: #000000;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .link-content {
            display: flex;
            align-items: center;
            background: #f7f7f7;
            border-radius: 8px;
            padding: 4px;
            transition: all 0.3s;
        }

        .link-content:hover {
            background: #f0f0f0;
        }

        .link-content input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 10px 12px;
            font-size: 14px;
            color: #333;
            width: calc(100% - 44px);
        }

        .link-content input:focus {
            outline: none;
        }

        /* 复制按钮 */
        .copy-btn {
            width: 36px;
            height: 36px;
            border: none;
            background: #fff;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .copy-btn:hover {
            background: #e8e8e8;
            transform: scale(1.05);
        }

        .copy-btn i {
            color: #666;
            font-size: 16px;
        }

        /* 二维码部分 */
        .qrcode-section {
            text-align: center;
            margin-top: 24px;
            padding: 20px 0;
        }

        #shareQrcode {
            display: inline-block;
            padding: 8px;
            background: #d6e9fd;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }

        .qrcode-section p {
            margin-top: 12px;
            color: #666;
            font-size: 14px;
        }

        /* 关闭按钮 */
        .close-btn {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            text-align: center;
            padding: 12px;
            color: #666;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        .close-btn:hover {
            background: #09F; /* 鼠标悬停时改为红色背景 */
            color: #fff; /* 文字改为白色，提高可读性 */
            font-weight: 500; /* 加粗文字 */
        }

        /* 复制成功提示 */
        .copy-toast {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            background: rgba(0,0,0,0.8);
            padding: 16px 32px;
            border-radius: 50px;
            color: #fff;
            font-size: 15px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 9999;
        }

        .copy-toast.show {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .copy-toast i {
            font-size: 18px;
            color: #4CAF50;
        }
            #box{
        position: relative;
    }
      #diyUploads div:nth-child(2),#diyUploads2 div:nth-child(2){
        width: 30%!important;height:100%!important; 
    }
    
    .shareCard_preview {
    width: 100%;
    background:#f8f9fa;
    margin: 0 auto;
    padding: 10px 15px;
    border-radius: 8px;
    transition: 0.2s;
    box-shadow: 0 0 1px rgba(0,0,0,.125), 0 1px 3px rgba(0,0,0,.2);

    
    
}
.shareCard_preview a {
    text-decoration: none;
}
.shareCard_preview:hover {
    box-shadow: 0 0 5px #ddd;
    transition: 0.2s;
}
.shareCard_preview .shareCard_title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    font-size: 15px;
    color: #333;
    line-height: 18px;
    margin-bottom: 5px;
}
.shareCard_preview .shareCard_desc_img {
    display: flex;
}
.shareCard_preview .shareCard_desc_img .shareCard_desc {
    flex: 1;
    color: #999;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    line-height: 16px;
}
.shareCard_preview .shareCard_desc_img .shareCard_img {
    width: 50px;
    margin-left: 12px;
}
.shareCard_preview .shareCard_desc_img .shareCard_img img {
    width: 45px;
    height: 45px;
}
    
    
input[type="file"]::file-selector-button {
    font-weight: 500;
    color: #fff;
    background-color: #409eff;
    border-color: #409eff;
    border: #398bff;
    height: 30px;
    border-radius: 5px;
    margin-top: 15px;
  }
    .qrtable{
        width: 100%;
        table-layout: fixed;
        margin-top: 5px;
        text-align: center;
    }
    .qrtable_box{
        height: 240px;
        overflow: scroll;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .qrtable th{
        padding: 0.75rem;
        vertical-align: bottom;
        background: #eef2ff;
        color: #606266;
        font-size: 14px;
    }
    .qrtable span{
        cursor: pointer;
    }
    .qrtable img{
        width: 50px;
        margin:4px 0;
    }