* {
    box-sizing: border-box;
}
.tool-container {
    padding: 28px;
    max-width:1280px;
    margin:0 auto;
}
.card-box {
    background:#ffffff;
    padding:26px 30px;
    margin-bottom:28px;

}
.card-title {
    font-size:22px;
    font-weight:600;
    color:#1d2129;
    margin-bottom:24px;
    padding-bottom:14px;
    border-bottom:1px solid #f0f2f5;
    display:flex;
    align-items:center;
}
.card-title::before{
    content:"";
    width:6px;
    height:22px;
    background:#5271ff;
    border-radius:4px;
    margin-right:12px;
}
.form-row{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    gap:22px;
    margin-bottom:22px;
}
.form-item-full{
    grid-column:1/-1;
}
.form-item{
    display:flex;
    flex-direction:column;
    gap:8px;
}
label{
    font-size:14px;
    color:#4e5969;
}
input,select{
    height:44px;
    padding:0 14px;
    border:1px solid #e5e6eb;
    border-radius:10px;
    outline:none;
    font-size:14px;
    color:#1d2129;
    background:#fff;
    transition:0.2s;
}
input:focus,select:focus{
    border-color:#5271ff;
    box-shadow:0 0 0 3px rgba(82,113,255,0.08);
}
.btn-group{
    margin-top:8px;
}
.btn{
    height:44px;
    padding:0 32px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-size:15px;
    transition:0.2s;
}
.btn-gen{
    background:#5271ff;
    color:#fff;
}
.btn-gen:hover{
    background:#4260e8;
}
.btn-clear{
    background:#f2f3f5;
    color:#4e5969;
    margin-left:14px;
}
.btn-clear:hover{
    background:#e5e6eb;
}
/*常用模板区域*/
.temp-title{
    font-size:15px;
    color:#4e5969;
    margin:12px 0 10px;
}
.temp-wrap{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
}
.temp-item{
    padding:7px 14px;
    background:#f2f6ff;
    border-radius:8px;
    font-size:13px;
    color:#5271ff;
    cursor:pointer;
    transition:.2s;
}
.temp-item:hover{
    background:#5271ff;
    color:#fff;
}
/*树形地图 简约浅色样式*/
.map-tree{
    margin-top:6px;
}
.tree-item{
    padding:18px 22px;
    background:#fcfcfd;
    border-radius:14px;
    margin-bottom:16px;
    border-left:3px solid #cbd5e1;
}
.tree-parent{
    border-left-color:#5271ff;
    background:#f9fbff;
}
.tree-child{
    margin-left:32px;
    border-left-color:#b4c4e8;
    background:#fafbfe;
}
.map-name{
    font-weight:600;
    font-size:17px;
    color:#1d2129;
}
.map-tag{
    font-size:13px;
    color:#6b7785;
    margin:6px 0;
}
.map-desc{
    font-size:14.5px;
    color:#333843;
    line-height:1.65;
}
.operate{
    margin-top:12px;
    font-size:13px;
}
.operate span{
    padding:4px 10px;
    border-radius:6px;
    cursor:pointer;
    margin-right:10px;
}
.copy-btn{
    background:#eef3ff;
    color:#5271ff;
}
.del{
    background:#fef2f2;
    color:#ef4444;
}
.empty-tip{
    text-align:center;
    padding:60px 0;
    color:#86909c;
    font-size:15px;
}