/*
|
* @Company: hugeInfo
|
* @Author: lwh
|
* @Date: 2025-04-10 18:40:00
|
* @LastEditTime: 2025-04-11 11:37:02
|
* @LastEditors: lwh
|
* @Version: 1.0.0
|
* @Description: 结案申请样式
|
*/
|
|
.apply-close-container {
|
background-color: #f5f5f5;
|
padding-bottom: 72px;
|
}
|
|
.apply-close-section {
|
margin-bottom: 8px;
|
background-color: #fff;
|
padding: 16px;
|
}
|
|
.apply-close-title {
|
font-size: 15px;
|
font-weight: 500;
|
color: #333;
|
margin-bottom: 8px;
|
position: relative;
|
|
// 必填标记样式
|
&.required-field {
|
position: relative;
|
padding-left: 0;
|
|
&::before {
|
content: '*';
|
color: #f5222d;
|
position: absolute;
|
left: -10px;
|
top: 0;
|
}
|
}
|
}
|
|
.apply-close-options {
|
.apply-close-radio-row {
|
display: flex;
|
flex-wrap: wrap;
|
}
|
|
.apply-close-radio {
|
margin-right: 32px;
|
margin-bottom: 8px;
|
|
:global {
|
.ddm-radio-wrapper {
|
display: flex;
|
align-items: center;
|
}
|
}
|
}
|
|
.apply-close-radio-text {
|
margin-left: 8px;
|
font-size: 15px;
|
color: #333;
|
}
|
|
// 自定义单选组件样式
|
.custom-radio-group {
|
display: flex;
|
flex-wrap: wrap;
|
}
|
|
.custom-radio-item {
|
display: flex;
|
align-items: center;
|
margin-right: 32px;
|
margin-bottom: 8px;
|
cursor: pointer;
|
|
&.active {
|
.custom-radio-icon {
|
border-color: #1a6fb8;
|
}
|
|
.custom-radio-text {
|
color: #1a6fb8;
|
}
|
}
|
}
|
|
.custom-radio-icon {
|
width: 18px;
|
height: 18px;
|
border: 1px solid #ddd;
|
border-radius: 50%;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
margin-right: 8px;
|
}
|
|
.custom-radio-empty {
|
width: 10px;
|
height: 10px;
|
border-radius: 50%;
|
border: 1px solid rgba(23, 26, 29, 0.24);
|
}
|
|
.custom-radio-dot {
|
width: 10px;
|
height: 10px;
|
border-radius: 50%;
|
background-color: #1a6fb8;
|
}
|
|
.custom-radio-text {
|
font-size: 15px;
|
color: #333;
|
}
|
|
// 矩形单选按钮样式
|
.rect-radio-group {
|
display: flex;
|
justify-content: space-between;
|
flex-wrap: nowrap;
|
width: 100%;
|
}
|
|
.rect-radio-item {
|
position: relative;
|
width: 48%;
|
height: 37px;
|
border: 1px solid #f2f3f5;
|
border-radius: 4px;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
background-color: #f2f3f5;
|
cursor: pointer;
|
gap: 8px;
|
|
span {
|
font-size: 15px;
|
color: #333;
|
}
|
|
&.active {
|
border-color: #1a6fb8;
|
|
span {
|
color: #1a6fb8;
|
}
|
}
|
|
.rect-radio-check {
|
width: 18px;
|
height: 18px;
|
color: #fff;
|
font-size: 12px;
|
font-weight: bold;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
border-radius: 50%;
|
|
&.empty-circle {
|
border: 1px solid rgba(23, 26, 29, 0.24);
|
background-color: transparent;
|
}
|
}
|
|
.circle-check {
|
background-color: transparent;
|
border: 1px solid #ccc;
|
color: transparent;
|
}
|
}
|
}
|
|
.apply-close-upload {
|
margin-top: 8px;
|
|
:global {
|
.ding-upload-container {
|
padding: 0;
|
}
|
}
|
}
|
|
.apply-close-textarea-wrapper {
|
position: relative;
|
margin-bottom: 15px;
|
}
|
|
.apply-close-textarea {
|
width: 100%;
|
height: 120px;
|
border: 1px solid #e8e8e8;
|
border-radius: 4px;
|
padding: 12px;
|
font-size: 15px;
|
color: #333;
|
resize: none;
|
}
|
|
.apply-close-tools {
|
display: flex;
|
flex-wrap: wrap;
|
margin-top: 16px;
|
|
.apply-close-tool-item {
|
display: flex;
|
align-items: center;
|
margin-right: 24px;
|
margin-bottom: 8px;
|
cursor: pointer;
|
|
.tool-icon {
|
width: 20px;
|
height: 20px;
|
margin-right: 4px;
|
display: inline-block;
|
background-size: contain;
|
background-repeat: no-repeat;
|
background-position: center;
|
}
|
|
.identify-icon {
|
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyIDJDNi40OCAyIDIgNi40OCAyIDEyczQuNDggMTAgMTAgMTAgMTAtNC40OCAxMC0xMFMxNy41MiAyIDEyIDJ6bTEgMTVoLTJ2LTJoMnYyem0wLTRoLTJWN2gydjZ6IiBmaWxsPSIjMUE2RkI4Ii8+PC9zdmc+');
|
}
|
|
.template-icon {
|
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTE0IDJINmMtMS4xIDAtMiAuOS0yIDJ2MTZjMCAxLjEuOSAyIDIgMmgxMmMxLjEgMCAyLS45IDItMlY4bC02LTZ6bTQgMThjMCAuNTUtLjQ1IDEtMSAxSDdjLS41NSAwLTEtLjQ1LTEtMVY0YzAtLjU1LjQ1LTEgMS0xaDYuNzlMMTggOC4yMVYyMHptLTcuMjEtM2gtMi41MnYyLjUyaDIuNTJ2LTIuNTJ6TTExIDloLTIuNXY1LjVIMTFWOXptNS41MiAxMS41MmgtMi41MlYxOGgyLjUydjIuNTJ6TTE1IDRWOS41aDUuNUwxNSA0eiIgZmlsbD0iIzFBNkZCOCIvPjwvc3ZnPg==');
|
}
|
|
span {
|
font-size: 14px;
|
color: #1a6fb8;
|
}
|
}
|
}
|
|
.apply-close-bottom {
|
position: fixed;
|
bottom: 0;
|
left: 0;
|
right: 0;
|
padding: 12px 16px;
|
background-color: #fff;
|
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
|
}
|
|
/* 事项节点样式 */
|
.task-node-section {
|
margin-bottom: 72px;
|
}
|
|
.task-node-container {
|
width: 100%;
|
}
|
|
.task-node-title {
|
font-size: 16px;
|
font-weight: 500;
|
color: #333;
|
margin-bottom: 16px;
|
}
|
|
.task-node-content {
|
position: relative;
|
}
|
|
.task-node-item {
|
display: flex;
|
position: relative;
|
padding-bottom: 20px;
|
|
&:last-child {
|
padding-bottom: 0;
|
}
|
|
&:not(:last-child)::before {
|
content: '';
|
position: absolute;
|
top: 8px;
|
left: 4px;
|
width: 1px;
|
height: calc(100% - 8px);
|
background-color: #e5e5e5;
|
}
|
}
|
|
.task-node-item-dot {
|
width: 10px;
|
height: 10px;
|
border-radius: 50%;
|
background-color: #1a6fb8;
|
margin-right: 12px;
|
margin-top: 4px;
|
flex-shrink: 0;
|
}
|
|
.task-node-item-info {
|
flex: 1;
|
}
|
|
.task-node-item-title {
|
font-size: 15px;
|
font-weight: 500;
|
color: #333;
|
margin-bottom: 4px;
|
}
|
|
.task-node-item-desc {
|
font-size: 13px;
|
color: #1a6fb8;
|
margin-bottom: 4px;
|
}
|
|
.task-node-item-time {
|
font-size: 12px;
|
color: #999;
|
}
|