/* 标题区域样式 */
.title-wrapper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.2rem;
    margin-top: 0.4rem;
    margin-left: -0.3rem;
}

.title-tag {
    width: 0.18rem;
    height: 0.52rem;
    background-color: #4a90e2;
    margin-right: 0.2rem;
    border-radius: 0.2rem;
}

.title-content {
    display: flex;
    justify-content: left;

}

.title-info {
    margin-left: 0.2rem;
}

.main-title {
    font-size: 0.30rem;
    font-weight: bold;
    margin: 0;
    .x{
        color: #ff4040;
        font-weight: bold;
        margin-right: 0.05rem;
    }
}

.sub-title {
    font-size: 0.26rem;
    color: #666;
    margin: 0.01rem 0;
}

.sub-info {
    font-size: 0.26rem;
    color: rgb(243, 205, 42);
    margin: 0.01rem 0;
}

/* 核心：Flex 布局，确保两个子元素同行且平分宽度 */
.data-info {
    display: flex;
    width: 100%; /* 占满父容器，手机端自适应屏幕宽度 */
    box-sizing: border-box;
    font-weight: bolder

}

.data-info .el-checkbox {
    font-weight: bolder;
}

.data-info .info {
    font-weight: bold;
    padding-left: 0.15rem;
}

/* 子元素：各占50%，统一下划线样式，兼容Element组件 */
.data-info > div {
    flex: 1; /* 平分宽度，优先级高于Element默认宽度 */
    padding: 0.3rem 0; /* 调整上下内边距，让下划线更美观 */
    border-bottom: 1px solid #e6e6e6; /* 下划线（Element默认浅灰，可自定义） */
    box-sizing: border-box; /* 内边距/边框不超出50%宽度 */
}

/* 针对Element组件的样式重置（解决默认间距/宽度问题） */
.data-info .el-form-item {
    margin: 0; /* 清除el-form-item默认上下外边距 */
    width: 100%; /* 让表单项占满父div的50%宽度 */
}

.data-info .el-input {
    width: 100%; /* 输入框占满表单项宽度 */
}

/* 可选：第一个子元素文字居中（视觉对齐） */
.data-info > div:first-child {
    display: flex;
    align-items: center; /* 文字垂直居中（与输入框对齐） */
    justify-content: left; /* 文字水平居中（可选） */
    color: #666; /* 文字颜色区分（可选） */
}

.historyInsure {
    border: 1px dashed #666666;


    .X {
        display: flex;
        justify-content: right;
    }
}

.boxBottom {
    width: 100%;
    margin-top: 0.1rem;
    display: flex;
    align-items: center;
    height: 0.7rem;
    background-color: #e8e6e6;
    border-radius: 0.2rem;
}

.boxBottom .boxBottom-info {
    padding-left: 0.2rem;
    font-size: 0.25rem;
    color: #706e6e;
    font-weight: bold;
}

.boxBottom-info .el-icon-info {
    color: #1e82f6;
}

.boxBottom .boxBottom-info span {
    margin-left: 0.1rem;
}

/* 去除 el-input 所有边框（包括输入框、聚焦状态、hover 状态） */
.box .el-input__wrapper, /* Element Plus 容器类 */
.box .el-input__inner { /* Element UI 输入框类 */
    border: none !important;
    outline: none !important; /* 去除聚焦外边框 */
    box-shadow: none !important; /* 去除阴影（如有） */
    border-radius: 0 !important; /* 可选：去除圆角 */
}

/* 可选：去除 hover/聚焦时的边框高亮 */
.box .el-input__wrapper:hover,
.box .el-input__wrapper.is-focus,
.box .el-input__inner:hover,
.box .el-input__inner:focus {
    border: none !important;
    box-shadow: none !important;
}

.form-item-group {
    width: 100%;
    margin-bottom: 0.2rem; /* 与其他表单项保持间距 */
}

.form-label {
    display: block; /* 独占一行 */
    margin-bottom: 0.2rem; /* 与选项保持适当间距 */
    font-size: 0.25rem;
    font-weight: bold;
    color: #303133; /* 统一文字颜色 */
}

.form-content {
    margin-left: 0.2rem;
    display: block; /* 独占一行 */
}

/* 强制单选框块级显示（独占一行） */
.radio-block {
    display: block;
    margin-bottom: 0.2rem; /* 可选：设置行间距 */
}
