*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei",sans-serif;
}
body{
    background-color: #f5f7fa;
    padding: 20px;
    font-size: 14px;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 1px 5px #ddd;
}
h2,h3,h4{
    margin-bottom: 20px;
    color: #222;
}
a{
    color: #0066cc;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}
.back-btn{
    display: inline-block;
    margin-bottom: 15px;
    margin-right: 10px;
}
.panel{
    background: #f9fafc;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
}
.form-box{
    max-width: 600px;
}
.form-item{
    margin-bottom: 16px;
}
.form-item label{
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}
.form-item input,
.form-item textarea,
.form-item select{
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
.form-item textarea{
    min-height: 80px;
    resize: vertical;
}
.submit-btn{
    display: inline-block;
    padding: 9px 22px;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    margin-right: 10px;
    margin-bottom: 10px;
}
.submit-btn:hover{
    background: #0052a3;
    text-decoration: none;
}
.data-table{
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.data-table th,
.data-table td{
    padding: 10px 12px;
    text-align: center;
    border: 1px solid #ddd;
}
.data-table th{
    background: #eef3f9;
}
.del-btn{
    color: #e53e3e;
    margin-left: 10px;
}
.del-btn:hover{
    color: #c53030;
}
/* 搜索区样式 */
.search-area{
    margin-bottom: 20px;
}
.search-area input[type="text"]{
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 300px;
    margin-right: 10px;
}
.reset-btn{
    padding: 8px 16px;
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
.reset-btn:hover{
    background: #eee;
}
/* 按钮组样式 */
.btn-group{
    margin-bottom: 20px;
}
/* 字段管理区样式 */
.field-list{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.field-item{
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}
/* 提示信息样式 */
.error-msg{
    color: #e53e3e;
    padding: 10px;
    background: #fff5f5;
    border-radius: 4px;
    margin-bottom: 15px;
}
/* 底部说明样式 */
.tips{
    padding: 15px;
    background: #fffbeb;
    border: 1px solid #fef3c7;
    border-radius: 6px;
    margin-top: 20px;
}
.tips ul{
    margin-left: 20px;
    margin-top: 10px;
}
.tips li{
    margin-bottom: 8px;
    color: #78350f;
}