diff --git a/src/main/java/com/ydool/boot/api/controller/ApiContactDbController.java b/src/main/java/com/ydool/boot/api/controller/ApiContactDbController.java
index 466299a..a440b02 100644
--- a/src/main/java/com/ydool/boot/api/controller/ApiContactDbController.java
+++ b/src/main/java/com/ydool/boot/api/controller/ApiContactDbController.java
@@ -196,7 +196,7 @@ public class ApiContactDbController extends ApiBaseController {
@ResponseBody
@DynamicResponseParameters(properties = {@DynamicParameter(name = "data", value = "常委会联系代表", dataTypeClass =
ContactDbDto.class)})
- public void stateEvaluateSave(@Validated ContactDbEvaluateRequest contactDbEvaluateRequest) {
+ public void stateEvaluateSave(@Validated @RequestBody ContactDbEvaluateRequest contactDbEvaluateRequest) {
ContactDb contactDb = contactDbService.stateEvaluateSave(contactDbEvaluateRequest, getApiUser());
render(Ret.ok().data(ContactDbWrapper.build().entityVO(contactDb)));
}
diff --git a/src/main/java/com/ydool/boot/modules/rddb/entity/ContactDbMessage.java b/src/main/java/com/ydool/boot/modules/rddb/entity/ContactDbMessage.java
new file mode 100644
index 0000000..b7fd1e8
--- /dev/null
+++ b/src/main/java/com/ydool/boot/modules/rddb/entity/ContactDbMessage.java
@@ -0,0 +1,62 @@
+package com.ydool.boot.modules.rddb.entity;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.ydool.boot.core.entity.BaseEntity;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+/**
+ *
+ * 建议待送
+ *
+ *
+ * @author zhouyuan
+ * @since 2022-11-21
+ */
+@Data
+@EqualsAndHashCode(callSuper = true)
+@TableName("t_contact_db_message")
+public class ContactDbMessage extends BaseEntity{
+
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * 创建者
+ */
+ private String createdId;
+
+ /**
+ * 更新者
+ */
+ private String updatedId;
+
+ /**
+ * 流程id
+ */
+ @ApiModelProperty(value = "流程id")
+ private String contactId;
+
+ /**
+ * 内容
+ */
+ @ApiModelProperty(value = "内容")
+ private String content;
+
+ /**
+ * 提送人
+ */
+ @ApiModelProperty(value = "提送人")
+ private String userName;
+
+ /**
+ * 联系电话
+ */
+ @ApiModelProperty(value = "联系电话")
+ private String telephone;
+
+ /**
+ * 部门
+ */
+ @ApiModelProperty(value = "部门")
+ private String dept;
+
+}
diff --git a/src/main/java/com/ydool/boot/modules/rddb/entity/dto/ContactDbDto.java b/src/main/java/com/ydool/boot/modules/rddb/entity/dto/ContactDbDto.java
index 6f9c181..ba3aa0e 100644
--- a/src/main/java/com/ydool/boot/modules/rddb/entity/dto/ContactDbDto.java
+++ b/src/main/java/com/ydool/boot/modules/rddb/entity/dto/ContactDbDto.java
@@ -54,4 +54,7 @@ public class ContactDbDto extends ContactDb {
@ApiModelProperty(value = "当前用户是否可以测评")
Boolean isCanEvaluate;
+ @ApiModelProperty(value = "建议代送")
+ List contactDbMessageList;
+
}
diff --git a/src/main/java/com/ydool/boot/modules/rddb/entity/request/contact_db/state/ContactDbEvaluateRequest.java b/src/main/java/com/ydool/boot/modules/rddb/entity/request/contact_db/state/ContactDbEvaluateRequest.java
index 92cf55f..dc49c76 100644
--- a/src/main/java/com/ydool/boot/modules/rddb/entity/request/contact_db/state/ContactDbEvaluateRequest.java
+++ b/src/main/java/com/ydool/boot/modules/rddb/entity/request/contact_db/state/ContactDbEvaluateRequest.java
@@ -6,6 +6,7 @@ import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.time.LocalDateTime;
+import java.util.List;
/**
* @author zhouyuan
@@ -74,4 +75,7 @@ public class ContactDbEvaluateRequest {
@ApiModelProperty(value = "相关材料附件关联会议名称 英文逗号间隔")
String materialAttachmentConferenceName;
+ @ApiModelProperty(value = "建议代送")
+ List contactDbMessages;
+
}
diff --git a/src/main/java/com/ydool/boot/modules/rddb/entity/request/contact_db/state/ContactDbMessageRequest.java b/src/main/java/com/ydool/boot/modules/rddb/entity/request/contact_db/state/ContactDbMessageRequest.java
new file mode 100644
index 0000000..ec6cd72
--- /dev/null
+++ b/src/main/java/com/ydool/boot/modules/rddb/entity/request/contact_db/state/ContactDbMessageRequest.java
@@ -0,0 +1,37 @@
+package com.ydool.boot.modules.rddb.entity.request.contact_db.state;
+
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+@Data
+public class ContactDbMessageRequest {
+ /**
+ * 流程id
+ */
+ @ApiModelProperty(value = "流程id")
+ private String contactId;
+
+ /**
+ * 内容
+ */
+ @ApiModelProperty(value = "内容")
+ private String content;
+
+ /**
+ * 提送人
+ */
+ @ApiModelProperty(value = "提送人")
+ private String userName;
+
+ /**
+ * 联系电话
+ */
+ @ApiModelProperty(value = "联系电话")
+ private String telephone;
+
+ /**
+ * 部门
+ */
+ @ApiModelProperty(value = "部门")
+ private String dept;
+}
diff --git a/src/main/java/com/ydool/boot/modules/rddb/gen/MyGenerator.java b/src/main/java/com/ydool/boot/modules/rddb/gen/MyGenerator.java
index 89e6abd..66297db 100644
--- a/src/main/java/com/ydool/boot/modules/rddb/gen/MyGenerator.java
+++ b/src/main/java/com/ydool/boot/modules/rddb/gen/MyGenerator.java
@@ -20,7 +20,7 @@ public class MyGenerator {
public static void main(String[] args) {
//表名
- String tableName = "t_review_work_message";
+ String tableName = "t_contact_db_message";
//表前缀
String tablePrefix = "t_";
diff --git a/src/main/java/com/ydool/boot/modules/rddb/mapper/ContactDbMessageMapper.java b/src/main/java/com/ydool/boot/modules/rddb/mapper/ContactDbMessageMapper.java
new file mode 100644
index 0000000..0688728
--- /dev/null
+++ b/src/main/java/com/ydool/boot/modules/rddb/mapper/ContactDbMessageMapper.java
@@ -0,0 +1,16 @@
+package com.ydool.boot.modules.rddb.mapper;
+
+import com.ydool.boot.modules.rddb.entity.ContactDbMessage;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ *
+ * 建议待送 Mapper 接口
+ *
+ *
+ * @author zhouyuan
+ * @since 2022-11-21
+ */
+public interface ContactDbMessageMapper extends BaseMapper {
+
+}
diff --git a/src/main/java/com/ydool/boot/modules/rddb/mapper/xml/ContactDbMessageMapper.xml b/src/main/java/com/ydool/boot/modules/rddb/mapper/xml/ContactDbMessageMapper.xml
new file mode 100644
index 0000000..657ac7d
--- /dev/null
+++ b/src/main/java/com/ydool/boot/modules/rddb/mapper/xml/ContactDbMessageMapper.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/src/main/java/com/ydool/boot/modules/rddb/service/ContactDbMessageService.java b/src/main/java/com/ydool/boot/modules/rddb/service/ContactDbMessageService.java
new file mode 100644
index 0000000..a96de54
--- /dev/null
+++ b/src/main/java/com/ydool/boot/modules/rddb/service/ContactDbMessageService.java
@@ -0,0 +1,20 @@
+package com.ydool.boot.modules.rddb.service;
+
+import com.ydool.boot.modules.rddb.entity.ContactDbMessage;
+import com.ydool.boot.modules.rddb.mapper.ContactDbMessageMapper;
+import com.ydool.boot.modules.rddb.service.inter.IContactDbMessageService;
+import com.ydool.boot.core.service.BaseService;
+import org.springframework.stereotype.Service;
+
+/**
+ *
+ * 建议待送 服务实现类
+ *
+ *
+ * @author zhouyuan
+ * @since 2022-11-21
+ */
+@Service
+public class ContactDbMessageService extends BaseService implements IContactDbMessageService {
+
+}
diff --git a/src/main/java/com/ydool/boot/modules/rddb/service/ContactDbService.java b/src/main/java/com/ydool/boot/modules/rddb/service/ContactDbService.java
index cf2e025..55d04f9 100644
--- a/src/main/java/com/ydool/boot/modules/rddb/service/ContactDbService.java
+++ b/src/main/java/com/ydool/boot/modules/rddb/service/ContactDbService.java
@@ -64,6 +64,9 @@ public class ContactDbService extends BaseService {
@Autowired
ContactDbConferenceRecordUserService contactDbConferenceRecordUserService;
+ @Autowired
+ ContactDbMessageService contactDbMessageService;
+
/*后台*/
@Transactional
@@ -302,6 +305,19 @@ public class ContactDbService extends BaseService {
ContactDbAttachment.TYPE_CONFERENCE_MATERIAL,
contactDbEvaluateRequest.getMaterialAttachmentConferenceId(),
contactDbEvaluateRequest.getMaterialAttachmentConferenceName());
+ List contactDbMessages = contactDbEvaluateRequest.getContactDbMessages();
+ if (CollectionUtil.isNotEmpty(contactDbMessages)){
+ List contactDbMessageList = new ArrayList();
+ contactDbMessages.forEach(contactDbMessage ->{
+ ContactDbMessage dbMessage = BeanUtil.copyProperties(contactDbMessages, ContactDbMessage.class);
+ dbMessage.setContactId(loginUser.getId());
+ dbMessage.setCreatedAt(LocalDateTime.now());
+ dbMessage.setUpdatedId(loginUser.getId());
+ dbMessage.setUpdatedAt(LocalDateTime.now());
+ contactDbMessageList.add(dbMessage);
+ });
+ contactDbMessageService.saveBatch(contactDbMessageList);
+ }
return contactDb;
}
diff --git a/src/main/java/com/ydool/boot/modules/rddb/service/inter/IContactDbMessageService.java b/src/main/java/com/ydool/boot/modules/rddb/service/inter/IContactDbMessageService.java
new file mode 100644
index 0000000..13485f2
--- /dev/null
+++ b/src/main/java/com/ydool/boot/modules/rddb/service/inter/IContactDbMessageService.java
@@ -0,0 +1,16 @@
+package com.ydool.boot.modules.rddb.service.inter;
+
+import com.ydool.boot.modules.rddb.entity.ContactDbMessage;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ *
+ * 建议待送 服务类
+ *
+ *
+ * @author zhouyuan
+ * @since 2022-11-21
+ */
+public interface IContactDbMessageService extends IService {
+
+}
diff --git a/src/main/java/com/ydool/boot/modules/rddb/web/ContactDbMessageController.java b/src/main/java/com/ydool/boot/modules/rddb/web/ContactDbMessageController.java
new file mode 100644
index 0000000..dcec8b6
--- /dev/null
+++ b/src/main/java/com/ydool/boot/modules/rddb/web/ContactDbMessageController.java
@@ -0,0 +1,21 @@
+package com.ydool.boot.modules.rddb.web;
+
+
+import org.springframework.web.bind.annotation.RequestMapping;
+
+import org.springframework.stereotype.Controller;
+import com.ydool.boot.core.web.BaseController;
+
+/**
+ *
+ * 建议待送 前端控制器
+ *
+ *
+ * @author zhouyuan
+ * @since 2022-11-21
+ */
+@Controller
+@RequestMapping("/rddb/contactDbMessage")
+public class ContactDbMessageController extends BaseController {
+
+}
diff --git a/src/main/java/com/ydool/boot/modules/rddb/wrapper/ContactDbWrapper.java b/src/main/java/com/ydool/boot/modules/rddb/wrapper/ContactDbWrapper.java
index 385fe2a..966bb6c 100644
--- a/src/main/java/com/ydool/boot/modules/rddb/wrapper/ContactDbWrapper.java
+++ b/src/main/java/com/ydool/boot/modules/rddb/wrapper/ContactDbWrapper.java
@@ -12,10 +12,7 @@ import com.ydool.boot.modules.rddb.entity.*;
import com.ydool.boot.modules.rddb.entity.dto.ConferenceRecordDto;
import com.ydool.boot.modules.rddb.entity.dto.ContactDbDto;
import com.ydool.boot.modules.rddb.mapper.ConferenceMapper;
-import com.ydool.boot.modules.rddb.service.ContactDbAttachmentService;
-import com.ydool.boot.modules.rddb.service.ContactDbConferenceRecordService;
-import com.ydool.boot.modules.rddb.service.ContactDbConferenceRecordUserService;
-import com.ydool.boot.modules.rddb.service.ContactDbUserService;
+import com.ydool.boot.modules.rddb.service.*;
import org.springframework.beans.factory.annotation.Autowired;
import java.math.BigDecimal;
@@ -45,6 +42,7 @@ public class ContactDbWrapper extends BaseWrapper {
SpringUtils.getBean(ContactDbConferenceRecordService.class);
ContactDbConferenceRecordUserService contactDbConferenceRecordUserService =
SpringUtils.getBean(ContactDbConferenceRecordUserService.class);
+ ContactDbMessageService contactDbMessageService = SpringUtils.getBean(ContactDbMessageService.class);
// List recordAttachmentList = contactDbAttachmentService.list(new
@@ -293,6 +291,10 @@ public class ContactDbWrapper extends BaseWrapper {
evaluateUserList.stream().map(ContactDbUser::getUserId).collect(Collectors.toList());
if (evaluateUserIdList.contains(userInfo.getId())) dto.setIsCanEvaluate(true);
}
+ List contactDbMessages =
+ contactDbMessageService.list(new LambdaQueryWrapper().eq(ContactDbMessage::getContactId,
+ contactDb.getId()));
+ dto.setContactDbMessageList(contactDbMessages);
return dto;
}
}
diff --git a/src/main/resources/views/dist/css/chunk-020f1908.e601645d.css b/src/main/resources/views/dist/css/chunk-020f1908.e601645d.css
deleted file mode 100644
index a61d63b..0000000
--- a/src/main/resources/views/dist/css/chunk-020f1908.e601645d.css
+++ /dev/null
@@ -1 +0,0 @@
-.flex-align-center[data-v-c099a0d0]{display:flex;align-items:center}.browse_image[data-v-c099a0d0]{width:2.13333rem;height:2.13333rem}[data-v-c099a0d0] .from_el{display:flex;align-items:center}[data-v-c099a0d0] .from_el .title{width:3.2rem;font-size:.42667rem;flex-shrink:0}[data-v-c099a0d0] .from_el .enclosure{margin-top:.53333rem}[data-v-c099a0d0] .from_el .enclosureBtn{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}[data-v-c099a0d0] .from_el .enclosureBtn .enclosureImg{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.preview-cover[data-v-c099a0d0]{position:absolute;bottom:0;box-sizing:border-box;width:100%;padding:.10667rem;color:#fff;font-size:.32rem;text-align:center;background:rgba(0,0,0,.3)}.browse[data-v-c099a0d0]{margin:.26667rem 0}.browse .browse_delet[data-v-c099a0d0]{width:100%;text-align:right;font-size:.42667rem}.browse .imagesee[data-v-c099a0d0]{width:2.66667rem}.fileList1List[data-v-348d8fc0]{background-color:#f7f8fa;width:2.13333rem;height:2.13333rem}.fileList1List img[data-v-348d8fc0]{width:.53333rem;height:.53333rem;margin-left:.8rem;margin-top:.50667rem}.fileList1List h4[data-v-348d8fc0]{height:.37333rem;margin-top:.21333rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-left:.13333rem}p[data-v-348d8fc0]{line-height:1.8}[data-v-348d8fc0] .Announcement{margin-left:-.4rem;font-size:.42667rem;flex-shrink:0;color:#333}[data-v-348d8fc0] .checkGos{width:5.86667rem}.van-field-inp[data-v-348d8fc0]{line-height:.53333rem;border-radius:.48rem;background:#f8f8f8}.plus_add[data-v-348d8fc0]{display:flex;align-items:flex-end}.plus_add .plus_addSe[data-v-348d8fc0]{display:flex;flex-wrap:wrap}.plus_add .plus_addSe input[data-v-348d8fc0]{margin:.10667rem 0}.plus[data-v-348d8fc0]{padding:.10667rem;background:#e72e3a;border-radius:50%}.box .recentlyTitle[data-v-348d8fc0]{display:flex;height:.69333rem;margin-bottom:.26667rem}.box .recentlyTitle .line[data-v-348d8fc0]{width:.13333rem;height:.53333rem;margin-top:.08rem;background-color:#d03a29;border-radius:.13333rem;margin-left:.42667rem;margin-right:.13333rem}.box .recentlyTitle .text[data-v-348d8fc0]{height:.69333rem;line-height:.69333rem;font-size:.42667rem;margin-bottom:.4rem}.box .recentlyList[data-v-348d8fc0]{display:flex;justify-content:space-between;padding:0 .42667rem;height:.93333rem;margin-bottom:.26667rem}.box .recentlyList .recentlyItem[data-v-348d8fc0]{width:30%;text-align:center;line-height:.93333rem;font-size:.42667rem;background-color:#f5f5f5;border-radius:.4rem}.box .recentlyList .onActive[data-v-348d8fc0]{background:#0042cb;color:#fff}.publish[data-v-348d8fc0]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-348d8fc0]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-348d8fc0]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.users[data-v-348d8fc0]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-348d8fc0]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-348d8fc0]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.step .my-swipe .van-swipe-item[data-v-348d8fc0]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem}.step .my-swipe .van-swipe-item[data-v-348d8fc0]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.step .my-swipe .van-swipe-item .pitch-step-title[data-v-348d8fc0]{font-weight:600;font-size:.34667rem!important}.step .my-swipe .van-swipe-item .step-item[data-v-348d8fc0]{width:40%;display:inline-block;position:relative;box-sizing:border-box}.step .my-swipe .van-swipe-item .step-item.step-three[data-v-348d8fc0]{width:20%}.step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-348d8fc0]{text-align:right}.step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-348d8fc0]{left:.10667rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-348d8fc0]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:-60%;margin-left:20%}.step .my-swipe .van-swipe-item .step-item .stepImg[data-v-348d8fc0]{position:relative;width:.72rem;height:.72rem}.step .my-swipe .van-swipe-item .step-item .line[data-v-348d8fc0]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-348d8fc0]{border-bottom-color:#8ccf8c!important}.step .my-swipe .van-swipe-item .step-item .step-title[data-v-348d8fc0]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:5%;margin-left:-80%}.step .my-swipe[data-v-348d8fc0] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.step .my-swipe[data-v-348d8fc0] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.report .report-title[data-v-348d8fc0]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem;color:#333}.report .report-contain[data-v-348d8fc0]{padding:.42667rem 0}.report .report-contain .word[data-v-348d8fc0]{font-size:.42667rem;line-height:.53333rem}.report .report-contain .date[data-v-348d8fc0]{color:#333;font-size:.32rem;margin-top:.42667rem}.vote .vote-title[data-v-348d8fc0]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem}.vote .vote-title .voteImg[data-v-348d8fc0]{width:.48rem;height:.42667rem;margin-right:.26667rem;vertical-align:bottom}.vote .vote-contain .vote-item[data-v-348d8fc0],.vote .vote-contain[data-v-348d8fc0]{padding:.21333rem 0}.vote .vote-contain .vote-item .vote-row[data-v-348d8fc0]{display:flex;justify-content:space-between;align-items:center}.vote .vote-contain .vote-item .vote-row[data-v-348d8fc0]:last-of-type{margin-top:.21333rem}.vote .vote-contain .vote-item .vote-row .ticket[data-v-348d8fc0]{width:.53333rem;height:.53333rem}.vote .vote-contain .vote-item .vote-row .progress[data-v-348d8fc0]{flex:1}.vote .vote-contain .vote-item .vote-row .vote-right[data-v-348d8fc0]{width:1.6rem;text-align:center}.evaluate[data-v-348d8fc0]{margin-top:.8rem;padding:.42667rem .64rem;background:#f8f8f8;border-radius:.21333rem}.evaluate .evaluate-contain[data-v-348d8fc0]{line-height:.53333rem}.evaluate .evaluate-contain .title[data-v-348d8fc0]{color:#0071ff}.evaluate .evaluate-bottom[data-v-348d8fc0]{display:flex;align-items:center;justify-content:space-between;margin-top:.74667rem}.evaluate .evaluate-bottom .date[data-v-348d8fc0]{color:#8e8f9e}.evaluate .evaluate-bottom .more[data-v-348d8fc0]{color:#0071ff}.enclosurePopup[data-v-348d8fc0]{padding:1.06667rem}.enclosurePopup .btn[data-v-348d8fc0]{background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.enclosureBtn[data-v-348d8fc0]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-348d8fc0]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.box[data-v-348d8fc0]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box[data-v-348d8fc0] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .van-tabs[data-v-348d8fc0]{flex:1;display:flex;flex-direction:column}.box .van-tabs[data-v-348d8fc0] .van-tabs__content,.box .van-tabs[data-v-348d8fc0] .van-tabs__content .van-tab__pane{height:100%}.box .van-tabs[data-v-348d8fc0] .van-tabs__content .van-tab__pane .tab-contain{display:flex;flex-direction:column;height:100%}.box .van-tabs[data-v-348d8fc0] .van-tabs__content .van-tab__pane .tab-contain .step-contain{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .van-tabs[data-v-348d8fc0] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .van-tabs[data-v-348d8fc0] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}.box .van-tabs[data-v-348d8fc0] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain{font-size:.42667rem}.box .van-tabs[data-v-348d8fc0] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .input-ele{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .van-tabs[data-v-348d8fc0] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .downIcon{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .van-tabs[data-v-348d8fc0] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .enclosure{flex:1}.box .van-tabs[data-v-348d8fc0] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn{margin:0 .42667rem;margin-top:3.2rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .van-tabs[data-v-348d8fc0] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn .enclosureEnd{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}.tab-contain[data-v-348d8fc0]{display:flex;flex-direction:column;height:100%}.tab-contain .step-contain[data-v-348d8fc0]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.tab-contain .step-contain .form-ele[data-v-348d8fc0]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.tab-contain .step-contain .form-ele .title[data-v-348d8fc0]{width:2.4rem;font-size:.42667rem;flex-shrink:0}.tab-contain .step-contain .form-ele .notice-contain[data-v-348d8fc0]{font-size:.42667rem}.tab-contain .step-contain .form-ele .input-ele[data-v-348d8fc0]{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.tab-contain .step-contain .form-ele .downIcon[data-v-348d8fc0]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.tab-contain .step-contain .form-ele .enclosure[data-v-348d8fc0]{flex:1}.tab-contain .step-contain .btn[data-v-348d8fc0]{margin:0 .42667rem;margin-top:3.2rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.tab-contain .step-contain .btn .enclosureEnd[data-v-348d8fc0]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-06ca5022.b403a26b.css b/src/main/resources/views/dist/css/chunk-06ca5022.b403a26b.css
deleted file mode 100644
index 82f2f02..0000000
--- a/src/main/resources/views/dist/css/chunk-06ca5022.b403a26b.css
+++ /dev/null
@@ -1 +0,0 @@
-.unread[data-v-50bf413f]{font-size:.37333rem!important;letter-spacing:.02667rem!important}.navBar[data-v-50bf413f]{position:relative}.behalf[data-v-50bf413f]{position:absolute;top:0;left:.42667rem;height:1.22667rem;line-height:1.22667rem;font-size:.37333rem!important;letter-spacing:.02667rem!important;color:#fff;z-index:999}.menu[data-v-50bf413f]{display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff;margin-bottom:.32rem}.menu .item[data-v-50bf413f]{width:25%;padding:.21333rem 0;text-align:center}.menu .item img[data-v-50bf413f]{display:block;margin:0 auto;width:1.28rem}.menu .item .title[data-v-50bf413f]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.menu.rddb .item[data-v-50bf413f]{width:33.33%}.menuAdmin[data-v-50bf413f]{width:94%;margin:.4rem 3%;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.menuAdmin .item[data-v-50bf413f]{width:25%;padding:.21333rem 0;text-align:center}.menuAdmin .item img[data-v-50bf413f]{display:block;margin:0 auto;width:1.12rem}.menuAdmin .item .title[data-v-50bf413f]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.tabMenu[data-v-50bf413f]{width:94%;margin:0 3% .4rem;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.tabMenu .title[data-v-50bf413f]{width:33.33%}.tabMenu .title img[data-v-50bf413f]{display:block;margin:0 auto;width:70%}.tabMenu .title .line[data-v-50bf413f]{display:block;margin:0 auto;width:40%;height:.05333rem;margin-top:.13333rem;background-color:#ba2916}.tabMenu .item[data-v-50bf413f]{width:33.33%;padding:.21333rem 0;margin-top:.26667rem;text-align:center}.tabMenu .item img[data-v-50bf413f]{display:block;margin:0 auto;width:1.12rem}.tabMenu .item .title[data-v-50bf413f]{width:1.6rem;margin:0 auto;font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.more-menu[data-v-50bf413f]{display:flex;flex-wrap:wrap;padding:.85333rem 0 1.38667rem}.more-menu .item[data-v-50bf413f]{flex:1;padding:.21333rem 0;text-align:center}.more-menu .item img[data-v-50bf413f]{display:block;margin:0 auto;width:.96rem}.more-menu .item .title[data-v-50bf413f]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.box[data-v-50bf413f]{background-color:#fff;margin-bottom:.32rem}.box>.title[data-v-50bf413f]{display:flex;align-items:center;padding:.53333rem .42667rem .64rem}.box>.title[data-v-50bf413f]:before{content:"";display:block;width:.10667rem;height:.42667rem;background-color:#d03a29;margin-right:.21333rem}.box>.title .title_text[data-v-50bf413f]{font-size:.48rem;color:#333;font-weight:700}.box>.title .more[data-v-50bf413f]{margin-left:auto;font-size:.37333rem;color:#999}.statistics table[data-v-50bf413f]{table-layout:fixed;border-collapse:separate;width:100%;border-left:.02667rem solid #f4f4f4;border-top:.02667rem solid #f4f4f4}.statistics table td[data-v-50bf413f]{padding:.32rem .53333rem;border-right:.02667rem solid #f4f4f4;border-bottom:.02667rem solid #f4f4f4}.statistics table td .label[data-v-50bf413f]{font-size:.32rem;color:#999;line-height:.45333rem}.statistics table td .value[data-v-50bf413f]{font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700;margin-top:.10667rem}.approval .item[data-v-50bf413f]{position:relative;padding:.42667rem}.approval .item[data-v-50bf413f]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval .item .head[data-v-50bf413f]{display:flex}.approval .item .head .title[data-v-50bf413f]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.approval .item .head .icon[data-v-50bf413f]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval .item .content[data-v-50bf413f]{font-size:.37333rem;color:#999;line-height:.53333rem;margin-top:.21333rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval .item .bottom_text[data-v-50bf413f]{display:flex;flex-wrap:wrap;margin-top:.10667rem;font-size:.32rem;color:#999;line-height:.45333rem}.approval .item .bottom_text .date[data-v-50bf413f]{margin-right:1.06667rem}.approval2 .item[data-v-50bf413f]{position:relative;padding:.42667rem}.approval2 .item[data-v-50bf413f]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval2 .item .head[data-v-50bf413f]{display:flex}.approval2 .item .head .title[data-v-50bf413f]{flex:1;font-size:.42667rem;color:#333;line-height:.53333rem;font-weight:700}.approval2 .item .head .icon[data-v-50bf413f]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval2 .item .content[data-v-50bf413f]{font-size:.37333rem;color:#333;line-height:.53333rem;margin-top:.32rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval2 .item .date[data-v-50bf413f]{margin-top:.21333rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .date .label[data-v-50bf413f]{margin-right:.21333rem}.approval2 .item .state[data-v-50bf413f]{margin-top:.10667rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .state .label[data-v-50bf413f]{margin-right:.21333rem}.approval2 .item .state .value[data-v-50bf413f]{font-weight:700}.approval2 .item .state .value.blue[data-v-50bf413f]{color:#1e78ff}.approval2 .item .state .value.green[data-v-50bf413f]{color:#09a709}.approval2 .item .state .value.red[data-v-50bf413f]{color:#d03a29}.file .item[data-v-50bf413f]{position:relative;padding:.32rem .26667rem;display:flex;align-items:center}.file .item[data-v-50bf413f]:not(:last-child):after{content:"";position:absolute;bottom:0;left:2.08rem;right:0;height:.02667rem;background-color:#f3f3f3}.file .item .icon[data-v-50bf413f]{width:1.49333rem;margin-right:.32rem}.file .item .name[data-v-50bf413f]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700;margin-bottom:.10667rem}.file .item .content[data-v-50bf413f]{font-size:.32rem;color:#999;line-height:.45333rem;display:flex}.file .item .content .user[data-v-50bf413f]{margin-right:.32rem}.notice .item[data-v-50bf413f]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.notice .item[data-v-50bf413f]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.notice .item .tag[data-v-50bf413f]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.notice .item .title[data-v-50bf413f]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.notice .item .icon[data-v-50bf413f]{margin-left:.8rem;font-size:.32rem}.active .item[data-v-50bf413f]{padding:.42667rem;position:relative}.active .item[data-v-50bf413f]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.active .item .title[data-v-50bf413f]{font-weight:700;display:flex;align-items:center}.active .item .title .text[data-v-50bf413f]{font-size:.42667rem;color:#333;line-height:.58667rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .title .van-tag[data-v-50bf413f]{width:1.70667rem;border-radius:.32rem;justify-content:center;line-height:.53333rem;margin-left:.10667rem;white-space:nowrap;font-weight:700}.active .item .detail[data-v-50bf413f]{margin-top:.32rem}.active .item .detail .cell[data-v-50bf413f]{display:flex;font-size:.32rem}.active .item .detail .cell[data-v-50bf413f]:not(:last-child){margin-bottom:.10667rem}.active .item .detail .cell .label[data-v-50bf413f]{color:#999;margin-right:.21333rem}.active .item .detail .cell .value[data-v-50bf413f]{height:.42667rem;flex:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:.32rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#999;line-height:.42667rem}.active .item .detail .cell .value[data-v-50bf413f] b{font-weight:400!important}.active .item .detail .cell .value[data-v-50bf413f] div{margin:0!important;padding:0!important}.active .item .detail .cell .value[data-v-50bf413f] img{display:none!important}.active .item .detail .cell .value[data-v-50bf413f] p,.active .item .detail .cell .value[data-v-50bf413f] span{margin:0!important;padding:0!important;font-size:.32rem!important;line-height:normal!important;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .foot[data-v-50bf413f]{margin-top:.32rem;display:flex;justify-content:space-between;align-items:center;font-size:.32rem;color:#999;line-height:.45333rem}.active .item .foot .van-icon[data-v-50bf413f]{margin-left:.10667rem;vertical-align:middle}.active .item .more[data-v-50bf413f]{padding-top:.32rem;border-top:.02667rem solid #f8f8f8}.active .item .enclosure[data-v-50bf413f]{margin-top:.21333rem}.active .item .enclosure .item[data-v-50bf413f]{background-color:#f8f8f8;padding:.26667rem .42667rem;display:flex;align-items:center}.active .item .enclosure .item .detail[data-v-50bf413f]{flex:1}.active .item .enclosure .item .detail .name[data-v-50bf413f]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.active .item .enclosure .item .detail .size[data-v-50bf413f]{font-size:.32rem;color:#333;line-height:.45333rem;margin-top:.10667rem}.active .item .enclosure .item .icon[data-v-50bf413f]{width:1.49333rem}.active .item .imgs[data-v-50bf413f]{display:flex;margin-top:.21333rem}.active .item .imgs .img[data-v-50bf413f]{flex:1;border-radius:.10667rem;overflow:hidden}.active .item .imgs .img+.img[data-v-50bf413f]{margin-left:.10667rem}.active .item .imgs .img img[data-v-50bf413f]{max-height:2.66667rem;display:block;width:100%}.active .item .van-button[data-v-50bf413f]{background-color:#fff;border:.02667rem solid #d03a29;border-radius:.32rem;height:.61333rem;width:1.70667rem;font-size:.32rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#d03a29;padding:0 .32rem;margin-top:.32rem}.active .item .van-button .van-icon[data-v-50bf413f]{vertical-align:middle}.votersNav[data-v-50bf413f]{display:flex;justify-content:space-between;padding:.53333rem .53333rem 0;width:100%;background-color:#fff;margin-bottom:.32rem;margin:15rpx 3%}.votersNav .items .imgBox[data-v-50bf413f]{display:flex;justify-content:center}.votersNav .items .imgBox img[data-v-50bf413f]{width:1.22667rem;height:1.22667rem}.votersNav .items .title[data-v-50bf413f]{font-size:.42667rem;margin-top:.26667rem}.civilian[data-v-50bf413f]{background-color:#fff;margin-bottom:.32rem}.civilian .banner[data-v-50bf413f]{width:100%;display:block}.civilian .user[data-v-50bf413f]{position:relative;margin:-1.06667rem .53333rem 0;border-radius:.10667rem;background-color:#fff;box-shadow:0 .08rem .26667rem 0 rgba(0,0,0,.08);display:flex;align-items:center;padding:.42667rem .53333rem .48rem}.civilian .user .avatar[data-v-50bf413f]{position:relative;margin-right:.32rem}.civilian .user .avatar img[data-v-50bf413f]{width:1.22667rem;height:1.22667rem;-o-object-fit:cover;object-fit:cover;border-radius:50%}.civilian .user .avatar .badge[data-v-50bf413f]{position:absolute;top:.10667rem;right:.10667rem;min-width:.42667rem;padding:0 .08rem;font-size:.32rem;color:#fff;line-height:.42667rem;text-align:center;border-radius:.42667rem;background-color:#d03a29;transform:translate(50%,-50%)}.civilian .user .name[data-v-50bf413f]{flex:1;font-size:.37333rem;color:#333;font-weight:700}.civilian .user .link[data-v-50bf413f]{font-size:.37333rem;color:#d03a29;font-weight:700}.civilian .user .link .van-icon[data-v-50bf413f]{margin-left:.10667rem;vertical-align:middle}.civilian .civilian-menu[data-v-50bf413f]{padding:.32rem}.civilian .civilian-menu .item[data-v-50bf413f]{position:relative}.civilian .civilian-menu .item[data-v-50bf413f]:not(:last-child){margin-bottom:.32rem}.civilian .civilian-menu .item .bg-img[data-v-50bf413f]{position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.civilian .civilian-menu .item .content[data-v-50bf413f]{padding:.53333rem .64rem;position:relative}.civilian .civilian-menu .item .content .title[data-v-50bf413f]{font-size:.42667rem;color:#fff;line-height:.58667rem;font-weight:700}.civilian .civilian-menu .item .content .btn[data-v-50bf413f]{margin-top:.29333rem;background-color:#fff;padding:.13333rem .32rem;border-radius:.37333rem;height:.74667rem;display:inline-flex;align-items:center;font-size:.32rem;color:#f6331d;font-weight:700}.civilian .civilian-menu .item .content .btn .van-icon[data-v-50bf413f]{margin-left:.08rem}.grassrootsNews .item[data-v-50bf413f]{position:relative;padding:.4rem .42667rem;display:flex}.grassrootsNews .item[data-v-50bf413f]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.grassrootsNews .item .info[data-v-50bf413f]{width:0;flex:1}.grassrootsNews .item .info .title[data-v-50bf413f]{flex:1;font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.grassrootsNews .item .info .text[data-v-50bf413f]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.grassrootsNews .item .img[data-v-50bf413f]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.opinionBox .opinionArrow[data-v-50bf413f]{color:#ccc;font-size:.475rem}.opinionBox .opinionArrow[data-v-50bf413f]:before{position:relative;top:50%;left:50%;transform:translate(-50%,-51%)}.news[data-v-50bf413f]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-50bf413f]:last-of-type{border-bottom:none}.newList[data-v-50bf413f]{display:flex;justify-content:space-between;padding:.42667rem 0}.newList .newleft[data-v-50bf413f]{display:flex;flex-direction:column;justify-content:space-between}.newList .newleft .newtitle[data-v-50bf413f]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.newList .newleft .newdate[data-v-50bf413f]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.newList .newimg[data-v-50bf413f]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-070766b2.49f3f092.css b/src/main/resources/views/dist/css/chunk-070766b2.49f3f092.css
new file mode 100644
index 0000000..c223a03
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-070766b2.49f3f092.css
@@ -0,0 +1 @@
+.fileList1List[data-v-71901d98]{background-color:#f7f8fa;width:2.13333rem;height:2.13333rem}.fileList1List img[data-v-71901d98]{width:.53333rem;height:.53333rem;margin-left:.8rem;margin-top:.50667rem}.fileList1List h4[data-v-71901d98]{height:.37333rem;margin-top:.21333rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-left:.13333rem}.van-field-inp[data-v-71901d98]{line-height:.53333rem;border-radius:.48rem;background:#f8f8f8;margin:.16rem 0}p[data-v-71901d98]{line-height:1.8}.plus_add[data-v-71901d98]{display:flex;align-items:flex-end}.plus_add .plus_addSe[data-v-71901d98]{width:75%;display:flex;flex-wrap:wrap}.plus_add .plus_addSe .input-ele[data-v-71901d98]{width:100%!important;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.plus[data-v-71901d98]{margin-bottom:.21333rem;padding:.10667rem;background:#e72e3a;border-radius:50%}.report .report-title[data-v-71901d98]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem;color:#333}.report .report-contain[data-v-71901d98]{padding:.42667rem 0}.report .report-contain .word[data-v-71901d98]{font-size:.42667rem;line-height:.53333rem}.report .report-contain .date[data-v-71901d98]{color:#333;font-size:.32rem;margin-top:.42667rem}.vote .vote-title[data-v-71901d98]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem}.vote .vote-title .voteImg[data-v-71901d98]{width:.48rem;height:.42667rem;margin-right:.26667rem;vertical-align:bottom}.vote .vote-contain[data-v-71901d98]{padding:.21333rem 0}.vote .vote-contain .scoreTitle[data-v-71901d98]{text-align:center;padding:.32rem 0}.vote .vote-contain .vote-item[data-v-71901d98]{padding:.21333rem 0}.vote .vote-contain .vote-item .vote-row[data-v-71901d98]{display:flex;justify-content:space-between;align-items:center}.vote .vote-contain .vote-item .vote-row[data-v-71901d98]:last-of-type{margin-top:.21333rem}.vote .vote-contain .vote-item .vote-row .ticket[data-v-71901d98]{width:.53333rem;height:.53333rem}.vote .vote-contain .vote-item .vote-row .progress[data-v-71901d98]{flex:1}.vote .vote-contain .vote-item .vote-row .vote-right[data-v-71901d98]{width:1.6rem;text-align:center}.evaluate[data-v-71901d98]{margin-top:.8rem;padding:.42667rem .64rem;background:#f8f8f8;border-radius:.21333rem}.evaluate .evaluate-contain[data-v-71901d98]{line-height:.53333rem}.evaluate .evaluate-contain .title[data-v-71901d98]{color:#0071ff}.evaluate .evaluate-bottom[data-v-71901d98]{display:flex;align-items:center;justify-content:space-between;margin-top:.74667rem}.evaluate .evaluate-bottom .date[data-v-71901d98]{color:#8e8f9e}.evaluate .evaluate-bottom .more[data-v-71901d98]{color:#0071ff}.enclosurePopup[data-v-71901d98]{padding:1.06667rem}.enclosurePopup .btn[data-v-71901d98]{background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.enclosureBtn[data-v-71901d98]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-71901d98]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.users[data-v-71901d98]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-71901d98]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-71901d98]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.publish[data-v-71901d98]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-71901d98]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-71901d98]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.step .my-swipe .van-swipe-item[data-v-71901d98]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem}.step .my-swipe .van-swipe-item[data-v-71901d98]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.step .my-swipe .van-swipe-item .pitch-step-title[data-v-71901d98]{font-weight:600;font-size:.34667rem!important}.step .my-swipe .van-swipe-item .step-item[data-v-71901d98]{width:40%;display:inline-block;position:relative;box-sizing:border-box}.step .my-swipe .van-swipe-item .step-item.step-three[data-v-71901d98]{width:20%}.step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-71901d98]{text-align:right}.step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-71901d98]{left:.10667rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-71901d98]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:-60%;margin-left:30%}.step .my-swipe .van-swipe-item .step-item .stepImg[data-v-71901d98]{position:relative;width:.72rem;height:.72rem}.step .my-swipe .van-swipe-item .step-item .line[data-v-71901d98]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-71901d98]{border-bottom-color:#8ccf8c!important}.step .my-swipe .van-swipe-item .step-item .step-title[data-v-71901d98]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:5%;margin-left:-70%}.step .my-swipe[data-v-71901d98] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.step .my-swipe[data-v-71901d98] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.swiperSecond[data-v-71901d98]{padding:.8rem .8rem .8rem .53333rem!important;display:flex}.swiperSecond .step-second[data-v-71901d98]{width:30%!important}.swiperSecond .step-second.step-narrow[data-v-71901d98]{width:25%!important}.swiperSecond .negativeDirection .step-title[data-v-71901d98]{margin-right:-44%!important;margin-left:20%}.box[data-v-71901d98]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box[data-v-71901d98] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .van-tabs[data-v-71901d98]{flex:1;display:flex;flex-direction:column}.box .van-tabs[data-v-71901d98] .van-tabs__content,.box .van-tabs[data-v-71901d98] .van-tabs__content .van-tab__pane{height:100%}.box .tab-contain[data-v-71901d98]{display:flex;flex-direction:column;height:100%}.box .tab-contain .step-contain[data-v-71901d98]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .tab-contain .step-contain.bulletinBoard[data-v-71901d98]{padding-bottom:2.13333rem}.box .tab-contain .step-contain .form-ele[data-v-71901d98]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .tab-contain .step-contain .form-ele .title[data-v-71901d98]{width:2.4rem;font-size:.42667rem;flex-shrink:0}.box .tab-contain .step-contain .form-ele .notice-contain[data-v-71901d98]{font-size:.42667rem}.box .tab-contain .step-contain .form-ele .notice-contain p[data-v-71901d98]{margin-top:.26667rem}.box .tab-contain .step-contain .form-ele .notice-contain p[data-v-71901d98]:first-of-type{margin-top:0}.box .tab-contain .step-contain .form-ele .input-ele[data-v-71901d98]{width:70%;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .tab-contain .step-contain .form-ele .downIcon[data-v-71901d98]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .tab-contain .step-contain .form-ele .enclosure[data-v-71901d98]{flex:1}.box .tab-contain .step-contain .btn[data-v-71901d98]{margin:0 .42667rem;margin-top:1.6rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .tab-contain .step-contain .btn .enclosureEnd[data-v-71901d98]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-0b472d0c.ada7771f.css b/src/main/resources/views/dist/css/chunk-0b472d0c.ada7771f.css
deleted file mode 100644
index 22df1c4..0000000
--- a/src/main/resources/views/dist/css/chunk-0b472d0c.ada7771f.css
+++ /dev/null
@@ -1 +0,0 @@
-.flex-align-center[data-v-ad69c8ce]{display:flex;align-items:center}.browse_image[data-v-ad69c8ce]{width:2.13333rem;height:2.13333rem}[data-v-ad69c8ce] .from_el{display:flex;align-items:center}[data-v-ad69c8ce] .from_el .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}[data-v-ad69c8ce] .from_el .enclosure{margin-top:.53333rem}[data-v-ad69c8ce] .from_el .enclosureBtn{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}[data-v-ad69c8ce] .from_el .enclosureBtn .enclosureImg{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.preview-cover[data-v-ad69c8ce]{position:absolute;bottom:0;box-sizing:border-box;width:100%;padding:.10667rem;color:#fff;font-size:.32rem;text-align:center;background:rgba(0,0,0,.3)}.browse[data-v-ad69c8ce]{margin:.26667rem 0}.browse .browse_delet[data-v-ad69c8ce]{width:100%;text-align:right;font-size:.42667rem}.browse .imagesee[data-v-ad69c8ce]{width:2.66667rem}.van-field-inp[data-v-e71ad8ca]{line-height:.53333rem;border-radius:.48rem;background:#f8f8f8;margin:.16rem 0}p[data-v-e71ad8ca]{line-height:1.8}.publish[data-v-e71ad8ca]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-e71ad8ca]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-e71ad8ca]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.plus_add[data-v-e71ad8ca]{display:flex;align-items:flex-end}.plus_add .plus_addSe[data-v-e71ad8ca]{width:75%;display:flex;flex-wrap:wrap}.plus_add .plus_addSe .input-ele[data-v-e71ad8ca]{width:100%!important;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.plus[data-v-e71ad8ca]{margin-bottom:.21333rem;padding:.10667rem;background:#e72e3a;border-radius:50%}.users[data-v-e71ad8ca]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-e71ad8ca]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-e71ad8ca]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.box[data-v-e71ad8ca]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box .step .my-swipe .van-swipe-item[data-v-e71ad8ca]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem;display:flex}.box .step .my-swipe .van-swipe-item[data-v-e71ad8ca]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.box .step .my-swipe .van-swipe-item .pitch-step-title[data-v-e71ad8ca]{font-weight:600;font-size:.34667rem!important}.box .step .my-swipe .van-swipe-item .step-item[data-v-e71ad8ca]{width:35%;display:inline-block;position:relative;box-sizing:border-box}.box .step .my-swipe .van-swipe-item .step-item.step-three[data-v-e71ad8ca]{width:30%}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-e71ad8ca]{width:40%;text-align:right}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-e71ad8ca]{left:.10667rem;top:.32rem}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-e71ad8ca]{font-size:.32rem;line-height:.48rem;margin-top:.32rem;text-align:center;margin-right:-48%;margin-left:20%}.box .step .my-swipe .van-swipe-item .step-item .stepImg[data-v-e71ad8ca]{position:relative;width:.72rem;height:.72rem}.box .step .my-swipe .van-swipe-item .step-item .line[data-v-e71ad8ca]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.box .step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-e71ad8ca]{border-bottom-color:#8ccf8c!important}.box .step .my-swipe .van-swipe-item .step-item .step-title[data-v-e71ad8ca]{font-size:.32rem;line-height:.48rem;margin-top:.32rem;text-align:center;margin-right:8%;margin-left:-70%}.box .step .my-swipe[data-v-e71ad8ca] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.box .step .my-swipe[data-v-e71ad8ca] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.box .step-contain[data-v-e71ad8ca]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .step-contain .form-ele[data-v-e71ad8ca]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .step-contain .form-ele .title[data-v-e71ad8ca]{width:3.2rem;font-size:.42667rem;line-height:.53333rem;flex-shrink:0}.box .step-contain .form-ele .notice-contain[data-v-e71ad8ca]{font-size:.42667rem}.box .step-contain .form-ele .input-ele[data-v-e71ad8ca]{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .step-contain .form-ele .downIcon[data-v-e71ad8ca]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .step-contain .form-ele .enclosure[data-v-e71ad8ca]{flex:1}.box .step-contain .btn[data-v-e71ad8ca]{margin:0 .42667rem;margin-top:1.6rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .step-contain .btn .enclosureEnd[data-v-e71ad8ca]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}.enclosureBtn[data-v-e71ad8ca]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-e71ad8ca]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-0c808ab2.09dbcfa7.css b/src/main/resources/views/dist/css/chunk-0c808ab2.09dbcfa7.css
new file mode 100644
index 0000000..f569296
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-0c808ab2.09dbcfa7.css
@@ -0,0 +1 @@
+.unread[data-v-1b8b69fa]{font-size:.37333rem!important;letter-spacing:.02667rem!important}.navBar[data-v-1b8b69fa]{position:relative}.behalf[data-v-1b8b69fa]{position:absolute;top:0;left:.42667rem;height:1.22667rem;line-height:1.22667rem;font-size:.37333rem!important;letter-spacing:.02667rem!important;color:#fff;z-index:999}.menu[data-v-1b8b69fa]{display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff;margin-bottom:.32rem}.menu .item[data-v-1b8b69fa]{width:25%;padding:.21333rem 0;text-align:center}.menu .item img[data-v-1b8b69fa]{display:block;margin:0 auto;width:1.28rem}.menu .item .title[data-v-1b8b69fa]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.menu.rddb .item[data-v-1b8b69fa]{width:33.33%}.menuAdmin[data-v-1b8b69fa]{width:94%;margin:.4rem 3%;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.menuAdmin .item[data-v-1b8b69fa]{width:25%;padding:.21333rem 0;text-align:center}.menuAdmin .item img[data-v-1b8b69fa]{display:block;margin:0 auto;width:1.12rem}.menuAdmin .item .title[data-v-1b8b69fa]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.tabMenu[data-v-1b8b69fa]{width:94%;margin:0 3% .4rem;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.tabMenu .title[data-v-1b8b69fa]{width:33.33%}.tabMenu .title img[data-v-1b8b69fa]{display:block;margin:0 auto;width:70%}.tabMenu .title .line[data-v-1b8b69fa]{display:block;margin:0 auto;width:40%;height:.05333rem;margin-top:.13333rem;background-color:#ba2916}.tabMenu .item[data-v-1b8b69fa]{width:33.33%;padding:.21333rem 0;margin-top:.26667rem;text-align:center}.tabMenu .item img[data-v-1b8b69fa]{display:block;margin:0 auto;width:1.12rem}.tabMenu .item .title[data-v-1b8b69fa]{width:1.6rem;margin:0 auto;font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.more-menu[data-v-1b8b69fa]{display:flex;flex-wrap:wrap;padding:.85333rem 0 1.38667rem}.more-menu .item[data-v-1b8b69fa]{flex:1;padding:.21333rem 0;text-align:center}.more-menu .item img[data-v-1b8b69fa]{display:block;margin:0 auto;width:.96rem}.more-menu .item .title[data-v-1b8b69fa]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.box[data-v-1b8b69fa]{background-color:#fff;margin-bottom:.32rem}.box>.title[data-v-1b8b69fa]{display:flex;align-items:center;padding:.53333rem .42667rem .64rem}.box>.title[data-v-1b8b69fa]:before{content:"";display:block;width:.10667rem;height:.42667rem;background-color:#d03a29;margin-right:.21333rem}.box>.title .title_text[data-v-1b8b69fa]{font-size:.48rem;color:#333;font-weight:700}.box>.title .more[data-v-1b8b69fa]{margin-left:auto;font-size:.37333rem;color:#999}.statistics table[data-v-1b8b69fa]{table-layout:fixed;border-collapse:separate;width:100%;border-left:.02667rem solid #f4f4f4;border-top:.02667rem solid #f4f4f4}.statistics table td[data-v-1b8b69fa]{padding:.32rem .53333rem;border-right:.02667rem solid #f4f4f4;border-bottom:.02667rem solid #f4f4f4}.statistics table td .label[data-v-1b8b69fa]{font-size:.32rem;color:#999;line-height:.45333rem}.statistics table td .value[data-v-1b8b69fa]{font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700;margin-top:.10667rem}.approval .item[data-v-1b8b69fa]{position:relative;padding:.42667rem}.approval .item[data-v-1b8b69fa]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval .item .head[data-v-1b8b69fa]{display:flex}.approval .item .head .title[data-v-1b8b69fa]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.approval .item .head .icon[data-v-1b8b69fa]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval .item .content[data-v-1b8b69fa]{font-size:.37333rem;color:#999;line-height:.53333rem;margin-top:.21333rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval .item .bottom_text[data-v-1b8b69fa]{display:flex;flex-wrap:wrap;margin-top:.10667rem;font-size:.32rem;color:#999;line-height:.45333rem}.approval .item .bottom_text .date[data-v-1b8b69fa]{margin-right:1.06667rem}.approval2 .item[data-v-1b8b69fa]{position:relative;padding:.42667rem}.approval2 .item[data-v-1b8b69fa]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval2 .item .head[data-v-1b8b69fa]{display:flex}.approval2 .item .head .title[data-v-1b8b69fa]{flex:1;font-size:.42667rem;color:#333;line-height:.53333rem;font-weight:700}.approval2 .item .head .icon[data-v-1b8b69fa]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval2 .item .content[data-v-1b8b69fa]{font-size:.37333rem;color:#333;line-height:.53333rem;margin-top:.32rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval2 .item .date[data-v-1b8b69fa]{margin-top:.21333rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .date .label[data-v-1b8b69fa]{margin-right:.21333rem}.approval2 .item .state[data-v-1b8b69fa]{margin-top:.10667rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .state .label[data-v-1b8b69fa]{margin-right:.21333rem}.approval2 .item .state .value[data-v-1b8b69fa]{font-weight:700}.approval2 .item .state .value.blue[data-v-1b8b69fa]{color:#1e78ff}.approval2 .item .state .value.green[data-v-1b8b69fa]{color:#09a709}.approval2 .item .state .value.red[data-v-1b8b69fa]{color:#d03a29}.file .item[data-v-1b8b69fa]{position:relative;padding:.32rem .26667rem;display:flex;align-items:center}.file .item[data-v-1b8b69fa]:not(:last-child):after{content:"";position:absolute;bottom:0;left:2.08rem;right:0;height:.02667rem;background-color:#f3f3f3}.file .item .icon[data-v-1b8b69fa]{width:1.49333rem;margin-right:.32rem}.file .item .name[data-v-1b8b69fa]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700;margin-bottom:.10667rem}.file .item .content[data-v-1b8b69fa]{font-size:.32rem;color:#999;line-height:.45333rem;display:flex}.file .item .content .user[data-v-1b8b69fa]{margin-right:.32rem}.notice .item[data-v-1b8b69fa]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.notice .item[data-v-1b8b69fa]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.notice .item .tag[data-v-1b8b69fa]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.notice .item .title[data-v-1b8b69fa]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.notice .item .icon[data-v-1b8b69fa]{margin-left:.8rem;font-size:.32rem}.active .item[data-v-1b8b69fa]{padding:.42667rem;position:relative}.active .item[data-v-1b8b69fa]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.active .item .title[data-v-1b8b69fa]{font-weight:700;display:flex;align-items:center}.active .item .title .text[data-v-1b8b69fa]{font-size:.42667rem;color:#333;line-height:.58667rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .title .van-tag[data-v-1b8b69fa]{width:1.70667rem;border-radius:.32rem;justify-content:center;line-height:.53333rem;margin-left:.10667rem;white-space:nowrap;font-weight:700}.active .item .detail[data-v-1b8b69fa]{margin-top:.32rem}.active .item .detail .cell[data-v-1b8b69fa]{display:flex;font-size:.32rem}.active .item .detail .cell[data-v-1b8b69fa]:not(:last-child){margin-bottom:.10667rem}.active .item .detail .cell .label[data-v-1b8b69fa]{color:#999;margin-right:.21333rem}.active .item .detail .cell .value[data-v-1b8b69fa]{height:.42667rem;flex:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:.32rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#999;line-height:.42667rem}.active .item .detail .cell .value[data-v-1b8b69fa] b{font-weight:400!important}.active .item .detail .cell .value[data-v-1b8b69fa] div{margin:0!important;padding:0!important}.active .item .detail .cell .value[data-v-1b8b69fa] img{display:none!important}.active .item .detail .cell .value[data-v-1b8b69fa] p,.active .item .detail .cell .value[data-v-1b8b69fa] span{margin:0!important;padding:0!important;font-size:.32rem!important;line-height:normal!important;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .foot[data-v-1b8b69fa]{margin-top:.32rem;display:flex;justify-content:space-between;align-items:center;font-size:.32rem;color:#999;line-height:.45333rem}.active .item .foot .van-icon[data-v-1b8b69fa]{margin-left:.10667rem;vertical-align:middle}.active .item .more[data-v-1b8b69fa]{padding-top:.32rem;border-top:.02667rem solid #f8f8f8}.active .item .enclosure[data-v-1b8b69fa]{margin-top:.21333rem}.active .item .enclosure .item[data-v-1b8b69fa]{background-color:#f8f8f8;padding:.26667rem .42667rem;display:flex;align-items:center}.active .item .enclosure .item .detail[data-v-1b8b69fa]{flex:1}.active .item .enclosure .item .detail .name[data-v-1b8b69fa]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.active .item .enclosure .item .detail .size[data-v-1b8b69fa]{font-size:.32rem;color:#333;line-height:.45333rem;margin-top:.10667rem}.active .item .enclosure .item .icon[data-v-1b8b69fa]{width:1.49333rem}.active .item .imgs[data-v-1b8b69fa]{display:flex;margin-top:.21333rem}.active .item .imgs .img[data-v-1b8b69fa]{flex:1;border-radius:.10667rem;overflow:hidden}.active .item .imgs .img+.img[data-v-1b8b69fa]{margin-left:.10667rem}.active .item .imgs .img img[data-v-1b8b69fa]{max-height:2.66667rem;display:block;width:100%}.active .item .van-button[data-v-1b8b69fa]{background-color:#fff;border:.02667rem solid #d03a29;border-radius:.32rem;height:.61333rem;width:1.70667rem;font-size:.32rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#d03a29;padding:0 .32rem;margin-top:.32rem}.active .item .van-button .van-icon[data-v-1b8b69fa]{vertical-align:middle}.votersNav[data-v-1b8b69fa]{display:flex;justify-content:space-between;padding:.53333rem .53333rem 0;width:100%;background-color:#fff;margin-bottom:.32rem;margin:15rpx 3%}.votersNav .items .imgBox[data-v-1b8b69fa]{display:flex;justify-content:center}.votersNav .items .imgBox img[data-v-1b8b69fa]{width:1.22667rem;height:1.22667rem}.votersNav .items .title[data-v-1b8b69fa]{font-size:.42667rem;margin-top:.26667rem}.civilian[data-v-1b8b69fa]{background-color:#fff;margin-bottom:.32rem}.civilian .banner[data-v-1b8b69fa]{width:100%;display:block}.civilian .user[data-v-1b8b69fa]{position:relative;margin:-1.06667rem .53333rem 0;border-radius:.10667rem;background-color:#fff;box-shadow:0 .08rem .26667rem 0 rgba(0,0,0,.08);display:flex;align-items:center;padding:.42667rem .53333rem .48rem}.civilian .user .avatar[data-v-1b8b69fa]{position:relative;margin-right:.32rem}.civilian .user .avatar img[data-v-1b8b69fa]{width:1.22667rem;height:1.22667rem;-o-object-fit:cover;object-fit:cover;border-radius:50%}.civilian .user .avatar .badge[data-v-1b8b69fa]{position:absolute;top:.10667rem;right:.10667rem;min-width:.42667rem;padding:0 .08rem;font-size:.32rem;color:#fff;line-height:.42667rem;text-align:center;border-radius:.42667rem;background-color:#d03a29;transform:translate(50%,-50%)}.civilian .user .name[data-v-1b8b69fa]{flex:1;font-size:.37333rem;color:#333;font-weight:700}.civilian .user .link[data-v-1b8b69fa]{font-size:.37333rem;color:#d03a29;font-weight:700}.civilian .user .link .van-icon[data-v-1b8b69fa]{margin-left:.10667rem;vertical-align:middle}.civilian .civilian-menu[data-v-1b8b69fa]{padding:.32rem}.civilian .civilian-menu .item[data-v-1b8b69fa]{position:relative}.civilian .civilian-menu .item[data-v-1b8b69fa]:not(:last-child){margin-bottom:.32rem}.civilian .civilian-menu .item .bg-img[data-v-1b8b69fa]{position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.civilian .civilian-menu .item .content[data-v-1b8b69fa]{padding:.53333rem .64rem;position:relative}.civilian .civilian-menu .item .content .title[data-v-1b8b69fa]{font-size:.42667rem;color:#fff;line-height:.58667rem;font-weight:700}.civilian .civilian-menu .item .content .btn[data-v-1b8b69fa]{margin-top:.29333rem;background-color:#fff;padding:.13333rem .32rem;border-radius:.37333rem;height:.74667rem;display:inline-flex;align-items:center;font-size:.32rem;color:#f6331d;font-weight:700}.civilian .civilian-menu .item .content .btn .van-icon[data-v-1b8b69fa]{margin-left:.08rem}.grassrootsNews .item[data-v-1b8b69fa]{position:relative;padding:.4rem .42667rem;display:flex}.grassrootsNews .item[data-v-1b8b69fa]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.grassrootsNews .item .info[data-v-1b8b69fa]{width:0;flex:1}.grassrootsNews .item .info .title[data-v-1b8b69fa]{flex:1;font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.grassrootsNews .item .info .text[data-v-1b8b69fa]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.grassrootsNews .item .img[data-v-1b8b69fa]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.opinionBox .opinionArrow[data-v-1b8b69fa]{color:#ccc;font-size:.475rem}.opinionBox .opinionArrow[data-v-1b8b69fa]:before{position:relative;top:50%;left:50%;transform:translate(-50%,-51%)}.news[data-v-1b8b69fa]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-1b8b69fa]:last-of-type{border-bottom:none}.newList[data-v-1b8b69fa]{display:flex;justify-content:space-between;padding:.42667rem 0}.newList .newleft[data-v-1b8b69fa]{display:flex;flex-direction:column;justify-content:space-between}.newList .newleft .newtitle[data-v-1b8b69fa]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.newList .newleft .newdate[data-v-1b8b69fa]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.newList .newimg[data-v-1b8b69fa]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-0dce8214.6824818b.css b/src/main/resources/views/dist/css/chunk-0dce8214.6824818b.css
new file mode 100644
index 0000000..3000048
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-0dce8214.6824818b.css
@@ -0,0 +1 @@
+.van-field-inp[data-v-56dbe8c2]{line-height:.53333rem;border-radius:.48rem;background:#f8f8f8;margin:.16rem 0}p[data-v-56dbe8c2]{line-height:1.8}.publish[data-v-56dbe8c2]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-56dbe8c2]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-56dbe8c2]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.plus_add[data-v-56dbe8c2]{display:flex;align-items:flex-end}.plus_add .plus_addSe[data-v-56dbe8c2]{width:75%;display:flex;flex-wrap:wrap}.plus_add .plus_addSe .input-ele[data-v-56dbe8c2]{width:100%!important;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.plus[data-v-56dbe8c2]{margin-bottom:.21333rem;padding:.10667rem;background:#e72e3a;border-radius:50%}.users[data-v-56dbe8c2]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-56dbe8c2]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-56dbe8c2]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.box[data-v-56dbe8c2]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box .step .my-swipe .van-swipe-item[data-v-56dbe8c2]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem;display:flex}.box .step .my-swipe .van-swipe-item[data-v-56dbe8c2]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.box .step .my-swipe .van-swipe-item .pitch-step-title[data-v-56dbe8c2]{font-weight:600;font-size:.34667rem!important}.box .step .my-swipe .van-swipe-item .step-item[data-v-56dbe8c2]{width:35%;display:inline-block;position:relative;box-sizing:border-box}.box .step .my-swipe .van-swipe-item .step-item.step-three[data-v-56dbe8c2]{width:30%}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-56dbe8c2]{width:40%;text-align:right}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-56dbe8c2]{left:.10667rem;top:.32rem}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-56dbe8c2]{font-size:.32rem;line-height:.48rem;margin-top:.32rem;text-align:center;margin-right:-48%;margin-left:20%}.box .step .my-swipe .van-swipe-item .step-item .stepImg[data-v-56dbe8c2]{position:relative;width:.72rem;height:.72rem}.box .step .my-swipe .van-swipe-item .step-item .line[data-v-56dbe8c2]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.box .step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-56dbe8c2]{border-bottom-color:#8ccf8c!important}.box .step .my-swipe .van-swipe-item .step-item .step-title[data-v-56dbe8c2]{font-size:.32rem;line-height:.48rem;margin-top:.32rem;text-align:center;margin-right:8%;margin-left:-70%}.box .step .my-swipe[data-v-56dbe8c2] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.box .step .my-swipe[data-v-56dbe8c2] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.box .step-contain[data-v-56dbe8c2]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .step-contain .form-ele[data-v-56dbe8c2]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .step-contain .form-ele .title[data-v-56dbe8c2]{width:3.2rem;font-size:.42667rem;line-height:.53333rem;flex-shrink:0}.box .step-contain .form-ele .notice-contain[data-v-56dbe8c2]{font-size:.42667rem}.box .step-contain .form-ele .input-ele[data-v-56dbe8c2]{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .step-contain .form-ele .downIcon[data-v-56dbe8c2]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .step-contain .form-ele .enclosure[data-v-56dbe8c2]{flex:1}.box .step-contain .btn[data-v-56dbe8c2]{margin:0 .42667rem;margin-top:1.6rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .step-contain .btn .enclosureEnd[data-v-56dbe8c2]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}.enclosureBtn[data-v-56dbe8c2]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-56dbe8c2]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-0e5ae20e.25aac624.css b/src/main/resources/views/dist/css/chunk-0e5ae20e.25aac624.css
new file mode 100644
index 0000000..26262e0
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-0e5ae20e.25aac624.css
@@ -0,0 +1 @@
+.news[data-v-1ee7323f]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-1ee7323f]:last-of-type{border-bottom:none}.news .newList2[data-v-1ee7323f]{padding:.42667rem 0}.news .newList2 .top[data-v-1ee7323f]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.news .newList2 .imgarr[data-v-1ee7323f]{display:flex;margin-top:.21333rem}.news .newList2 .imgarr img[data-v-1ee7323f]{width:30%;margin-right:3%;height:auto;-o-object-fit:cover;object-fit:cover}.news .newList2 .newdate[data-v-1ee7323f]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.21333rem}.news .newList[data-v-1ee7323f]{display:flex;justify-content:space-between;padding:.42667rem 0}.news .newList .newleft[data-v-1ee7323f]{display:flex;flex-direction:column;justify-content:space-between}.news .newList .newleft .newtitle[data-v-1ee7323f]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.news .newList .newleft .newdate[data-v-1ee7323f]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.news .newList .newimg[data-v-1ee7323f]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.muloverellipse[data-v-1ee7323f]{word-break:break-all;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.notice[data-v-1ee7323f]{min-height:100%;background-color:#fff;display:flex;flex-direction:column;overflow:auto}.list[data-v-1ee7323f]{flex:1}.list .item[data-v-1ee7323f]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.list .item[data-v-1ee7323f]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.list .item .tag[data-v-1ee7323f]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.list .item .title[data-v-1ee7323f]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.list .item .icon[data-v-1ee7323f]{margin-left:.8rem;font-size:.32rem}.imgaddBtn[data-v-1ee7323f]{position:fixed;bottom:26%;right:0}.imgaddBtn .imgdiv[data-v-1ee7323f]{height:2.4rem;margin-top:.26667rem;z-index:50;opacity:.9}.imgaddBtn .imgdiv .add[data-v-1ee7323f]{width:2.72rem;z-index:999}.imgaddBtn .imgtext[data-v-1ee7323f]{font-size:.42667rem;text-align:center}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-11b13a08.d5ef38b8.css b/src/main/resources/views/dist/css/chunk-11b13a08.d5ef38b8.css
new file mode 100644
index 0000000..1a35a2b
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-11b13a08.d5ef38b8.css
@@ -0,0 +1 @@
+.van-field-inp[data-v-530a4c65]{line-height:.53333rem;border-radius:.48rem;background:#f8f8f8;margin:.16rem 0}.form_el[data-v-530a4c65]{width:100%;display:flex;align-items:baseline}.form_el .form_title[data-v-530a4c65]{font-size:.42667rem;line-height:.53333rem;flex-shrink:0}.form_el .form_text[data-v-530a4c65]{margin-top:.10667rem;display:flex;align-items:baseline}.form_el .form_text .form_input .form_item[data-v-530a4c65]{margin-top:.37333rem;width:100%;display:flex;flex-wrap:wrap;margin-bottom:.10667rem}.form_el .form_text .form_input .form_item .van-field[data-v-530a4c65]{width:6.4rem;border-radius:.48rem;background:#f8f8f8}.form_el .form_text .form_input .form_item .form_ele[data-v-530a4c65]{margin-top:.37333rem;display:flex}.form_el .form_text .form_input .form_item .form_ele input[data-v-530a4c65]{width:4.8rem;outline:none;border:none;text-indent:1em;border-radius:.64rem;background:#f8f8f8}.form_el .form_text .form_input .form_item .form_ele .van-button[data-v-530a4c65]{width:3.2rem;height:.90667rem}.form_el .form_text .plus[data-v-530a4c65]{top:.21333rem}p[data-v-530a4c65]{line-height:1.8}.publish[data-v-530a4c65]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-530a4c65]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-530a4c65]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.plus_add[data-v-530a4c65]{display:flex;align-items:flex-end}.plus_add .plus_addSe[data-v-530a4c65]{width:75%;display:flex;flex-wrap:wrap}.plus_add .plus_addSe .input-ele[data-v-530a4c65]{width:100%!important;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.plus[data-v-530a4c65]{margin-bottom:.21333rem;padding:.10667rem;background:#e72e3a;border-radius:50%}.users[data-v-530a4c65]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-530a4c65]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-530a4c65]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.box[data-v-530a4c65]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box .step .my-swipe .van-swipe-item[data-v-530a4c65]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem;display:flex}.box .step .my-swipe .van-swipe-item[data-v-530a4c65]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.box .step .my-swipe .van-swipe-item .pitch-step-title[data-v-530a4c65]{font-weight:600;font-size:.34667rem!important}.box .step .my-swipe .van-swipe-item .step-item[data-v-530a4c65]{width:35%;display:inline-block;position:relative;box-sizing:border-box}.box .step .my-swipe .van-swipe-item .step-item.step-three[data-v-530a4c65]{width:30%}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-530a4c65]{width:40%;text-align:right}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-530a4c65]{left:.10667rem;top:.32rem}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-530a4c65]{font-size:.32rem;line-height:.48rem;margin-top:.32rem;text-align:center;margin-right:-48%;margin-left:20%}.box .step .my-swipe .van-swipe-item .step-item .stepImg[data-v-530a4c65]{position:relative;width:.72rem;height:.72rem}.box .step .my-swipe .van-swipe-item .step-item .line[data-v-530a4c65]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.box .step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-530a4c65]{border-bottom-color:#8ccf8c!important}.box .step .my-swipe .van-swipe-item .step-item .step-title[data-v-530a4c65]{font-size:.32rem;line-height:.48rem;margin-top:.32rem;text-align:center;margin-right:8%;margin-left:-70%}.box .step .my-swipe[data-v-530a4c65] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.box .step .my-swipe[data-v-530a4c65] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.box .step-contain[data-v-530a4c65]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .step-contain .form-ele[data-v-530a4c65]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .step-contain .form-ele .title[data-v-530a4c65]{width:3.2rem;font-size:.42667rem;line-height:.53333rem;flex-shrink:0}.box .step-contain .form-ele .notice-contain[data-v-530a4c65]{font-size:.42667rem}.box .step-contain .form-ele .input-ele[data-v-530a4c65]{width:100%;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .step-contain .form-ele .downIcon[data-v-530a4c65]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .step-contain .form-ele .enclosure[data-v-530a4c65]{flex:1}.box .step-contain .btn[data-v-530a4c65]{margin:0 .42667rem;margin-top:1.6rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .step-contain .btn .enclosureEnd[data-v-530a4c65]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}.enclosureBtn[data-v-530a4c65]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-530a4c65]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.evaluate[data-v-530a4c65]{margin-top:.8rem;padding:.42667rem .64rem;background:#f8f8f8;border-radius:.21333rem}.evaluate .evaluate-contain[data-v-530a4c65]{line-height:.53333rem}.evaluate .evaluate-contain .title[data-v-530a4c65]{color:#0071ff}.evaluate .evaluate-bottom[data-v-530a4c65]{display:flex;align-items:center;justify-content:space-between;margin-top:.74667rem}.evaluate .evaluate-bottom .date[data-v-530a4c65]{color:#8e8f9e}.evaluate .evaluate-bottom .more[data-v-530a4c65]{color:#0071ff}.sending .van-popup[data-v-530a4c65]{background:none}.send-content[data-v-530a4c65]{overflow:hidden;width:8rem;border:none;display:flex;background-color:none;flex-direction:column;align-items:center}.send-content .send-con[data-v-530a4c65]{overflow:hidden;background-color:#fff;padding-bottom:.53333rem}.send-content .send-con .sent-form[data-v-530a4c65]{display:flex;flex-direction:column;align-items:center}.send-content .send-con .sent-form[data-v-530a4c65] .van-cell-group{margin-top:.26667rem}.send-content .send-con .sent-form[data-v-530a4c65] .van-cell-group .van-field .label-text{font-size:.42667rem;line-height:.53333rem;color:#000;flex-shrink:0}.send-content .send-con .sent-form .inpour[data-v-530a4c65] .van-field .van-field__body input{padding:.10667rem .05333rem;border-radius:.64rem;background:#f6f6f6}.send-content .send-con .sent-form .van-button[data-v-530a4c65]{width:80%;margin:.21333rem 0}.send-content .send-con .sent-form .van-button[data-v-530a4c65]:first-of-type{margin-top:.53333rem}.send-content .close[data-v-530a4c65]{margin-top:.26667rem}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-146566c5.1fc47ae4.css b/src/main/resources/views/dist/css/chunk-146566c5.1fc47ae4.css
new file mode 100644
index 0000000..de4abd0
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-146566c5.1fc47ae4.css
@@ -0,0 +1 @@
+.form-ele[data-v-f7a008cc]{background-color:#fff;padding:.42667rem .64rem;margin-bottom:.42667rem}.form-ele .form-title[data-v-f7a008cc]{font-size:.42667rem;font-weight:600}.form-ele .form-content .form-text[data-v-f7a008cc]{font-size:.42667rem;font-weight:500;color:#a5a5a5}.form-ele .form-content .form-com .form-com-item[data-v-f7a008cc]{font-size:.42667rem;color:#a5a5a5;background-color:#f8f8f8;border-radius:.21333rem;padding:.32rem}.form-ele .form-content .form-com .form-com-item .date[data-v-f7a008cc]{font-size:.32rem;text-align:right}.form-te .form-content[data-v-f7a008cc]{margin-top:.37333rem}.flex[data-v-f7a008cc]{display:flex;justify-content:space-between;align-items:baseline}.end[data-v-f7a008cc]{padding:0 .42667rem}.end .van-button[data-v-f7a008cc]{height:1.33333rem;border-radius:.21333rem}.announce[data-v-f7a008cc]{position:fixed;width:100%;bottom:0}.announce .issue[data-v-f7a008cc]{padding:.08rem .37333rem;border-radius:.21333rem;background-color:#d03a29;color:#f8f8f8}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-20c0e5b5.3c7c0a3f.css b/src/main/resources/views/dist/css/chunk-20c0e5b5.3c7c0a3f.css
new file mode 100644
index 0000000..7d5296a
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-20c0e5b5.3c7c0a3f.css
@@ -0,0 +1 @@
+.onlyImg[data-v-7d8218d8]{display:flex;flex-wrap:wrap;justify-content:space-between}.onlyImg .img[data-v-7d8218d8]{margin-left:.32rem;width:2.13333rem;height:2.13333rem;-o-object-fit:cover;object-fit:cover}.mulimg .imglist[data-v-7d8218d8]{margin-top:.16rem;display:flex;flex-wrap:wrap}.mulimg .imglist img[data-v-7d8218d8]{width:30%;margin-right:2%;height:auto}.page[data-v-7d8218d8]{min-height:100%;background-color:#fff}.notice[data-v-7d8218d8]{padding:.42667rem}.title[data-v-7d8218d8]{text-indent:2em;font-size:.4rem;color:#333;line-height:.53333rem;font-weight:700}.date[data-v-7d8218d8]{margin-top:.16rem;font-size:.32rem;color:#999;line-height:.45333rem}.content[data-v-7d8218d8]{text-indent:2em;font-size:.37333rem;color:#333;line-height:.64rem;margin-top:.21333rem}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-240841d8.0e80e769.css b/src/main/resources/views/dist/css/chunk-240841d8.0e80e769.css
new file mode 100644
index 0000000..a3e415d
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-240841d8.0e80e769.css
@@ -0,0 +1 @@
+.flex-align-center[data-v-6dbed47e]{display:flex;align-items:center}.browse_image[data-v-6dbed47e]{width:2.13333rem;height:2.13333rem}[data-v-6dbed47e] .from_el{display:flex;align-items:center}[data-v-6dbed47e] .from_el .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}[data-v-6dbed47e] .from_el .enclosure{margin-top:.53333rem}[data-v-6dbed47e] .from_el .enclosureBtn{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}[data-v-6dbed47e] .from_el .enclosureBtn .enclosureImg{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.preview-cover[data-v-6dbed47e]{position:absolute;bottom:0;box-sizing:border-box;width:100%;padding:.10667rem;color:#fff;font-size:.32rem;text-align:center;background:rgba(0,0,0,.3)}.browse[data-v-6dbed47e]{margin:.26667rem 0}.browse .browse_delet[data-v-6dbed47e]{width:100%;text-align:right;font-size:.42667rem}.browse .imagesee[data-v-6dbed47e]{width:2.66667rem}.onlyImg[data-v-939c6088]{display:flex;justify-content:space-between}.onlyImg .img[data-v-939c6088]{margin-left:.32rem;width:2.13333rem;height:2.13333rem;-o-object-fit:cover;object-fit:cover}.pdf_con[data-v-939c6088]{font-size:.37333rem}.pdf_con img[data-v-939c6088]{width:1.12rem}.mulimg .imglist[data-v-939c6088]{margin-top:.16rem;display:flex;flex-wrap:wrap}.mulimg .imglist img[data-v-939c6088]{width:30%;margin-right:2%;height:auto}.page[data-v-939c6088]{min-height:100%;background-color:#fff}.notice[data-v-939c6088]{padding:.42667rem}.matter[data-v-939c6088],.title[data-v-939c6088]{font-size:.4rem;color:#333;line-height:.53333rem;font-weight:700}.date[data-v-939c6088],.matter span[data-v-939c6088]{font-size:.32rem;line-height:.45333rem}.date[data-v-939c6088]{margin-top:.16rem;color:#999}.content[data-v-939c6088]{width:100%;font-size:.37333rem;color:#333;line-height:.64rem;margin-top:.21333rem}.imagesd[data-v-939c6088]{margin-top:.21333rem;width:100%;display:flex;flex-wrap:wrap}.imagesd div[data-v-939c6088]{margin-right:.05333rem}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-2640f966.4dbaeb1f.css b/src/main/resources/views/dist/css/chunk-2640f966.4dbaeb1f.css
new file mode 100644
index 0000000..3be9bd3
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-2640f966.4dbaeb1f.css
@@ -0,0 +1 @@
+.unread[data-v-23922307]{font-size:.37333rem!important;letter-spacing:.02667rem!important}.navBar[data-v-23922307]{position:relative}.behalf[data-v-23922307]{position:absolute;top:0;left:.42667rem;height:1.22667rem;line-height:1.22667rem;font-size:.37333rem!important;letter-spacing:.02667rem!important;color:#fff;z-index:999}.menu[data-v-23922307]{display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff;margin-bottom:.32rem}.menu .item[data-v-23922307]{width:25%;padding:.21333rem 0;text-align:center}.menu .item img[data-v-23922307]{display:block;margin:0 auto;width:1.28rem}.menu .item .title[data-v-23922307]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.menu.rddb .item[data-v-23922307]{width:33.33%}.menuAdmin[data-v-23922307]{width:94%;margin:.4rem 3%;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.menuAdmin .item[data-v-23922307]{width:25%;padding:.21333rem 0;text-align:center}.menuAdmin .item img[data-v-23922307]{display:block;margin:0 auto;width:1.12rem}.menuAdmin .item .title[data-v-23922307]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.tabMenu[data-v-23922307]{width:94%;margin:0 3% .4rem;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.tabMenu .title[data-v-23922307]{width:33.33%}.tabMenu .title img[data-v-23922307]{display:block;margin:0 auto;width:70%}.tabMenu .title .line[data-v-23922307]{display:block;margin:0 auto;width:40%;height:.05333rem;margin-top:.13333rem;background-color:#ba2916}.tabMenu .item[data-v-23922307]{width:33.33%;padding:.21333rem 0;margin-top:.26667rem;text-align:center}.tabMenu .item img[data-v-23922307]{display:block;margin:0 auto;width:1.12rem}.tabMenu .item .title[data-v-23922307]{width:1.6rem;margin:0 auto;font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.more-menu[data-v-23922307]{display:flex;flex-wrap:wrap;padding:.85333rem 0 1.38667rem}.more-menu .item[data-v-23922307]{flex:1;padding:.21333rem 0;text-align:center}.more-menu .item img[data-v-23922307]{display:block;margin:0 auto;width:.96rem}.more-menu .item .title[data-v-23922307]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.box[data-v-23922307]{background-color:#fff;margin-bottom:.32rem}.box>.title[data-v-23922307]{display:flex;align-items:center;padding:.53333rem .42667rem .64rem}.box>.title[data-v-23922307]:before{content:"";display:block;width:.10667rem;height:.42667rem;background-color:#d03a29;margin-right:.21333rem}.box>.title .title_text[data-v-23922307]{font-size:.48rem;color:#333;font-weight:700}.box>.title .more[data-v-23922307]{margin-left:auto;font-size:.37333rem;color:#999}.statistics table[data-v-23922307]{table-layout:fixed;border-collapse:separate;width:100%;border-left:.02667rem solid #f4f4f4;border-top:.02667rem solid #f4f4f4}.statistics table td[data-v-23922307]{padding:.32rem .53333rem;border-right:.02667rem solid #f4f4f4;border-bottom:.02667rem solid #f4f4f4}.statistics table td .label[data-v-23922307]{font-size:.32rem;color:#999;line-height:.45333rem}.statistics table td .value[data-v-23922307]{font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700;margin-top:.10667rem}.approval .item[data-v-23922307]{position:relative;padding:.42667rem}.approval .item[data-v-23922307]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval .item .head[data-v-23922307]{display:flex}.approval .item .head .title[data-v-23922307]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.approval .item .head .icon[data-v-23922307]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval .item .content[data-v-23922307]{font-size:.37333rem;color:#999;line-height:.53333rem;margin-top:.21333rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval .item .bottom_text[data-v-23922307]{display:flex;flex-wrap:wrap;margin-top:.10667rem;font-size:.32rem;color:#999;line-height:.45333rem}.approval .item .bottom_text .date[data-v-23922307]{margin-right:1.06667rem}.approval2 .item[data-v-23922307]{position:relative;padding:.42667rem}.approval2 .item[data-v-23922307]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval2 .item .head[data-v-23922307]{display:flex}.approval2 .item .head .title[data-v-23922307]{flex:1;font-size:.42667rem;color:#333;line-height:.53333rem;font-weight:700}.approval2 .item .head .icon[data-v-23922307]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval2 .item .content[data-v-23922307]{font-size:.37333rem;color:#333;line-height:.53333rem;margin-top:.32rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval2 .item .date[data-v-23922307]{margin-top:.21333rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .date .label[data-v-23922307]{margin-right:.21333rem}.approval2 .item .state[data-v-23922307]{margin-top:.10667rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .state .label[data-v-23922307]{margin-right:.21333rem}.approval2 .item .state .value[data-v-23922307]{font-weight:700}.approval2 .item .state .value.blue[data-v-23922307]{color:#1e78ff}.approval2 .item .state .value.green[data-v-23922307]{color:#09a709}.approval2 .item .state .value.red[data-v-23922307]{color:#d03a29}.file .item[data-v-23922307]{position:relative;padding:.32rem .26667rem;display:flex;align-items:center}.file .item[data-v-23922307]:not(:last-child):after{content:"";position:absolute;bottom:0;left:2.08rem;right:0;height:.02667rem;background-color:#f3f3f3}.file .item .icon[data-v-23922307]{width:1.49333rem;margin-right:.32rem}.file .item .name[data-v-23922307]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700;margin-bottom:.10667rem}.file .item .content[data-v-23922307]{font-size:.32rem;color:#999;line-height:.45333rem;display:flex}.file .item .content .user[data-v-23922307]{margin-right:.32rem}.notice .item[data-v-23922307]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.notice .item[data-v-23922307]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.notice .item .tag[data-v-23922307]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.notice .item .title[data-v-23922307]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.notice .item .icon[data-v-23922307]{margin-left:.8rem;font-size:.32rem}.active .item[data-v-23922307]{padding:.42667rem;position:relative}.active .item[data-v-23922307]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.active .item .title[data-v-23922307]{font-weight:700;display:flex;align-items:center}.active .item .title .text[data-v-23922307]{font-size:.42667rem;color:#333;line-height:.58667rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .title .van-tag[data-v-23922307]{width:1.70667rem;border-radius:.32rem;justify-content:center;line-height:.53333rem;margin-left:.10667rem;white-space:nowrap;font-weight:700}.active .item .detail[data-v-23922307]{margin-top:.32rem}.active .item .detail .cell[data-v-23922307]{display:flex;font-size:.32rem}.active .item .detail .cell[data-v-23922307]:not(:last-child){margin-bottom:.10667rem}.active .item .detail .cell .label[data-v-23922307]{color:#999;margin-right:.21333rem}.active .item .detail .cell .value[data-v-23922307]{height:.42667rem;flex:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:.32rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#999;line-height:.42667rem}.active .item .detail .cell .value[data-v-23922307] b{font-weight:400!important}.active .item .detail .cell .value[data-v-23922307] div{margin:0!important;padding:0!important}.active .item .detail .cell .value[data-v-23922307] img{display:none!important}.active .item .detail .cell .value[data-v-23922307] p,.active .item .detail .cell .value[data-v-23922307] span{margin:0!important;padding:0!important;font-size:.32rem!important;line-height:normal!important;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .foot[data-v-23922307]{margin-top:.32rem;display:flex;justify-content:space-between;align-items:center;font-size:.32rem;color:#999;line-height:.45333rem}.active .item .foot .van-icon[data-v-23922307]{margin-left:.10667rem;vertical-align:middle}.active .item .more[data-v-23922307]{padding-top:.32rem;border-top:.02667rem solid #f8f8f8}.active .item .enclosure[data-v-23922307]{margin-top:.21333rem}.active .item .enclosure .item[data-v-23922307]{background-color:#f8f8f8;padding:.26667rem .42667rem;display:flex;align-items:center}.active .item .enclosure .item .detail[data-v-23922307]{flex:1}.active .item .enclosure .item .detail .name[data-v-23922307]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.active .item .enclosure .item .detail .size[data-v-23922307]{font-size:.32rem;color:#333;line-height:.45333rem;margin-top:.10667rem}.active .item .enclosure .item .icon[data-v-23922307]{width:1.49333rem}.active .item .imgs[data-v-23922307]{display:flex;margin-top:.21333rem}.active .item .imgs .img[data-v-23922307]{flex:1;border-radius:.10667rem;overflow:hidden}.active .item .imgs .img+.img[data-v-23922307]{margin-left:.10667rem}.active .item .imgs .img img[data-v-23922307]{max-height:2.66667rem;display:block;width:100%}.active .item .van-button[data-v-23922307]{background-color:#fff;border:.02667rem solid #d03a29;border-radius:.32rem;height:.61333rem;width:1.70667rem;font-size:.32rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#d03a29;padding:0 .32rem;margin-top:.32rem}.active .item .van-button .van-icon[data-v-23922307]{vertical-align:middle}.votersNav[data-v-23922307]{display:flex;justify-content:space-between;padding:.53333rem .53333rem 0;width:100%;background-color:#fff;margin-bottom:.32rem;margin:15rpx 3%}.votersNav .items .imgBox[data-v-23922307]{display:flex;justify-content:center}.votersNav .items .imgBox img[data-v-23922307]{width:1.22667rem;height:1.22667rem}.votersNav .items .title[data-v-23922307]{font-size:.42667rem;margin-top:.26667rem}.civilian[data-v-23922307]{background-color:#fff;margin-bottom:.32rem}.civilian .banner[data-v-23922307]{width:100%;display:block}.civilian .user[data-v-23922307]{position:relative;margin:-1.06667rem .53333rem 0;border-radius:.10667rem;background-color:#fff;box-shadow:0 .08rem .26667rem 0 rgba(0,0,0,.08);display:flex;align-items:center;padding:.42667rem .53333rem .48rem}.civilian .user .avatar[data-v-23922307]{position:relative;margin-right:.32rem}.civilian .user .avatar img[data-v-23922307]{width:1.22667rem;height:1.22667rem;-o-object-fit:cover;object-fit:cover;border-radius:50%}.civilian .user .avatar .badge[data-v-23922307]{position:absolute;top:.10667rem;right:.10667rem;min-width:.42667rem;padding:0 .08rem;font-size:.32rem;color:#fff;line-height:.42667rem;text-align:center;border-radius:.42667rem;background-color:#d03a29;transform:translate(50%,-50%)}.civilian .user .name[data-v-23922307]{flex:1;font-size:.37333rem;color:#333;font-weight:700}.civilian .user .link[data-v-23922307]{font-size:.37333rem;color:#d03a29;font-weight:700}.civilian .user .link .van-icon[data-v-23922307]{margin-left:.10667rem;vertical-align:middle}.civilian .civilian-menu[data-v-23922307]{padding:.32rem}.civilian .civilian-menu .item[data-v-23922307]{position:relative}.civilian .civilian-menu .item[data-v-23922307]:not(:last-child){margin-bottom:.32rem}.civilian .civilian-menu .item .bg-img[data-v-23922307]{position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.civilian .civilian-menu .item .content[data-v-23922307]{padding:.53333rem .64rem;position:relative}.civilian .civilian-menu .item .content .title[data-v-23922307]{font-size:.42667rem;color:#fff;line-height:.58667rem;font-weight:700}.civilian .civilian-menu .item .content .btn[data-v-23922307]{margin-top:.29333rem;background-color:#fff;padding:.13333rem .32rem;border-radius:.37333rem;height:.74667rem;display:inline-flex;align-items:center;font-size:.32rem;color:#f6331d;font-weight:700}.civilian .civilian-menu .item .content .btn .van-icon[data-v-23922307]{margin-left:.08rem}.grassrootsNews .item[data-v-23922307]{position:relative;padding:.4rem .42667rem;display:flex}.grassrootsNews .item[data-v-23922307]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.grassrootsNews .item .info[data-v-23922307]{width:0;flex:1}.grassrootsNews .item .info .title[data-v-23922307]{flex:1;font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.grassrootsNews .item .info .text[data-v-23922307]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.grassrootsNews .item .img[data-v-23922307]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.opinionBox .opinionArrow[data-v-23922307]{color:#ccc;font-size:.475rem}.opinionBox .opinionArrow[data-v-23922307]:before{position:relative;top:50%;left:50%;transform:translate(-50%,-51%)}.news[data-v-23922307]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-23922307]:last-of-type{border-bottom:none}.newList[data-v-23922307]{display:flex;justify-content:space-between;padding:.42667rem 0}.newList .newleft[data-v-23922307]{display:flex;flex-direction:column;justify-content:space-between}.newList .newleft .newtitle[data-v-23922307]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.newList .newleft .newdate[data-v-23922307]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.newList .newimg[data-v-23922307]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-26dc1ddf.5f54d844.css b/src/main/resources/views/dist/css/chunk-26dc1ddf.5f54d844.css
deleted file mode 100644
index 04b1032..0000000
--- a/src/main/resources/views/dist/css/chunk-26dc1ddf.5f54d844.css
+++ /dev/null
@@ -1 +0,0 @@
-.flex-align-center[data-v-ad69c8ce]{display:flex;align-items:center}.browse_image[data-v-ad69c8ce]{width:2.13333rem;height:2.13333rem}[data-v-ad69c8ce] .from_el{display:flex;align-items:center}[data-v-ad69c8ce] .from_el .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}[data-v-ad69c8ce] .from_el .enclosure{margin-top:.53333rem}[data-v-ad69c8ce] .from_el .enclosureBtn{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}[data-v-ad69c8ce] .from_el .enclosureBtn .enclosureImg{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.preview-cover[data-v-ad69c8ce]{position:absolute;bottom:0;box-sizing:border-box;width:100%;padding:.10667rem;color:#fff;font-size:.32rem;text-align:center;background:rgba(0,0,0,.3)}.browse[data-v-ad69c8ce]{margin:.26667rem 0}.browse .browse_delet[data-v-ad69c8ce]{width:100%;text-align:right;font-size:.42667rem}.browse .imagesee[data-v-ad69c8ce]{width:2.66667rem}.van-field-inp[data-v-cdba5a7c]{line-height:.53333rem;border-radius:.48rem;background:#f8f8f8;margin:.16rem 0}p[data-v-cdba5a7c]{line-height:1.8}.publish[data-v-cdba5a7c]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-cdba5a7c]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-cdba5a7c]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.plus_add[data-v-cdba5a7c]{display:flex;align-items:flex-end}.plus_add .plus_addSe[data-v-cdba5a7c]{width:75%;display:flex;flex-wrap:wrap}.plus_add .plus_addSe .input-ele[data-v-cdba5a7c]{width:100%!important;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.plus[data-v-cdba5a7c]{margin-bottom:.21333rem;padding:.10667rem;background:#e72e3a;border-radius:50%}.users[data-v-cdba5a7c]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-cdba5a7c]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-cdba5a7c]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.box[data-v-cdba5a7c]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box .step .my-swipe .van-swipe-item[data-v-cdba5a7c]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem;display:flex}.box .step .my-swipe .van-swipe-item[data-v-cdba5a7c]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.box .step .my-swipe .van-swipe-item .pitch-step-title[data-v-cdba5a7c]{font-weight:600;font-size:.34667rem!important}.box .step .my-swipe .van-swipe-item .step-item[data-v-cdba5a7c]{width:35%;display:inline-block;position:relative;box-sizing:border-box}.box .step .my-swipe .van-swipe-item .step-item.step-three[data-v-cdba5a7c]{width:30%}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-cdba5a7c]{width:40%;text-align:right}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-cdba5a7c]{left:.10667rem;top:.32rem}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-cdba5a7c]{font-size:.32rem;line-height:.48rem;margin-top:.32rem;text-align:center;margin-right:-48%;margin-left:20%}.box .step .my-swipe .van-swipe-item .step-item .stepImg[data-v-cdba5a7c]{position:relative;width:.72rem;height:.72rem}.box .step .my-swipe .van-swipe-item .step-item .line[data-v-cdba5a7c]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.box .step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-cdba5a7c]{border-bottom-color:#8ccf8c!important}.box .step .my-swipe .van-swipe-item .step-item .step-title[data-v-cdba5a7c]{font-size:.32rem;line-height:.48rem;margin-top:.32rem;text-align:center;margin-right:8%;margin-left:-70%}.box .step .my-swipe[data-v-cdba5a7c] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.box .step .my-swipe[data-v-cdba5a7c] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.box .step-contain[data-v-cdba5a7c]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .step-contain .form-ele[data-v-cdba5a7c]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .step-contain .form-ele .title[data-v-cdba5a7c]{width:3.2rem;font-size:.42667rem;line-height:.53333rem;flex-shrink:0}.box .step-contain .form-ele .notice-contain[data-v-cdba5a7c]{font-size:.42667rem}.box .step-contain .form-ele .input-ele[data-v-cdba5a7c]{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .step-contain .form-ele .downIcon[data-v-cdba5a7c]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .step-contain .form-ele .enclosure[data-v-cdba5a7c]{flex:1}.box .step-contain .btn[data-v-cdba5a7c]{margin:0 .42667rem;margin-top:1.6rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .step-contain .btn .enclosureEnd[data-v-cdba5a7c]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}.enclosureBtn[data-v-cdba5a7c]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-cdba5a7c]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-2b0e2644.a71b758c.css b/src/main/resources/views/dist/css/chunk-2b0e2644.a71b758c.css
new file mode 100644
index 0000000..72781f6
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-2b0e2644.a71b758c.css
@@ -0,0 +1 @@
+.unread[data-v-ebbe7a00]{font-size:.37333rem!important;letter-spacing:.02667rem!important}.navBar[data-v-ebbe7a00]{position:relative}.behalf[data-v-ebbe7a00]{position:absolute;top:0;left:.42667rem;height:1.22667rem;line-height:1.22667rem;font-size:.37333rem!important;letter-spacing:.02667rem!important;color:#fff;z-index:999}.menu[data-v-ebbe7a00]{display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff;margin-bottom:.32rem}.menu .item[data-v-ebbe7a00]{width:25%;padding:.21333rem 0;text-align:center}.menu .item img[data-v-ebbe7a00]{display:block;margin:0 auto;width:1.28rem}.menu .item .title[data-v-ebbe7a00]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.menu.rddb .item[data-v-ebbe7a00]{width:33.33%}.menuAdmin[data-v-ebbe7a00]{width:94%;margin:.4rem 3%;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.menuAdmin .item[data-v-ebbe7a00]{width:25%;padding:.21333rem 0;text-align:center}.menuAdmin .item img[data-v-ebbe7a00]{display:block;margin:0 auto;width:1.12rem}.menuAdmin .item .title[data-v-ebbe7a00]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.tabMenu[data-v-ebbe7a00]{width:94%;margin:0 3% .4rem;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.tabMenu .title[data-v-ebbe7a00]{width:33.33%}.tabMenu .title img[data-v-ebbe7a00]{display:block;margin:0 auto;width:70%}.tabMenu .title .line[data-v-ebbe7a00]{display:block;margin:0 auto;width:40%;height:.05333rem;margin-top:.13333rem;background-color:#ba2916}.tabMenu .item[data-v-ebbe7a00]{width:33.33%;padding:.21333rem 0;margin-top:.26667rem;text-align:center}.tabMenu .item img[data-v-ebbe7a00]{display:block;margin:0 auto;width:1.12rem}.tabMenu .item .title[data-v-ebbe7a00]{width:1.6rem;margin:0 auto;font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.more-menu[data-v-ebbe7a00]{display:flex;flex-wrap:wrap;padding:.85333rem 0 1.38667rem}.more-menu .item[data-v-ebbe7a00]{flex:1;padding:.21333rem 0;text-align:center}.more-menu .item img[data-v-ebbe7a00]{display:block;margin:0 auto;width:.96rem}.more-menu .item .title[data-v-ebbe7a00]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.box[data-v-ebbe7a00]{background-color:#fff;margin-bottom:.32rem}.box>.title[data-v-ebbe7a00]{display:flex;align-items:center;padding:.53333rem .42667rem .64rem}.box>.title[data-v-ebbe7a00]:before{content:"";display:block;width:.10667rem;height:.42667rem;background-color:#d03a29;margin-right:.21333rem}.box>.title .title_text[data-v-ebbe7a00]{font-size:.48rem;color:#333;font-weight:700}.box>.title .more[data-v-ebbe7a00]{margin-left:auto;font-size:.37333rem;color:#999}.statistics table[data-v-ebbe7a00]{table-layout:fixed;border-collapse:separate;width:100%;border-left:.02667rem solid #f4f4f4;border-top:.02667rem solid #f4f4f4}.statistics table td[data-v-ebbe7a00]{padding:.32rem .53333rem;border-right:.02667rem solid #f4f4f4;border-bottom:.02667rem solid #f4f4f4}.statistics table td .label[data-v-ebbe7a00]{font-size:.32rem;color:#999;line-height:.45333rem}.statistics table td .value[data-v-ebbe7a00]{font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700;margin-top:.10667rem}.approval .item[data-v-ebbe7a00]{position:relative;padding:.42667rem}.approval .item[data-v-ebbe7a00]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval .item .head[data-v-ebbe7a00]{display:flex}.approval .item .head .title[data-v-ebbe7a00]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.approval .item .head .icon[data-v-ebbe7a00]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval .item .content[data-v-ebbe7a00]{font-size:.37333rem;color:#999;line-height:.53333rem;margin-top:.21333rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval .item .bottom_text[data-v-ebbe7a00]{display:flex;flex-wrap:wrap;margin-top:.10667rem;font-size:.32rem;color:#999;line-height:.45333rem}.approval .item .bottom_text .date[data-v-ebbe7a00]{margin-right:1.06667rem}.approval2 .item[data-v-ebbe7a00]{position:relative;padding:.42667rem}.approval2 .item[data-v-ebbe7a00]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval2 .item .head[data-v-ebbe7a00]{display:flex}.approval2 .item .head .title[data-v-ebbe7a00]{flex:1;font-size:.42667rem;color:#333;line-height:.53333rem;font-weight:700}.approval2 .item .head .icon[data-v-ebbe7a00]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval2 .item .content[data-v-ebbe7a00]{font-size:.37333rem;color:#333;line-height:.53333rem;margin-top:.32rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval2 .item .date[data-v-ebbe7a00]{margin-top:.21333rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .date .label[data-v-ebbe7a00]{margin-right:.21333rem}.approval2 .item .state[data-v-ebbe7a00]{margin-top:.10667rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .state .label[data-v-ebbe7a00]{margin-right:.21333rem}.approval2 .item .state .value[data-v-ebbe7a00]{font-weight:700}.approval2 .item .state .value.blue[data-v-ebbe7a00]{color:#1e78ff}.approval2 .item .state .value.green[data-v-ebbe7a00]{color:#09a709}.approval2 .item .state .value.red[data-v-ebbe7a00]{color:#d03a29}.file .item[data-v-ebbe7a00]{position:relative;padding:.32rem .26667rem;display:flex;align-items:center}.file .item[data-v-ebbe7a00]:not(:last-child):after{content:"";position:absolute;bottom:0;left:2.08rem;right:0;height:.02667rem;background-color:#f3f3f3}.file .item .icon[data-v-ebbe7a00]{width:1.49333rem;margin-right:.32rem}.file .item .name[data-v-ebbe7a00]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700;margin-bottom:.10667rem}.file .item .content[data-v-ebbe7a00]{font-size:.32rem;color:#999;line-height:.45333rem;display:flex}.file .item .content .user[data-v-ebbe7a00]{margin-right:.32rem}.notice .item[data-v-ebbe7a00]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.notice .item[data-v-ebbe7a00]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.notice .item .tag[data-v-ebbe7a00]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.notice .item .title[data-v-ebbe7a00]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.notice .item .icon[data-v-ebbe7a00]{margin-left:.8rem;font-size:.32rem}.active .item[data-v-ebbe7a00]{padding:.42667rem;position:relative}.active .item[data-v-ebbe7a00]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.active .item .title[data-v-ebbe7a00]{font-weight:700;display:flex;align-items:center}.active .item .title .text[data-v-ebbe7a00]{font-size:.42667rem;color:#333;line-height:.58667rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .title .van-tag[data-v-ebbe7a00]{width:1.70667rem;border-radius:.32rem;justify-content:center;line-height:.53333rem;margin-left:.10667rem;white-space:nowrap;font-weight:700}.active .item .detail[data-v-ebbe7a00]{margin-top:.32rem}.active .item .detail .cell[data-v-ebbe7a00]{display:flex;font-size:.32rem}.active .item .detail .cell[data-v-ebbe7a00]:not(:last-child){margin-bottom:.10667rem}.active .item .detail .cell .label[data-v-ebbe7a00]{color:#999;margin-right:.21333rem}.active .item .detail .cell .value[data-v-ebbe7a00]{height:.42667rem;flex:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:.32rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#999;line-height:.42667rem}.active .item .detail .cell .value[data-v-ebbe7a00] b{font-weight:400!important}.active .item .detail .cell .value[data-v-ebbe7a00] div{margin:0!important;padding:0!important}.active .item .detail .cell .value[data-v-ebbe7a00] img{display:none!important}.active .item .detail .cell .value[data-v-ebbe7a00] p,.active .item .detail .cell .value[data-v-ebbe7a00] span{margin:0!important;padding:0!important;font-size:.32rem!important;line-height:normal!important;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .foot[data-v-ebbe7a00]{margin-top:.32rem;display:flex;justify-content:space-between;align-items:center;font-size:.32rem;color:#999;line-height:.45333rem}.active .item .foot .van-icon[data-v-ebbe7a00]{margin-left:.10667rem;vertical-align:middle}.active .item .more[data-v-ebbe7a00]{padding-top:.32rem;border-top:.02667rem solid #f8f8f8}.active .item .enclosure[data-v-ebbe7a00]{margin-top:.21333rem}.active .item .enclosure .item[data-v-ebbe7a00]{background-color:#f8f8f8;padding:.26667rem .42667rem;display:flex;align-items:center}.active .item .enclosure .item .detail[data-v-ebbe7a00]{flex:1}.active .item .enclosure .item .detail .name[data-v-ebbe7a00]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.active .item .enclosure .item .detail .size[data-v-ebbe7a00]{font-size:.32rem;color:#333;line-height:.45333rem;margin-top:.10667rem}.active .item .enclosure .item .icon[data-v-ebbe7a00]{width:1.49333rem}.active .item .imgs[data-v-ebbe7a00]{display:flex;margin-top:.21333rem}.active .item .imgs .img[data-v-ebbe7a00]{flex:1;border-radius:.10667rem;overflow:hidden}.active .item .imgs .img+.img[data-v-ebbe7a00]{margin-left:.10667rem}.active .item .imgs .img img[data-v-ebbe7a00]{max-height:2.66667rem;display:block;width:100%}.active .item .van-button[data-v-ebbe7a00]{background-color:#fff;border:.02667rem solid #d03a29;border-radius:.32rem;height:.61333rem;width:1.70667rem;font-size:.32rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#d03a29;padding:0 .32rem;margin-top:.32rem}.active .item .van-button .van-icon[data-v-ebbe7a00]{vertical-align:middle}.votersNav[data-v-ebbe7a00]{display:flex;justify-content:space-between;padding:.53333rem .53333rem 0;width:100%;background-color:#fff;margin-bottom:.32rem;margin:15rpx 3%}.votersNav .items .imgBox[data-v-ebbe7a00]{display:flex;justify-content:center}.votersNav .items .imgBox img[data-v-ebbe7a00]{width:1.22667rem;height:1.22667rem}.votersNav .items .title[data-v-ebbe7a00]{font-size:.42667rem;margin-top:.26667rem}.civilian[data-v-ebbe7a00]{background-color:#fff;margin-bottom:.32rem}.civilian .banner[data-v-ebbe7a00]{width:100%;display:block}.civilian .user[data-v-ebbe7a00]{position:relative;margin:-1.06667rem .53333rem 0;border-radius:.10667rem;background-color:#fff;box-shadow:0 .08rem .26667rem 0 rgba(0,0,0,.08);display:flex;align-items:center;padding:.42667rem .53333rem .48rem}.civilian .user .avatar[data-v-ebbe7a00]{position:relative;margin-right:.32rem}.civilian .user .avatar img[data-v-ebbe7a00]{width:1.22667rem;height:1.22667rem;-o-object-fit:cover;object-fit:cover;border-radius:50%}.civilian .user .avatar .badge[data-v-ebbe7a00]{position:absolute;top:.10667rem;right:.10667rem;min-width:.42667rem;padding:0 .08rem;font-size:.32rem;color:#fff;line-height:.42667rem;text-align:center;border-radius:.42667rem;background-color:#d03a29;transform:translate(50%,-50%)}.civilian .user .name[data-v-ebbe7a00]{flex:1;font-size:.37333rem;color:#333;font-weight:700}.civilian .user .link[data-v-ebbe7a00]{font-size:.37333rem;color:#d03a29;font-weight:700}.civilian .user .link .van-icon[data-v-ebbe7a00]{margin-left:.10667rem;vertical-align:middle}.civilian .civilian-menu[data-v-ebbe7a00]{padding:.32rem}.civilian .civilian-menu .item[data-v-ebbe7a00]{position:relative}.civilian .civilian-menu .item[data-v-ebbe7a00]:not(:last-child){margin-bottom:.32rem}.civilian .civilian-menu .item .bg-img[data-v-ebbe7a00]{position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.civilian .civilian-menu .item .content[data-v-ebbe7a00]{padding:.53333rem .64rem;position:relative}.civilian .civilian-menu .item .content .title[data-v-ebbe7a00]{font-size:.42667rem;color:#fff;line-height:.58667rem;font-weight:700}.civilian .civilian-menu .item .content .btn[data-v-ebbe7a00]{margin-top:.29333rem;background-color:#fff;padding:.13333rem .32rem;border-radius:.37333rem;height:.74667rem;display:inline-flex;align-items:center;font-size:.32rem;color:#f6331d;font-weight:700}.civilian .civilian-menu .item .content .btn .van-icon[data-v-ebbe7a00]{margin-left:.08rem}.grassrootsNews .item[data-v-ebbe7a00]{position:relative;padding:.4rem .42667rem;display:flex}.grassrootsNews .item[data-v-ebbe7a00]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.grassrootsNews .item .info[data-v-ebbe7a00]{width:0;flex:1}.grassrootsNews .item .info .title[data-v-ebbe7a00]{flex:1;font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.grassrootsNews .item .info .text[data-v-ebbe7a00]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.grassrootsNews .item .img[data-v-ebbe7a00]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.opinionBox .opinionArrow[data-v-ebbe7a00]{color:#ccc;font-size:.475rem}.opinionBox .opinionArrow[data-v-ebbe7a00]:before{position:relative;top:50%;left:50%;transform:translate(-50%,-51%)}.news[data-v-ebbe7a00]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-ebbe7a00]:last-of-type{border-bottom:none}.newList[data-v-ebbe7a00]{display:flex;justify-content:space-between;padding:.42667rem 0}.newList .newleft[data-v-ebbe7a00]{display:flex;flex-direction:column;justify-content:space-between}.newList .newleft .newtitle[data-v-ebbe7a00]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.newList .newleft .newdate[data-v-ebbe7a00]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.newList .newimg[data-v-ebbe7a00]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-2ecd033a.43508527.css b/src/main/resources/views/dist/css/chunk-2ecd033a.43508527.css
new file mode 100644
index 0000000..8be4ab6
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-2ecd033a.43508527.css
@@ -0,0 +1 @@
+.fileList1List[data-v-06182656]{background-color:#f7f8fa;width:2.13333rem;height:2.13333rem}.fileList1List img[data-v-06182656]{width:.53333rem;height:.53333rem;margin-left:.8rem;margin-top:.50667rem}.fileList1List h4[data-v-06182656]{height:.37333rem;margin-top:.21333rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-left:.13333rem}p[data-v-06182656]{line-height:1.8}[data-v-06182656] .Announcement{margin-left:-.4rem;font-size:.42667rem;flex-shrink:0;color:#333}[data-v-06182656] .checkGos{width:5.86667rem}.van-field-inp[data-v-06182656]{margin:.21333rem 0;line-height:.53333rem;border-radius:.48rem;background:#f8f8f8}.plus_add[data-v-06182656]{display:flex;align-items:flex-end}.plus_add .plus_addSe[data-v-06182656]{display:flex;flex-wrap:wrap}.plus_add .plus_addSe input[data-v-06182656]{margin:.10667rem 0}.plus[data-v-06182656]{padding:.10667rem;background:#e72e3a;border-radius:50%}.box .recentlyTitle[data-v-06182656]{display:flex;height:.69333rem;margin-bottom:.26667rem}.box .recentlyTitle .line[data-v-06182656]{width:.13333rem;height:.53333rem;margin-top:.08rem;background-color:#d03a29;border-radius:.13333rem;margin-left:.42667rem;margin-right:.13333rem}.box .recentlyTitle .text[data-v-06182656]{height:.69333rem;line-height:.69333rem;font-size:.42667rem;margin-bottom:.4rem}.box .recentlyList[data-v-06182656]{display:flex;justify-content:space-between;padding:0 .42667rem;height:.93333rem;margin-bottom:.26667rem}.box .recentlyList .recentlyItem[data-v-06182656]{width:30%;text-align:center;line-height:.93333rem;font-size:.42667rem;background-color:#f5f5f5;border-radius:.4rem}.box .recentlyList .onActive[data-v-06182656]{background:#0042cb;color:#fff}.publish[data-v-06182656]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-06182656]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-06182656]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.users[data-v-06182656]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-06182656]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-06182656]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.step .my-swipe .van-swipe-item[data-v-06182656]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem}.step .my-swipe .van-swipe-item[data-v-06182656]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.step .my-swipe .van-swipe-item .pitch-step-title[data-v-06182656]{font-weight:600;font-size:.34667rem!important}.step .my-swipe .van-swipe-item .step-item[data-v-06182656]{width:40%;display:inline-block;position:relative;box-sizing:border-box}.step .my-swipe .van-swipe-item .step-item.step-three[data-v-06182656]{width:20%}.step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-06182656]{text-align:right}.step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-06182656]{left:.10667rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-06182656]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:-60%;margin-left:20%}.step .my-swipe .van-swipe-item .step-item .stepImg[data-v-06182656]{position:relative;width:.72rem;height:.72rem}.step .my-swipe .van-swipe-item .step-item .line[data-v-06182656]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-06182656]{border-bottom-color:#8ccf8c!important}.step .my-swipe .van-swipe-item .step-item .step-title[data-v-06182656]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:5%;margin-left:-80%}.step .my-swipe[data-v-06182656] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.step .my-swipe[data-v-06182656] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.report .report-title[data-v-06182656]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem;color:#333}.report .report-contain[data-v-06182656]{padding:.42667rem 0}.report .report-contain .word[data-v-06182656]{font-size:.42667rem;line-height:.53333rem}.report .report-contain .date[data-v-06182656]{color:#333;font-size:.32rem;margin-top:.42667rem}.vote .vote-title[data-v-06182656]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem}.vote .vote-title .voteImg[data-v-06182656]{width:.48rem;height:.42667rem;margin-right:.26667rem;vertical-align:bottom}.vote .vote-contain .vote-item[data-v-06182656],.vote .vote-contain[data-v-06182656]{padding:.21333rem 0}.vote .vote-contain .vote-item .vote-row[data-v-06182656]{display:flex;justify-content:space-between;align-items:center}.vote .vote-contain .vote-item .vote-row[data-v-06182656]:last-of-type{margin-top:.21333rem}.vote .vote-contain .vote-item .vote-row .ticket[data-v-06182656]{width:.53333rem;height:.53333rem}.vote .vote-contain .vote-item .vote-row .progress[data-v-06182656]{flex:1}.vote .vote-contain .vote-item .vote-row .vote-right[data-v-06182656]{width:1.6rem;text-align:center}.evaluate[data-v-06182656]{margin-top:.8rem;padding:.42667rem .64rem;background:#f8f8f8;border-radius:.21333rem}.evaluate .evaluate-contain[data-v-06182656]{line-height:.53333rem}.evaluate .evaluate-contain .title[data-v-06182656]{color:#0071ff}.evaluate .evaluate-bottom[data-v-06182656]{display:flex;align-items:center;justify-content:space-between;margin-top:.74667rem}.evaluate .evaluate-bottom .date[data-v-06182656]{color:#8e8f9e}.evaluate .evaluate-bottom .more[data-v-06182656]{color:#0071ff}.enclosurePopup[data-v-06182656]{padding:1.06667rem}.enclosurePopup .btn[data-v-06182656]{background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.enclosureBtn[data-v-06182656]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-06182656]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.box[data-v-06182656]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box[data-v-06182656] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .van-tabs[data-v-06182656]{flex:1;display:flex;flex-direction:column}.box .van-tabs[data-v-06182656] .van-tabs__content,.box .van-tabs[data-v-06182656] .van-tabs__content .van-tab__pane{height:100%}.box .van-tabs[data-v-06182656] .van-tabs__content .van-tab__pane .tab-contain{display:flex;flex-direction:column;height:100%}.box .van-tabs[data-v-06182656] .van-tabs__content .van-tab__pane .tab-contain .step-contain{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .van-tabs[data-v-06182656] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .van-tabs[data-v-06182656] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}.box .van-tabs[data-v-06182656] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain{font-size:.42667rem}.box .van-tabs[data-v-06182656] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .input-ele{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .van-tabs[data-v-06182656] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .downIcon{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .van-tabs[data-v-06182656] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .enclosure{flex:1}.box .van-tabs[data-v-06182656] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn{margin:0 .42667rem;margin-top:3.2rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .van-tabs[data-v-06182656] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn .enclosureEnd{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}.tab-contain[data-v-06182656]{display:flex;flex-direction:column;height:100%}.tab-contain .step-contain[data-v-06182656]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.tab-contain .step-contain .form-ele[data-v-06182656]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.tab-contain .step-contain .form-ele .title[data-v-06182656]{width:2.4rem;font-size:.42667rem;flex-shrink:0}.tab-contain .step-contain .form-ele .notice-contain[data-v-06182656]{font-size:.42667rem}.tab-contain .step-contain .form-ele .input-ele[data-v-06182656]{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.tab-contain .step-contain .form-ele .downIcon[data-v-06182656]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.tab-contain .step-contain .form-ele .enclosure[data-v-06182656]{flex:1}.tab-contain .step-contain .btn[data-v-06182656]{margin:0 .42667rem;margin-top:3.2rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.tab-contain .step-contain .btn .enclosureEnd[data-v-06182656]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-3db8be65.0bf68209.css b/src/main/resources/views/dist/css/chunk-3db8be65.0bf68209.css
new file mode 100644
index 0000000..f914879
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-3db8be65.0bf68209.css
@@ -0,0 +1 @@
+.van-pagination[data-v-02d0f24c]{position:fixed;bottom:0;width:100%;z-index:999;background:#fff}.box[data-v-02d0f24c]{display:flex;flex-direction:column;height:100%;font-size:.42667rem}.box .add[data-v-02d0f24c]{width:2.13333rem;height:2.13333rem;position:fixed;right:.32rem;bottom:20%}.box[data-v-02d0f24c] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .tab-contain[data-v-02d0f24c]{padding:.32rem;padding-bottom:1.12rem}.box .tab-contain .van-cell[data-v-02d0f24c]{margin-bottom:.37333rem}.box .tab-contain .van-cell .custom-title[data-v-02d0f24c]{font-weight:700;font-size:.42667rem}.box .tab-contain .van-cell .custom-title1[data-v-02d0f24c]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#47aef3}.box .tab-contain .van-cell .custom-title2[data-v-02d0f24c]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#c86b1d}.box .tab-contain .van-cell .van-icon[data-v-02d0f24c]{color:#333}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-4a8d49a6.a13833e2.css b/src/main/resources/views/dist/css/chunk-4a8d49a6.a13833e2.css
deleted file mode 100644
index 954d208..0000000
--- a/src/main/resources/views/dist/css/chunk-4a8d49a6.a13833e2.css
+++ /dev/null
@@ -1 +0,0 @@
-.unread[data-v-bdae38b8]{font-size:.37333rem!important;letter-spacing:.02667rem!important}.navBar[data-v-bdae38b8]{position:relative}.behalf[data-v-bdae38b8]{position:absolute;top:0;left:.42667rem;height:1.22667rem;line-height:1.22667rem;font-size:.37333rem!important;letter-spacing:.02667rem!important;color:#fff;z-index:999}.menu[data-v-bdae38b8]{display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff;margin-bottom:.32rem}.menu .item[data-v-bdae38b8]{width:25%;padding:.21333rem 0;text-align:center}.menu .item img[data-v-bdae38b8]{display:block;margin:0 auto;width:1.28rem}.menu .item .title[data-v-bdae38b8]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.menu.rddb .item[data-v-bdae38b8]{width:33.33%}.menuAdmin[data-v-bdae38b8]{width:94%;margin:.4rem 3%;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.menuAdmin .item[data-v-bdae38b8]{width:25%;padding:.21333rem 0;text-align:center}.menuAdmin .item img[data-v-bdae38b8]{display:block;margin:0 auto;width:1.12rem}.menuAdmin .item .title[data-v-bdae38b8]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.tabMenu[data-v-bdae38b8]{width:94%;margin:0 3% .4rem;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.tabMenu .title[data-v-bdae38b8]{width:33.33%}.tabMenu .title img[data-v-bdae38b8]{display:block;margin:0 auto;width:70%}.tabMenu .title .line[data-v-bdae38b8]{display:block;margin:0 auto;width:40%;height:.05333rem;margin-top:.13333rem;background-color:#ba2916}.tabMenu .item[data-v-bdae38b8]{width:33.33%;padding:.21333rem 0;margin-top:.26667rem;text-align:center}.tabMenu .item img[data-v-bdae38b8]{display:block;margin:0 auto;width:1.12rem}.tabMenu .item .title[data-v-bdae38b8]{width:1.6rem;margin:0 auto;font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.more-menu[data-v-bdae38b8]{display:flex;flex-wrap:wrap;padding:.85333rem 0 1.38667rem}.more-menu .item[data-v-bdae38b8]{flex:1;padding:.21333rem 0;text-align:center}.more-menu .item img[data-v-bdae38b8]{display:block;margin:0 auto;width:.96rem}.more-menu .item .title[data-v-bdae38b8]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.box[data-v-bdae38b8]{background-color:#fff;margin-bottom:.32rem}.box>.title[data-v-bdae38b8]{display:flex;align-items:center;padding:.53333rem .42667rem .64rem}.box>.title[data-v-bdae38b8]:before{content:"";display:block;width:.10667rem;height:.42667rem;background-color:#d03a29;margin-right:.21333rem}.box>.title .title_text[data-v-bdae38b8]{font-size:.48rem;color:#333;font-weight:700}.box>.title .more[data-v-bdae38b8]{margin-left:auto;font-size:.37333rem;color:#999}.statistics table[data-v-bdae38b8]{table-layout:fixed;border-collapse:separate;width:100%;border-left:.02667rem solid #f4f4f4;border-top:.02667rem solid #f4f4f4}.statistics table td[data-v-bdae38b8]{padding:.32rem .53333rem;border-right:.02667rem solid #f4f4f4;border-bottom:.02667rem solid #f4f4f4}.statistics table td .label[data-v-bdae38b8]{font-size:.32rem;color:#999;line-height:.45333rem}.statistics table td .value[data-v-bdae38b8]{font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700;margin-top:.10667rem}.approval .item[data-v-bdae38b8]{position:relative;padding:.42667rem}.approval .item[data-v-bdae38b8]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval .item .head[data-v-bdae38b8]{display:flex}.approval .item .head .title[data-v-bdae38b8]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.approval .item .head .icon[data-v-bdae38b8]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval .item .content[data-v-bdae38b8]{font-size:.37333rem;color:#999;line-height:.53333rem;margin-top:.21333rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval .item .bottom_text[data-v-bdae38b8]{display:flex;flex-wrap:wrap;margin-top:.10667rem;font-size:.32rem;color:#999;line-height:.45333rem}.approval .item .bottom_text .date[data-v-bdae38b8]{margin-right:1.06667rem}.approval2 .item[data-v-bdae38b8]{position:relative;padding:.42667rem}.approval2 .item[data-v-bdae38b8]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval2 .item .head[data-v-bdae38b8]{display:flex}.approval2 .item .head .title[data-v-bdae38b8]{flex:1;font-size:.42667rem;color:#333;line-height:.53333rem;font-weight:700}.approval2 .item .head .icon[data-v-bdae38b8]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval2 .item .content[data-v-bdae38b8]{font-size:.37333rem;color:#333;line-height:.53333rem;margin-top:.32rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval2 .item .date[data-v-bdae38b8]{margin-top:.21333rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .date .label[data-v-bdae38b8]{margin-right:.21333rem}.approval2 .item .state[data-v-bdae38b8]{margin-top:.10667rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .state .label[data-v-bdae38b8]{margin-right:.21333rem}.approval2 .item .state .value[data-v-bdae38b8]{font-weight:700}.approval2 .item .state .value.blue[data-v-bdae38b8]{color:#1e78ff}.approval2 .item .state .value.green[data-v-bdae38b8]{color:#09a709}.approval2 .item .state .value.red[data-v-bdae38b8]{color:#d03a29}.file .item[data-v-bdae38b8]{position:relative;padding:.32rem .26667rem;display:flex;align-items:center}.file .item[data-v-bdae38b8]:not(:last-child):after{content:"";position:absolute;bottom:0;left:2.08rem;right:0;height:.02667rem;background-color:#f3f3f3}.file .item .icon[data-v-bdae38b8]{width:1.49333rem;margin-right:.32rem}.file .item .name[data-v-bdae38b8]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700;margin-bottom:.10667rem}.file .item .content[data-v-bdae38b8]{font-size:.32rem;color:#999;line-height:.45333rem;display:flex}.file .item .content .user[data-v-bdae38b8]{margin-right:.32rem}.notice .item[data-v-bdae38b8]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.notice .item[data-v-bdae38b8]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.notice .item .tag[data-v-bdae38b8]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.notice .item .title[data-v-bdae38b8]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.notice .item .icon[data-v-bdae38b8]{margin-left:.8rem;font-size:.32rem}.active .item[data-v-bdae38b8]{padding:.42667rem;position:relative}.active .item[data-v-bdae38b8]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.active .item .title[data-v-bdae38b8]{font-weight:700;display:flex;align-items:center}.active .item .title .text[data-v-bdae38b8]{font-size:.42667rem;color:#333;line-height:.58667rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .title .van-tag[data-v-bdae38b8]{width:1.70667rem;border-radius:.32rem;justify-content:center;line-height:.53333rem;margin-left:.10667rem;white-space:nowrap;font-weight:700}.active .item .detail[data-v-bdae38b8]{margin-top:.32rem}.active .item .detail .cell[data-v-bdae38b8]{display:flex;font-size:.32rem}.active .item .detail .cell[data-v-bdae38b8]:not(:last-child){margin-bottom:.10667rem}.active .item .detail .cell .label[data-v-bdae38b8]{color:#999;margin-right:.21333rem}.active .item .detail .cell .value[data-v-bdae38b8]{height:.42667rem;flex:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:.32rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#999;line-height:.42667rem}.active .item .detail .cell .value[data-v-bdae38b8] b{font-weight:400!important}.active .item .detail .cell .value[data-v-bdae38b8] div{margin:0!important;padding:0!important}.active .item .detail .cell .value[data-v-bdae38b8] img{display:none!important}.active .item .detail .cell .value[data-v-bdae38b8] p,.active .item .detail .cell .value[data-v-bdae38b8] span{margin:0!important;padding:0!important;font-size:.32rem!important;line-height:normal!important;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .foot[data-v-bdae38b8]{margin-top:.32rem;display:flex;justify-content:space-between;align-items:center;font-size:.32rem;color:#999;line-height:.45333rem}.active .item .foot .van-icon[data-v-bdae38b8]{margin-left:.10667rem;vertical-align:middle}.active .item .more[data-v-bdae38b8]{padding-top:.32rem;border-top:.02667rem solid #f8f8f8}.active .item .enclosure[data-v-bdae38b8]{margin-top:.21333rem}.active .item .enclosure .item[data-v-bdae38b8]{background-color:#f8f8f8;padding:.26667rem .42667rem;display:flex;align-items:center}.active .item .enclosure .item .detail[data-v-bdae38b8]{flex:1}.active .item .enclosure .item .detail .name[data-v-bdae38b8]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.active .item .enclosure .item .detail .size[data-v-bdae38b8]{font-size:.32rem;color:#333;line-height:.45333rem;margin-top:.10667rem}.active .item .enclosure .item .icon[data-v-bdae38b8]{width:1.49333rem}.active .item .imgs[data-v-bdae38b8]{display:flex;margin-top:.21333rem}.active .item .imgs .img[data-v-bdae38b8]{flex:1;border-radius:.10667rem;overflow:hidden}.active .item .imgs .img+.img[data-v-bdae38b8]{margin-left:.10667rem}.active .item .imgs .img img[data-v-bdae38b8]{max-height:2.66667rem;display:block;width:100%}.active .item .van-button[data-v-bdae38b8]{background-color:#fff;border:.02667rem solid #d03a29;border-radius:.32rem;height:.61333rem;width:1.70667rem;font-size:.32rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#d03a29;padding:0 .32rem;margin-top:.32rem}.active .item .van-button .van-icon[data-v-bdae38b8]{vertical-align:middle}.votersNav[data-v-bdae38b8]{display:flex;justify-content:space-between;padding:.53333rem .53333rem 0;width:100%;background-color:#fff;margin-bottom:.32rem;margin:15rpx 3%}.votersNav .items .imgBox[data-v-bdae38b8]{display:flex;justify-content:center}.votersNav .items .imgBox img[data-v-bdae38b8]{width:1.22667rem;height:1.22667rem}.votersNav .items .title[data-v-bdae38b8]{font-size:.42667rem;margin-top:.26667rem}.civilian[data-v-bdae38b8]{background-color:#fff;margin-bottom:.32rem}.civilian .banner[data-v-bdae38b8]{width:100%;display:block}.civilian .user[data-v-bdae38b8]{position:relative;margin:-1.06667rem .53333rem 0;border-radius:.10667rem;background-color:#fff;box-shadow:0 .08rem .26667rem 0 rgba(0,0,0,.08);display:flex;align-items:center;padding:.42667rem .53333rem .48rem}.civilian .user .avatar[data-v-bdae38b8]{position:relative;margin-right:.32rem}.civilian .user .avatar img[data-v-bdae38b8]{width:1.22667rem;height:1.22667rem;-o-object-fit:cover;object-fit:cover;border-radius:50%}.civilian .user .avatar .badge[data-v-bdae38b8]{position:absolute;top:.10667rem;right:.10667rem;min-width:.42667rem;padding:0 .08rem;font-size:.32rem;color:#fff;line-height:.42667rem;text-align:center;border-radius:.42667rem;background-color:#d03a29;transform:translate(50%,-50%)}.civilian .user .name[data-v-bdae38b8]{flex:1;font-size:.37333rem;color:#333;font-weight:700}.civilian .user .link[data-v-bdae38b8]{font-size:.37333rem;color:#d03a29;font-weight:700}.civilian .user .link .van-icon[data-v-bdae38b8]{margin-left:.10667rem;vertical-align:middle}.civilian .civilian-menu[data-v-bdae38b8]{padding:.32rem}.civilian .civilian-menu .item[data-v-bdae38b8]{position:relative}.civilian .civilian-menu .item[data-v-bdae38b8]:not(:last-child){margin-bottom:.32rem}.civilian .civilian-menu .item .bg-img[data-v-bdae38b8]{position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.civilian .civilian-menu .item .content[data-v-bdae38b8]{padding:.53333rem .64rem;position:relative}.civilian .civilian-menu .item .content .title[data-v-bdae38b8]{font-size:.42667rem;color:#fff;line-height:.58667rem;font-weight:700}.civilian .civilian-menu .item .content .btn[data-v-bdae38b8]{margin-top:.29333rem;background-color:#fff;padding:.13333rem .32rem;border-radius:.37333rem;height:.74667rem;display:inline-flex;align-items:center;font-size:.32rem;color:#f6331d;font-weight:700}.civilian .civilian-menu .item .content .btn .van-icon[data-v-bdae38b8]{margin-left:.08rem}.grassrootsNews .item[data-v-bdae38b8]{position:relative;padding:.4rem .42667rem;display:flex}.grassrootsNews .item[data-v-bdae38b8]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.grassrootsNews .item .info[data-v-bdae38b8]{width:0;flex:1}.grassrootsNews .item .info .title[data-v-bdae38b8]{flex:1;font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.grassrootsNews .item .info .text[data-v-bdae38b8]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.grassrootsNews .item .img[data-v-bdae38b8]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.opinionBox .opinionArrow[data-v-bdae38b8]{color:#ccc;font-size:.475rem}.opinionBox .opinionArrow[data-v-bdae38b8]:before{position:relative;top:50%;left:50%;transform:translate(-50%,-51%)}.news[data-v-bdae38b8]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-bdae38b8]:last-of-type{border-bottom:none}.newList[data-v-bdae38b8]{display:flex;justify-content:space-between;padding:.42667rem 0}.newList .newleft[data-v-bdae38b8]{display:flex;flex-direction:column;justify-content:space-between}.newList .newleft .newtitle[data-v-bdae38b8]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.newList .newleft .newdate[data-v-bdae38b8]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.newList .newimg[data-v-bdae38b8]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-4ae5ca09.e161422a.css b/src/main/resources/views/dist/css/chunk-4ae5ca09.e161422a.css
new file mode 100644
index 0000000..3fb19f7
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-4ae5ca09.e161422a.css
@@ -0,0 +1 @@
+.van-pagination[data-v-17ce3700]{position:fixed;bottom:0;width:100%;z-index:999;background:#fff}.box[data-v-17ce3700]{display:flex;flex-direction:column;height:100%;font-size:.42667rem}.box .add[data-v-17ce3700]{width:2.13333rem;height:2.13333rem;position:fixed;right:.32rem;bottom:20%}.box[data-v-17ce3700] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .tab-contain[data-v-17ce3700]{padding:.32rem;padding-bottom:1.12rem}.box .tab-contain .van-cell[data-v-17ce3700]{margin-bottom:.37333rem}.box .tab-contain .van-cell .custom-title[data-v-17ce3700]{font-weight:700;font-size:.42667rem}.box .tab-contain .van-cell .custom-title1[data-v-17ce3700]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#47aef3}.box .tab-contain .van-cell .custom-title2[data-v-17ce3700]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#c86b1d}.box .tab-contain .van-cell .van-icon[data-v-17ce3700]{color:#333}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-54525e14.29bc89a5.css b/src/main/resources/views/dist/css/chunk-54525e14.29bc89a5.css
new file mode 100644
index 0000000..92eb853
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-54525e14.29bc89a5.css
@@ -0,0 +1 @@
+.fileList1List[data-v-2a1b95e6]{background-color:#f7f8fa;width:2.13333rem;height:2.13333rem}.fileList1List img[data-v-2a1b95e6]{width:.53333rem;height:.53333rem;margin-left:.8rem;margin-top:.50667rem}.fileList1List h4[data-v-2a1b95e6]{height:.37333rem;margin-top:.21333rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-left:.13333rem}.van-field-inp[data-v-2a1b95e6]{line-height:.53333rem;border-radius:.48rem;background:#f8f8f8;margin:.16rem 0}p[data-v-2a1b95e6]{line-height:1.8}.plus_add[data-v-2a1b95e6]{display:flex;align-items:flex-end}.plus_add .plus_addSe[data-v-2a1b95e6]{width:75%;display:flex;flex-wrap:wrap}.plus_add .plus_addSe .input-eles[data-v-2a1b95e6]{width:100%;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.plus[data-v-2a1b95e6]{margin-bottom:.21333rem;padding:.10667rem;background:#e72e3a;border-radius:50%}.report .report-title[data-v-2a1b95e6]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem;color:#333}.report .report-contain[data-v-2a1b95e6]{padding:.42667rem 0}.report .report-contain .word[data-v-2a1b95e6]{font-size:.42667rem;line-height:.53333rem}.report .report-contain .date[data-v-2a1b95e6]{color:#333;font-size:.32rem;margin-top:.42667rem}.vote .vote-title[data-v-2a1b95e6]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem}.vote .vote-title .voteImg[data-v-2a1b95e6]{width:.48rem;height:.42667rem;margin-right:.26667rem;vertical-align:bottom}.vote .vote-contain[data-v-2a1b95e6]{padding:.21333rem 0}.vote .vote-contain .scoreTitle[data-v-2a1b95e6]{text-align:center;padding:.32rem 0}.vote .vote-contain .vote-item[data-v-2a1b95e6]{padding:.21333rem 0}.vote .vote-contain .vote-item .vote-row[data-v-2a1b95e6]{display:flex;justify-content:space-between;align-items:center}.vote .vote-contain .vote-item .vote-row[data-v-2a1b95e6]:last-of-type{margin-top:.21333rem}.vote .vote-contain .vote-item .vote-row .ticket[data-v-2a1b95e6]{width:.53333rem;height:.53333rem}.vote .vote-contain .vote-item .vote-row .progress[data-v-2a1b95e6]{flex:1}.vote .vote-contain .vote-item .vote-row .vote-right[data-v-2a1b95e6]{width:1.6rem;text-align:center}.evaluate[data-v-2a1b95e6]{margin-top:.8rem;padding:.42667rem .64rem;background:#f8f8f8;border-radius:.21333rem}.evaluate .evaluate-contain[data-v-2a1b95e6]{line-height:.53333rem}.evaluate .evaluate-contain .title[data-v-2a1b95e6]{color:#0071ff}.evaluate .evaluate-bottom[data-v-2a1b95e6]{display:flex;align-items:center;justify-content:space-between;margin-top:.74667rem}.evaluate .evaluate-bottom .date[data-v-2a1b95e6]{color:#8e8f9e}.evaluate .evaluate-bottom .more[data-v-2a1b95e6]{color:#0071ff}.enclosurePopup[data-v-2a1b95e6]{padding:1.06667rem}.enclosurePopup .btn[data-v-2a1b95e6]{background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.enclosureBtn[data-v-2a1b95e6]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-2a1b95e6]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.users[data-v-2a1b95e6]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-2a1b95e6]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-2a1b95e6]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.publish[data-v-2a1b95e6]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-2a1b95e6]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-2a1b95e6]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.step .my-swipe .van-swipe-item[data-v-2a1b95e6]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem}.step .my-swipe .van-swipe-item[data-v-2a1b95e6]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.step .my-swipe .van-swipe-item .pitch-step-title[data-v-2a1b95e6]{font-weight:600;font-size:.34667rem!important}.step .my-swipe .van-swipe-item .step-item[data-v-2a1b95e6]{width:40%;display:inline-block;position:relative;box-sizing:border-box}.step .my-swipe .van-swipe-item .step-item.step-three[data-v-2a1b95e6]{width:20%}.step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-2a1b95e6]{text-align:right}.step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-2a1b95e6]{left:.10667rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-2a1b95e6]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:-60%;margin-left:30%}.step .my-swipe .van-swipe-item .step-item .stepImg[data-v-2a1b95e6]{position:relative;width:.72rem;height:.72rem}.step .my-swipe .van-swipe-item .step-item .line[data-v-2a1b95e6]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-2a1b95e6]{border-bottom-color:#8ccf8c!important}.step .my-swipe .van-swipe-item .step-item .step-title[data-v-2a1b95e6]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:5%;margin-left:-70%}.step .my-swipe[data-v-2a1b95e6] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.step .my-swipe[data-v-2a1b95e6] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.swiperSecond[data-v-2a1b95e6]{padding:.8rem .8rem .8rem .53333rem!important;display:flex}.swiperSecond .step-second[data-v-2a1b95e6]{width:30%!important}.swiperSecond .step-second.step-narrow[data-v-2a1b95e6]{width:25%!important}.swiperSecond .negativeDirection .step-title[data-v-2a1b95e6]{margin-right:-44%!important;margin-left:20%}.box[data-v-2a1b95e6]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box[data-v-2a1b95e6] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .van-tabs[data-v-2a1b95e6]{flex:1;display:flex;flex-direction:column}.box .van-tabs[data-v-2a1b95e6] .van-tabs__content,.box .van-tabs[data-v-2a1b95e6] .van-tabs__content .van-tab__pane{height:100%}.box .tab-contain[data-v-2a1b95e6]{display:flex;flex-direction:column;height:100%}.box .tab-contain .step-contain[data-v-2a1b95e6]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .tab-contain .step-contain.bulletinBoard[data-v-2a1b95e6]{padding-bottom:2.13333rem}.box .tab-contain .step-contain .form-ele[data-v-2a1b95e6]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .tab-contain .step-contain .form-ele .title[data-v-2a1b95e6]{width:2.4rem;font-size:.42667rem;flex-shrink:0}.box .tab-contain .step-contain .form-ele .notice-contain[data-v-2a1b95e6]{font-size:.42667rem}.box .tab-contain .step-contain .form-ele .notice-contain p[data-v-2a1b95e6]{margin-top:.26667rem}.box .tab-contain .step-contain .form-ele .notice-contain p[data-v-2a1b95e6]:first-of-type{margin-top:0}.box .tab-contain .step-contain .form-ele .input-ele[data-v-2a1b95e6]{width:70%;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .tab-contain .step-contain .form-ele .downIcon[data-v-2a1b95e6]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .tab-contain .step-contain .form-ele .enclosure[data-v-2a1b95e6]{flex:1}.box .tab-contain .step-contain .btn[data-v-2a1b95e6]{margin:0 .42667rem;margin-top:1.6rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .tab-contain .step-contain .btn .enclosureEnd[data-v-2a1b95e6]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-57aab6f6.cd72ab70.css b/src/main/resources/views/dist/css/chunk-57aab6f6.cd72ab70.css
new file mode 100644
index 0000000..1813840
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-57aab6f6.cd72ab70.css
@@ -0,0 +1 @@
+.unread[data-v-aa913000]{font-size:.37333rem!important;letter-spacing:.02667rem!important}.navBar[data-v-aa913000]{position:relative}.behalf[data-v-aa913000]{position:absolute;top:0;left:.42667rem;height:1.22667rem;line-height:1.22667rem;font-size:.37333rem!important;letter-spacing:.02667rem!important;color:#fff;z-index:999}.menu[data-v-aa913000]{display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff;margin-bottom:.32rem}.menu .item[data-v-aa913000]{width:25%;padding:.21333rem 0;text-align:center}.menu .item img[data-v-aa913000]{display:block;margin:0 auto;width:1.28rem}.menu .item .title[data-v-aa913000]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.menu.rddb .item[data-v-aa913000]{width:33.33%}.menuAdmin[data-v-aa913000]{width:94%;margin:.4rem 3%;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.menuAdmin .item[data-v-aa913000]{width:25%;padding:.21333rem 0;text-align:center}.menuAdmin .item img[data-v-aa913000]{display:block;margin:0 auto;width:1.12rem}.menuAdmin .item .title[data-v-aa913000]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.tabMenu[data-v-aa913000]{width:94%;margin:0 3% .4rem;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.tabMenu .title[data-v-aa913000]{width:33.33%}.tabMenu .title img[data-v-aa913000]{display:block;margin:0 auto;width:70%}.tabMenu .title .line[data-v-aa913000]{display:block;margin:0 auto;width:40%;height:.05333rem;margin-top:.13333rem;background-color:#ba2916}.tabMenu .item[data-v-aa913000]{width:33.33%;padding:.21333rem 0;margin-top:.26667rem;text-align:center}.tabMenu .item img[data-v-aa913000]{display:block;margin:0 auto;width:1.12rem}.tabMenu .item .title[data-v-aa913000]{width:1.6rem;margin:0 auto;font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.more-menu[data-v-aa913000]{display:flex;flex-wrap:wrap;padding:.85333rem 0 1.38667rem}.more-menu .item[data-v-aa913000]{flex:1;padding:.21333rem 0;text-align:center}.more-menu .item img[data-v-aa913000]{display:block;margin:0 auto;width:.96rem}.more-menu .item .title[data-v-aa913000]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.box[data-v-aa913000]{background-color:#fff;margin-bottom:.32rem}.box>.title[data-v-aa913000]{display:flex;align-items:center;padding:.53333rem .42667rem .64rem}.box>.title[data-v-aa913000]:before{content:"";display:block;width:.10667rem;height:.42667rem;background-color:#d03a29;margin-right:.21333rem}.box>.title .title_text[data-v-aa913000]{font-size:.48rem;color:#333;font-weight:700}.box>.title .more[data-v-aa913000]{margin-left:auto;font-size:.37333rem;color:#999}.statistics table[data-v-aa913000]{table-layout:fixed;border-collapse:separate;width:100%;border-left:.02667rem solid #f4f4f4;border-top:.02667rem solid #f4f4f4}.statistics table td[data-v-aa913000]{padding:.32rem .53333rem;border-right:.02667rem solid #f4f4f4;border-bottom:.02667rem solid #f4f4f4}.statistics table td .label[data-v-aa913000]{font-size:.32rem;color:#999;line-height:.45333rem}.statistics table td .value[data-v-aa913000]{font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700;margin-top:.10667rem}.approval .item[data-v-aa913000]{position:relative;padding:.42667rem}.approval .item[data-v-aa913000]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval .item .head[data-v-aa913000]{display:flex}.approval .item .head .title[data-v-aa913000]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.approval .item .head .icon[data-v-aa913000]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval .item .content[data-v-aa913000]{font-size:.37333rem;color:#999;line-height:.53333rem;margin-top:.21333rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval .item .bottom_text[data-v-aa913000]{display:flex;flex-wrap:wrap;margin-top:.10667rem;font-size:.32rem;color:#999;line-height:.45333rem}.approval .item .bottom_text .date[data-v-aa913000]{margin-right:1.06667rem}.approval2 .item[data-v-aa913000]{position:relative;padding:.42667rem}.approval2 .item[data-v-aa913000]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval2 .item .head[data-v-aa913000]{display:flex}.approval2 .item .head .title[data-v-aa913000]{flex:1;font-size:.42667rem;color:#333;line-height:.53333rem;font-weight:700}.approval2 .item .head .icon[data-v-aa913000]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval2 .item .content[data-v-aa913000]{font-size:.37333rem;color:#333;line-height:.53333rem;margin-top:.32rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval2 .item .date[data-v-aa913000]{margin-top:.21333rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .date .label[data-v-aa913000]{margin-right:.21333rem}.approval2 .item .state[data-v-aa913000]{margin-top:.10667rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .state .label[data-v-aa913000]{margin-right:.21333rem}.approval2 .item .state .value[data-v-aa913000]{font-weight:700}.approval2 .item .state .value.blue[data-v-aa913000]{color:#1e78ff}.approval2 .item .state .value.green[data-v-aa913000]{color:#09a709}.approval2 .item .state .value.red[data-v-aa913000]{color:#d03a29}.file .item[data-v-aa913000]{position:relative;padding:.32rem .26667rem;display:flex;align-items:center}.file .item[data-v-aa913000]:not(:last-child):after{content:"";position:absolute;bottom:0;left:2.08rem;right:0;height:.02667rem;background-color:#f3f3f3}.file .item .icon[data-v-aa913000]{width:1.49333rem;margin-right:.32rem}.file .item .name[data-v-aa913000]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700;margin-bottom:.10667rem}.file .item .content[data-v-aa913000]{font-size:.32rem;color:#999;line-height:.45333rem;display:flex}.file .item .content .user[data-v-aa913000]{margin-right:.32rem}.notice .item[data-v-aa913000]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.notice .item[data-v-aa913000]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.notice .item .tag[data-v-aa913000]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.notice .item .title[data-v-aa913000]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.notice .item .icon[data-v-aa913000]{margin-left:.8rem;font-size:.32rem}.active .item[data-v-aa913000]{padding:.42667rem;position:relative}.active .item[data-v-aa913000]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.active .item .title[data-v-aa913000]{font-weight:700;display:flex;align-items:center}.active .item .title .text[data-v-aa913000]{font-size:.42667rem;color:#333;line-height:.58667rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .title .van-tag[data-v-aa913000]{width:1.70667rem;border-radius:.32rem;justify-content:center;line-height:.53333rem;margin-left:.10667rem;white-space:nowrap;font-weight:700}.active .item .detail[data-v-aa913000]{margin-top:.32rem}.active .item .detail .cell[data-v-aa913000]{display:flex;font-size:.32rem}.active .item .detail .cell[data-v-aa913000]:not(:last-child){margin-bottom:.10667rem}.active .item .detail .cell .label[data-v-aa913000]{color:#999;margin-right:.21333rem}.active .item .detail .cell .value[data-v-aa913000]{height:.42667rem;flex:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:.32rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#999;line-height:.42667rem}.active .item .detail .cell .value[data-v-aa913000] b{font-weight:400!important}.active .item .detail .cell .value[data-v-aa913000] div{margin:0!important;padding:0!important}.active .item .detail .cell .value[data-v-aa913000] img{display:none!important}.active .item .detail .cell .value[data-v-aa913000] p,.active .item .detail .cell .value[data-v-aa913000] span{margin:0!important;padding:0!important;font-size:.32rem!important;line-height:normal!important;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .foot[data-v-aa913000]{margin-top:.32rem;display:flex;justify-content:space-between;align-items:center;font-size:.32rem;color:#999;line-height:.45333rem}.active .item .foot .van-icon[data-v-aa913000]{margin-left:.10667rem;vertical-align:middle}.active .item .more[data-v-aa913000]{padding-top:.32rem;border-top:.02667rem solid #f8f8f8}.active .item .enclosure[data-v-aa913000]{margin-top:.21333rem}.active .item .enclosure .item[data-v-aa913000]{background-color:#f8f8f8;padding:.26667rem .42667rem;display:flex;align-items:center}.active .item .enclosure .item .detail[data-v-aa913000]{flex:1}.active .item .enclosure .item .detail .name[data-v-aa913000]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.active .item .enclosure .item .detail .size[data-v-aa913000]{font-size:.32rem;color:#333;line-height:.45333rem;margin-top:.10667rem}.active .item .enclosure .item .icon[data-v-aa913000]{width:1.49333rem}.active .item .imgs[data-v-aa913000]{display:flex;margin-top:.21333rem}.active .item .imgs .img[data-v-aa913000]{flex:1;border-radius:.10667rem;overflow:hidden}.active .item .imgs .img+.img[data-v-aa913000]{margin-left:.10667rem}.active .item .imgs .img img[data-v-aa913000]{max-height:2.66667rem;display:block;width:100%}.active .item .van-button[data-v-aa913000]{background-color:#fff;border:.02667rem solid #d03a29;border-radius:.32rem;height:.61333rem;width:1.70667rem;font-size:.32rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#d03a29;padding:0 .32rem;margin-top:.32rem}.active .item .van-button .van-icon[data-v-aa913000]{vertical-align:middle}.votersNav[data-v-aa913000]{display:flex;justify-content:space-between;padding:.53333rem .53333rem 0;width:100%;background-color:#fff;margin-bottom:.32rem;margin:15rpx 3%}.votersNav .items .imgBox[data-v-aa913000]{display:flex;justify-content:center}.votersNav .items .imgBox img[data-v-aa913000]{width:1.22667rem;height:1.22667rem}.votersNav .items .title[data-v-aa913000]{font-size:.42667rem;margin-top:.26667rem}.civilian[data-v-aa913000]{background-color:#fff;margin-bottom:.32rem}.civilian .banner[data-v-aa913000]{width:100%;display:block}.civilian .user[data-v-aa913000]{position:relative;margin:-1.06667rem .53333rem 0;border-radius:.10667rem;background-color:#fff;box-shadow:0 .08rem .26667rem 0 rgba(0,0,0,.08);display:flex;align-items:center;padding:.42667rem .53333rem .48rem}.civilian .user .avatar[data-v-aa913000]{position:relative;margin-right:.32rem}.civilian .user .avatar img[data-v-aa913000]{width:1.22667rem;height:1.22667rem;-o-object-fit:cover;object-fit:cover;border-radius:50%}.civilian .user .avatar .badge[data-v-aa913000]{position:absolute;top:.10667rem;right:.10667rem;min-width:.42667rem;padding:0 .08rem;font-size:.32rem;color:#fff;line-height:.42667rem;text-align:center;border-radius:.42667rem;background-color:#d03a29;transform:translate(50%,-50%)}.civilian .user .name[data-v-aa913000]{flex:1;font-size:.37333rem;color:#333;font-weight:700}.civilian .user .link[data-v-aa913000]{font-size:.37333rem;color:#d03a29;font-weight:700}.civilian .user .link .van-icon[data-v-aa913000]{margin-left:.10667rem;vertical-align:middle}.civilian .civilian-menu[data-v-aa913000]{padding:.32rem}.civilian .civilian-menu .item[data-v-aa913000]{position:relative}.civilian .civilian-menu .item[data-v-aa913000]:not(:last-child){margin-bottom:.32rem}.civilian .civilian-menu .item .bg-img[data-v-aa913000]{position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.civilian .civilian-menu .item .content[data-v-aa913000]{padding:.53333rem .64rem;position:relative}.civilian .civilian-menu .item .content .title[data-v-aa913000]{font-size:.42667rem;color:#fff;line-height:.58667rem;font-weight:700}.civilian .civilian-menu .item .content .btn[data-v-aa913000]{margin-top:.29333rem;background-color:#fff;padding:.13333rem .32rem;border-radius:.37333rem;height:.74667rem;display:inline-flex;align-items:center;font-size:.32rem;color:#f6331d;font-weight:700}.civilian .civilian-menu .item .content .btn .van-icon[data-v-aa913000]{margin-left:.08rem}.grassrootsNews .item[data-v-aa913000]{position:relative;padding:.4rem .42667rem;display:flex}.grassrootsNews .item[data-v-aa913000]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.grassrootsNews .item .info[data-v-aa913000]{width:0;flex:1}.grassrootsNews .item .info .title[data-v-aa913000]{flex:1;font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.grassrootsNews .item .info .text[data-v-aa913000]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.grassrootsNews .item .img[data-v-aa913000]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.opinionBox .opinionArrow[data-v-aa913000]{color:#ccc;font-size:.475rem}.opinionBox .opinionArrow[data-v-aa913000]:before{position:relative;top:50%;left:50%;transform:translate(-50%,-51%)}.news[data-v-aa913000]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-aa913000]:last-of-type{border-bottom:none}.newList[data-v-aa913000]{display:flex;justify-content:space-between;padding:.42667rem 0}.newList .newleft[data-v-aa913000]{display:flex;flex-direction:column;justify-content:space-between}.newList .newleft .newtitle[data-v-aa913000]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.newList .newleft .newdate[data-v-aa913000]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.newList .newimg[data-v-aa913000]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-5957d267.ff242db9.css b/src/main/resources/views/dist/css/chunk-5957d267.ff242db9.css
deleted file mode 100644
index e501f3d..0000000
--- a/src/main/resources/views/dist/css/chunk-5957d267.ff242db9.css
+++ /dev/null
@@ -1 +0,0 @@
-.van-pagination[data-v-1e33314c]{position:fixed;bottom:0;width:100%;z-index:999;background:#fff}.box[data-v-1e33314c]{display:flex;flex-direction:column;height:100%;font-size:.42667rem}.box .add[data-v-1e33314c]{width:2.13333rem;height:2.13333rem;position:fixed;right:.32rem;bottom:20%}.box[data-v-1e33314c] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .tab-contain[data-v-1e33314c]{padding:.32rem;padding-bottom:1.12rem}.box .tab-contain .van-cell[data-v-1e33314c]{margin-bottom:.37333rem}.box .tab-contain .van-cell .custom-title[data-v-1e33314c]{font-weight:700;font-size:.42667rem}.box .tab-contain .van-cell .custom-title1[data-v-1e33314c]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#47aef3}.box .tab-contain .van-cell .custom-title2[data-v-1e33314c]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#c86b1d}.box .tab-contain .van-cell .van-icon[data-v-1e33314c]{color:#333}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-5ba1f0d4.532a2e9c.css b/src/main/resources/views/dist/css/chunk-5ba1f0d4.532a2e9c.css
deleted file mode 100644
index 4eada94..0000000
--- a/src/main/resources/views/dist/css/chunk-5ba1f0d4.532a2e9c.css
+++ /dev/null
@@ -1 +0,0 @@
-.unread[data-v-71797371]{font-size:.37333rem!important;letter-spacing:.02667rem!important}.navBar[data-v-71797371]{position:relative}.behalf[data-v-71797371]{position:absolute;top:0;left:.42667rem;height:1.22667rem;line-height:1.22667rem;font-size:.37333rem!important;letter-spacing:.02667rem!important;color:#fff;z-index:999}.menu[data-v-71797371]{display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff;margin-bottom:.32rem}.menu .item[data-v-71797371]{width:25%;padding:.21333rem 0;text-align:center}.menu .item img[data-v-71797371]{display:block;margin:0 auto;width:1.28rem}.menu .item .title[data-v-71797371]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.menu.rddb .item[data-v-71797371]{width:33.33%}.menuAdmin[data-v-71797371]{width:94%;margin:.4rem 3%;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.menuAdmin .item[data-v-71797371]{width:25%;padding:.21333rem 0;text-align:center}.menuAdmin .item img[data-v-71797371]{display:block;margin:0 auto;width:1.12rem}.menuAdmin .item .title[data-v-71797371]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.tabMenu[data-v-71797371]{width:94%;margin:0 3% .4rem;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.tabMenu .title[data-v-71797371]{width:33.33%}.tabMenu .title img[data-v-71797371]{display:block;margin:0 auto;width:70%}.tabMenu .title .line[data-v-71797371]{display:block;margin:0 auto;width:40%;height:.05333rem;margin-top:.13333rem;background-color:#ba2916}.tabMenu .item[data-v-71797371]{width:33.33%;padding:.21333rem 0;margin-top:.26667rem;text-align:center}.tabMenu .item img[data-v-71797371]{display:block;margin:0 auto;width:1.12rem}.tabMenu .item .title[data-v-71797371]{width:1.6rem;margin:0 auto;font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.more-menu[data-v-71797371]{display:flex;flex-wrap:wrap;padding:.85333rem 0 1.38667rem}.more-menu .item[data-v-71797371]{flex:1;padding:.21333rem 0;text-align:center}.more-menu .item img[data-v-71797371]{display:block;margin:0 auto;width:.96rem}.more-menu .item .title[data-v-71797371]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.box[data-v-71797371]{background-color:#fff;margin-bottom:.32rem}.box>.title[data-v-71797371]{display:flex;align-items:center;padding:.53333rem .42667rem .64rem}.box>.title[data-v-71797371]:before{content:"";display:block;width:.10667rem;height:.42667rem;background-color:#d03a29;margin-right:.21333rem}.box>.title .title_text[data-v-71797371]{font-size:.48rem;color:#333;font-weight:700}.box>.title .more[data-v-71797371]{margin-left:auto;font-size:.37333rem;color:#999}.statistics table[data-v-71797371]{table-layout:fixed;border-collapse:separate;width:100%;border-left:.02667rem solid #f4f4f4;border-top:.02667rem solid #f4f4f4}.statistics table td[data-v-71797371]{padding:.32rem .53333rem;border-right:.02667rem solid #f4f4f4;border-bottom:.02667rem solid #f4f4f4}.statistics table td .label[data-v-71797371]{font-size:.32rem;color:#999;line-height:.45333rem}.statistics table td .value[data-v-71797371]{font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700;margin-top:.10667rem}.approval .item[data-v-71797371]{position:relative;padding:.42667rem}.approval .item[data-v-71797371]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval .item .head[data-v-71797371]{display:flex}.approval .item .head .title[data-v-71797371]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.approval .item .head .icon[data-v-71797371]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval .item .content[data-v-71797371]{font-size:.37333rem;color:#999;line-height:.53333rem;margin-top:.21333rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval .item .bottom_text[data-v-71797371]{display:flex;flex-wrap:wrap;margin-top:.10667rem;font-size:.32rem;color:#999;line-height:.45333rem}.approval .item .bottom_text .date[data-v-71797371]{margin-right:1.06667rem}.approval2 .item[data-v-71797371]{position:relative;padding:.42667rem}.approval2 .item[data-v-71797371]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval2 .item .head[data-v-71797371]{display:flex}.approval2 .item .head .title[data-v-71797371]{flex:1;font-size:.42667rem;color:#333;line-height:.53333rem;font-weight:700}.approval2 .item .head .icon[data-v-71797371]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval2 .item .content[data-v-71797371]{font-size:.37333rem;color:#333;line-height:.53333rem;margin-top:.32rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval2 .item .date[data-v-71797371]{margin-top:.21333rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .date .label[data-v-71797371]{margin-right:.21333rem}.approval2 .item .state[data-v-71797371]{margin-top:.10667rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .state .label[data-v-71797371]{margin-right:.21333rem}.approval2 .item .state .value[data-v-71797371]{font-weight:700}.approval2 .item .state .value.blue[data-v-71797371]{color:#1e78ff}.approval2 .item .state .value.green[data-v-71797371]{color:#09a709}.approval2 .item .state .value.red[data-v-71797371]{color:#d03a29}.file .item[data-v-71797371]{position:relative;padding:.32rem .26667rem;display:flex;align-items:center}.file .item[data-v-71797371]:not(:last-child):after{content:"";position:absolute;bottom:0;left:2.08rem;right:0;height:.02667rem;background-color:#f3f3f3}.file .item .icon[data-v-71797371]{width:1.49333rem;margin-right:.32rem}.file .item .name[data-v-71797371]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700;margin-bottom:.10667rem}.file .item .content[data-v-71797371]{font-size:.32rem;color:#999;line-height:.45333rem;display:flex}.file .item .content .user[data-v-71797371]{margin-right:.32rem}.notice .item[data-v-71797371]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.notice .item[data-v-71797371]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.notice .item .tag[data-v-71797371]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.notice .item .title[data-v-71797371]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.notice .item .icon[data-v-71797371]{margin-left:.8rem;font-size:.32rem}.active .item[data-v-71797371]{padding:.42667rem;position:relative}.active .item[data-v-71797371]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.active .item .title[data-v-71797371]{font-weight:700;display:flex;align-items:center}.active .item .title .text[data-v-71797371]{font-size:.42667rem;color:#333;line-height:.58667rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .title .van-tag[data-v-71797371]{width:1.70667rem;border-radius:.32rem;justify-content:center;line-height:.53333rem;margin-left:.10667rem;white-space:nowrap;font-weight:700}.active .item .detail[data-v-71797371]{margin-top:.32rem}.active .item .detail .cell[data-v-71797371]{display:flex;font-size:.32rem}.active .item .detail .cell[data-v-71797371]:not(:last-child){margin-bottom:.10667rem}.active .item .detail .cell .label[data-v-71797371]{color:#999;margin-right:.21333rem}.active .item .detail .cell .value[data-v-71797371]{height:.42667rem;flex:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:.32rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#999;line-height:.42667rem}.active .item .detail .cell .value[data-v-71797371] b{font-weight:400!important}.active .item .detail .cell .value[data-v-71797371] div{margin:0!important;padding:0!important}.active .item .detail .cell .value[data-v-71797371] img{display:none!important}.active .item .detail .cell .value[data-v-71797371] p,.active .item .detail .cell .value[data-v-71797371] span{margin:0!important;padding:0!important;font-size:.32rem!important;line-height:normal!important;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .foot[data-v-71797371]{margin-top:.32rem;display:flex;justify-content:space-between;align-items:center;font-size:.32rem;color:#999;line-height:.45333rem}.active .item .foot .van-icon[data-v-71797371]{margin-left:.10667rem;vertical-align:middle}.active .item .more[data-v-71797371]{padding-top:.32rem;border-top:.02667rem solid #f8f8f8}.active .item .enclosure[data-v-71797371]{margin-top:.21333rem}.active .item .enclosure .item[data-v-71797371]{background-color:#f8f8f8;padding:.26667rem .42667rem;display:flex;align-items:center}.active .item .enclosure .item .detail[data-v-71797371]{flex:1}.active .item .enclosure .item .detail .name[data-v-71797371]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.active .item .enclosure .item .detail .size[data-v-71797371]{font-size:.32rem;color:#333;line-height:.45333rem;margin-top:.10667rem}.active .item .enclosure .item .icon[data-v-71797371]{width:1.49333rem}.active .item .imgs[data-v-71797371]{display:flex;margin-top:.21333rem}.active .item .imgs .img[data-v-71797371]{flex:1;border-radius:.10667rem;overflow:hidden}.active .item .imgs .img+.img[data-v-71797371]{margin-left:.10667rem}.active .item .imgs .img img[data-v-71797371]{max-height:2.66667rem;display:block;width:100%}.active .item .van-button[data-v-71797371]{background-color:#fff;border:.02667rem solid #d03a29;border-radius:.32rem;height:.61333rem;width:1.70667rem;font-size:.32rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#d03a29;padding:0 .32rem;margin-top:.32rem}.active .item .van-button .van-icon[data-v-71797371]{vertical-align:middle}.votersNav[data-v-71797371]{display:flex;justify-content:space-between;padding:.53333rem .53333rem 0;width:100%;background-color:#fff;margin-bottom:.32rem;margin:15rpx 3%}.votersNav .items .imgBox[data-v-71797371]{display:flex;justify-content:center}.votersNav .items .imgBox img[data-v-71797371]{width:1.22667rem;height:1.22667rem}.votersNav .items .title[data-v-71797371]{font-size:.42667rem;margin-top:.26667rem}.civilian[data-v-71797371]{background-color:#fff;margin-bottom:.32rem}.civilian .banner[data-v-71797371]{width:100%;display:block}.civilian .user[data-v-71797371]{position:relative;margin:-1.06667rem .53333rem 0;border-radius:.10667rem;background-color:#fff;box-shadow:0 .08rem .26667rem 0 rgba(0,0,0,.08);display:flex;align-items:center;padding:.42667rem .53333rem .48rem}.civilian .user .avatar[data-v-71797371]{position:relative;margin-right:.32rem}.civilian .user .avatar img[data-v-71797371]{width:1.22667rem;height:1.22667rem;-o-object-fit:cover;object-fit:cover;border-radius:50%}.civilian .user .avatar .badge[data-v-71797371]{position:absolute;top:.10667rem;right:.10667rem;min-width:.42667rem;padding:0 .08rem;font-size:.32rem;color:#fff;line-height:.42667rem;text-align:center;border-radius:.42667rem;background-color:#d03a29;transform:translate(50%,-50%)}.civilian .user .name[data-v-71797371]{flex:1;font-size:.37333rem;color:#333;font-weight:700}.civilian .user .link[data-v-71797371]{font-size:.37333rem;color:#d03a29;font-weight:700}.civilian .user .link .van-icon[data-v-71797371]{margin-left:.10667rem;vertical-align:middle}.civilian .civilian-menu[data-v-71797371]{padding:.32rem}.civilian .civilian-menu .item[data-v-71797371]{position:relative}.civilian .civilian-menu .item[data-v-71797371]:not(:last-child){margin-bottom:.32rem}.civilian .civilian-menu .item .bg-img[data-v-71797371]{position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.civilian .civilian-menu .item .content[data-v-71797371]{padding:.53333rem .64rem;position:relative}.civilian .civilian-menu .item .content .title[data-v-71797371]{font-size:.42667rem;color:#fff;line-height:.58667rem;font-weight:700}.civilian .civilian-menu .item .content .btn[data-v-71797371]{margin-top:.29333rem;background-color:#fff;padding:.13333rem .32rem;border-radius:.37333rem;height:.74667rem;display:inline-flex;align-items:center;font-size:.32rem;color:#f6331d;font-weight:700}.civilian .civilian-menu .item .content .btn .van-icon[data-v-71797371]{margin-left:.08rem}.grassrootsNews .item[data-v-71797371]{position:relative;padding:.4rem .42667rem;display:flex}.grassrootsNews .item[data-v-71797371]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.grassrootsNews .item .info[data-v-71797371]{width:0;flex:1}.grassrootsNews .item .info .title[data-v-71797371]{flex:1;font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.grassrootsNews .item .info .text[data-v-71797371]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.grassrootsNews .item .img[data-v-71797371]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.opinionBox .opinionArrow[data-v-71797371]{color:#ccc;font-size:.475rem}.opinionBox .opinionArrow[data-v-71797371]:before{position:relative;top:50%;left:50%;transform:translate(-50%,-51%)}.news[data-v-71797371]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-71797371]:last-of-type{border-bottom:none}.newList[data-v-71797371]{display:flex;justify-content:space-between;padding:.42667rem 0}.newList .newleft[data-v-71797371]{display:flex;flex-direction:column;justify-content:space-between}.newList .newleft .newtitle[data-v-71797371]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.newList .newleft .newdate[data-v-71797371]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.newList .newimg[data-v-71797371]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-4540e5ca.dd48ddd5.css b/src/main/resources/views/dist/css/chunk-5efa941e.dd48ddd5.css
similarity index 100%
rename from src/main/resources/views/dist/css/chunk-4540e5ca.dd48ddd5.css
rename to src/main/resources/views/dist/css/chunk-5efa941e.dd48ddd5.css
diff --git a/src/main/resources/views/dist/css/chunk-677f1933.bb543b2c.css b/src/main/resources/views/dist/css/chunk-677f1933.bb543b2c.css
new file mode 100644
index 0000000..a96ff59
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-677f1933.bb543b2c.css
@@ -0,0 +1 @@
+.coloreee div[data-v-20b760a3]{font-size:.37333rem}.coloreee div p[data-v-20b760a3]{margin-left:1em;line-height:.61333rem}[data-v-20b760a3] .Announcement{margin-left:-.4rem;font-size:.42667rem;flex-shrink:0;color:#333}[data-v-20b760a3] .checkGos{width:5.86667rem}.van-field-inp[data-v-20b760a3]{line-height:.53333rem;border-radius:.48rem;background:#f8f8f8}.int[data-v-20b760a3]{width:6.66667rem}.fileList1List[data-v-20b760a3]{background-color:#f7f8fa;width:2.13333rem;height:2.13333rem}.fileList1List img[data-v-20b760a3]{width:.53333rem;height:.53333rem;margin-left:.8rem;margin-top:.50667rem}.fileList1List h4[data-v-20b760a3]{height:.37333rem;margin-top:.21333rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-left:.13333rem}.report .report-title[data-v-20b760a3]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem;color:#333}.report .report-contain[data-v-20b760a3]{padding:.42667rem 0}.report .report-contain .word[data-v-20b760a3]{font-size:.42667rem;line-height:.53333rem}.report .report-contain .date[data-v-20b760a3]{color:#333;font-size:.32rem;margin-top:.42667rem}.vote .vote-title[data-v-20b760a3]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem}.vote .vote-title .voteImg[data-v-20b760a3]{width:.48rem;height:.42667rem;margin-right:.26667rem;vertical-align:bottom}.vote .vote-contain[data-v-20b760a3]{padding:.21333rem 0}.vote .vote-contain .scoreTitle[data-v-20b760a3]{text-align:center;padding:.32rem 0}.vote .vote-contain .vote-item[data-v-20b760a3]{padding:.21333rem 0}.vote .vote-contain .vote-item .vote-row[data-v-20b760a3]{display:flex;justify-content:space-between;align-items:center}.vote .vote-contain .vote-item .vote-row[data-v-20b760a3]:last-of-type{margin-top:.21333rem}.vote .vote-contain .vote-item .vote-row .ticket[data-v-20b760a3]{width:.53333rem;height:.53333rem}.vote .vote-contain .vote-item .vote-row .progress[data-v-20b760a3]{flex:1}.vote .vote-contain .vote-item .vote-row .vote-right[data-v-20b760a3]{width:1.6rem;text-align:center}.evaluate[data-v-20b760a3]{margin-top:.8rem;padding:.42667rem .64rem;background:#f8f8f8;border-radius:.21333rem}.evaluate .evaluate-contain[data-v-20b760a3]{line-height:.53333rem}.evaluate .evaluate-contain .title[data-v-20b760a3]{color:#0071ff}.evaluate .evaluate-bottom[data-v-20b760a3]{display:flex;align-items:center;justify-content:space-between;margin-top:.74667rem}.evaluate .evaluate-bottom .date[data-v-20b760a3]{color:#8e8f9e}.evaluate .evaluate-bottom .more[data-v-20b760a3]{color:#0071ff}.enclosurePopup[data-v-20b760a3]{padding:1.06667rem}.enclosurePopup .btn[data-v-20b760a3]{background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.enclosureBtn[data-v-20b760a3]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-20b760a3]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.users[data-v-20b760a3]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-20b760a3]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-20b760a3]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.publish[data-v-20b760a3]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-20b760a3]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-20b760a3]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.step .my-swipe .van-swipe-item[data-v-20b760a3]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem}.step .my-swipe .van-swipe-item[data-v-20b760a3]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.step .my-swipe .van-swipe-item .pitch-step-title[data-v-20b760a3]{font-weight:600;font-size:.34667rem!important}.step .my-swipe .van-swipe-item .step-item[data-v-20b760a3]{width:25%;display:inline-block;position:relative;box-sizing:border-box}.step .my-swipe .van-swipe-item .step-item.step-three[data-v-20b760a3]{width:25%}.step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-20b760a3]{text-align:right}.step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-20b760a3]{left:.10667rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-20b760a3]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:-60%;margin-left:20%}.step .my-swipe .van-swipe-item .step-item .stepImg[data-v-20b760a3]{position:relative;width:.72rem;height:.72rem}.step .my-swipe .van-swipe-item .step-item .line[data-v-20b760a3]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-20b760a3]{border-bottom-color:#8ccf8c!important}.step .my-swipe .van-swipe-item .step-item .step-title[data-v-20b760a3]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:5%;margin-left:-80%}.step .my-swipe[data-v-20b760a3] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.step .my-swipe[data-v-20b760a3] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.swiperSecond[data-v-20b760a3]{padding:.8rem .8rem .8rem .53333rem!important;display:flex}.swiperSecond .step-second[data-v-20b760a3]{width:30%!important}.swiperSecond .step-second.step-narrow[data-v-20b760a3]{width:25%!important}.swiperSecond .negativeDirection .step-title[data-v-20b760a3]{margin-right:-44%!important;margin-left:20%}.box[data-v-20b760a3]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box[data-v-20b760a3] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .inpu_conserf[data-v-20b760a3]{width:100%;display:flex;flex-wrap:wrap;align-items:center}.box .inpu_conserf .doceddw[data-v-20b760a3]{width:3.46667rem}.box .inpu_conserf div[data-v-20b760a3]{margin-bottom:.21333rem}.box .inpu_conserf div input[data-v-20b760a3]{width:4.10667rem;border:none;outline:none;background:#f8f8f8;padding:.21333rem .21333rem .21333rem .53333rem;border-radius:.45333rem}.box .inpu_conserf .van-icon[data-v-20b760a3]{margin-left:.10667rem;width:.64rem;height:.64rem;background-color:#e72e3a;color:#fff;border-radius:50%;display:flex;justify-content:center;align-items:center}.box .v_button[data-v-20b760a3]{width:2.4rem;height:.90667rem;border-radius:.10667rem;margin-left:.21333rem}.box .van-tabs[data-v-20b760a3]{flex:1;display:flex;flex-direction:column}.box .van-tabs[data-v-20b760a3] .van-tabs__content,.box .van-tabs[data-v-20b760a3] .van-tabs__content .van-tab__pane{height:100%}.box .van-tabs[data-v-20b760a3] .van-tabs__content .van-tab__pane .tab-contain{display:flex;flex-direction:column;height:100%}.box .van-tabs[data-v-20b760a3] .van-tabs__content .van-tab__pane .tab-contain .step-contain{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .van-tabs[data-v-20b760a3] .van-tabs__content .van-tab__pane .tab-contain .step-contain.bulletinBoard{padding-bottom:2.13333rem}.box .van-tabs[data-v-20b760a3] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .van-tabs[data-v-20b760a3] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}.box .van-tabs[data-v-20b760a3] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain{font-size:.42667rem}.box .van-tabs[data-v-20b760a3] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain p{margin-top:.26667rem}.box .van-tabs[data-v-20b760a3] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain p:first-of-type{margin-top:0}.box .van-tabs[data-v-20b760a3] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .input-ele{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .van-tabs[data-v-20b760a3] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .downIcon{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .van-tabs[data-v-20b760a3] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .enclosure{flex:1}.box .van-tabs[data-v-20b760a3] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn{margin:0 .42667rem;margin-top:3.2rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .van-tabs[data-v-20b760a3] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn .enclosureEnd{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}.tab-contain[data-v-20b760a3]{display:flex;flex-direction:column;height:100%}.tab-contain .step-contain[data-v-20b760a3]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.tab-contain .step-contain.bulletinBoard[data-v-20b760a3]{padding-bottom:2.13333rem}.tab-contain .step-contain .form-ele[data-v-20b760a3]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.tab-contain .step-contain .form-ele .title[data-v-20b760a3]{width:2.4rem;font-size:.42667rem;flex-shrink:0}.tab-contain .step-contain .form-ele .notice-contain[data-v-20b760a3]{font-size:.42667rem}.tab-contain .step-contain .form-ele .notice-contain p[data-v-20b760a3]{margin-top:.26667rem}.tab-contain .step-contain .form-ele .notice-contain p[data-v-20b760a3]:first-of-type{margin-top:0}.tab-contain .step-contain .form-ele .input-ele[data-v-20b760a3]{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.tab-contain .step-contain .form-ele .downIcon[data-v-20b760a3]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.tab-contain .step-contain .form-ele .enclosure[data-v-20b760a3]{flex:1}.tab-contain .step-contain .btn[data-v-20b760a3]{margin:0 .42667rem;margin-top:3.2rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.tab-contain .step-contain .btn .enclosureEnd[data-v-20b760a3]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-6841cede.4fd1bbf9.css b/src/main/resources/views/dist/css/chunk-6841cede.4fd1bbf9.css
new file mode 100644
index 0000000..da271be
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-6841cede.4fd1bbf9.css
@@ -0,0 +1 @@
+.van-field-inp[data-v-a0cd4576]{line-height:.53333rem;border-radius:.48rem;background:#f8f8f8;margin:.16rem 0}.form_el[data-v-a0cd4576]{width:100%;display:flex;align-items:baseline}.form_el .form_title[data-v-a0cd4576]{font-size:.42667rem;line-height:.53333rem;flex-shrink:0}.form_el .form_text[data-v-a0cd4576]{margin-top:.10667rem;display:flex;align-items:baseline}.form_el .form_text .form_input .form_item[data-v-a0cd4576]{margin-top:.37333rem;width:100%;display:flex;flex-wrap:wrap;margin-bottom:.10667rem}.form_el .form_text .form_input .form_item .van-field[data-v-a0cd4576]{width:6.4rem;border-radius:.48rem;background:#f8f8f8}.form_el .form_text .form_input .form_item .form_ele[data-v-a0cd4576]{margin-top:.37333rem;display:flex}.form_el .form_text .form_input .form_item .form_ele input[data-v-a0cd4576]{width:4.8rem;outline:none;border:none;text-indent:1em;border-radius:.64rem;background:#f8f8f8}.form_el .form_text .form_input .form_item .form_ele .van-button[data-v-a0cd4576]{width:3.2rem;height:.90667rem}.form_el .form_text .plus[data-v-a0cd4576]{top:.21333rem}p[data-v-a0cd4576]{line-height:1.8}.publish[data-v-a0cd4576]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-a0cd4576]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-a0cd4576]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.plus_add[data-v-a0cd4576]{display:flex;align-items:flex-end}.plus_add .plus_addSe[data-v-a0cd4576]{width:75%;display:flex;flex-wrap:wrap}.plus_add .plus_addSe .input-ele[data-v-a0cd4576]{width:100%!important;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.plus[data-v-a0cd4576]{margin-bottom:.21333rem;padding:.10667rem;background:#e72e3a;border-radius:50%}.users[data-v-a0cd4576]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-a0cd4576]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-a0cd4576]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.box[data-v-a0cd4576]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box .step .my-swipe .van-swipe-item[data-v-a0cd4576]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem;display:flex}.box .step .my-swipe .van-swipe-item[data-v-a0cd4576]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.box .step .my-swipe .van-swipe-item .pitch-step-title[data-v-a0cd4576]{font-weight:600;font-size:.34667rem!important}.box .step .my-swipe .van-swipe-item .step-item[data-v-a0cd4576]{width:35%;display:inline-block;position:relative;box-sizing:border-box}.box .step .my-swipe .van-swipe-item .step-item.step-three[data-v-a0cd4576]{width:30%}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-a0cd4576]{width:40%;text-align:right}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-a0cd4576]{left:.10667rem;top:.32rem}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-a0cd4576]{font-size:.32rem;line-height:.48rem;margin-top:.32rem;text-align:center;margin-right:-48%;margin-left:20%}.box .step .my-swipe .van-swipe-item .step-item .stepImg[data-v-a0cd4576]{position:relative;width:.72rem;height:.72rem}.box .step .my-swipe .van-swipe-item .step-item .line[data-v-a0cd4576]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.box .step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-a0cd4576]{border-bottom-color:#8ccf8c!important}.box .step .my-swipe .van-swipe-item .step-item .step-title[data-v-a0cd4576]{font-size:.32rem;line-height:.48rem;margin-top:.32rem;text-align:center;margin-right:8%;margin-left:-70%}.box .step .my-swipe[data-v-a0cd4576] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.box .step .my-swipe[data-v-a0cd4576] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.box .step-contain[data-v-a0cd4576]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .step-contain .form-ele[data-v-a0cd4576]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .step-contain .form-ele .title[data-v-a0cd4576]{width:3.2rem;font-size:.42667rem;line-height:.53333rem;flex-shrink:0}.box .step-contain .form-ele .notice-contain[data-v-a0cd4576]{font-size:.42667rem}.box .step-contain .form-ele .input-ele[data-v-a0cd4576]{width:100%;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .step-contain .form-ele .downIcon[data-v-a0cd4576]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .step-contain .form-ele .enclosure[data-v-a0cd4576]{flex:1}.box .step-contain .btn[data-v-a0cd4576]{margin:0 .42667rem;margin-top:1.6rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .step-contain .btn .enclosureEnd[data-v-a0cd4576]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}.enclosureBtn[data-v-a0cd4576]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-a0cd4576]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.evaluate[data-v-a0cd4576]{margin-top:.8rem;padding:.42667rem .64rem;background:#f8f8f8;border-radius:.21333rem}.evaluate .evaluate-contain[data-v-a0cd4576]{line-height:.53333rem}.evaluate .evaluate-contain .title[data-v-a0cd4576]{color:#0071ff}.evaluate .evaluate-bottom[data-v-a0cd4576]{display:flex;align-items:center;justify-content:space-between;margin-top:.74667rem}.evaluate .evaluate-bottom .date[data-v-a0cd4576]{color:#8e8f9e}.evaluate .evaluate-bottom .more[data-v-a0cd4576]{color:#0071ff}.sending .van-popup[data-v-a0cd4576]{background:none}.send-content[data-v-a0cd4576]{overflow:hidden;width:8rem;border:none;display:flex;background-color:none;flex-direction:column;align-items:center}.send-content .send-con[data-v-a0cd4576]{overflow:hidden;background-color:#fff;padding-bottom:.53333rem}.send-content .send-con .sent-form[data-v-a0cd4576]{display:flex;flex-direction:column;align-items:center}.send-content .send-con .sent-form[data-v-a0cd4576] .van-cell-group{margin-top:.26667rem}.send-content .send-con .sent-form[data-v-a0cd4576] .van-cell-group .van-field .label-text{font-size:.42667rem;line-height:.53333rem;color:#000;flex-shrink:0}.send-content .send-con .sent-form .inpour[data-v-a0cd4576] .van-field .van-field__body input{padding:.10667rem .05333rem;border-radius:.64rem;background:#f6f6f6}.send-content .send-con .sent-form .van-button[data-v-a0cd4576]{width:80%;margin:.21333rem 0}.send-content .send-con .sent-form .van-button[data-v-a0cd4576]:first-of-type{margin-top:.53333rem}.send-content .close[data-v-a0cd4576]{margin-top:.26667rem}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-6cf0fa35.e696e8a0.css b/src/main/resources/views/dist/css/chunk-6cf0fa35.e696e8a0.css
new file mode 100644
index 0000000..23c76ac
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-6cf0fa35.e696e8a0.css
@@ -0,0 +1 @@
+.van-field-inp[data-v-c89da3c6]{line-height:.53333rem;border-radius:.48rem;background:#f8f8f8;margin:.16rem 0}.form_el[data-v-c89da3c6]{width:100%;display:flex;align-items:baseline}.form_el .form_title[data-v-c89da3c6]{font-size:.42667rem;line-height:.53333rem;flex-shrink:0}.form_el .form_text[data-v-c89da3c6]{margin-top:.10667rem;display:flex;align-items:baseline}.form_el .form_text .form_input .form_item[data-v-c89da3c6]{margin-top:.37333rem;width:100%;display:flex;flex-wrap:wrap;margin-bottom:.10667rem}.form_el .form_text .form_input .form_item .van-field[data-v-c89da3c6]{width:6.4rem;border-radius:.48rem;background:#f8f8f8}.form_el .form_text .form_input .form_item .form_ele[data-v-c89da3c6]{margin-top:.37333rem;display:flex}.form_el .form_text .form_input .form_item .form_ele input[data-v-c89da3c6]{width:4.8rem;outline:none;border:none;text-indent:1em;border-radius:.64rem;background:#f8f8f8}.form_el .form_text .form_input .form_item .form_ele .van-button[data-v-c89da3c6]{width:3.2rem;height:.90667rem}.form_el .form_text .plus[data-v-c89da3c6]{top:.21333rem}p[data-v-c89da3c6]{line-height:1.8}.publish[data-v-c89da3c6]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-c89da3c6]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-c89da3c6]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.plus_add[data-v-c89da3c6]{display:flex;align-items:flex-end}.plus_add .plus_addSe[data-v-c89da3c6]{width:75%;display:flex;flex-wrap:wrap}.plus_add .plus_addSe .input-ele[data-v-c89da3c6]{width:100%!important;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.plus[data-v-c89da3c6]{margin-bottom:.21333rem;padding:.10667rem;background:#e72e3a;border-radius:50%}.users[data-v-c89da3c6]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-c89da3c6]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-c89da3c6]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.box[data-v-c89da3c6]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box .step .my-swipe .van-swipe-item[data-v-c89da3c6]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem;display:flex}.box .step .my-swipe .van-swipe-item[data-v-c89da3c6]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.box .step .my-swipe .van-swipe-item .pitch-step-title[data-v-c89da3c6]{font-weight:600;font-size:.34667rem!important}.box .step .my-swipe .van-swipe-item .step-item[data-v-c89da3c6]{width:35%;display:inline-block;position:relative;box-sizing:border-box}.box .step .my-swipe .van-swipe-item .step-item.step-three[data-v-c89da3c6]{width:30%}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-c89da3c6]{width:40%;text-align:right}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-c89da3c6]{left:.10667rem;top:.32rem}.box .step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-c89da3c6]{font-size:.32rem;line-height:.48rem;margin-top:.32rem;text-align:center;margin-right:-48%;margin-left:20%}.box .step .my-swipe .van-swipe-item .step-item .stepImg[data-v-c89da3c6]{position:relative;width:.72rem;height:.72rem}.box .step .my-swipe .van-swipe-item .step-item .line[data-v-c89da3c6]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.box .step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-c89da3c6]{border-bottom-color:#8ccf8c!important}.box .step .my-swipe .van-swipe-item .step-item .step-title[data-v-c89da3c6]{font-size:.32rem;line-height:.48rem;margin-top:.32rem;text-align:center;margin-right:8%;margin-left:-70%}.box .step .my-swipe[data-v-c89da3c6] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.box .step .my-swipe[data-v-c89da3c6] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.box .step-contain[data-v-c89da3c6]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .step-contain .form-ele[data-v-c89da3c6]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .step-contain .form-ele .title[data-v-c89da3c6]{width:3.2rem;font-size:.42667rem;line-height:.53333rem;flex-shrink:0}.box .step-contain .form-ele .notice-contain[data-v-c89da3c6]{font-size:.42667rem}.box .step-contain .form-ele .input-ele[data-v-c89da3c6]{width:100%;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .step-contain .form-ele .downIcon[data-v-c89da3c6]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .step-contain .form-ele .enclosure[data-v-c89da3c6]{flex:1}.box .step-contain .btn[data-v-c89da3c6]{margin:0 .42667rem;margin-top:1.6rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .step-contain .btn .enclosureEnd[data-v-c89da3c6]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}.enclosureBtn[data-v-c89da3c6]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-c89da3c6]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.evaluate[data-v-c89da3c6]{margin-top:.8rem;padding:.42667rem .64rem;background:#f8f8f8;border-radius:.21333rem}.evaluate .evaluate-contain[data-v-c89da3c6]{line-height:.53333rem}.evaluate .evaluate-contain .title[data-v-c89da3c6]{color:#0071ff}.evaluate .evaluate-bottom[data-v-c89da3c6]{display:flex;align-items:center;justify-content:space-between;margin-top:.74667rem}.evaluate .evaluate-bottom .date[data-v-c89da3c6]{color:#8e8f9e}.evaluate .evaluate-bottom .more[data-v-c89da3c6]{color:#0071ff}.sending .van-popup[data-v-c89da3c6]{background:none}.send-content[data-v-c89da3c6]{overflow:hidden;width:8rem;border:none;display:flex;background-color:none;flex-direction:column;align-items:center}.send-content .send-con[data-v-c89da3c6]{overflow:hidden;background-color:#fff;padding-bottom:.53333rem}.send-content .send-con .sent-form[data-v-c89da3c6]{display:flex;flex-direction:column;align-items:center}.send-content .send-con .sent-form[data-v-c89da3c6] .van-cell-group{margin-top:.26667rem}.send-content .send-con .sent-form[data-v-c89da3c6] .van-cell-group .van-field .label-text{font-size:.42667rem;line-height:.53333rem;color:#000;flex-shrink:0}.send-content .send-con .sent-form .inpour[data-v-c89da3c6] .van-field .van-field__body input{padding:.10667rem .05333rem;border-radius:.64rem;background:#f6f6f6}.send-content .send-con .sent-form .van-button[data-v-c89da3c6]{width:80%;margin:.21333rem 0}.send-content .send-con .sent-form .van-button[data-v-c89da3c6]:first-of-type{margin-top:.53333rem}.send-content .close[data-v-c89da3c6]{margin-top:.26667rem}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-6d83b010.05eb5d71.css b/src/main/resources/views/dist/css/chunk-6d83b010.05eb5d71.css
deleted file mode 100644
index a768553..0000000
--- a/src/main/resources/views/dist/css/chunk-6d83b010.05eb5d71.css
+++ /dev/null
@@ -1 +0,0 @@
-.flex-align-center[data-v-e36a57d0]{display:flex;align-items:center}.browse_image[data-v-e36a57d0]{width:2.13333rem;height:2.13333rem}[data-v-e36a57d0] .from_el{display:flex;align-items:center}[data-v-e36a57d0] .from_el .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}[data-v-e36a57d0] .from_el .enclosure{margin-top:.53333rem}[data-v-e36a57d0] .from_el .enclosureBtn{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}[data-v-e36a57d0] .from_el .enclosureBtn .enclosureImg{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.preview-cover[data-v-e36a57d0]{position:absolute;bottom:0;box-sizing:border-box;width:100%;padding:.10667rem;color:#fff;font-size:.32rem;text-align:center;background:rgba(0,0,0,.3)}.browse[data-v-e36a57d0]{margin:.26667rem 0}.browse .browse_delet[data-v-e36a57d0]{width:100%;text-align:right;font-size:.42667rem}.browse .imagesee[data-v-e36a57d0]{width:2.66667rem}.coloreee div[data-v-5f2e13fb]{font-size:.37333rem}.coloreee div p[data-v-5f2e13fb]{margin-left:1em;line-height:.61333rem}[data-v-5f2e13fb] .Announcement{margin-left:-.4rem;font-size:.42667rem;flex-shrink:0;color:#333}[data-v-5f2e13fb] .checkGos{width:5.86667rem}.van-field-inp[data-v-5f2e13fb]{line-height:.53333rem;border-radius:.48rem;background:#f8f8f8}.int[data-v-5f2e13fb]{width:6.66667rem}.fileList1List[data-v-5f2e13fb]{background-color:#f7f8fa;width:2.13333rem;height:2.13333rem}.fileList1List img[data-v-5f2e13fb]{width:.53333rem;height:.53333rem;margin-left:.8rem;margin-top:.50667rem}.fileList1List h4[data-v-5f2e13fb]{height:.37333rem;margin-top:.21333rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-left:.13333rem}.report .report-title[data-v-5f2e13fb]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem;color:#333}.report .report-contain[data-v-5f2e13fb]{padding:.42667rem 0}.report .report-contain .word[data-v-5f2e13fb]{font-size:.42667rem;line-height:.53333rem}.report .report-contain .date[data-v-5f2e13fb]{color:#333;font-size:.32rem;margin-top:.42667rem}.vote .vote-title[data-v-5f2e13fb]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem}.vote .vote-title .voteImg[data-v-5f2e13fb]{width:.48rem;height:.42667rem;margin-right:.26667rem;vertical-align:bottom}.vote .vote-contain[data-v-5f2e13fb]{padding:.21333rem 0}.vote .vote-contain .scoreTitle[data-v-5f2e13fb]{text-align:center;padding:.32rem 0}.vote .vote-contain .vote-item[data-v-5f2e13fb]{padding:.21333rem 0}.vote .vote-contain .vote-item .vote-row[data-v-5f2e13fb]{display:flex;justify-content:space-between;align-items:center}.vote .vote-contain .vote-item .vote-row[data-v-5f2e13fb]:last-of-type{margin-top:.21333rem}.vote .vote-contain .vote-item .vote-row .ticket[data-v-5f2e13fb]{width:.53333rem;height:.53333rem}.vote .vote-contain .vote-item .vote-row .progress[data-v-5f2e13fb]{flex:1}.vote .vote-contain .vote-item .vote-row .vote-right[data-v-5f2e13fb]{width:1.6rem;text-align:center}.evaluate[data-v-5f2e13fb]{margin-top:.8rem;padding:.42667rem .64rem;background:#f8f8f8;border-radius:.21333rem}.evaluate .evaluate-contain[data-v-5f2e13fb]{line-height:.53333rem}.evaluate .evaluate-contain .title[data-v-5f2e13fb]{color:#0071ff}.evaluate .evaluate-bottom[data-v-5f2e13fb]{display:flex;align-items:center;justify-content:space-between;margin-top:.74667rem}.evaluate .evaluate-bottom .date[data-v-5f2e13fb]{color:#8e8f9e}.evaluate .evaluate-bottom .more[data-v-5f2e13fb]{color:#0071ff}.enclosurePopup[data-v-5f2e13fb]{padding:1.06667rem}.enclosurePopup .btn[data-v-5f2e13fb]{background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.enclosureBtn[data-v-5f2e13fb]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-5f2e13fb]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.users[data-v-5f2e13fb]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-5f2e13fb]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-5f2e13fb]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.publish[data-v-5f2e13fb]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-5f2e13fb]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-5f2e13fb]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.step .my-swipe .van-swipe-item[data-v-5f2e13fb]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem}.step .my-swipe .van-swipe-item[data-v-5f2e13fb]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.step .my-swipe .van-swipe-item .pitch-step-title[data-v-5f2e13fb]{font-weight:600;font-size:.34667rem!important}.step .my-swipe .van-swipe-item .step-item[data-v-5f2e13fb]{width:25%;display:inline-block;position:relative;box-sizing:border-box}.step .my-swipe .van-swipe-item .step-item.step-three[data-v-5f2e13fb]{width:25%}.step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-5f2e13fb]{text-align:right}.step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-5f2e13fb]{left:.10667rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-5f2e13fb]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:-60%;margin-left:20%}.step .my-swipe .van-swipe-item .step-item .stepImg[data-v-5f2e13fb]{position:relative;width:.72rem;height:.72rem}.step .my-swipe .van-swipe-item .step-item .line[data-v-5f2e13fb]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-5f2e13fb]{border-bottom-color:#8ccf8c!important}.step .my-swipe .van-swipe-item .step-item .step-title[data-v-5f2e13fb]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:5%;margin-left:-80%}.step .my-swipe[data-v-5f2e13fb] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.step .my-swipe[data-v-5f2e13fb] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.swiperSecond[data-v-5f2e13fb]{padding:.8rem .8rem .8rem .53333rem!important;display:flex}.swiperSecond .step-second[data-v-5f2e13fb]{width:30%!important}.swiperSecond .step-second.step-narrow[data-v-5f2e13fb]{width:25%!important}.swiperSecond .negativeDirection .step-title[data-v-5f2e13fb]{margin-right:-44%!important;margin-left:20%}.box[data-v-5f2e13fb]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box[data-v-5f2e13fb] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .inpu_conserf[data-v-5f2e13fb]{width:100%;display:flex;flex-wrap:wrap;align-items:center}.box .inpu_conserf .doceddw[data-v-5f2e13fb]{width:3.46667rem}.box .inpu_conserf div[data-v-5f2e13fb]{margin-bottom:.21333rem}.box .inpu_conserf div input[data-v-5f2e13fb]{width:4.10667rem;border:none;outline:none;background:#f8f8f8;padding:.21333rem .21333rem .21333rem .53333rem;border-radius:.45333rem}.box .inpu_conserf .van-icon[data-v-5f2e13fb]{margin-left:.10667rem;width:.64rem;height:.64rem;background-color:#e72e3a;color:#fff;border-radius:50%;display:flex;justify-content:center;align-items:center}.box .v_button[data-v-5f2e13fb]{width:2.4rem;height:.90667rem;border-radius:.10667rem;margin-left:.21333rem}.box .van-tabs[data-v-5f2e13fb]{flex:1;display:flex;flex-direction:column}.box .van-tabs[data-v-5f2e13fb] .van-tabs__content,.box .van-tabs[data-v-5f2e13fb] .van-tabs__content .van-tab__pane{height:100%}.box .van-tabs[data-v-5f2e13fb] .van-tabs__content .van-tab__pane .tab-contain{display:flex;flex-direction:column;height:100%}.box .van-tabs[data-v-5f2e13fb] .van-tabs__content .van-tab__pane .tab-contain .step-contain{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .van-tabs[data-v-5f2e13fb] .van-tabs__content .van-tab__pane .tab-contain .step-contain.bulletinBoard{padding-bottom:2.13333rem}.box .van-tabs[data-v-5f2e13fb] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .van-tabs[data-v-5f2e13fb] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}.box .van-tabs[data-v-5f2e13fb] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain{font-size:.42667rem}.box .van-tabs[data-v-5f2e13fb] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain p{margin-top:.26667rem}.box .van-tabs[data-v-5f2e13fb] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain p:first-of-type{margin-top:0}.box .van-tabs[data-v-5f2e13fb] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .input-ele{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .van-tabs[data-v-5f2e13fb] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .downIcon{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .van-tabs[data-v-5f2e13fb] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .enclosure{flex:1}.box .van-tabs[data-v-5f2e13fb] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn{margin:0 .42667rem;margin-top:3.2rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .van-tabs[data-v-5f2e13fb] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn .enclosureEnd{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}.tab-contain[data-v-5f2e13fb]{display:flex;flex-direction:column;height:100%}.tab-contain .step-contain[data-v-5f2e13fb]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.tab-contain .step-contain.bulletinBoard[data-v-5f2e13fb]{padding-bottom:2.13333rem}.tab-contain .step-contain .form-ele[data-v-5f2e13fb]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.tab-contain .step-contain .form-ele .title[data-v-5f2e13fb]{width:2.4rem;font-size:.42667rem;flex-shrink:0}.tab-contain .step-contain .form-ele .notice-contain[data-v-5f2e13fb]{font-size:.42667rem}.tab-contain .step-contain .form-ele .notice-contain p[data-v-5f2e13fb]{margin-top:.26667rem}.tab-contain .step-contain .form-ele .notice-contain p[data-v-5f2e13fb]:first-of-type{margin-top:0}.tab-contain .step-contain .form-ele .input-ele[data-v-5f2e13fb]{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.tab-contain .step-contain .form-ele .downIcon[data-v-5f2e13fb]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.tab-contain .step-contain .form-ele .enclosure[data-v-5f2e13fb]{flex:1}.tab-contain .step-contain .btn[data-v-5f2e13fb]{margin:0 .42667rem;margin-top:3.2rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.tab-contain .step-contain .btn .enclosureEnd[data-v-5f2e13fb]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-6e8eeb9a.05561a18.css b/src/main/resources/views/dist/css/chunk-6e8eeb9a.05561a18.css
new file mode 100644
index 0000000..5ecfdfa
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-6e8eeb9a.05561a18.css
@@ -0,0 +1 @@
+.unread[data-v-2074c082]{font-size:.37333rem!important;letter-spacing:.02667rem!important}.navBar[data-v-2074c082]{position:relative}.behalf[data-v-2074c082]{position:absolute;top:0;left:.42667rem;height:1.22667rem;line-height:1.22667rem;font-size:.37333rem!important;letter-spacing:.02667rem!important;color:#fff;z-index:999}.menu[data-v-2074c082]{display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff;margin-bottom:.32rem}.menu .item[data-v-2074c082]{width:25%;padding:.21333rem 0;text-align:center}.menu .item img[data-v-2074c082]{display:block;margin:0 auto;width:1.28rem}.menu .item .title[data-v-2074c082]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.menu.rddb .item[data-v-2074c082]{width:33.33%}.menuAdmin[data-v-2074c082]{width:94%;margin:.4rem 3%;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.menuAdmin .item[data-v-2074c082]{width:25%;padding:.21333rem 0;text-align:center}.menuAdmin .item img[data-v-2074c082]{display:block;margin:0 auto;width:1.12rem}.menuAdmin .item .title[data-v-2074c082]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.tabMenu[data-v-2074c082]{width:94%;margin:0 3% .4rem;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.tabMenu .title[data-v-2074c082]{width:33.33%}.tabMenu .title img[data-v-2074c082]{display:block;margin:0 auto;width:70%}.tabMenu .title .line[data-v-2074c082]{display:block;margin:0 auto;width:40%;height:.05333rem;margin-top:.13333rem;background-color:#ba2916}.tabMenu .item[data-v-2074c082]{width:33.33%;padding:.21333rem 0;margin-top:.26667rem;text-align:center}.tabMenu .item img[data-v-2074c082]{display:block;margin:0 auto;width:1.12rem}.tabMenu .item .title[data-v-2074c082]{width:1.6rem;margin:0 auto;font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.more-menu[data-v-2074c082]{display:flex;flex-wrap:wrap;padding:.85333rem 0 1.38667rem}.more-menu .item[data-v-2074c082]{flex:1;padding:.21333rem 0;text-align:center}.more-menu .item img[data-v-2074c082]{display:block;margin:0 auto;width:.96rem}.more-menu .item .title[data-v-2074c082]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.box[data-v-2074c082]{background-color:#fff;margin-bottom:.32rem}.box>.title[data-v-2074c082]{display:flex;align-items:center;padding:.53333rem .42667rem .64rem}.box>.title[data-v-2074c082]:before{content:"";display:block;width:.10667rem;height:.42667rem;background-color:#d03a29;margin-right:.21333rem}.box>.title .title_text[data-v-2074c082]{font-size:.48rem;color:#333;font-weight:700}.box>.title .more[data-v-2074c082]{margin-left:auto;font-size:.37333rem;color:#999}.statistics table[data-v-2074c082]{table-layout:fixed;border-collapse:separate;width:100%;border-left:.02667rem solid #f4f4f4;border-top:.02667rem solid #f4f4f4}.statistics table td[data-v-2074c082]{padding:.32rem .53333rem;border-right:.02667rem solid #f4f4f4;border-bottom:.02667rem solid #f4f4f4}.statistics table td .label[data-v-2074c082]{font-size:.32rem;color:#999;line-height:.45333rem}.statistics table td .value[data-v-2074c082]{font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700;margin-top:.10667rem}.approval .item[data-v-2074c082]{position:relative;padding:.42667rem}.approval .item[data-v-2074c082]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval .item .head[data-v-2074c082]{display:flex}.approval .item .head .title[data-v-2074c082]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.approval .item .head .icon[data-v-2074c082]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval .item .content[data-v-2074c082]{font-size:.37333rem;color:#999;line-height:.53333rem;margin-top:.21333rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval .item .bottom_text[data-v-2074c082]{display:flex;flex-wrap:wrap;margin-top:.10667rem;font-size:.32rem;color:#999;line-height:.45333rem}.approval .item .bottom_text .date[data-v-2074c082]{margin-right:1.06667rem}.approval2 .item[data-v-2074c082]{position:relative;padding:.42667rem}.approval2 .item[data-v-2074c082]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval2 .item .head[data-v-2074c082]{display:flex}.approval2 .item .head .title[data-v-2074c082]{flex:1;font-size:.42667rem;color:#333;line-height:.53333rem;font-weight:700}.approval2 .item .head .icon[data-v-2074c082]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval2 .item .content[data-v-2074c082]{font-size:.37333rem;color:#333;line-height:.53333rem;margin-top:.32rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval2 .item .date[data-v-2074c082]{margin-top:.21333rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .date .label[data-v-2074c082]{margin-right:.21333rem}.approval2 .item .state[data-v-2074c082]{margin-top:.10667rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .state .label[data-v-2074c082]{margin-right:.21333rem}.approval2 .item .state .value[data-v-2074c082]{font-weight:700}.approval2 .item .state .value.blue[data-v-2074c082]{color:#1e78ff}.approval2 .item .state .value.green[data-v-2074c082]{color:#09a709}.approval2 .item .state .value.red[data-v-2074c082]{color:#d03a29}.file .item[data-v-2074c082]{position:relative;padding:.32rem .26667rem;display:flex;align-items:center}.file .item[data-v-2074c082]:not(:last-child):after{content:"";position:absolute;bottom:0;left:2.08rem;right:0;height:.02667rem;background-color:#f3f3f3}.file .item .icon[data-v-2074c082]{width:1.49333rem;margin-right:.32rem}.file .item .name[data-v-2074c082]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700;margin-bottom:.10667rem}.file .item .content[data-v-2074c082]{font-size:.32rem;color:#999;line-height:.45333rem;display:flex}.file .item .content .user[data-v-2074c082]{margin-right:.32rem}.notice .item[data-v-2074c082]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.notice .item[data-v-2074c082]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.notice .item .tag[data-v-2074c082]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.notice .item .title[data-v-2074c082]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.notice .item .icon[data-v-2074c082]{margin-left:.8rem;font-size:.32rem}.active .item[data-v-2074c082]{padding:.42667rem;position:relative}.active .item[data-v-2074c082]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.active .item .title[data-v-2074c082]{font-weight:700;display:flex;align-items:center}.active .item .title .text[data-v-2074c082]{font-size:.42667rem;color:#333;line-height:.58667rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .title .van-tag[data-v-2074c082]{width:1.70667rem;border-radius:.32rem;justify-content:center;line-height:.53333rem;margin-left:.10667rem;white-space:nowrap;font-weight:700}.active .item .detail[data-v-2074c082]{margin-top:.32rem}.active .item .detail .cell[data-v-2074c082]{display:flex;font-size:.32rem}.active .item .detail .cell[data-v-2074c082]:not(:last-child){margin-bottom:.10667rem}.active .item .detail .cell .label[data-v-2074c082]{color:#999;margin-right:.21333rem}.active .item .detail .cell .value[data-v-2074c082]{height:.42667rem;flex:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:.32rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#999;line-height:.42667rem}.active .item .detail .cell .value[data-v-2074c082] b{font-weight:400!important}.active .item .detail .cell .value[data-v-2074c082] div{margin:0!important;padding:0!important}.active .item .detail .cell .value[data-v-2074c082] img{display:none!important}.active .item .detail .cell .value[data-v-2074c082] p,.active .item .detail .cell .value[data-v-2074c082] span{margin:0!important;padding:0!important;font-size:.32rem!important;line-height:normal!important;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .foot[data-v-2074c082]{margin-top:.32rem;display:flex;justify-content:space-between;align-items:center;font-size:.32rem;color:#999;line-height:.45333rem}.active .item .foot .van-icon[data-v-2074c082]{margin-left:.10667rem;vertical-align:middle}.active .item .more[data-v-2074c082]{padding-top:.32rem;border-top:.02667rem solid #f8f8f8}.active .item .enclosure[data-v-2074c082]{margin-top:.21333rem}.active .item .enclosure .item[data-v-2074c082]{background-color:#f8f8f8;padding:.26667rem .42667rem;display:flex;align-items:center}.active .item .enclosure .item .detail[data-v-2074c082]{flex:1}.active .item .enclosure .item .detail .name[data-v-2074c082]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.active .item .enclosure .item .detail .size[data-v-2074c082]{font-size:.32rem;color:#333;line-height:.45333rem;margin-top:.10667rem}.active .item .enclosure .item .icon[data-v-2074c082]{width:1.49333rem}.active .item .imgs[data-v-2074c082]{display:flex;margin-top:.21333rem}.active .item .imgs .img[data-v-2074c082]{flex:1;border-radius:.10667rem;overflow:hidden}.active .item .imgs .img+.img[data-v-2074c082]{margin-left:.10667rem}.active .item .imgs .img img[data-v-2074c082]{max-height:2.66667rem;display:block;width:100%}.active .item .van-button[data-v-2074c082]{background-color:#fff;border:.02667rem solid #d03a29;border-radius:.32rem;height:.61333rem;width:1.70667rem;font-size:.32rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#d03a29;padding:0 .32rem;margin-top:.32rem}.active .item .van-button .van-icon[data-v-2074c082]{vertical-align:middle}.votersNav[data-v-2074c082]{display:flex;justify-content:space-between;padding:.53333rem .53333rem 0;width:100%;background-color:#fff;margin-bottom:.32rem;margin:15rpx 3%}.votersNav .items .imgBox[data-v-2074c082]{display:flex;justify-content:center}.votersNav .items .imgBox img[data-v-2074c082]{width:1.22667rem;height:1.22667rem}.votersNav .items .title[data-v-2074c082]{font-size:.42667rem;margin-top:.26667rem}.civilian[data-v-2074c082]{background-color:#fff;margin-bottom:.32rem}.civilian .banner[data-v-2074c082]{width:100%;display:block}.civilian .user[data-v-2074c082]{position:relative;margin:-1.06667rem .53333rem 0;border-radius:.10667rem;background-color:#fff;box-shadow:0 .08rem .26667rem 0 rgba(0,0,0,.08);display:flex;align-items:center;padding:.42667rem .53333rem .48rem}.civilian .user .avatar[data-v-2074c082]{position:relative;margin-right:.32rem}.civilian .user .avatar img[data-v-2074c082]{width:1.22667rem;height:1.22667rem;-o-object-fit:cover;object-fit:cover;border-radius:50%}.civilian .user .avatar .badge[data-v-2074c082]{position:absolute;top:.10667rem;right:.10667rem;min-width:.42667rem;padding:0 .08rem;font-size:.32rem;color:#fff;line-height:.42667rem;text-align:center;border-radius:.42667rem;background-color:#d03a29;transform:translate(50%,-50%)}.civilian .user .name[data-v-2074c082]{flex:1;font-size:.37333rem;color:#333;font-weight:700}.civilian .user .link[data-v-2074c082]{font-size:.37333rem;color:#d03a29;font-weight:700}.civilian .user .link .van-icon[data-v-2074c082]{margin-left:.10667rem;vertical-align:middle}.civilian .civilian-menu[data-v-2074c082]{padding:.32rem}.civilian .civilian-menu .item[data-v-2074c082]{position:relative}.civilian .civilian-menu .item[data-v-2074c082]:not(:last-child){margin-bottom:.32rem}.civilian .civilian-menu .item .bg-img[data-v-2074c082]{position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.civilian .civilian-menu .item .content[data-v-2074c082]{padding:.53333rem .64rem;position:relative}.civilian .civilian-menu .item .content .title[data-v-2074c082]{font-size:.42667rem;color:#fff;line-height:.58667rem;font-weight:700}.civilian .civilian-menu .item .content .btn[data-v-2074c082]{margin-top:.29333rem;background-color:#fff;padding:.13333rem .32rem;border-radius:.37333rem;height:.74667rem;display:inline-flex;align-items:center;font-size:.32rem;color:#f6331d;font-weight:700}.civilian .civilian-menu .item .content .btn .van-icon[data-v-2074c082]{margin-left:.08rem}.grassrootsNews .item[data-v-2074c082]{position:relative;padding:.4rem .42667rem;display:flex}.grassrootsNews .item[data-v-2074c082]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.grassrootsNews .item .info[data-v-2074c082]{width:0;flex:1}.grassrootsNews .item .info .title[data-v-2074c082]{flex:1;font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.grassrootsNews .item .info .text[data-v-2074c082]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.grassrootsNews .item .img[data-v-2074c082]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.opinionBox .opinionArrow[data-v-2074c082]{color:#ccc;font-size:.475rem}.opinionBox .opinionArrow[data-v-2074c082]:before{position:relative;top:50%;left:50%;transform:translate(-50%,-51%)}.news[data-v-2074c082]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-2074c082]:last-of-type{border-bottom:none}.newList[data-v-2074c082]{display:flex;justify-content:space-between;padding:.42667rem 0}.newList .newleft[data-v-2074c082]{display:flex;flex-direction:column;justify-content:space-between}.newList .newleft .newtitle[data-v-2074c082]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.newList .newleft .newdate[data-v-2074c082]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.newList .newimg[data-v-2074c082]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-6fd4f146.7485fd60.css b/src/main/resources/views/dist/css/chunk-6fd4f146.7485fd60.css
deleted file mode 100644
index c2a4d05..0000000
--- a/src/main/resources/views/dist/css/chunk-6fd4f146.7485fd60.css
+++ /dev/null
@@ -1 +0,0 @@
-.flex-align-center[data-v-59c3b728]{display:flex;align-items:center}.browse_image[data-v-59c3b728]{width:2.13333rem;height:2.13333rem}[data-v-59c3b728] .from_el{display:flex;align-items:center}[data-v-59c3b728] .from_el .title{width:3.2rem;font-size:.42667rem;flex-shrink:0}[data-v-59c3b728] .from_el .enclosure{margin-top:.53333rem}[data-v-59c3b728] .from_el .enclosureBtn{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}[data-v-59c3b728] .from_el .enclosureBtn .enclosureImg{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.preview-cover[data-v-59c3b728]{position:absolute;bottom:0;box-sizing:border-box;width:100%;padding:.10667rem;color:#fff;font-size:.32rem;text-align:center;background:rgba(0,0,0,.3)}.browse[data-v-59c3b728]{margin:.26667rem 0}.browse .browse_delet[data-v-59c3b728]{width:100%;text-align:right;font-size:.42667rem}.browse .imagesee[data-v-59c3b728]{width:2.66667rem}.van-button[data-v-e5d41188]{padding:.42667rem .85333rem;border-radius:.21333rem}.fileList1List[data-v-e5d41188]{background-color:#f7f8fa;width:2.13333rem;height:2.13333rem}.fileList1List img[data-v-e5d41188]{width:.53333rem;height:.53333rem;margin-left:.8rem;margin-top:.50667rem}.fileList1List h4[data-v-e5d41188]{height:.37333rem;margin-top:.21333rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-left:.13333rem}.publish[data-v-e5d41188]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-e5d41188]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-e5d41188]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.users[data-v-e5d41188]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-e5d41188]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-e5d41188]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.step .my-swipe .van-swipe-item[data-v-e5d41188]{height:4rem;box-sizing:border-box;padding:.8rem 0 .8rem 1.06667rem;display:flex;align-items:baseline;justify-content:space-between}.step .my-swipe .van-swipe-item .pitch-step-title[data-v-e5d41188]{font-weight:600;font-size:.34667rem!important}.step .my-swipe .van-swipe-item .step-item[data-v-e5d41188]{display:inline-block;position:relative;box-sizing:border-box}.step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-e5d41188]{left:.10667rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-e5d41188]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:-60%;margin-left:20%}.step .my-swipe .van-swipe-item .step-item .stepImg[data-v-e5d41188]{position:relative;width:.72rem;height:.72rem}.step .my-swipe .van-swipe-item .step-item .line[data-v-e5d41188]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-e5d41188]{border-bottom-color:#8ccf8c!important}.step .my-swipe .van-swipe-item .step-item .step-title[data-v-e5d41188]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:5%;margin-left:-60%}.step .my-swipe[data-v-e5d41188] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.step .my-swipe[data-v-e5d41188] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.report .report-title[data-v-e5d41188]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem;color:#333}.report .report-contain[data-v-e5d41188]{padding:.42667rem 0}.report .report-contain .word[data-v-e5d41188]{font-size:.42667rem;line-height:.53333rem}.report .report-contain .date[data-v-e5d41188]{color:#333;font-size:.32rem;margin-top:.42667rem}.vote .vote-title[data-v-e5d41188]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem}.vote .vote-title .voteImg[data-v-e5d41188]{width:.48rem;height:.42667rem;margin-right:.26667rem;vertical-align:bottom}.vote .vote-contain .vote-item[data-v-e5d41188],.vote .vote-contain[data-v-e5d41188]{padding:.21333rem 0}.vote .vote-contain .vote-item .vote-row[data-v-e5d41188]{display:flex;justify-content:space-between;align-items:center}.vote .vote-contain .vote-item .vote-row[data-v-e5d41188]:last-of-type{margin-top:.21333rem}.vote .vote-contain .vote-item .vote-row .ticket[data-v-e5d41188]{width:.53333rem;height:.53333rem}.vote .vote-contain .vote-item .vote-row .progress[data-v-e5d41188]{flex:1}.vote .vote-contain .vote-item .vote-row .vote-right[data-v-e5d41188]{width:1.6rem;text-align:center}.evaluate[data-v-e5d41188]{margin-top:.8rem;padding:.42667rem .64rem;background:#f8f8f8;border-radius:.21333rem}.evaluate .evaluate-contain[data-v-e5d41188]{line-height:.53333rem}.evaluate .evaluate-contain .title[data-v-e5d41188]{color:#0071ff}.evaluate .evaluate-bottom[data-v-e5d41188]{display:flex;align-items:center;justify-content:space-between;margin-top:.74667rem}.evaluate .evaluate-bottom .date[data-v-e5d41188]{color:#8e8f9e}.evaluate .evaluate-bottom .more[data-v-e5d41188]{color:#0071ff}.enclosurePopup[data-v-e5d41188]{padding:1.06667rem}.enclosurePopup .btn[data-v-e5d41188]{background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.enclosureBtn[data-v-e5d41188]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-e5d41188]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.box[data-v-e5d41188]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box[data-v-e5d41188] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .van-tabs[data-v-e5d41188]{flex:1;display:flex;flex-direction:column}.box .van-tabs[data-v-e5d41188] .van-tabs__content,.box .van-tabs[data-v-e5d41188] .van-tabs__content .van-tab__pane{height:100%}.box .van-tabs[data-v-e5d41188] .van-tabs__content .van-tab__pane .tab-contain{display:flex;flex-direction:column;height:100%}.box .van-tabs[data-v-e5d41188] .van-tabs__content .van-tab__pane .tab-contain .step-contain{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .van-tabs[data-v-e5d41188] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .van-tabs[data-v-e5d41188] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}.box .van-tabs[data-v-e5d41188] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain{font-size:.42667rem}.box .van-tabs[data-v-e5d41188] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .input-ele{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .van-tabs[data-v-e5d41188] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .downIcon{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .van-tabs[data-v-e5d41188] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .enclosure{flex:1}.box .van-tabs[data-v-e5d41188] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn{margin:0 .42667rem;margin-top:1.6rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .van-tabs[data-v-e5d41188] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn .enclosureEnd{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}.box .tab-contain[data-v-e5d41188]{display:flex;flex-direction:column;height:100%}.box .tab-contain .step-contain[data-v-e5d41188]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .tab-contain .step-contain .form-ele[data-v-e5d41188]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .tab-contain .step-contain .form-ele .title[data-v-e5d41188]{width:2.4rem;font-size:.42667rem;flex-shrink:0}.box .tab-contain .step-contain .form-ele .notice-contain[data-v-e5d41188]{font-size:.42667rem}.box .tab-contain .step-contain .form-ele .input-ele[data-v-e5d41188]{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .tab-contain .step-contain .form-ele .downIcon[data-v-e5d41188]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .tab-contain .step-contain .form-ele .enclosure[data-v-e5d41188]{flex:1}.box .tab-contain .step-contain .btn[data-v-e5d41188]{margin:0 .42667rem;margin-top:1.6rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .tab-contain .step-contain .btn .enclosureEnd[data-v-e5d41188]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-76ae2b74.d54eca7d.css b/src/main/resources/views/dist/css/chunk-76ae2b74.d54eca7d.css
new file mode 100644
index 0000000..0ddb401
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-76ae2b74.d54eca7d.css
@@ -0,0 +1 @@
+.news[data-v-215ad780]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-215ad780]:last-of-type{border-bottom:none}.news .newList2[data-v-215ad780]{padding:.42667rem 0}.news .newList2 .top[data-v-215ad780]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.news .newList2 .imgarr[data-v-215ad780]{display:flex;margin-top:.21333rem}.news .newList2 .imgarr img[data-v-215ad780]{width:30%;margin-right:3%;height:auto;-o-object-fit:cover;object-fit:cover}.news .newList2 .newdate[data-v-215ad780]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.21333rem}.news .newList[data-v-215ad780]{display:flex;justify-content:space-between;padding:.42667rem 0}.news .newList .newleft[data-v-215ad780]{display:flex;flex-direction:column;justify-content:space-between}.news .newList .newleft .newtitle[data-v-215ad780]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.news .newList .newleft .newdate[data-v-215ad780]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.news .newList .newimg[data-v-215ad780]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.muloverellipse[data-v-215ad780]{word-break:break-all;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.notice[data-v-215ad780]{min-height:100%;background-color:#fff;display:flex;flex-direction:column;overflow:auto}.list[data-v-215ad780]{flex:1}.list .item[data-v-215ad780]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.list .item[data-v-215ad780]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.list .item .tag[data-v-215ad780]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.list .item .title[data-v-215ad780]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.list .item .icon[data-v-215ad780]{margin-left:.8rem;font-size:.32rem}.imgaddBtn[data-v-215ad780]{position:fixed;bottom:26%;right:0}.imgaddBtn .imgdiv[data-v-215ad780]{height:2.4rem;margin-top:.26667rem;z-index:50;opacity:.9}.imgaddBtn .imgdiv .add[data-v-215ad780]{width:2.72rem;z-index:999}.imgaddBtn .imgtext[data-v-215ad780]{font-size:.42667rem;text-align:center}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-77fb2bc4.b79e484e.css b/src/main/resources/views/dist/css/chunk-77fb2bc4.b79e484e.css
deleted file mode 100644
index 2c50e05..0000000
--- a/src/main/resources/views/dist/css/chunk-77fb2bc4.b79e484e.css
+++ /dev/null
@@ -1 +0,0 @@
-.onlyImg[data-v-2086fbce]{display:flex;justify-content:space-between}.onlyImg .img[data-v-2086fbce]{margin-left:.32rem;width:2.13333rem;height:2.13333rem;-o-object-fit:cover;object-fit:cover}.mulimg .imglist[data-v-2086fbce]{margin-top:.16rem;display:flex;flex-wrap:wrap}.mulimg .imglist img[data-v-2086fbce]{width:30%;margin-right:2%;height:auto}.page[data-v-2086fbce]{min-height:100%;background-color:#fff}.notice[data-v-2086fbce]{padding:.42667rem}.title[data-v-2086fbce]{font-size:.4rem;color:#333;line-height:.53333rem;font-weight:700}.date[data-v-2086fbce]{margin-top:.16rem;font-size:.32rem;color:#999;line-height:.45333rem}.content[data-v-2086fbce]{font-size:.37333rem;color:#333;line-height:.64rem;margin-top:.21333rem}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-7c188d77.3bbc3b05.css b/src/main/resources/views/dist/css/chunk-7c188d77.3bbc3b05.css
new file mode 100644
index 0000000..b2c8188
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-7c188d77.3bbc3b05.css
@@ -0,0 +1 @@
+.quill-editor[data-v-f736fb48] .ql-container{height:3.2rem}.filecontent[data-v-f736fb48]{margin:.32rem 0;padding:.42667rem;background:#fff}.filecontent[data-v-f736fb48] .van-cell{background-color:#f8f8f8}.filecontent .p1[data-v-f736fb48]{font-size:.42667rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#333;line-height:.53333rem;margin-bottom:.32rem}.form .van-cell[data-v-f736fb48]{margin-bottom:.32rem}.form .van-cell[data-v-f736fb48] .van-cell__title{font-size:.42667rem;color:#333;font-weight:700}.form .van-cell[data-v-f736fb48] .van-cell__value{font-size:.37333rem}.form .van-cell .van-icon[data-v-f736fb48]:before{vertical-align:middle;margin-left:.21333rem}.form .textarea[data-v-f736fb48]{flex-direction:column}.form .textarea[data-v-f736fb48] .van-cell__value{margin-top:.32rem;background-color:#f8f8f8;padding:.32rem}.form .van-button[data-v-f736fb48]{display:block;width:8.50667rem;height:1.06667rem;margin:1.38667rem auto .42667rem;background-color:#d03a29;border-color:#d03a29;font-size:.37333rem;color:#fff;line-height:1.06667rem;font-weight:700;border-radius:.10667rem}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-91c5c6c2.ed4227fb.css b/src/main/resources/views/dist/css/chunk-91c5c6c2.ed4227fb.css
deleted file mode 100644
index 74902a5..0000000
--- a/src/main/resources/views/dist/css/chunk-91c5c6c2.ed4227fb.css
+++ /dev/null
@@ -1 +0,0 @@
-.flex-align-center[data-v-e36a57d0]{display:flex;align-items:center}.browse_image[data-v-e36a57d0]{width:2.13333rem;height:2.13333rem}[data-v-e36a57d0] .from_el{display:flex;align-items:center}[data-v-e36a57d0] .from_el .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}[data-v-e36a57d0] .from_el .enclosure{margin-top:.53333rem}[data-v-e36a57d0] .from_el .enclosureBtn{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}[data-v-e36a57d0] .from_el .enclosureBtn .enclosureImg{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.preview-cover[data-v-e36a57d0]{position:absolute;bottom:0;box-sizing:border-box;width:100%;padding:.10667rem;color:#fff;font-size:.32rem;text-align:center;background:rgba(0,0,0,.3)}.browse[data-v-e36a57d0]{margin:.26667rem 0}.browse .browse_delet[data-v-e36a57d0]{width:100%;text-align:right;font-size:.42667rem}.browse .imagesee[data-v-e36a57d0]{width:2.66667rem}.fileList1List[data-v-7301025c]{background-color:#f7f8fa;width:2.13333rem;height:2.13333rem}.fileList1List img[data-v-7301025c]{width:.53333rem;height:.53333rem;margin-left:.8rem;margin-top:.50667rem}.fileList1List h4[data-v-7301025c]{height:.37333rem;margin-top:.21333rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-left:.13333rem}.van-field-inp[data-v-7301025c]{line-height:.53333rem;border-radius:.48rem;background:#f8f8f8;margin:.16rem 0}p[data-v-7301025c]{line-height:1.8}.plus_add[data-v-7301025c]{display:flex;align-items:flex-end}.plus_add .plus_addSe[data-v-7301025c]{width:75%;display:flex;flex-wrap:wrap}.plus_add .plus_addSe .input-ele[data-v-7301025c]{width:100%!important;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.plus[data-v-7301025c]{margin-bottom:.21333rem;padding:.10667rem;background:#e72e3a;border-radius:50%}.report .report-title[data-v-7301025c]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem;color:#333}.report .report-contain[data-v-7301025c]{padding:.42667rem 0}.report .report-contain .word[data-v-7301025c]{font-size:.42667rem;line-height:.53333rem}.report .report-contain .date[data-v-7301025c]{color:#333;font-size:.32rem;margin-top:.42667rem}.vote .vote-title[data-v-7301025c]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem}.vote .vote-title .voteImg[data-v-7301025c]{width:.48rem;height:.42667rem;margin-right:.26667rem;vertical-align:bottom}.vote .vote-contain[data-v-7301025c]{padding:.21333rem 0}.vote .vote-contain .scoreTitle[data-v-7301025c]{text-align:center;padding:.32rem 0}.vote .vote-contain .vote-item[data-v-7301025c]{padding:.21333rem 0}.vote .vote-contain .vote-item .vote-row[data-v-7301025c]{display:flex;justify-content:space-between;align-items:center}.vote .vote-contain .vote-item .vote-row[data-v-7301025c]:last-of-type{margin-top:.21333rem}.vote .vote-contain .vote-item .vote-row .ticket[data-v-7301025c]{width:.53333rem;height:.53333rem}.vote .vote-contain .vote-item .vote-row .progress[data-v-7301025c]{flex:1}.vote .vote-contain .vote-item .vote-row .vote-right[data-v-7301025c]{width:1.6rem;text-align:center}.evaluate[data-v-7301025c]{margin-top:.8rem;padding:.42667rem .64rem;background:#f8f8f8;border-radius:.21333rem}.evaluate .evaluate-contain[data-v-7301025c]{line-height:.53333rem}.evaluate .evaluate-contain .title[data-v-7301025c]{color:#0071ff}.evaluate .evaluate-bottom[data-v-7301025c]{display:flex;align-items:center;justify-content:space-between;margin-top:.74667rem}.evaluate .evaluate-bottom .date[data-v-7301025c]{color:#8e8f9e}.evaluate .evaluate-bottom .more[data-v-7301025c]{color:#0071ff}.enclosurePopup[data-v-7301025c]{padding:1.06667rem}.enclosurePopup .btn[data-v-7301025c]{background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.enclosureBtn[data-v-7301025c]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-7301025c]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.users[data-v-7301025c]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-7301025c]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-7301025c]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.publish[data-v-7301025c]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-7301025c]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-7301025c]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.step .my-swipe .van-swipe-item[data-v-7301025c]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem}.step .my-swipe .van-swipe-item[data-v-7301025c]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.step .my-swipe .van-swipe-item .pitch-step-title[data-v-7301025c]{font-weight:600;font-size:.34667rem!important}.step .my-swipe .van-swipe-item .step-item[data-v-7301025c]{width:40%;display:inline-block;position:relative;box-sizing:border-box}.step .my-swipe .van-swipe-item .step-item.step-three[data-v-7301025c]{width:20%}.step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-7301025c]{text-align:right}.step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-7301025c]{left:.10667rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-7301025c]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:-60%;margin-left:30%}.step .my-swipe .van-swipe-item .step-item .stepImg[data-v-7301025c]{position:relative;width:.72rem;height:.72rem}.step .my-swipe .van-swipe-item .step-item .line[data-v-7301025c]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-7301025c]{border-bottom-color:#8ccf8c!important}.step .my-swipe .van-swipe-item .step-item .step-title[data-v-7301025c]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:5%;margin-left:-70%}.step .my-swipe[data-v-7301025c] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.step .my-swipe[data-v-7301025c] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.swiperSecond[data-v-7301025c]{padding:.8rem .8rem .8rem .53333rem!important;display:flex}.swiperSecond .step-second[data-v-7301025c]{width:30%!important}.swiperSecond .step-second.step-narrow[data-v-7301025c]{width:25%!important}.swiperSecond .negativeDirection .step-title[data-v-7301025c]{margin-right:-44%!important;margin-left:20%}.box[data-v-7301025c]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box[data-v-7301025c] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .van-tabs[data-v-7301025c]{flex:1;display:flex;flex-direction:column}.box .van-tabs[data-v-7301025c] .van-tabs__content,.box .van-tabs[data-v-7301025c] .van-tabs__content .van-tab__pane{height:100%}.box .tab-contain[data-v-7301025c]{display:flex;flex-direction:column;height:100%}.box .tab-contain .step-contain[data-v-7301025c]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .tab-contain .step-contain.bulletinBoard[data-v-7301025c]{padding-bottom:2.13333rem}.box .tab-contain .step-contain .form-ele[data-v-7301025c]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .tab-contain .step-contain .form-ele .title[data-v-7301025c]{width:2.4rem;font-size:.42667rem;flex-shrink:0}.box .tab-contain .step-contain .form-ele .notice-contain[data-v-7301025c]{font-size:.42667rem}.box .tab-contain .step-contain .form-ele .notice-contain p[data-v-7301025c]{margin-top:.26667rem}.box .tab-contain .step-contain .form-ele .notice-contain p[data-v-7301025c]:first-of-type{margin-top:0}.box .tab-contain .step-contain .form-ele .input-ele[data-v-7301025c]{width:70%;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .tab-contain .step-contain .form-ele .downIcon[data-v-7301025c]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .tab-contain .step-contain .form-ele .enclosure[data-v-7301025c]{flex:1}.box .tab-contain .step-contain .btn[data-v-7301025c]{margin:0 .42667rem;margin-top:1.6rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .tab-contain .step-contain .btn .enclosureEnd[data-v-7301025c]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-a3bfa22a.41a672c8.css b/src/main/resources/views/dist/css/chunk-a3bfa22a.41a672c8.css
deleted file mode 100644
index 361ef4e..0000000
--- a/src/main/resources/views/dist/css/chunk-a3bfa22a.41a672c8.css
+++ /dev/null
@@ -1 +0,0 @@
-.news[data-v-41def42d]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-41def42d]:last-of-type{border-bottom:none}.news .newList2[data-v-41def42d]{padding:.42667rem 0}.news .newList2 .top[data-v-41def42d]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.news .newList2 .imgarr[data-v-41def42d]{display:flex;margin-top:.21333rem}.news .newList2 .imgarr img[data-v-41def42d]{width:30%;margin-right:3%;height:auto;-o-object-fit:cover;object-fit:cover}.news .newList2 .newdate[data-v-41def42d]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.21333rem}.news .newList[data-v-41def42d]{display:flex;justify-content:space-between;padding:.42667rem 0}.news .newList .newleft[data-v-41def42d]{display:flex;flex-direction:column;justify-content:space-between}.news .newList .newleft .newtitle[data-v-41def42d]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.news .newList .newleft .newdate[data-v-41def42d]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.news .newList .newimg[data-v-41def42d]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.muloverellipse[data-v-41def42d]{word-break:break-all;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.notice[data-v-41def42d]{min-height:100%;background-color:#fff;display:flex;flex-direction:column;overflow:auto}.list[data-v-41def42d]{flex:1}.list .item[data-v-41def42d]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.list .item[data-v-41def42d]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.list .item .tag[data-v-41def42d]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.list .item .title[data-v-41def42d]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.list .item .icon[data-v-41def42d]{margin-left:.8rem;font-size:.32rem}.imgaddBtn[data-v-41def42d]{position:fixed;bottom:26%;right:0}.imgaddBtn .imgdiv[data-v-41def42d]{height:2.4rem;margin-top:.26667rem;z-index:50;opacity:.9}.imgaddBtn .imgdiv .add[data-v-41def42d]{width:2.72rem;z-index:999}.imgaddBtn .imgtext[data-v-41def42d]{font-size:.42667rem;text-align:center}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-a4d41484.95cf0f00.css b/src/main/resources/views/dist/css/chunk-a4d41484.95cf0f00.css
new file mode 100644
index 0000000..7223f37
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-a4d41484.95cf0f00.css
@@ -0,0 +1 @@
+.unread[data-v-2606259e]{font-size:.37333rem!important;letter-spacing:.02667rem!important}.navBar[data-v-2606259e]{position:relative}.behalf[data-v-2606259e]{position:absolute;top:0;left:.42667rem;height:1.22667rem;line-height:1.22667rem;font-size:.37333rem!important;letter-spacing:.02667rem!important;color:#fff;z-index:999}.menu[data-v-2606259e]{display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff;margin-bottom:.32rem}.menu .item[data-v-2606259e]{width:25%;padding:.21333rem 0;text-align:center}.menu .item img[data-v-2606259e]{display:block;margin:0 auto;width:1.28rem}.menu .item .title[data-v-2606259e]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.menu.rddb .item[data-v-2606259e]{width:33.33%}.menuAdmin[data-v-2606259e]{width:94%;margin:.4rem 3%;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.menuAdmin .item[data-v-2606259e]{width:25%;padding:.21333rem 0;text-align:center}.menuAdmin .item img[data-v-2606259e]{display:block;margin:0 auto;width:1.12rem}.menuAdmin .item .title[data-v-2606259e]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.tabMenu[data-v-2606259e]{width:94%;margin:0 3% .4rem;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.tabMenu .title[data-v-2606259e]{width:33.33%}.tabMenu .title img[data-v-2606259e]{display:block;margin:0 auto;width:70%}.tabMenu .title .line[data-v-2606259e]{display:block;margin:0 auto;width:40%;height:.05333rem;margin-top:.13333rem;background-color:#ba2916}.tabMenu .item[data-v-2606259e]{width:33.33%;padding:.21333rem 0;margin-top:.26667rem;text-align:center}.tabMenu .item img[data-v-2606259e]{display:block;margin:0 auto;width:1.12rem}.tabMenu .item .title[data-v-2606259e]{width:1.6rem;margin:0 auto;font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.more-menu[data-v-2606259e]{display:flex;flex-wrap:wrap;padding:.85333rem 0 1.38667rem}.more-menu .item[data-v-2606259e]{flex:1;padding:.21333rem 0;text-align:center}.more-menu .item img[data-v-2606259e]{display:block;margin:0 auto;width:.96rem}.more-menu .item .title[data-v-2606259e]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.box[data-v-2606259e]{background-color:#fff;margin-bottom:.32rem}.box>.title[data-v-2606259e]{display:flex;align-items:center;padding:.53333rem .42667rem .64rem}.box>.title[data-v-2606259e]:before{content:"";display:block;width:.10667rem;height:.42667rem;background-color:#d03a29;margin-right:.21333rem}.box>.title .title_text[data-v-2606259e]{font-size:.48rem;color:#333;font-weight:700}.box>.title .more[data-v-2606259e]{margin-left:auto;font-size:.37333rem;color:#999}.statistics table[data-v-2606259e]{table-layout:fixed;border-collapse:separate;width:100%;border-left:.02667rem solid #f4f4f4;border-top:.02667rem solid #f4f4f4}.statistics table td[data-v-2606259e]{padding:.32rem .53333rem;border-right:.02667rem solid #f4f4f4;border-bottom:.02667rem solid #f4f4f4}.statistics table td .label[data-v-2606259e]{font-size:.32rem;color:#999;line-height:.45333rem}.statistics table td .value[data-v-2606259e]{font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700;margin-top:.10667rem}.approval .item[data-v-2606259e]{position:relative;padding:.42667rem}.approval .item[data-v-2606259e]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval .item .head[data-v-2606259e]{display:flex}.approval .item .head .title[data-v-2606259e]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.approval .item .head .icon[data-v-2606259e]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval .item .content[data-v-2606259e]{font-size:.37333rem;color:#999;line-height:.53333rem;margin-top:.21333rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval .item .bottom_text[data-v-2606259e]{display:flex;flex-wrap:wrap;margin-top:.10667rem;font-size:.32rem;color:#999;line-height:.45333rem}.approval .item .bottom_text .date[data-v-2606259e]{margin-right:1.06667rem}.approval2 .item[data-v-2606259e]{position:relative;padding:.42667rem}.approval2 .item[data-v-2606259e]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval2 .item .head[data-v-2606259e]{display:flex}.approval2 .item .head .title[data-v-2606259e]{flex:1;font-size:.42667rem;color:#333;line-height:.53333rem;font-weight:700}.approval2 .item .head .icon[data-v-2606259e]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval2 .item .content[data-v-2606259e]{font-size:.37333rem;color:#333;line-height:.53333rem;margin-top:.32rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval2 .item .date[data-v-2606259e]{margin-top:.21333rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .date .label[data-v-2606259e]{margin-right:.21333rem}.approval2 .item .state[data-v-2606259e]{margin-top:.10667rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .state .label[data-v-2606259e]{margin-right:.21333rem}.approval2 .item .state .value[data-v-2606259e]{font-weight:700}.approval2 .item .state .value.blue[data-v-2606259e]{color:#1e78ff}.approval2 .item .state .value.green[data-v-2606259e]{color:#09a709}.approval2 .item .state .value.red[data-v-2606259e]{color:#d03a29}.file .item[data-v-2606259e]{position:relative;padding:.32rem .26667rem;display:flex;align-items:center}.file .item[data-v-2606259e]:not(:last-child):after{content:"";position:absolute;bottom:0;left:2.08rem;right:0;height:.02667rem;background-color:#f3f3f3}.file .item .icon[data-v-2606259e]{width:1.49333rem;margin-right:.32rem}.file .item .name[data-v-2606259e]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700;margin-bottom:.10667rem}.file .item .content[data-v-2606259e]{font-size:.32rem;color:#999;line-height:.45333rem;display:flex}.file .item .content .user[data-v-2606259e]{margin-right:.32rem}.notice .item[data-v-2606259e]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.notice .item[data-v-2606259e]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.notice .item .tag[data-v-2606259e]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.notice .item .title[data-v-2606259e]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.notice .item .icon[data-v-2606259e]{margin-left:.8rem;font-size:.32rem}.active .item[data-v-2606259e]{padding:.42667rem;position:relative}.active .item[data-v-2606259e]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.active .item .title[data-v-2606259e]{font-weight:700;display:flex;align-items:center}.active .item .title .text[data-v-2606259e]{font-size:.42667rem;color:#333;line-height:.58667rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .title .van-tag[data-v-2606259e]{width:1.70667rem;border-radius:.32rem;justify-content:center;line-height:.53333rem;margin-left:.10667rem;white-space:nowrap;font-weight:700}.active .item .detail[data-v-2606259e]{margin-top:.32rem}.active .item .detail .cell[data-v-2606259e]{display:flex;font-size:.32rem}.active .item .detail .cell[data-v-2606259e]:not(:last-child){margin-bottom:.10667rem}.active .item .detail .cell .label[data-v-2606259e]{color:#999;margin-right:.21333rem}.active .item .detail .cell .value[data-v-2606259e]{height:.42667rem;flex:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:.32rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#999;line-height:.42667rem}.active .item .detail .cell .value[data-v-2606259e] b{font-weight:400!important}.active .item .detail .cell .value[data-v-2606259e] div{margin:0!important;padding:0!important}.active .item .detail .cell .value[data-v-2606259e] img{display:none!important}.active .item .detail .cell .value[data-v-2606259e] p,.active .item .detail .cell .value[data-v-2606259e] span{margin:0!important;padding:0!important;font-size:.32rem!important;line-height:normal!important;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .foot[data-v-2606259e]{margin-top:.32rem;display:flex;justify-content:space-between;align-items:center;font-size:.32rem;color:#999;line-height:.45333rem}.active .item .foot .van-icon[data-v-2606259e]{margin-left:.10667rem;vertical-align:middle}.active .item .more[data-v-2606259e]{padding-top:.32rem;border-top:.02667rem solid #f8f8f8}.active .item .enclosure[data-v-2606259e]{margin-top:.21333rem}.active .item .enclosure .item[data-v-2606259e]{background-color:#f8f8f8;padding:.26667rem .42667rem;display:flex;align-items:center}.active .item .enclosure .item .detail[data-v-2606259e]{flex:1}.active .item .enclosure .item .detail .name[data-v-2606259e]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.active .item .enclosure .item .detail .size[data-v-2606259e]{font-size:.32rem;color:#333;line-height:.45333rem;margin-top:.10667rem}.active .item .enclosure .item .icon[data-v-2606259e]{width:1.49333rem}.active .item .imgs[data-v-2606259e]{display:flex;margin-top:.21333rem}.active .item .imgs .img[data-v-2606259e]{flex:1;border-radius:.10667rem;overflow:hidden}.active .item .imgs .img+.img[data-v-2606259e]{margin-left:.10667rem}.active .item .imgs .img img[data-v-2606259e]{max-height:2.66667rem;display:block;width:100%}.active .item .van-button[data-v-2606259e]{background-color:#fff;border:.02667rem solid #d03a29;border-radius:.32rem;height:.61333rem;width:1.70667rem;font-size:.32rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#d03a29;padding:0 .32rem;margin-top:.32rem}.active .item .van-button .van-icon[data-v-2606259e]{vertical-align:middle}.votersNav[data-v-2606259e]{display:flex;justify-content:space-between;padding:.53333rem .53333rem 0;width:100%;background-color:#fff;margin-bottom:.32rem;margin:15rpx 3%}.votersNav .items .imgBox[data-v-2606259e]{display:flex;justify-content:center}.votersNav .items .imgBox img[data-v-2606259e]{width:1.22667rem;height:1.22667rem}.votersNav .items .title[data-v-2606259e]{font-size:.42667rem;margin-top:.26667rem}.civilian[data-v-2606259e]{background-color:#fff;margin-bottom:.32rem}.civilian .banner[data-v-2606259e]{width:100%;display:block}.civilian .user[data-v-2606259e]{position:relative;margin:-1.06667rem .53333rem 0;border-radius:.10667rem;background-color:#fff;box-shadow:0 .08rem .26667rem 0 rgba(0,0,0,.08);display:flex;align-items:center;padding:.42667rem .53333rem .48rem}.civilian .user .avatar[data-v-2606259e]{position:relative;margin-right:.32rem}.civilian .user .avatar img[data-v-2606259e]{width:1.22667rem;height:1.22667rem;-o-object-fit:cover;object-fit:cover;border-radius:50%}.civilian .user .avatar .badge[data-v-2606259e]{position:absolute;top:.10667rem;right:.10667rem;min-width:.42667rem;padding:0 .08rem;font-size:.32rem;color:#fff;line-height:.42667rem;text-align:center;border-radius:.42667rem;background-color:#d03a29;transform:translate(50%,-50%)}.civilian .user .name[data-v-2606259e]{flex:1;font-size:.37333rem;color:#333;font-weight:700}.civilian .user .link[data-v-2606259e]{font-size:.37333rem;color:#d03a29;font-weight:700}.civilian .user .link .van-icon[data-v-2606259e]{margin-left:.10667rem;vertical-align:middle}.civilian .civilian-menu[data-v-2606259e]{padding:.32rem}.civilian .civilian-menu .item[data-v-2606259e]{position:relative}.civilian .civilian-menu .item[data-v-2606259e]:not(:last-child){margin-bottom:.32rem}.civilian .civilian-menu .item .bg-img[data-v-2606259e]{position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.civilian .civilian-menu .item .content[data-v-2606259e]{padding:.53333rem .64rem;position:relative}.civilian .civilian-menu .item .content .title[data-v-2606259e]{font-size:.42667rem;color:#fff;line-height:.58667rem;font-weight:700}.civilian .civilian-menu .item .content .btn[data-v-2606259e]{margin-top:.29333rem;background-color:#fff;padding:.13333rem .32rem;border-radius:.37333rem;height:.74667rem;display:inline-flex;align-items:center;font-size:.32rem;color:#f6331d;font-weight:700}.civilian .civilian-menu .item .content .btn .van-icon[data-v-2606259e]{margin-left:.08rem}.grassrootsNews .item[data-v-2606259e]{position:relative;padding:.4rem .42667rem;display:flex}.grassrootsNews .item[data-v-2606259e]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.grassrootsNews .item .info[data-v-2606259e]{width:0;flex:1}.grassrootsNews .item .info .title[data-v-2606259e]{flex:1;font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.grassrootsNews .item .info .text[data-v-2606259e]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.grassrootsNews .item .img[data-v-2606259e]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.opinionBox .opinionArrow[data-v-2606259e]{color:#ccc;font-size:.475rem}.opinionBox .opinionArrow[data-v-2606259e]:before{position:relative;top:50%;left:50%;transform:translate(-50%,-51%)}.news[data-v-2606259e]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-2606259e]:last-of-type{border-bottom:none}.newList[data-v-2606259e]{display:flex;justify-content:space-between;padding:.42667rem 0}.newList .newleft[data-v-2606259e]{display:flex;flex-direction:column;justify-content:space-between}.newList .newleft .newtitle[data-v-2606259e]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.newList .newleft .newdate[data-v-2606259e]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.newList .newimg[data-v-2606259e]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-ad600d4e.fc1419c9.css b/src/main/resources/views/dist/css/chunk-ad600d4e.fc1419c9.css
deleted file mode 100644
index b14866e..0000000
--- a/src/main/resources/views/dist/css/chunk-ad600d4e.fc1419c9.css
+++ /dev/null
@@ -1 +0,0 @@
-.flex-align-center[data-v-e36a57d0]{display:flex;align-items:center}.browse_image[data-v-e36a57d0]{width:2.13333rem;height:2.13333rem}[data-v-e36a57d0] .from_el{display:flex;align-items:center}[data-v-e36a57d0] .from_el .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}[data-v-e36a57d0] .from_el .enclosure{margin-top:.53333rem}[data-v-e36a57d0] .from_el .enclosureBtn{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}[data-v-e36a57d0] .from_el .enclosureBtn .enclosureImg{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.preview-cover[data-v-e36a57d0]{position:absolute;bottom:0;box-sizing:border-box;width:100%;padding:.10667rem;color:#fff;font-size:.32rem;text-align:center;background:rgba(0,0,0,.3)}.browse[data-v-e36a57d0]{margin:.26667rem 0}.browse .browse_delet[data-v-e36a57d0]{width:100%;text-align:right;font-size:.42667rem}.browse .imagesee[data-v-e36a57d0]{width:2.66667rem}.fileList1List[data-v-e5143e5a]{background-color:#f7f8fa;width:2.13333rem;height:2.13333rem}.fileList1List img[data-v-e5143e5a]{width:.53333rem;height:.53333rem;margin-left:.8rem;margin-top:.50667rem}.fileList1List h4[data-v-e5143e5a]{height:.37333rem;margin-top:.21333rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-left:.13333rem}.van-field-inp[data-v-e5143e5a]{line-height:.53333rem;border-radius:.48rem;background:#f8f8f8;margin:.16rem 0}p[data-v-e5143e5a]{line-height:1.8}.plus_add[data-v-e5143e5a]{display:flex;align-items:flex-end}.plus_add .plus_addSe[data-v-e5143e5a]{width:75%;display:flex;flex-wrap:wrap}.plus_add .plus_addSe .input-eles[data-v-e5143e5a]{width:100%;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.plus[data-v-e5143e5a]{margin-bottom:.21333rem;padding:.10667rem;background:#e72e3a;border-radius:50%}.report .report-title[data-v-e5143e5a]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem;color:#333}.report .report-contain[data-v-e5143e5a]{padding:.42667rem 0}.report .report-contain .word[data-v-e5143e5a]{font-size:.42667rem;line-height:.53333rem}.report .report-contain .date[data-v-e5143e5a]{color:#333;font-size:.32rem;margin-top:.42667rem}.vote .vote-title[data-v-e5143e5a]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem}.vote .vote-title .voteImg[data-v-e5143e5a]{width:.48rem;height:.42667rem;margin-right:.26667rem;vertical-align:bottom}.vote .vote-contain[data-v-e5143e5a]{padding:.21333rem 0}.vote .vote-contain .scoreTitle[data-v-e5143e5a]{text-align:center;padding:.32rem 0}.vote .vote-contain .vote-item[data-v-e5143e5a]{padding:.21333rem 0}.vote .vote-contain .vote-item .vote-row[data-v-e5143e5a]{display:flex;justify-content:space-between;align-items:center}.vote .vote-contain .vote-item .vote-row[data-v-e5143e5a]:last-of-type{margin-top:.21333rem}.vote .vote-contain .vote-item .vote-row .ticket[data-v-e5143e5a]{width:.53333rem;height:.53333rem}.vote .vote-contain .vote-item .vote-row .progress[data-v-e5143e5a]{flex:1}.vote .vote-contain .vote-item .vote-row .vote-right[data-v-e5143e5a]{width:1.6rem;text-align:center}.evaluate[data-v-e5143e5a]{margin-top:.8rem;padding:.42667rem .64rem;background:#f8f8f8;border-radius:.21333rem}.evaluate .evaluate-contain[data-v-e5143e5a]{line-height:.53333rem}.evaluate .evaluate-contain .title[data-v-e5143e5a]{color:#0071ff}.evaluate .evaluate-bottom[data-v-e5143e5a]{display:flex;align-items:center;justify-content:space-between;margin-top:.74667rem}.evaluate .evaluate-bottom .date[data-v-e5143e5a]{color:#8e8f9e}.evaluate .evaluate-bottom .more[data-v-e5143e5a]{color:#0071ff}.enclosurePopup[data-v-e5143e5a]{padding:1.06667rem}.enclosurePopup .btn[data-v-e5143e5a]{background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.enclosureBtn[data-v-e5143e5a]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-e5143e5a]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.users[data-v-e5143e5a]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-e5143e5a]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-e5143e5a]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.publish[data-v-e5143e5a]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-e5143e5a]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-e5143e5a]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.step .my-swipe .van-swipe-item[data-v-e5143e5a]{height:4rem;box-sizing:border-box;padding:.8rem .8rem .8rem 1.6rem}.step .my-swipe .van-swipe-item[data-v-e5143e5a]:nth-of-type(2){padding:.8rem 1.6rem .8rem .8rem}.step .my-swipe .van-swipe-item .pitch-step-title[data-v-e5143e5a]{font-weight:600;font-size:.34667rem!important}.step .my-swipe .van-swipe-item .step-item[data-v-e5143e5a]{width:40%;display:inline-block;position:relative;box-sizing:border-box}.step .my-swipe .van-swipe-item .step-item.step-three[data-v-e5143e5a]{width:20%}.step .my-swipe .van-swipe-item .step-item.negativeDirection[data-v-e5143e5a]{text-align:right}.step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-e5143e5a]{left:.10667rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-e5143e5a]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:-60%;margin-left:30%}.step .my-swipe .van-swipe-item .step-item .stepImg[data-v-e5143e5a]{position:relative;width:.72rem;height:.72rem}.step .my-swipe .van-swipe-item .step-item .line[data-v-e5143e5a]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-e5143e5a]{border-bottom-color:#8ccf8c!important}.step .my-swipe .van-swipe-item .step-item .step-title[data-v-e5143e5a]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:5%;margin-left:-70%}.step .my-swipe[data-v-e5143e5a] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.step .my-swipe[data-v-e5143e5a] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.swiperSecond[data-v-e5143e5a]{padding:.8rem .8rem .8rem .53333rem!important;display:flex}.swiperSecond .step-second[data-v-e5143e5a]{width:30%!important}.swiperSecond .step-second.step-narrow[data-v-e5143e5a]{width:25%!important}.swiperSecond .negativeDirection .step-title[data-v-e5143e5a]{margin-right:-44%!important;margin-left:20%}.box[data-v-e5143e5a]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box[data-v-e5143e5a] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .van-tabs[data-v-e5143e5a]{flex:1;display:flex;flex-direction:column}.box .van-tabs[data-v-e5143e5a] .van-tabs__content,.box .van-tabs[data-v-e5143e5a] .van-tabs__content .van-tab__pane{height:100%}.box .tab-contain[data-v-e5143e5a]{display:flex;flex-direction:column;height:100%}.box .tab-contain .step-contain[data-v-e5143e5a]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .tab-contain .step-contain.bulletinBoard[data-v-e5143e5a]{padding-bottom:2.13333rem}.box .tab-contain .step-contain .form-ele[data-v-e5143e5a]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .tab-contain .step-contain .form-ele .title[data-v-e5143e5a]{width:2.4rem;font-size:.42667rem;flex-shrink:0}.box .tab-contain .step-contain .form-ele .notice-contain[data-v-e5143e5a]{font-size:.42667rem}.box .tab-contain .step-contain .form-ele .notice-contain p[data-v-e5143e5a]{margin-top:.26667rem}.box .tab-contain .step-contain .form-ele .notice-contain p[data-v-e5143e5a]:first-of-type{margin-top:0}.box .tab-contain .step-contain .form-ele .input-ele[data-v-e5143e5a]{width:70%;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .tab-contain .step-contain .form-ele .downIcon[data-v-e5143e5a]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .tab-contain .step-contain .form-ele .enclosure[data-v-e5143e5a]{flex:1}.box .tab-contain .step-contain .btn[data-v-e5143e5a]{margin:0 .42667rem;margin-top:1.6rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .tab-contain .step-contain .btn .enclosureEnd[data-v-e5143e5a]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-b6b7700a.b6c325f6.css b/src/main/resources/views/dist/css/chunk-b6b7700a.b6c325f6.css
deleted file mode 100644
index 22ead9d..0000000
--- a/src/main/resources/views/dist/css/chunk-b6b7700a.b6c325f6.css
+++ /dev/null
@@ -1 +0,0 @@
-.unread[data-v-0db359e5]{font-size:.37333rem!important;letter-spacing:.02667rem!important}.navBar[data-v-0db359e5]{position:relative}.behalf[data-v-0db359e5]{position:absolute;top:0;left:.42667rem;height:1.22667rem;line-height:1.22667rem;font-size:.37333rem!important;letter-spacing:.02667rem!important;color:#fff;z-index:999}.menu[data-v-0db359e5]{display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff;margin-bottom:.32rem}.menu .item[data-v-0db359e5]{width:25%;padding:.21333rem 0;text-align:center}.menu .item img[data-v-0db359e5]{display:block;margin:0 auto;width:1.28rem}.menu .item .title[data-v-0db359e5]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.menu.rddb .item[data-v-0db359e5]{width:33.33%}.menuAdmin[data-v-0db359e5]{width:94%;margin:.4rem 3%;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.menuAdmin .item[data-v-0db359e5]{width:25%;padding:.21333rem 0;text-align:center}.menuAdmin .item img[data-v-0db359e5]{display:block;margin:0 auto;width:1.12rem}.menuAdmin .item .title[data-v-0db359e5]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.tabMenu[data-v-0db359e5]{width:94%;margin:0 3% .4rem;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.tabMenu .title[data-v-0db359e5]{width:33.33%}.tabMenu .title img[data-v-0db359e5]{display:block;margin:0 auto;width:70%}.tabMenu .title .line[data-v-0db359e5]{display:block;margin:0 auto;width:40%;height:.05333rem;margin-top:.13333rem;background-color:#ba2916}.tabMenu .item[data-v-0db359e5]{width:33.33%;padding:.21333rem 0;margin-top:.26667rem;text-align:center}.tabMenu .item img[data-v-0db359e5]{display:block;margin:0 auto;width:1.12rem}.tabMenu .item .title[data-v-0db359e5]{width:1.6rem;margin:0 auto;font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.more-menu[data-v-0db359e5]{display:flex;flex-wrap:wrap;padding:.85333rem 0 1.38667rem}.more-menu .item[data-v-0db359e5]{flex:1;padding:.21333rem 0;text-align:center}.more-menu .item img[data-v-0db359e5]{display:block;margin:0 auto;width:.96rem}.more-menu .item .title[data-v-0db359e5]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.box[data-v-0db359e5]{background-color:#fff;margin-bottom:.32rem}.box>.title[data-v-0db359e5]{display:flex;align-items:center;padding:.53333rem .42667rem .64rem}.box>.title[data-v-0db359e5]:before{content:"";display:block;width:.10667rem;height:.42667rem;background-color:#d03a29;margin-right:.21333rem}.box>.title .title_text[data-v-0db359e5]{font-size:.48rem;color:#333;font-weight:700}.box>.title .more[data-v-0db359e5]{margin-left:auto;font-size:.37333rem;color:#999}.statistics table[data-v-0db359e5]{table-layout:fixed;border-collapse:separate;width:100%;border-left:.02667rem solid #f4f4f4;border-top:.02667rem solid #f4f4f4}.statistics table td[data-v-0db359e5]{padding:.32rem .53333rem;border-right:.02667rem solid #f4f4f4;border-bottom:.02667rem solid #f4f4f4}.statistics table td .label[data-v-0db359e5]{font-size:.32rem;color:#999;line-height:.45333rem}.statistics table td .value[data-v-0db359e5]{font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700;margin-top:.10667rem}.approval .item[data-v-0db359e5]{position:relative;padding:.42667rem}.approval .item[data-v-0db359e5]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval .item .head[data-v-0db359e5]{display:flex}.approval .item .head .title[data-v-0db359e5]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.approval .item .head .icon[data-v-0db359e5]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval .item .content[data-v-0db359e5]{font-size:.37333rem;color:#999;line-height:.53333rem;margin-top:.21333rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval .item .bottom_text[data-v-0db359e5]{display:flex;flex-wrap:wrap;margin-top:.10667rem;font-size:.32rem;color:#999;line-height:.45333rem}.approval .item .bottom_text .date[data-v-0db359e5]{margin-right:1.06667rem}.approval2 .item[data-v-0db359e5]{position:relative;padding:.42667rem}.approval2 .item[data-v-0db359e5]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval2 .item .head[data-v-0db359e5]{display:flex}.approval2 .item .head .title[data-v-0db359e5]{flex:1;font-size:.42667rem;color:#333;line-height:.53333rem;font-weight:700}.approval2 .item .head .icon[data-v-0db359e5]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval2 .item .content[data-v-0db359e5]{font-size:.37333rem;color:#333;line-height:.53333rem;margin-top:.32rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval2 .item .date[data-v-0db359e5]{margin-top:.21333rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .date .label[data-v-0db359e5]{margin-right:.21333rem}.approval2 .item .state[data-v-0db359e5]{margin-top:.10667rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .state .label[data-v-0db359e5]{margin-right:.21333rem}.approval2 .item .state .value[data-v-0db359e5]{font-weight:700}.approval2 .item .state .value.blue[data-v-0db359e5]{color:#1e78ff}.approval2 .item .state .value.green[data-v-0db359e5]{color:#09a709}.approval2 .item .state .value.red[data-v-0db359e5]{color:#d03a29}.file .item[data-v-0db359e5]{position:relative;padding:.32rem .26667rem;display:flex;align-items:center}.file .item[data-v-0db359e5]:not(:last-child):after{content:"";position:absolute;bottom:0;left:2.08rem;right:0;height:.02667rem;background-color:#f3f3f3}.file .item .icon[data-v-0db359e5]{width:1.49333rem;margin-right:.32rem}.file .item .name[data-v-0db359e5]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700;margin-bottom:.10667rem}.file .item .content[data-v-0db359e5]{font-size:.32rem;color:#999;line-height:.45333rem;display:flex}.file .item .content .user[data-v-0db359e5]{margin-right:.32rem}.notice .item[data-v-0db359e5]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.notice .item[data-v-0db359e5]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.notice .item .tag[data-v-0db359e5]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.notice .item .title[data-v-0db359e5]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.notice .item .icon[data-v-0db359e5]{margin-left:.8rem;font-size:.32rem}.active .item[data-v-0db359e5]{padding:.42667rem;position:relative}.active .item[data-v-0db359e5]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.active .item .title[data-v-0db359e5]{font-weight:700;display:flex;align-items:center}.active .item .title .text[data-v-0db359e5]{font-size:.42667rem;color:#333;line-height:.58667rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .title .van-tag[data-v-0db359e5]{width:1.70667rem;border-radius:.32rem;justify-content:center;line-height:.53333rem;margin-left:.10667rem;white-space:nowrap;font-weight:700}.active .item .detail[data-v-0db359e5]{margin-top:.32rem}.active .item .detail .cell[data-v-0db359e5]{display:flex;font-size:.32rem}.active .item .detail .cell[data-v-0db359e5]:not(:last-child){margin-bottom:.10667rem}.active .item .detail .cell .label[data-v-0db359e5]{color:#999;margin-right:.21333rem}.active .item .detail .cell .value[data-v-0db359e5]{height:.42667rem;flex:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:.32rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#999;line-height:.42667rem}.active .item .detail .cell .value[data-v-0db359e5] b{font-weight:400!important}.active .item .detail .cell .value[data-v-0db359e5] div{margin:0!important;padding:0!important}.active .item .detail .cell .value[data-v-0db359e5] img{display:none!important}.active .item .detail .cell .value[data-v-0db359e5] p,.active .item .detail .cell .value[data-v-0db359e5] span{margin:0!important;padding:0!important;font-size:.32rem!important;line-height:normal!important;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .foot[data-v-0db359e5]{margin-top:.32rem;display:flex;justify-content:space-between;align-items:center;font-size:.32rem;color:#999;line-height:.45333rem}.active .item .foot .van-icon[data-v-0db359e5]{margin-left:.10667rem;vertical-align:middle}.active .item .more[data-v-0db359e5]{padding-top:.32rem;border-top:.02667rem solid #f8f8f8}.active .item .enclosure[data-v-0db359e5]{margin-top:.21333rem}.active .item .enclosure .item[data-v-0db359e5]{background-color:#f8f8f8;padding:.26667rem .42667rem;display:flex;align-items:center}.active .item .enclosure .item .detail[data-v-0db359e5]{flex:1}.active .item .enclosure .item .detail .name[data-v-0db359e5]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.active .item .enclosure .item .detail .size[data-v-0db359e5]{font-size:.32rem;color:#333;line-height:.45333rem;margin-top:.10667rem}.active .item .enclosure .item .icon[data-v-0db359e5]{width:1.49333rem}.active .item .imgs[data-v-0db359e5]{display:flex;margin-top:.21333rem}.active .item .imgs .img[data-v-0db359e5]{flex:1;border-radius:.10667rem;overflow:hidden}.active .item .imgs .img+.img[data-v-0db359e5]{margin-left:.10667rem}.active .item .imgs .img img[data-v-0db359e5]{max-height:2.66667rem;display:block;width:100%}.active .item .van-button[data-v-0db359e5]{background-color:#fff;border:.02667rem solid #d03a29;border-radius:.32rem;height:.61333rem;width:1.70667rem;font-size:.32rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#d03a29;padding:0 .32rem;margin-top:.32rem}.active .item .van-button .van-icon[data-v-0db359e5]{vertical-align:middle}.votersNav[data-v-0db359e5]{display:flex;justify-content:space-between;padding:.53333rem .53333rem 0;width:100%;background-color:#fff;margin-bottom:.32rem;margin:15rpx 3%}.votersNav .items .imgBox[data-v-0db359e5]{display:flex;justify-content:center}.votersNav .items .imgBox img[data-v-0db359e5]{width:1.22667rem;height:1.22667rem}.votersNav .items .title[data-v-0db359e5]{font-size:.42667rem;margin-top:.26667rem}.civilian[data-v-0db359e5]{background-color:#fff;margin-bottom:.32rem}.civilian .banner[data-v-0db359e5]{width:100%;display:block}.civilian .user[data-v-0db359e5]{position:relative;margin:-1.06667rem .53333rem 0;border-radius:.10667rem;background-color:#fff;box-shadow:0 .08rem .26667rem 0 rgba(0,0,0,.08);display:flex;align-items:center;padding:.42667rem .53333rem .48rem}.civilian .user .avatar[data-v-0db359e5]{position:relative;margin-right:.32rem}.civilian .user .avatar img[data-v-0db359e5]{width:1.22667rem;height:1.22667rem;-o-object-fit:cover;object-fit:cover;border-radius:50%}.civilian .user .avatar .badge[data-v-0db359e5]{position:absolute;top:.10667rem;right:.10667rem;min-width:.42667rem;padding:0 .08rem;font-size:.32rem;color:#fff;line-height:.42667rem;text-align:center;border-radius:.42667rem;background-color:#d03a29;transform:translate(50%,-50%)}.civilian .user .name[data-v-0db359e5]{flex:1;font-size:.37333rem;color:#333;font-weight:700}.civilian .user .link[data-v-0db359e5]{font-size:.37333rem;color:#d03a29;font-weight:700}.civilian .user .link .van-icon[data-v-0db359e5]{margin-left:.10667rem;vertical-align:middle}.civilian .civilian-menu[data-v-0db359e5]{padding:.32rem}.civilian .civilian-menu .item[data-v-0db359e5]{position:relative}.civilian .civilian-menu .item[data-v-0db359e5]:not(:last-child){margin-bottom:.32rem}.civilian .civilian-menu .item .bg-img[data-v-0db359e5]{position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.civilian .civilian-menu .item .content[data-v-0db359e5]{padding:.53333rem .64rem;position:relative}.civilian .civilian-menu .item .content .title[data-v-0db359e5]{font-size:.42667rem;color:#fff;line-height:.58667rem;font-weight:700}.civilian .civilian-menu .item .content .btn[data-v-0db359e5]{margin-top:.29333rem;background-color:#fff;padding:.13333rem .32rem;border-radius:.37333rem;height:.74667rem;display:inline-flex;align-items:center;font-size:.32rem;color:#f6331d;font-weight:700}.civilian .civilian-menu .item .content .btn .van-icon[data-v-0db359e5]{margin-left:.08rem}.grassrootsNews .item[data-v-0db359e5]{position:relative;padding:.4rem .42667rem;display:flex}.grassrootsNews .item[data-v-0db359e5]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.grassrootsNews .item .info[data-v-0db359e5]{width:0;flex:1}.grassrootsNews .item .info .title[data-v-0db359e5]{flex:1;font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.grassrootsNews .item .info .text[data-v-0db359e5]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.grassrootsNews .item .img[data-v-0db359e5]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.opinionBox .opinionArrow[data-v-0db359e5]{color:#ccc;font-size:.475rem}.opinionBox .opinionArrow[data-v-0db359e5]:before{position:relative;top:50%;left:50%;transform:translate(-50%,-51%)}.news[data-v-0db359e5]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-0db359e5]:last-of-type{border-bottom:none}.newList[data-v-0db359e5]{display:flex;justify-content:space-between;padding:.42667rem 0}.newList .newleft[data-v-0db359e5]{display:flex;flex-direction:column;justify-content:space-between}.newList .newleft .newtitle[data-v-0db359e5]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.newList .newleft .newdate[data-v-0db359e5]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.newList .newimg[data-v-0db359e5]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-bf83499e.6cbbb81b.css b/src/main/resources/views/dist/css/chunk-bf83499e.6cbbb81b.css
deleted file mode 100644
index 40c4bec..0000000
--- a/src/main/resources/views/dist/css/chunk-bf83499e.6cbbb81b.css
+++ /dev/null
@@ -1 +0,0 @@
-.unread[data-v-440f4668]{font-size:.37333rem!important;letter-spacing:.02667rem!important}.navBar[data-v-440f4668]{position:relative}.behalf[data-v-440f4668]{position:absolute;top:0;left:.42667rem;height:1.22667rem;line-height:1.22667rem;font-size:.37333rem!important;letter-spacing:.02667rem!important;color:#fff;z-index:999}.menu[data-v-440f4668]{display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff;margin-bottom:.32rem}.menu .item[data-v-440f4668]{width:25%;padding:.21333rem 0;text-align:center}.menu .item img[data-v-440f4668]{display:block;margin:0 auto;width:1.28rem}.menu .item .title[data-v-440f4668]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.menu.rddb .item[data-v-440f4668]{width:33.33%}.menuAdmin[data-v-440f4668]{width:94%;margin:.4rem 3%;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.menuAdmin .item[data-v-440f4668]{width:25%;padding:.21333rem 0;text-align:center}.menuAdmin .item img[data-v-440f4668]{display:block;margin:0 auto;width:1.12rem}.menuAdmin .item .title[data-v-440f4668]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.tabMenu[data-v-440f4668]{width:94%;margin:0 3% .4rem;display:flex;flex-wrap:wrap;padding:.32rem;background-color:#fff}.tabMenu .title[data-v-440f4668]{width:33.33%}.tabMenu .title img[data-v-440f4668]{display:block;margin:0 auto;width:70%}.tabMenu .title .line[data-v-440f4668]{display:block;margin:0 auto;width:40%;height:.05333rem;margin-top:.13333rem;background-color:#ba2916}.tabMenu .item[data-v-440f4668]{width:33.33%;padding:.21333rem 0;margin-top:.26667rem;text-align:center}.tabMenu .item img[data-v-440f4668]{display:block;margin:0 auto;width:1.12rem}.tabMenu .item .title[data-v-440f4668]{width:1.6rem;margin:0 auto;font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.more-menu[data-v-440f4668]{display:flex;flex-wrap:wrap;padding:.85333rem 0 1.38667rem}.more-menu .item[data-v-440f4668]{flex:1;padding:.21333rem 0;text-align:center}.more-menu .item img[data-v-440f4668]{display:block;margin:0 auto;width:.96rem}.more-menu .item .title[data-v-440f4668]{font-size:.32rem;color:#333;font-weight:700;margin-top:.21333rem}.box[data-v-440f4668]{background-color:#fff;margin-bottom:.32rem}.box>.title[data-v-440f4668]{display:flex;align-items:center;padding:.53333rem .42667rem .64rem}.box>.title[data-v-440f4668]:before{content:"";display:block;width:.10667rem;height:.42667rem;background-color:#d03a29;margin-right:.21333rem}.box>.title .title_text[data-v-440f4668]{font-size:.48rem;color:#333;font-weight:700}.box>.title .more[data-v-440f4668]{margin-left:auto;font-size:.37333rem;color:#999}.statistics table[data-v-440f4668]{table-layout:fixed;border-collapse:separate;width:100%;border-left:.02667rem solid #f4f4f4;border-top:.02667rem solid #f4f4f4}.statistics table td[data-v-440f4668]{padding:.32rem .53333rem;border-right:.02667rem solid #f4f4f4;border-bottom:.02667rem solid #f4f4f4}.statistics table td .label[data-v-440f4668]{font-size:.32rem;color:#999;line-height:.45333rem}.statistics table td .value[data-v-440f4668]{font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700;margin-top:.10667rem}.approval .item[data-v-440f4668]{position:relative;padding:.42667rem}.approval .item[data-v-440f4668]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval .item .head[data-v-440f4668]{display:flex}.approval .item .head .title[data-v-440f4668]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.approval .item .head .icon[data-v-440f4668]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval .item .content[data-v-440f4668]{font-size:.37333rem;color:#999;line-height:.53333rem;margin-top:.21333rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval .item .bottom_text[data-v-440f4668]{display:flex;flex-wrap:wrap;margin-top:.10667rem;font-size:.32rem;color:#999;line-height:.45333rem}.approval .item .bottom_text .date[data-v-440f4668]{margin-right:1.06667rem}.approval2 .item[data-v-440f4668]{position:relative;padding:.42667rem}.approval2 .item[data-v-440f4668]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.approval2 .item .head[data-v-440f4668]{display:flex}.approval2 .item .head .title[data-v-440f4668]{flex:1;font-size:.42667rem;color:#333;line-height:.53333rem;font-weight:700}.approval2 .item .head .icon[data-v-440f4668]{font-size:.32rem;color:#999;margin-top:.10667rem}.approval2 .item .content[data-v-440f4668]{font-size:.37333rem;color:#333;line-height:.53333rem;margin-top:.32rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.approval2 .item .date[data-v-440f4668]{margin-top:.21333rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .date .label[data-v-440f4668]{margin-right:.21333rem}.approval2 .item .state[data-v-440f4668]{margin-top:.10667rem;font-size:.37333rem;color:#999;line-height:.53333rem}.approval2 .item .state .label[data-v-440f4668]{margin-right:.21333rem}.approval2 .item .state .value[data-v-440f4668]{font-weight:700}.approval2 .item .state .value.blue[data-v-440f4668]{color:#1e78ff}.approval2 .item .state .value.green[data-v-440f4668]{color:#09a709}.approval2 .item .state .value.red[data-v-440f4668]{color:#d03a29}.file .item[data-v-440f4668]{position:relative;padding:.32rem .26667rem;display:flex;align-items:center}.file .item[data-v-440f4668]:not(:last-child):after{content:"";position:absolute;bottom:0;left:2.08rem;right:0;height:.02667rem;background-color:#f3f3f3}.file .item .icon[data-v-440f4668]{width:1.49333rem;margin-right:.32rem}.file .item .name[data-v-440f4668]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700;margin-bottom:.10667rem}.file .item .content[data-v-440f4668]{font-size:.32rem;color:#999;line-height:.45333rem;display:flex}.file .item .content .user[data-v-440f4668]{margin-right:.32rem}.notice .item[data-v-440f4668]{position:relative;padding:.53333rem .42667rem;display:flex;align-items:center}.notice .item[data-v-440f4668]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.notice .item .tag[data-v-440f4668]{margin-right:.10667rem;border-radius:.21333rem;font-size:.26667rem;vertical-align:middle}.notice .item .title[data-v-440f4668]{flex:1;font-size:.37333rem;color:#333;line-height:.53333rem;font-weight:700}.notice .item .icon[data-v-440f4668]{margin-left:.8rem;font-size:.32rem}.active .item[data-v-440f4668]{padding:.42667rem;position:relative}.active .item[data-v-440f4668]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:0;height:.02667rem;background-color:#f1f1f1}.active .item .title[data-v-440f4668]{font-weight:700;display:flex;align-items:center}.active .item .title .text[data-v-440f4668]{font-size:.42667rem;color:#333;line-height:.58667rem;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .title .van-tag[data-v-440f4668]{width:1.70667rem;border-radius:.32rem;justify-content:center;line-height:.53333rem;margin-left:.10667rem;white-space:nowrap;font-weight:700}.active .item .detail[data-v-440f4668]{margin-top:.32rem}.active .item .detail .cell[data-v-440f4668]{display:flex;font-size:.32rem}.active .item .detail .cell[data-v-440f4668]:not(:last-child){margin-bottom:.10667rem}.active .item .detail .cell .label[data-v-440f4668]{color:#999;margin-right:.21333rem}.active .item .detail .cell .value[data-v-440f4668]{height:.42667rem;flex:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;font-size:.32rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#999;line-height:.42667rem}.active .item .detail .cell .value[data-v-440f4668] b{font-weight:400!important}.active .item .detail .cell .value[data-v-440f4668] div{margin:0!important;padding:0!important}.active .item .detail .cell .value[data-v-440f4668] img{display:none!important}.active .item .detail .cell .value[data-v-440f4668] p,.active .item .detail .cell .value[data-v-440f4668] span{margin:0!important;padding:0!important;font-size:.32rem!important;line-height:normal!important;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.active .item .foot[data-v-440f4668]{margin-top:.32rem;display:flex;justify-content:space-between;align-items:center;font-size:.32rem;color:#999;line-height:.45333rem}.active .item .foot .van-icon[data-v-440f4668]{margin-left:.10667rem;vertical-align:middle}.active .item .more[data-v-440f4668]{padding-top:.32rem;border-top:.02667rem solid #f8f8f8}.active .item .enclosure[data-v-440f4668]{margin-top:.21333rem}.active .item .enclosure .item[data-v-440f4668]{background-color:#f8f8f8;padding:.26667rem .42667rem;display:flex;align-items:center}.active .item .enclosure .item .detail[data-v-440f4668]{flex:1}.active .item .enclosure .item .detail .name[data-v-440f4668]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.active .item .enclosure .item .detail .size[data-v-440f4668]{font-size:.32rem;color:#333;line-height:.45333rem;margin-top:.10667rem}.active .item .enclosure .item .icon[data-v-440f4668]{width:1.49333rem}.active .item .imgs[data-v-440f4668]{display:flex;margin-top:.21333rem}.active .item .imgs .img[data-v-440f4668]{flex:1;border-radius:.10667rem;overflow:hidden}.active .item .imgs .img+.img[data-v-440f4668]{margin-left:.10667rem}.active .item .imgs .img img[data-v-440f4668]{max-height:2.66667rem;display:block;width:100%}.active .item .van-button[data-v-440f4668]{background-color:#fff;border:.02667rem solid #d03a29;border-radius:.32rem;height:.61333rem;width:1.70667rem;font-size:.32rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#d03a29;padding:0 .32rem;margin-top:.32rem}.active .item .van-button .van-icon[data-v-440f4668]{vertical-align:middle}.votersNav[data-v-440f4668]{display:flex;justify-content:space-between;padding:.53333rem .53333rem 0;width:100%;background-color:#fff;margin-bottom:.32rem;margin:15rpx 3%}.votersNav .items .imgBox[data-v-440f4668]{display:flex;justify-content:center}.votersNav .items .imgBox img[data-v-440f4668]{width:1.22667rem;height:1.22667rem}.votersNav .items .title[data-v-440f4668]{font-size:.42667rem;margin-top:.26667rem}.civilian[data-v-440f4668]{background-color:#fff;margin-bottom:.32rem}.civilian .banner[data-v-440f4668]{width:100%;display:block}.civilian .user[data-v-440f4668]{position:relative;margin:-1.06667rem .53333rem 0;border-radius:.10667rem;background-color:#fff;box-shadow:0 .08rem .26667rem 0 rgba(0,0,0,.08);display:flex;align-items:center;padding:.42667rem .53333rem .48rem}.civilian .user .avatar[data-v-440f4668]{position:relative;margin-right:.32rem}.civilian .user .avatar img[data-v-440f4668]{width:1.22667rem;height:1.22667rem;-o-object-fit:cover;object-fit:cover;border-radius:50%}.civilian .user .avatar .badge[data-v-440f4668]{position:absolute;top:.10667rem;right:.10667rem;min-width:.42667rem;padding:0 .08rem;font-size:.32rem;color:#fff;line-height:.42667rem;text-align:center;border-radius:.42667rem;background-color:#d03a29;transform:translate(50%,-50%)}.civilian .user .name[data-v-440f4668]{flex:1;font-size:.37333rem;color:#333;font-weight:700}.civilian .user .link[data-v-440f4668]{font-size:.37333rem;color:#d03a29;font-weight:700}.civilian .user .link .van-icon[data-v-440f4668]{margin-left:.10667rem;vertical-align:middle}.civilian .civilian-menu[data-v-440f4668]{padding:.32rem}.civilian .civilian-menu .item[data-v-440f4668]{position:relative}.civilian .civilian-menu .item[data-v-440f4668]:not(:last-child){margin-bottom:.32rem}.civilian .civilian-menu .item .bg-img[data-v-440f4668]{position:absolute;top:0;right:0;bottom:0;left:0;display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.civilian .civilian-menu .item .content[data-v-440f4668]{padding:.53333rem .64rem;position:relative}.civilian .civilian-menu .item .content .title[data-v-440f4668]{font-size:.42667rem;color:#fff;line-height:.58667rem;font-weight:700}.civilian .civilian-menu .item .content .btn[data-v-440f4668]{margin-top:.29333rem;background-color:#fff;padding:.13333rem .32rem;border-radius:.37333rem;height:.74667rem;display:inline-flex;align-items:center;font-size:.32rem;color:#f6331d;font-weight:700}.civilian .civilian-menu .item .content .btn .van-icon[data-v-440f4668]{margin-left:.08rem}.grassrootsNews .item[data-v-440f4668]{position:relative;padding:.4rem .42667rem;display:flex}.grassrootsNews .item[data-v-440f4668]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.grassrootsNews .item .info[data-v-440f4668]{width:0;flex:1}.grassrootsNews .item .info .title[data-v-440f4668]{flex:1;font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.grassrootsNews .item .info .text[data-v-440f4668]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.grassrootsNews .item .img[data-v-440f4668]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.opinionBox .opinionArrow[data-v-440f4668]{color:#ccc;font-size:.475rem}.opinionBox .opinionArrow[data-v-440f4668]:before{position:relative;top:50%;left:50%;transform:translate(-50%,-51%)}.news[data-v-440f4668]{margin:0 .42667rem;border-bottom:.02667rem solid #f3f3f3}.news[data-v-440f4668]:last-of-type{border-bottom:none}.newList[data-v-440f4668]{display:flex;justify-content:space-between;padding:.42667rem 0}.newList .newleft[data-v-440f4668]{display:flex;flex-direction:column;justify-content:space-between}.newList .newleft .newtitle[data-v-440f4668]{font-size:.37333rem;color:#333;line-height:.58667rem;font-weight:700}.newList .newleft .newdate[data-v-440f4668]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.newList .newimg[data-v-440f4668]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-dbd4d9ce.cc856106.css b/src/main/resources/views/dist/css/chunk-dbd4d9ce.cc856106.css
new file mode 100644
index 0000000..e0aedba
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-dbd4d9ce.cc856106.css
@@ -0,0 +1 @@
+.van-pagination[data-v-631a8e3b]{position:fixed;bottom:0;width:100%;z-index:999;background:#fff}.box[data-v-631a8e3b]{display:flex;flex-direction:column;height:100%;font-size:.42667rem}.box .add[data-v-631a8e3b]{width:2.13333rem;height:2.13333rem;position:fixed;right:.32rem;bottom:20%}.box[data-v-631a8e3b] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .tab-contain[data-v-631a8e3b]{padding:.32rem;padding-bottom:1.12rem}.box .tab-contain .van-cell[data-v-631a8e3b]{margin-bottom:.37333rem}.box .tab-contain .van-cell .custom-title[data-v-631a8e3b]{font-weight:700;font-size:.42667rem}.box .tab-contain .van-cell .custom-title1[data-v-631a8e3b]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#47aef3}.box .tab-contain .van-cell .custom-title2[data-v-631a8e3b]{font-weight:700;margin-left:.8rem;font-size:.37333rem;color:#c86b1d}.box .tab-contain .van-cell .van-icon[data-v-631a8e3b]{color:#333}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-de899a1e.2e7baa2d.css b/src/main/resources/views/dist/css/chunk-de899a1e.2e7baa2d.css
new file mode 100644
index 0000000..39f00c4
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-de899a1e.2e7baa2d.css
@@ -0,0 +1 @@
+.flex-align-center[data-v-6dbed47e]{display:flex;align-items:center}.browse_image[data-v-6dbed47e]{width:2.13333rem;height:2.13333rem}[data-v-6dbed47e] .from_el{display:flex;align-items:center}[data-v-6dbed47e] .from_el .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}[data-v-6dbed47e] .from_el .enclosure{margin-top:.53333rem}[data-v-6dbed47e] .from_el .enclosureBtn{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}[data-v-6dbed47e] .from_el .enclosureBtn .enclosureImg{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.preview-cover[data-v-6dbed47e]{position:absolute;bottom:0;box-sizing:border-box;width:100%;padding:.10667rem;color:#fff;font-size:.32rem;text-align:center;background:rgba(0,0,0,.3)}.browse[data-v-6dbed47e]{margin:.26667rem 0}.browse .browse_delet[data-v-6dbed47e]{width:100%;text-align:right;font-size:.42667rem}.browse .imagesee[data-v-6dbed47e]{width:2.66667rem}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-e0d1da64.55322d14.css b/src/main/resources/views/dist/css/chunk-e0d1da64.55322d14.css
new file mode 100644
index 0000000..208bbed
--- /dev/null
+++ b/src/main/resources/views/dist/css/chunk-e0d1da64.55322d14.css
@@ -0,0 +1 @@
+.van-button[data-v-01c2fac4]{padding:.42667rem .85333rem;border-radius:.21333rem}.fileList1List[data-v-01c2fac4]{background-color:#f7f8fa;width:2.13333rem;height:2.13333rem}.fileList1List img[data-v-01c2fac4]{width:.53333rem;height:.53333rem;margin-left:.8rem;margin-top:.50667rem}.fileList1List h4[data-v-01c2fac4]{height:.37333rem;margin-top:.21333rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-left:.13333rem}.publish[data-v-01c2fac4]{position:fixed;bottom:0;left:0;width:100%;display:flex;align-items:center;box-sizing:border-box;padding:.42667rem;border-top:.02667rem solid #f8f8f8;background:#fff;z-index:2}.publish input[data-v-01c2fac4]{height:1.06667rem;background-color:#f8f8f8;border-radius:.16rem;flex:1;margin-right:.32rem;border:none;outline:none;padding:0 .16rem 0 1.06667rem;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAaCAYAAACtv5zzAAAACXBIWXMAAAsTAAALEwEAmpwYAAACfElEQVRIiaWVTUgUYQCG33d2RleErIMHiYjwUniIyNumfLOKnYqgqEMnD0FS0SHBBCEzI6Kw6AeiQ3SxQ5eIQCnNmV0S9pBFGEFRREREP+ilXG139u1QidXurLPObb7vfZ/n+4EZIsIzMjJSXVtbOyhpv6Q1AB5L6k8mkw9LdRhFMDExcYNk5z/DeZI7jTGjxTp2FEE8Hu+en5//SvIwgJoljEEAlQv6+/stY0zfwsLCFpJ3bdveGARBn6ROALakTaW6yxK4rttbKBRO/n7dlcvlXsRisd5YLHY+n88PklxXqlv2DiYnJxtzudy0pJoi06PGmB1TU1PVzc3NcxUJfN+/L6kjJNLiuu6jUpOhR+R53r4wOMms4zivwhglBZlMZlU2m70QVgZwJpFIfK5IkM1mTwNoCOm+rK+vP1tmAcUFnuc1A+gK6YlkV1NT04/IAkmW7/vXAMRCesPGGK8cvKgglUodArA1pDNbVVV1bDnw/wTpdLohCIJTZTq95S62pKBQKFwEUBeSzxhjri8X/pcgnU5vD4Jgb0g2L+kgSUUWeJ4XD4LgaliQ5CXXdZ9FgS8KAHQDaAzJvZd0Iip8UUCyQyq9c5JHjTHfKhKMjY3VSboFYBuKfPxI3jPG3KkEDgC24zhPAVyWlAQwAKBlyfx3x3GOVAoHfv2NLABDJN+S7JN0TlIPgNUAjicSiXcrEpCckbRe0gZJwySfAOhxXXd8JeBFAYDZpQOSNpM8MD4+Pt3e3v5JElOp1B5Ja6OAJRVIPrAlzQAAyTkAN4MgGGpra3vzJ+j7/m4At6OunCQAfLQBvCY5YFnWldbW1i9Fss8BfAAQeQeWZY39BA3V/UPBTjehAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:.37333rem;background-position:.26667rem}.publish p[data-v-01c2fac4]{display:inline-block;height:1.06667rem;line-height:1.06667rem;width:1.6rem;text-align:center;background:#d03a29;border-radius:.16rem;color:#fff}.users[data-v-01c2fac4]{margin-top:-.32rem;padding:.10667rem 0 .21333rem;background-color:#fff;display:flex;flex-wrap:wrap;border-bottom:.02667rem solid #f3f3f3}.users .item[data-v-01c2fac4]{background-color:#fff2f1;padding:0 .26667rem;font-size:.32rem;color:#333;line-height:.61333rem;border-radius:.29333rem;margin-right:.26667rem;margin-top:.26667rem;position:relative}.users .item .van-icon[data-v-01c2fac4]{position:absolute;top:0;right:0;transform:translate(50%,-50%);color:#d03a29}.step .my-swipe .van-swipe-item[data-v-01c2fac4]{height:4rem;box-sizing:border-box;padding:.8rem 0 .8rem 1.06667rem;display:flex;align-items:baseline;justify-content:space-between}.step .my-swipe .van-swipe-item .pitch-step-title[data-v-01c2fac4]{font-weight:600;font-size:.34667rem!important}.step .my-swipe .van-swipe-item .step-item[data-v-01c2fac4]{display:inline-block;position:relative;box-sizing:border-box}.step .my-swipe .van-swipe-item .step-item.negativeDirection .line[data-v-01c2fac4]{left:.10667rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item.negativeDirection .step-title[data-v-01c2fac4]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:-60%;margin-left:20%}.step .my-swipe .van-swipe-item .step-item .stepImg[data-v-01c2fac4]{position:relative;width:.72rem;height:.72rem}.step .my-swipe .van-swipe-item .step-item .line[data-v-01c2fac4]{width:calc(100% - .90667rem);height:.02667rem;border-bottom:.02667rem dashed #dcdcdc;position:absolute;left:.8rem;top:.32rem}.step .my-swipe .van-swipe-item .step-item .line.completedLine[data-v-01c2fac4]{border-bottom-color:#8ccf8c!important}.step .my-swipe .van-swipe-item .step-item .step-title[data-v-01c2fac4]{font-size:.32rem;line-height:.48rem;margin-top:.37333rem;text-align:center;margin-right:5%;margin-left:-60%}.step .my-swipe[data-v-01c2fac4] .van-swipe__indicators .van-swipe__indicator{width:.26667rem;height:.10667rem;background:#88bc88;border-radius:.05333rem;opacity:.5}.step .my-swipe[data-v-01c2fac4] .van-swipe__indicators .van-swipe__indicator.van-swipe__indicator--active{width:.50667rem;height:.10667rem;background:#55b955;border-radius:.05333rem;opacity:.7}.report .report-title[data-v-01c2fac4]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem;color:#333}.report .report-contain[data-v-01c2fac4]{padding:.42667rem 0}.report .report-contain .word[data-v-01c2fac4]{font-size:.42667rem;line-height:.53333rem}.report .report-contain .date[data-v-01c2fac4]{color:#333;font-size:.32rem;margin-top:.42667rem}.vote .vote-title[data-v-01c2fac4]{padding:.32rem 0;font-size:.42667rem;background:#f8f8f8;margin:0 -.42667rem;padding:.42667rem}.vote .vote-title .voteImg[data-v-01c2fac4]{width:.48rem;height:.42667rem;margin-right:.26667rem;vertical-align:bottom}.vote .vote-contain .vote-item[data-v-01c2fac4],.vote .vote-contain[data-v-01c2fac4]{padding:.21333rem 0}.vote .vote-contain .vote-item .vote-row[data-v-01c2fac4]{display:flex;justify-content:space-between;align-items:center}.vote .vote-contain .vote-item .vote-row[data-v-01c2fac4]:last-of-type{margin-top:.21333rem}.vote .vote-contain .vote-item .vote-row .ticket[data-v-01c2fac4]{width:.53333rem;height:.53333rem}.vote .vote-contain .vote-item .vote-row .progress[data-v-01c2fac4]{flex:1}.vote .vote-contain .vote-item .vote-row .vote-right[data-v-01c2fac4]{width:1.6rem;text-align:center}.evaluate[data-v-01c2fac4]{margin-top:.8rem;padding:.42667rem .64rem;background:#f8f8f8;border-radius:.21333rem}.evaluate .evaluate-contain[data-v-01c2fac4]{line-height:.53333rem}.evaluate .evaluate-contain .title[data-v-01c2fac4]{color:#0071ff}.evaluate .evaluate-bottom[data-v-01c2fac4]{display:flex;align-items:center;justify-content:space-between;margin-top:.74667rem}.evaluate .evaluate-bottom .date[data-v-01c2fac4]{color:#8e8f9e}.evaluate .evaluate-bottom .more[data-v-01c2fac4]{color:#0071ff}.enclosurePopup[data-v-01c2fac4]{padding:1.06667rem}.enclosurePopup .btn[data-v-01c2fac4]{background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.enclosureBtn[data-v-01c2fac4]{display:inline-block;padding:.21333rem .42667rem;background:#d03a29;border-radius:.10667rem;color:#fff}.enclosureBtn .enclosureImg[data-v-01c2fac4]{margin-right:.10667rem;width:.34667rem;height:.32rem;vertical-align:middle}.box[data-v-01c2fac4]{display:flex;flex-direction:column;height:100%;font-size:.37333rem}.box[data-v-01c2fac4] .van-tab.van-tab--active{font-size:.42667rem;font-weight:800}.box .van-tabs[data-v-01c2fac4]{flex:1;display:flex;flex-direction:column}.box .van-tabs[data-v-01c2fac4] .van-tabs__content,.box .van-tabs[data-v-01c2fac4] .van-tabs__content .van-tab__pane{height:100%}.box .van-tabs[data-v-01c2fac4] .van-tabs__content .van-tab__pane .tab-contain{display:flex;flex-direction:column;height:100%}.box .van-tabs[data-v-01c2fac4] .van-tabs__content .van-tab__pane .tab-contain .step-contain{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .van-tabs[data-v-01c2fac4] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .van-tabs[data-v-01c2fac4] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .title{width:2.4rem;font-size:.42667rem;flex-shrink:0}.box .van-tabs[data-v-01c2fac4] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .notice-contain{font-size:.42667rem}.box .van-tabs[data-v-01c2fac4] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .input-ele{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .van-tabs[data-v-01c2fac4] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .downIcon{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .van-tabs[data-v-01c2fac4] .van-tabs__content .van-tab__pane .tab-contain .step-contain .form-ele .enclosure{flex:1}.box .van-tabs[data-v-01c2fac4] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn{margin:0 .42667rem;margin-top:1.6rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .van-tabs[data-v-01c2fac4] .van-tabs__content .van-tab__pane .tab-contain .step-contain .btn .enclosureEnd{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}.box .tab-contain[data-v-01c2fac4]{display:flex;flex-direction:column;height:100%}.box .tab-contain .step-contain[data-v-01c2fac4]{flex:1;background:#fff;border-top-right-radius:.8rem;border-top-left-radius:.8rem;padding:.42667rem;padding-bottom:2.13333rem}.box .tab-contain .step-contain .form-ele[data-v-01c2fac4]{display:flex;align-items:center;padding:.32rem 0;border-bottom:.02667rem solid #f3f3f3;position:relative}.box .tab-contain .step-contain .form-ele .title[data-v-01c2fac4]{width:2.4rem;font-size:.42667rem;flex-shrink:0}.box .tab-contain .step-contain .form-ele .notice-contain[data-v-01c2fac4]{font-size:.42667rem}.box .tab-contain .step-contain .form-ele .input-ele[data-v-01c2fac4]{flex:1;border:none;outline:none;background:#f8f8f8;padding:.21333rem 1.06667rem .21333rem .53333rem;border-radius:.45333rem}.box .tab-contain .step-contain .form-ele .downIcon[data-v-01c2fac4]{position:absolute;right:.42667rem;top:.58667rem;z-index:10}.box .tab-contain .step-contain .form-ele .enclosure[data-v-01c2fac4]{flex:1}.box .tab-contain .step-contain .btn[data-v-01c2fac4]{margin:0 .42667rem;margin-top:1.6rem;background:#d03a29;border-radius:.53333rem;height:1.06667rem;line-height:1.06667rem;text-align:center;color:#fff}.box .tab-contain .step-contain .btn .enclosureEnd[data-v-01c2fac4]{width:.48rem;height:.42667rem;margin-right:.16rem;vertical-align:middle}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/css/chunk-e99dccdc.a5af1578.css b/src/main/resources/views/dist/css/chunk-e99dccdc.a5af1578.css
deleted file mode 100644
index 3c034ab..0000000
--- a/src/main/resources/views/dist/css/chunk-e99dccdc.a5af1578.css
+++ /dev/null
@@ -1 +0,0 @@
-.onlyImg[data-v-1fd96dc6]{display:flex;justify-content:space-between}.onlyImg .img[data-v-1fd96dc6]{margin-left:.32rem;width:2.13333rem;height:2.13333rem;-o-object-fit:cover;object-fit:cover}.pdf_con[data-v-1fd96dc6]{font-size:.37333rem}.pdf_con img[data-v-1fd96dc6]{width:1.12rem}.mulimg .imglist[data-v-1fd96dc6]{margin-top:.16rem;display:flex;flex-wrap:wrap}.mulimg .imglist img[data-v-1fd96dc6]{width:30%;margin-right:2%;height:auto}.page[data-v-1fd96dc6]{min-height:100%;background-color:#fff}.notice[data-v-1fd96dc6]{padding:.42667rem}.matter[data-v-1fd96dc6],.title[data-v-1fd96dc6]{font-size:.4rem;color:#333;line-height:.53333rem;font-weight:700}.date[data-v-1fd96dc6],.matter span[data-v-1fd96dc6]{font-size:.32rem;line-height:.45333rem}.date[data-v-1fd96dc6]{margin-top:.16rem;color:#999}.content[data-v-1fd96dc6]{width:100%;font-size:.37333rem;color:#333;line-height:.64rem;margin-top:.21333rem}.imagesd[data-v-1fd96dc6]{margin-top:.21333rem;width:100%;display:flex;flex-wrap:wrap}.imagesd div[data-v-1fd96dc6]{margin-right:.05333rem}
\ No newline at end of file
diff --git a/src/main/resources/views/dist/img/QR.b6e7153e.png b/src/main/resources/views/dist/img/QR.b6e7153e.png
new file mode 100644
index 0000000..046d87d
Binary files /dev/null and b/src/main/resources/views/dist/img/QR.b6e7153e.png differ
diff --git a/src/main/resources/views/dist/index.html b/src/main/resources/views/dist/index.html
index 7902ace..eaf1582 100755
--- a/src/main/resources/views/dist/index.html
+++ b/src/main/resources/views/dist/index.html
@@ -10,4 +10,4 @@
// console.log(wpk,'稳定性监控开启');
} catch (err) {
console.error('WpkReporter init fail', err);
- }