.tool-container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
}
.form-item {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
}
.form-label {
    width: 110px;
    font-size: 16px;
    color: #333;
}
.form-input-box {
    flex: 1;
}
.form-input {
    width: 100%;
    height: 38px;
    border: 1px solid #dcdfe6;
    border-radius: 6px;
    padding: 0 14px;
    font-size: 15px;
}
.tag-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
/* 缩小标签按钮尺寸 */
.tag-btn {
    padding: 6px 16px;
    border: 1px solid #dcdfe6;
    background: #fff;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}
.tag-btn.active {
    background: #4088f7;
    color: #fff;
    border-color: #4088f7;
}
/* 缩小生成主按钮 */
.submit-btn {
    width: 100%;
    height: 46px;
    background: #4088f7;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    margin: 8px 0 30px;
}
.result-box {
    background: #fff;
    /*border-radius: 12px;*/
    min-height: 240px;
    padding: 26px;
    /*box-shadow: 0 2px 12px rgba(0,0,0,0.07);*/
}
.result-empty-tip {
    text-align: center;
    color: #999;
    font-size: 15px;
    line-height: 240px;
}
/* 精美武器卡片样式 */
.weapon-card {
    border: 1px solid #e8edf5;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #fbfdff 0%, #f5f9ff 100%);
}
.weapon-card:last-child {
    margin-bottom: 0;
}
.weapon-title {
    font-size: 18px;
    color: #1a365d;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.weapon-type-tag {
    font-size: 13px;
    padding: 3px 10px;
    background: #4088f71a;
    color: #4088f7;
    border-radius: 12px;
}
.weapon-block {
    margin-bottom: 14px;
}
.weapon-block:last-child {
    margin-bottom: 0;
}
.block-title {
    font-size: 14px;
    color: #5578a0;
    font-weight: 500;
    margin-bottom: 6px;
}
.block-text {
    font-size: 15px;
    color: #3a4758;
    line-height: 1.7;
    margin: 0;
}