/* +----------------------------------------------------------------------
/* | Static Plugin for ThinkAdmin
/* +----------------------------------------------------------------------
/* | 官方网站: https://thinkadmin.top
/* +----------------------------------------------------------------------
/* | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
/* +----------------------------------------------------------------------
/* | 开源协议 ( https://mit-license.org )
/* | 免责声明 ( https://thinkadmin.top/disclaimer )
/* +----------------------------------------------------------------------
/* | gitee 代码仓库：https://gitee.com/zoujingli/think-plugs-static
/* | github 代码仓库：https://github.com/zoujingli/think-plugs-static
/* +----------------------------------------------------------------------
/* | 自定义后台扩展样式，需要在加载 console.css 后载入
/* | 使用 composer require zoujingli/think-plugs-static 时不会更新此文件
/* +---------------------------------------------------------------------- */
.layui-form-select dl {
    max-height: 200px;
    min-height: auto;
}
.file-upload-container {
            margin: 30px auto;
            max-width: 800px;
        }
        
        .file-upload-card {
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .file-upload-header {
            font-size: 16px;
            font-weight: bold;
            padding: 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .file-upload-body {
            padding: 20px;
        }
        
        .file-upload-actions {
            margin-bottom: 15px;
        }
        
        .file-list {
            border: 1px dashed #e6e6e6;
            border-radius: 4px;
            min-height: 100px;
            padding: 10px;
        }
        
        .file-item {
            display: flex;
            align-items: center;
            padding: 8px 12px;
            margin-bottom: 8px;
            background-color: #f8f8f8;
            border-radius: 3px;
            position: relative;
        }
        
        .file-item:hover {
            background-color: #f0f0f0;
        }
        
        .file-icon {
            margin-right: 10px;
            color: #1E9FFF;
        }
        
        .file-info {
            flex: 1;
            min-width: 0;
        }
        
        .file-name {
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .file-size {
            font-size: 12px;
            color: #999;
            margin-left: 5px;
        }
        
        .file-status {
            font-size: 12px;
            color: #1E9FFF;
            margin-left: 10px;
        }
        
        .file-progress {
            width: 150px;
            margin: 0 15px;
        }
        
        .file-actions {
            display: flex;
            align-items: center;
        }
        
        .file-delete {
            color: #FF5722;
            cursor: pointer;
            margin-left: 10px;
        }
        
        .file-delete:hover {
            color: #f00;
        }
        
        .upload-hint {
            font-size: 12px;
            color: #999;
            margin-top: 10px;
        }
        
        .no-files {
            text-align: center;
            color: #999;
            padding: 30px 0;
        }
        
        
.hr-line-dashed{clear:both;}
/* 新增地址搜索下拉样式 */
.address-suggest {
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    z-index: 999;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}
.address-suggest li {
    padding: 0 15px;
    line-height: 36px;
    cursor: pointer;
}
.address-suggest li:hover, .address-suggest li.active {
    background-color: #f2f2f2;
}
.address-input-container {
    position: relative;
}        
        
        
        
        
        