/* 
每个微组件的class样式自己标注好，不允许出现同名的class
每个组件定义一个总的微组件class

注：可以找一个在线scss预编译器写scss代码，编译后成css后放到该文件下：https://www.sassmeister.com/

scss源代码在micromodule_style_prew.scss文件可在该文件写完scss代码后放到上面网址上进行编译，再放到该文件在，该文件会被引用到项目中
*/


/*
统计卡片式微组件
*/
@charset "UTF-8";

/* oa首页日历 */
.el-dropdown-menu__item:not(.is-disabled):focus, .el-dropdown-menu__item:not(.is-disabled):hover{
  color:var(--global-color) !important;
}
.setting_hover {
  color:rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
}
.el-button.is-link:hover{
  color: var(--global-color) !important;
}
.setting_hover:hover {
  color: var(--global-color) !important;
}
/* 首页常用功能交互 */
.itembg:hover{
  opacity: 0.8;
  color: var(--global-color) !important;
}
/* 首页任务组件交互 */
.item_tab_bg:hover{
  color: var(--global-color) !important;
}
.commonListCard {
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* 固定5列 */
  gap: 8px;
  /* 设置单元格间距 */
}
.commonListCard .el-card {
  box-shadow: none !important;
  margin: 0px;
  border: none;
}
.commonListCard .el-card__body, .commonListCard .el-card__footer {
  padding: 12px;
}
.commonListCard .row_span_text {
  font-family: PingFangSC, PingFang SC;
  text-align: left;
  font-style: normal;
}
.commonListCard .two-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  /* This is important to allow line breaks */
}
.commonListCard .one-lines {
  white-space: nowrap;
  /* 保证文本在一行内显示 */
  overflow: hidden;
  /* 隐藏溢出的内容 */
  text-overflow: ellipsis;
  /* 使用省略号表示溢出的文本 */
}
.commonListCard .active_open_form {
  color: rgba(15, 88, 214, 0.65) !important;
  cursor: pointer !important;
}
.commonListCard .row_index_1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  align-items: center;
}
.commonListCard .row_index_1 .row_index_1_left {
  background: linear-gradient(90deg, rgba(15, 88, 214, 0.15) 0%, rgba(15, 88, 214, 0) 100%);
  border-radius: 2px;
  padding: 6px 8px;
  width: 137px;
}
.commonListCard .row_index_1 .row_span {
  font-weight: 500;
  font-size: 16px;
  color: #0F58D6;
  line-height: 22px;
  width: 137px;
}
.commonListCard .row_index_2 .row_span {
  font-weight: 400;
  font-size: 14px;
  color: rgba(15, 88, 214, 0.65);
  line-height: 24px;
}
.commonListCard .row_index_3 {
  height: 48px;
}
.commonListCard .row_index_3 .row_span {
  font-weight: 500;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 24px;
  text-align: justify;
}
.commonListCard .row_index_4 {
  margin: 5px 0px;
  height: 48px;
}
.commonListCard .row_index_4 .row_span {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 24px;
  text-align: justify;
}
.commonListCard .row_index_5 {
  display: flex;
  align-items: center;
}
.commonListCard .row_index_5 .label_title {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 20px;
}
.commonListCard .row_index_5 .row_span {
  width: 80px;
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 20px;
}
.commonListCard .row_index_7 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.commonListCard .row_index_7 .label_title {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 20px;
}
.commonListCard .row_index_7 .row_span {
  width: 100px;
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 20px;
}




/*
审计成果-问题数量统计卡片微组件
*/
.problemCountCard {
  padding: 0px 24px 24px 24px;
}
.problemCountCard .bg .card {
  padding-top: 1px;
  font-size: 18px;
  margin-bottom: 20px;
  background-color: white;
}
.problemCountCard .bg .card .card-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.problemCountCard .bg .card .card__title {
  padding: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.problemCountCard .bg .card .card__title .card__title_txt {
  position: relative;
  padding-left: 10px;
}
.problemCountCard .bg .card .card__title .card__title_txt::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  margin-top: -8px;
  width: 3px;
  height: 16px;
  display: inline-block;
  background: #e24646;
}
.problemCountCard .bg .card .card__title .el-select {
  width: 100px;
  margin-left: 10px;
}
.problemCountCard .bg .card .card__title span {
  font-size: 20px;
}
.problemCountCard .bg .card .card__title .el-date-editor.el-input {
  margin-left: 10px;
  width: 100px;
}
.problemCountCard .bg .card .hr {
  width: 100%;
  height: 1px;
  background: gray;
}
.problemCountCard .bg .card .statistical {
  padding: 0 20px 20px 20px;
  height: 80px;
  display: flex;
  width: 100%;
}
.problemCountCard .bg .card .statistical .statistical-item {
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.problemCountCard .bg .card .statistical .statistical-item.problem {
  margin-right: 30px;
  background: #fee4e4;
}
.problemCountCard .bg .card .statistical .statistical-item.rectified {
  margin-right: 30px;
  background: #edf9e8;
}
.problemCountCard .bg .card .statistical .statistical-item.not-rectified {
  margin-right: 30px;
  background: #fff4e6;
}
.problemCountCard .bg .card .statistical .statistical-item.annual-rectification {
  background: #ebf2fe;
}
.problemCountCard .bg .card .statistical .statistical-item .statistical-img {
  width: 36px;
  height: 36px;
  display: inline-block;
}
.problemCountCard .bg .card .statistical .statistical-item .statistical-item-title {
  font-weight: 600;
  font-size: 14px;
}
.problemCountCard .bg .card .statistical .statistical-item .statistical-item-num {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 600;
}
.problemCountCard .bg .card .statistical .statistical-item .statistical-item-num.problem-num {
  color: #f22c2c;
}
.problemCountCard .bg .card .statistical .statistical-item .statistical-item-num.rectified-num {
  color: #62c931;
}
.problemCountCard .bg .card .statistical .statistical-item .statistical-item-num.not-rectified-num {
  color: #ff9a0d;
}
.problemCountCard .bg .card .statistical .statistical-item .statistical-item-num.annual-rectification-num {
  color: #3f81fa;
}



/* cc轮播图样式微组件 */
.homepageCarousel{
  width: 100%;
  height: 450px;

}
.homepageCarousel .monitor_text{
  font-size: 16px;
  text-align: center;
  height: 450px;
  line-height: 450px;
  font-weight: 600;
}
.homepageCarousel #monitor{
  width: 100%;
  height: 450px;

}
/* .iframe {
  width: 500px;
  height: 500px;
} */
.homepageCarousel #monitor .video-box{
  width: 100%;
  height: 450px;
  margin-bottom: 10px;
}
.homepageCarousel #monitor .video-box .iframe_box{
  width: 100%;
  height: 450px;
}
.homepageCarousel #monitor .video-box .iframe_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homepageCarousel .swiper-slide{
  /* width: 205px !important;
  height: 100px !important; */
}
.homepageCarousel .swiper-slide img{
  width: 100%;
  height: 110px !important;
  object-fit: cover;
}




/*
工程数据流程微组件
*/
.engineeringDataProcess {
  width: 100%;
}
.engineeringDataProcess .engineering-data-item {
  display: flex;
}
.engineeringDataProcess .arrow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 7.7vw;
}
.engineeringDataProcess .arrow .line {
  width: 0.052vw;
  height: 1.7vh;
  background: rgba(0, 0, 0, 0.45);
}
.engineeringDataProcess .arrow .triangle {
  width: 0;
  height: 0;
  border-left: 0.2vw solid transparent;
  border-right: 0.2vw solid transparent;
  border-top: 0.8vh solid rgba(0, 0, 0, 0.45);
}
.engineeringDataProcess .left-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.engineeringDataProcess .left-part .arrow {
  height: calc(50% - 2vh);
}
.engineeringDataProcess .left-part .arrow .line {
  height: 100%;
}
.engineeringDataProcess .left-part .hidden .line {
  background: transparent;
}
.engineeringDataProcess .left-part .hidden .triangle {
  border-top: 1vh solid transparent;
}
.engineeringDataProcess .title-part {
  display: flex;
  align-items: center;
  height: 4vh;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 0.94vw;
  color: rgba(0, 0, 0, 0.85);
  line-height: 2.6vh;
  text-align: center;
  font-style: normal;
}
.engineeringDataProcess .title-part .type {
  width: 2.4vh;
  height: 2.4vh;
}
.engineeringDataProcess .title-part img {
  width: 100%;
  height: 100%;
}
.engineeringDataProcess .title-part .title {
  margin-left: 0.2vw;
}
.engineeringDataProcess .card-part {
  display: flex;
  flex-wrap: wrap;
  width: 80.47vw;
  padding: 2.5vh;
  padding-bottom: 1vh;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-bottom: none;
}
.engineeringDataProcess .card-part.first {
  border-top: none;
}
.engineeringDataProcess .card-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 7.3vw;
  height: 7.3vh;
  margin-right: 1.5vw;
  margin-bottom: 1.5vh;
  border-radius: 4px;
}
.engineeringDataProcess .card-item.have-children {
  margin-bottom: 0;
}
.engineeringDataProcess .card-item .type {
  position: absolute;
  right: -0.31vw;
  top: -0.6vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.25vw;
  height: 2.4vh;
}
.engineeringDataProcess .card-item .type img {
  width: 100%;
  height: 100%;
}
.engineeringDataProcess .card-item .title {
  margin-bottom: 0.2vh;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 0.75vw;
  line-height: 2.2vh;
  text-align: center;
  font-style: normal;
}
.engineeringDataProcess .card-item .time {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 0.65vw;
  line-height: 2.2vh;
  text-align: center;
  font-style: normal;
}
.engineeringDataProcess .can-jump {
  cursor: pointer;
}
.engineeringDataProcess .green {
  color: #FFFFFF;
  background: #53C850;
}
.engineeringDataProcess .red {
  color: #FFFFFF;
  background: #C42C2B;
}
.engineeringDataProcess .gray {
  color: rgba(0, 0, 0, 0.85);
  background: rgba(0, 0, 0, 0.06);
}





/*
前期程序审批微组件
*/
.preliminaryProgramDiagram {
  position: relative;
  padding: 3.4vh 0;
  margin: 0 1.1vw;
  overflow: auto;
}
.preliminaryProgramDiagram .program-diagram-line {
  display: flex;
  align-items: center;
  margin-bottom: 4.4vh;
}
.preliminaryProgramDiagram .program-diagram-node {
  display: flex;
  align-items: center;
}
.preliminaryProgramDiagram .node-box {
  position: relative;
}
.preliminaryProgramDiagram .node-box .node-title {
  display: flex;
  position: absolute;
  left: 0;
  top: -2.6vh;
  height: 2.6vh;
  padding-left: 4px;
  background: #C42C2B;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 0.7vw;
  color: #FFFFFF;
  line-height: 2.6vh;
  text-align: left;
  font-style: normal;
}
.preliminaryProgramDiagram .node-box .node-title::after {
  content: " ";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 0.47vw solid #C42C2B;
  border-right: 0.47vw solid #fff;
  border-top: 1.3vh solid #C42C2B;
  border-bottom: 1.3vh solid #C42C2B;
}
.preliminaryProgramDiagram .node-box .have-title {
  display: flex;
  flex-wrap: wrap;
  border: 1px dashed #979797;
}
.preliminaryProgramDiagram .node-box .card-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 7.58vw;
  height: 9.5vh;
  padding: 0.16vw;
  margin: 0.8vh 0.63vw;
  border-radius: 3px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 0.6vw;
  color: #FFFFFF;
  line-height: 0.7vw;
  text-align: center;
  font-style: normal;
  cursor: pointer;
}
.preliminaryProgramDiagram .node-box .card-item.gray {
  color: rgba(0, 0, 0, 0.85);
}
.preliminaryProgramDiagram .node-box .card-item .title {
  margin-bottom: 0.4vh;
}
.preliminaryProgramDiagram .node-box .card-item .time {
  font-size: 0.6vw;
  margin-top: 0.4vh;
  margin-bottom: 0;
}
.preliminaryProgramDiagram .node-box .no-have-title .card-item {
  margin: 0;
}
.preliminaryProgramDiagram .bottom-tip {
  display: flex;
  margin-left: 16px;
}
.preliminaryProgramDiagram .bottom-tip .bottom-tip-item {
  display: flex;
  align-items: center;
  margin-right: 2.63vw;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 0.7vw;
  color: rgba(0, 0, 0, 0.65);
  line-height: 16px;
  text-align: left;
  font-style: normal;
}
.preliminaryProgramDiagram .bottom-tip .tip {
  width: 0.84vw;
  height: 0.84vw;
  border-radius: 2px;
  margin-right: 7px;
}
.preliminaryProgramDiagram .gray {
  background: rgba(0, 0, 0, 0.15);
}
.preliminaryProgramDiagram .green {
  background: #53C850;
}
.preliminaryProgramDiagram .red {
  background: #C42C2B;
}
.preliminaryProgramDiagram .card-detail-info {
  position: absolute;
  bottom: 4.2vh;
  width: 19.9vw;
  padding: 1.8vh;
  background: #fff;
  border-radius: 1px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.preliminaryProgramDiagram .card-detail-info .title-part {
  display: flex;
  justify-content: space-between;
}
.preliminaryProgramDiagram .card-detail-info .title {
  display: flex;
  align-items: center;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 0.74vw;
  color: rgba(0, 0, 0, 0.85);
  line-height: 0.95vw;
  text-align: center;
  font-style: normal;
}
.preliminaryProgramDiagram .card-detail-info .title::before {
  content: " ";
  display: inline-block;
  width: 0.21vw;
  height: 1.6vh;
  margin-right: 0.32vw;
  background: #C42C2B;
  border-radius: 2px;
}
.preliminaryProgramDiagram .card-detail-info .jump {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 0.7vw;
  color: #C42C2B;
  line-height: 0.84vw;
  text-align: right;
  font-style: normal;
  text-decoration-line: underline;
  cursor: pointer;
}
.preliminaryProgramDiagram .card-detail-info .file-list {
  margin: 1vw 1vh;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 0.7vw;
  color: #0F58D6;
  line-height: 1.6vh;
  text-align: left;
  font-style: normal;
}
.preliminaryProgramDiagram .card-detail-info .file-item {
  line-height: 2vh;
  cursor: pointer;
}
.preliminaryProgramDiagram .card-detail-info .file-item:last-child {
  margin-bottom: 0;
}
.preliminaryProgramDiagram .card-detail-info .content-list {
  margin: 1.6vh 0.8vh;
}
.preliminaryProgramDiagram .card-detail-info .content-item {
  display: flex;
  justify-content: space-between;
}
.preliminaryProgramDiagram .card-detail-info .info {
  font-family: PingFangSC, PingFang SC;
  font-size: 0.7vw;
  line-height: 3.2vh;
  font-style: normal;
}
.preliminaryProgramDiagram .card-detail-info .info-title {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  text-align: left;
}
.preliminaryProgramDiagram .card-detail-info .value {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
  text-align: right;
}
/* municipal-administration市政类型  water-conservancy水利类型*/
.preliminaryProgramDiagram.building-construction .program-diagram-line, .preliminaryProgramDiagram.municipal-administration .program-diagram-line {
  margin-bottom: 7vh;
}
.preliminaryProgramDiagram.building-construction .program-diagram-line:last-child, .preliminaryProgramDiagram.municipal-administration .program-diagram-line:last-child {
  margin-bottom: 2.6vh;
}
.preliminaryProgramDiagram.building-construction .node-box .box-0-0,
.preliminaryProgramDiagram.building-construction .node-box .box-1-0, .preliminaryProgramDiagram.municipal-administration .node-box .box-0-0,
.preliminaryProgramDiagram.municipal-administration .node-box .box-1-0 {
  width: 26.73vw;
}
.preliminaryProgramDiagram.building-construction .node-box .box-1-3, .preliminaryProgramDiagram.municipal-administration .node-box .box-1-3 {
  width: 9vw;
}
.preliminaryProgramDiagram.building-construction .node-box .box-2-0, .preliminaryProgramDiagram.municipal-administration .node-box .box-2-0 {
  width: 35.68vw;
}
.preliminaryProgramDiagram.building-construction .arrow.arrow-0, .preliminaryProgramDiagram.municipal-administration .arrow.arrow-0 {
  display: flex;
  align-items: center;
  position: relative;
}
.preliminaryProgramDiagram.building-construction .arrow.arrow-0 .line, .preliminaryProgramDiagram.municipal-administration .arrow.arrow-0 .line {
  width: 11vw;
  height: 0.1vh;
  background: rgba(0, 0, 0, 0.45);
}
 .preliminaryProgramDiagram.municipal-administration .arrow.arrow-0-0::after,.preliminaryProgramDiagram.building-construction .arrow.arrow-0-0::after {
  content: " ";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid rgba(0, 0, 0, 0.45);
}

.preliminaryProgramDiagram.municipal-administration .arrow.arrow-0-1::after,.preliminaryProgramDiagram.building-construction .arrow.arrow-0-1::after {
  content: " ";
  display: inline-block;
  width: 0;
  position: absolute;
  top: 7.3vh;
  left: 10.7vw;
  height: 0;
  border-top: 7px solid rgba(0, 0, 0, 0.45);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.preliminaryProgramDiagram.building-construction .arrow.arrow-0.arrow-0-1::after{
  position: absolute;
  right: -4px;
  top: 7.3vh;
  border-top: 7px solid rgba(0, 0, 0, 0.45);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.preliminaryProgramDiagram .municipal-administration .arrow.arrow-0.arrow-0-1::after {
  position: absolute;
  right: -4px;
  top: 12.7vh;
  border-top: 7px solid rgba(0, 0, 0, 0.45);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.preliminaryProgramDiagram.building-construction .arrow.arrow-0.arrow-0-1 .line-col, .preliminaryProgramDiagram.municipal-administration .arrow.arrow-0.arrow-0-1 .line-col {
  position: absolute;
  right: 0;
  top: 0.1vh;
  width: 0.052vw;
  height: 7.2vh;
  background: rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.building-construction .arrow.arrow-1, .preliminaryProgramDiagram.municipal-administration .arrow.arrow-1 {
  display: flex;
  align-items: center;
}
.preliminaryProgramDiagram.building-construction .arrow.arrow-1 .line, .preliminaryProgramDiagram.municipal-administration .arrow.arrow-1 .line {
  width: 3vw;
  height: 0.1vh;
  background: rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.building-construction .arrow.arrow-1::before, .preliminaryProgramDiagram.municipal-administration .arrow.arrow-1::before {
  content: " ";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 6px solid rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.building-construction .arrow.arrow-1-3, .preliminaryProgramDiagram.municipal-administration .arrow.arrow-1-3 {
  display: none;
}
.preliminaryProgramDiagram.building-construction .card-detail-info, .preliminaryProgramDiagram.municipal-administration .card-detail-info {
  left: 62vw;
}
.preliminaryProgramDiagram.water-conservancy .program-diagram-line {
  margin-bottom: 6.4vh;
}
.preliminaryProgramDiagram.water-conservancy .program-diagram-line:last-child {
  margin-bottom: 2.6vh;
}
.preliminaryProgramDiagram.water-conservancy .node-box .box-0-0 {
  width: 35.5vw;
}
.preliminaryProgramDiagram.water-conservancy .node-box .box-1-1 {
  width: 9vw;
}
.preliminaryProgramDiagram.water-conservancy .node-box .box-2-0 {
  width: 53.16vw;
}
.preliminaryProgramDiagram.water-conservancy .arrow.arrow-0 {
  display: flex;
  align-items: center;
  position: relative;
}
.preliminaryProgramDiagram.water-conservancy .arrow.arrow-0 .line {
  width: 5.56vw;
  height: 0.1vh;
  background: rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.water-conservancy .arrow.arrow-0.arrow-0-0 .line-col {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.052vw;
  height: 16vh;
  background: rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.water-conservancy .arrow.arrow-0::after {
  content: " ";
  position: absolute;
  right: -4px;
  top: 16vh;
  border-top: 7px solid rgba(0, 0, 0, 0.45);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.preliminaryProgramDiagram.water-conservancy .arrow.arrow-1 {
  display: flex;
  align-items: center;
}
.preliminaryProgramDiagram.water-conservancy .arrow.arrow-1 .line {
  width: 10vw;
  height: 0.1vh;
  background: rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.water-conservancy .arrow.arrow-1::before {
  content: " ";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 6px solid rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.water-conservancy .arrow.arrow-1-2 {
  display: none !important;
}
.preliminaryProgramDiagram.water-conservancy .card-detail-info {
  left: 60vw;
}


.preliminaryProgramDiagram.traffic .program-diagram-line {
  margin-bottom: 6.4vh;
}
.preliminaryProgramDiagram.traffic .program-diagram-line:last-child {
  margin-bottom: 2.6vh;
}
.preliminaryProgramDiagram.traffic .node-box .box-0-0 {
  width: 26.65vw;
}
.preliminaryProgramDiagram.traffic .node-box .box-1-0 {
  width: 17.8vw;
}
.preliminaryProgramDiagram.traffic .node-box .box-2-0 {
  width: 53.16vw;
}
.preliminaryProgramDiagram.traffic .arrow.arrow-0 {
  display: flex;
  align-items: center;
  position: relative;
}
.preliminaryProgramDiagram.traffic .arrow.arrow-0 .line {
  width: 12.77vw;
  height: 0.1vh;
  background: rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.traffic .arrow.arrow-0-0 .line::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -3px;
  display: inline-block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid rgba(0, 0, 0, 0.45);
  width: 0px ;
  height: 0px;
}
.preliminaryProgramDiagram.traffic .arrow.arrow-0-1 .line {
  display: none;
  width: 12.77vw;
  height: 0.1vh;
  background: rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.traffic .arrow.arrow-0.arrow-0-1 .line-col {
  position: absolute;
  right: 16vw;
  top: 4.8vh;
  width: 0.052vw;
  height: 9.2vh;
  background: rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.traffic .arrow.arrow-0.arrow-0-1 .line-col::after {
  content: " ";
  position: absolute;
  right: -5px;
  top: 9vh;
  border-top: 7px solid rgba(0, 0, 0, 0.45);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.preliminaryProgramDiagram.traffic .arrow.arrow-0.arrow-0-1::after {
  display: none;
  content: " ";
  position: absolute;
  right: -4px;
  top: 12vh;

  border-top: 7px solid rgba(0, 0, 0, 0.45);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.preliminaryProgramDiagram.traffic .arrow.arrow-0-1 {
width: 12.4vw !important;
}
.preliminaryProgramDiagram.traffic .arrow.arrow-1 {
  display: flex;
  align-items: center;
}
.preliminaryProgramDiagram.traffic .arrow.arrow-1 .line {
  width: 6.5vw;
  height: 0.1vh;
  background: rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.traffic .arrow.arrow-1-2 .line {
  display: none;
  width: 11vw;
  height: 0.1vh;
  background: rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.traffic .arrow.arrow-1::before {
  content: " ";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 6px solid rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.traffic .arrow.arrow-1-2::before {
  content: " ";
  display: none;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 6px solid rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.traffic .arrow.arrow-1-3 {
  display: none !important;
}
.arrow.arrow-1-3{
  display: none !important;
}
.preliminaryProgramDiagram.traffic .card-detail-info {
  left: 60vw;
}

/* 社会投资房建类 */
.preliminaryProgramDiagram.building-construction-society .program-diagram-line {
  margin-bottom: 7vh;
}
.preliminaryProgramDiagram.building-construction-society .program-diagram-line:last-child {
  margin-bottom: 2.6vh;
}
.preliminaryProgramDiagram.building-construction-society .node-box .box-0-0,
.preliminaryProgramDiagram.building-construction-society .node-box .box-0-2 {
  width: 9vw;
}
.preliminaryProgramDiagram.building-construction-society .node-box .box-1-0 {
  width: 26.73vw;
}
.preliminaryProgramDiagram.building-construction-society .node-box .box-2-0 {
  width: 44.39vw;
}
.preliminaryProgramDiagram.building-construction-society .arrow.arrow-0 {
  display: flex;
  align-items: center;
  position: relative;
}
.preliminaryProgramDiagram.building-construction-society .arrow.arrow-0 .line {
  width: 12.5vw;
  height: 0.1vh;
  background: rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.building-construction-society .arrow.arrow-0::after {
  content: " ";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.building-construction-society .arrow.arrow-0.arrow-0-2 .line {
  display: none;
}
.preliminaryProgramDiagram.building-construction-society .arrow.arrow-0.arrow-0-2::after {
  position: absolute;
  right: 4.25vw;
  top: 16.7vh;
  border-top: 7px solid rgba(0, 0, 0, 0.45);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.preliminaryProgramDiagram.building-construction-society .arrow.arrow-0.arrow-0-2 .line-col {
  position: absolute;
  right: 4.5vw;
  top: 5.7vh;
  width: 0.052vw;
  height: 11vh;
  background: rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.building-construction-society .arrow.arrow-1 {
  display: flex;
  align-items: center;
}
.preliminaryProgramDiagram.building-construction-society .arrow.arrow-1 .line {
  width: 4vw;
  height: 1px;
  background: rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.building-construction-society .arrow.arrow-1::before {
  content: " ";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 6px solid rgba(0, 0, 0, 0.45);
}
.preliminaryProgramDiagram.building-construction-society .arrow.arrow-1-2 {
  display: none;
}
.preliminaryProgramDiagram.building-construction-society .card-detail-info {
  left: 52.5vw;
}






/*
首页投资金额项目数据卡片微组件
*/
.amountStatisticsCard {
  padding: 28px;
  background: #FFFFFF;
  border-radius: 4px;
}
.amountStatisticsCard .card-part {
  display: flex;
  justify-content: space-between;
}
.amountStatisticsCard .card-part .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 114px;
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
}
.amountStatisticsCard .card-part .card.amount {
  align-items: flex-start;
  width: 70%;
}
.amountStatisticsCard .card-part .card.project {
  align-items: center;
  width: 27%;
  padding: 18px 0;
}
.amountStatisticsCard .card-part .card.project .number {
  text-align: center;
}
.amountStatisticsCard .card-part  .amount .number {
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 36px;
  color: #C42C2B;
  line-height: 44px;
  text-align: left;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.amountStatisticsCard .card-part  .project .number {
  font-family: PingFangSC, PingFang SC;
  font-weight: 600;
  font-size: 36px;
  color: #C42C2B;
  line-height: 44px;
  text-align: left;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.amountStatisticsCard .card-part .card .title {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 26px;
  text-align: left;
  font-style: normal;
}
.amountStatisticsCard .progress-part .progress-item {
  margin-top: 44px;
}
.amountStatisticsCard .progress-part .progress-item:last-child {
  margin-bottom: 20px;
}
.amountStatisticsCard .progress-part .data-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  font-style: normal;
}
.amountStatisticsCard .progress-part .title {
  margin-right: 4px;
  color: rgba(0, 0, 0, 0.65);
}
.amountStatisticsCard .progress-part .progress .value {
  color: #0F58D6;
}
.amountStatisticsCard .progress-part .amount .value {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 600;
}







/*
首页智慧审计预警卡片微组件
*/
.smartAuditWarningCard {
  width: 100%;
  padding: 24px;
  padding-bottom: 28px;
  background: #FFFFFF;
  border-radius: 4px;
}
.smartAuditWarningCard .title {
  display: flex;
  align-items: center;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 24px;
  text-align: left;
  font-style: normal;
  font-weight: bold;
}

.smartAuditWarningCard .title::before {
  content: " ";
  display: inline-block;
  width: 4px;
  height: 16px;
  margin-right: 8px;
  background: #C42C2B;
  border-radius: 5px;
}

.smartAuditWarningCard .card-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  /* 每个项目宽度相等，一行显示三个 */
}

.smartAuditWarningCard .card-item {
  margin-top: 6px;
  padding: 8px 5px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  opacity: 0.8;
  font-family: PingFangSC, PingFang SC;
  text-align: center;
  font-style: normal;
}

.smartAuditWarningCard .value {
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 32px;
}

.smartAuditWarningCard .name {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 22px;
}

.smartAuditWarningCard .smart_card_box {
  display: grid;
  grid-template-rows: auto auto auto auto;
  /* 定义四行 */
  /* 可选的设置：可以根据需要调整列的定义 */
  grid-gap: 6px;
}

.smartAuditWarningCard .item_box1 {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 0 12px;
}
.smartAuditWarningCard .item_box2,.smartAuditWarningCard .item_box3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 12px;

}
.smartAuditWarningCard .item_box4{
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  gap: 0 12px;
}


/*
首页待办预警列表微组件
*/
.todoAlertList {
  width: 100%;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 4px;
}
.todoAlertList .list-type-part {
  display: flex;
  align-items: center;
  font-family: PingFangSC-Medium;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 700;
}
.todoAlertList .block {
  width: 4px;
  height: 16px;
  margin-right: 8px;
  background: #C42C2B;
  border-radius: 5px;
}
.todoAlertList .type-item {
  position: relative;
  margin-right: 24px;
  font-family: PingFangSC, PingFang SC;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 24px;
  text-align: left;
  font-style: normal;
  cursor: pointer;
}
.todoAlertList .type-item .active {
  color: #C42C2B;
}
.todoAlertList .type-item .number {
  position: absolute;
  top: -2px;
  right: -8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #DA251C;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 17px;
  text-align: justify;
  font-style: normal;
}
:deep(.todoAlertList .el-pagination)  {
  padding-right: 0px !important;
}


/* 实物工程量上报-新建样式 */
.quantity-report {
  background: #fff;
}
.quantity-report .el-form-item {
  align-items: baseline !important;
}
.quantity-report .el-form-item__label {
  display: block !important;
}
.quantity-report .custom-tree-node {
  flex-grow : 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 16px;
}
.quantity-report  .template-setting-form .el-col {
  padding: 0 25px;
}
.quantity-report h2 {
  padding-left: 25px;
}
.quantity-report .top-button {
  display: flex;
  justify-content: end;
  padding: 25px;
}
.quantity-report .vertical-align {
  display: flex;
  align-items: center;
}
.quantity-report .warning-color {
  color: #ff9632;
  font-size: 20px;
  margin-right: 4px;
}
/* 实物工程量上报详情样式 */
.quantity-report-detail .query-panel .el-col{
  padding: 8px 24px;
}

.quantity-report-detail .red-text{
  color: #1059d6;
}
.quantity-report-detail .top-button-container {
  display: flex;
  justify-content: end;
  line-height: 48px;
  height: 48px;
  align-items: center;
}

.quantity-report-detail .page-header {
  border-bottom: 1px solid rgb(235, 237, 240);
  /* padding: 16px 24px; */
}
.quantity-report-detail .q-table-dialog {
  height: 768px;
}
.quantity-report-detail .query-button-container {
  display: flex;
  justify-content: end;
}
.quantity-report-detail .el-input-group__append, .el-input-group__prepend {
  background-color: #ffffff !important;
}
.quantity-report-detail #chartContainer {
  margin: 0 auto;
}

.quantity-report-detail .remarks {
  text-align: center;
  color: #474747;
}

.quantity-report-detail .el-form .el-form-item--default {
  margin-bottom: 16px !important;
}
.quantity-report .bottom-button-container {
  display: flex;
  justify-content: flex-end;
  padding: 25px;
}
.quantity-report-detail .el-button {
  box-sizing: border-box;
}
.quantity-report-detail .el-button--primary{
  background: #1059d6 !important;
  color: #fff !important;
  border: 1px solid #1059d6;
  padding: 0 12px;
  margin-left: 8px;
  min-width: 60px;
  border-radius: 2px !important;
}
.quantity-report-detail .el-button--primary:hover {
  background: #1059d6 !important;
  border: 1px solid #1059d6;
}
.quantity-report-detail .el-button--default{
  color: #1059d6;
}
.quantity-report-detail .el-select__wrapper {
  border-radius: 0px;
  background-color: #ffffff
}
.quantity-report-detail .btn0628{
  color: #1059d6 !important;
  border: 1px solid #1059d6;
  padding: 0 12px;
  margin-left:8px;
  min-width: 60px;
  border-radius: 2px !important;
}
.quantity-report-detail .btn0628:hover{
  background-color: #fff !important;
  border: 1px solid #1059d6 !important;
  outline: none;
}

.quantity-report-warning .red-text{
  color: #1059d6;
}
.quantity-report-warning .bold-text{
  font-weight: 600;
}

.quantity-report .el-button {
  box-sizing: border-box;
}
.quantity-report .el-button--primary {
  background: #1059d6 !important;
  color: #fff !important;
  border: 1px solid #1059d6;
  padding: 0 12px;
  margin-left: 8px;
  min-width: 60px;
  border-radius: 2px !important;
}

.quantity-report .el-button--primary:hover {
  background: #1059d6 !important;
  border: 1px solid #1059d6;
}

.quantity-report .el-select__wrapper {
  border-radius: 0px;
  background-color: #ffffff
}
.quantity-report .btn0628{
  color: #1059d6 !important;
  border: 1px solid #1059d6;
  padding: 0 12px;
  margin-left:8px;
  min-width: 60px;
  border-radius: 2px !important;
}
.quantity-report .btn0628:hover{ 
  background-color: #fff !important;
  border: 1px solid #1059d6 !important;
  outline: none;
}
.quantity-report .custom-tree-node .custom-tree-node-container, .quantity-report-detail .custom-tree-node .custom-tree-node-container {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

/* .quantity-report-report .custom-tree-node-container .node-label {
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
  display: flex;
  align-items: center;
} */

.quantity-report .node-label {
  margin-left: 8px; 
  flex-grow: 1;
  
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;

}

/* 首页地图 */
.HomeAMapLoader #container {
  width: 100%;
  height: 100%;
}
.amap-info-content  {
  border-radius: 10px !important;
}
.amap-info-content .amap-info-outer {
  margin-left: 50px;
}
.amap-info-sharp{
  margin-left: 10px !important;
}
.amap-info-contentContainer.bottom-center, .amap-info-contentContainer.bottom-left, .amap-info-contentContainer.bottom-right{
  margin-left:-5px !important;
  margin-top: -5px !important;
}
.map_infoBox {
  width: 410px;
  height: 235px;
  background: url('@/assets/map-item-bg.png') no-repeat;
  background-size: 100%;
  box-sizing: border-box;
  padding: 12px 0 0 18px;
}
.bottom-center .amap-info-sharp{
  left: 46%;
}
.map_infoBox-msg {
  display: flex;
}
.map_infoBox-msg img{
    width: 240px;
    height: 179px;
    margin-right: 17px;
}

.map_infoBox-right {
  margin-top: -5px;
  line-height: 27px;
  font-size: 16px;
}

.map_infoBox-msg_img {
  width: 150px;
  height: 150px;
  background-color: #fff;
  margin-right: 1.875rem;
}
.map_infoBox-msg_img img {
  width: 150px;
  height: 150px;
}
.map_img_bottom {
  position: relative;
  top: 30px;
  left: 238px;
}
.map_infoBox-title {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 48px;
  color: rgba(0, 0, 0, 0.85);
}
.map_infoBox-title::before {
  content:'';
  display: inline-block;
  width:4px;
  height: 16px;
  margin-right: 8px;
  background: #C42C2B;
  border-radius: 5px;
}

.calendarBox{
  margin: 0 24px;
  height: 100%;
  }
.calendarBox .el-calendar, 
.calendarBox .el-calendar .el-calendar__body, 
.calendarBox .el-calendar .el-calendar__body .el-calendar-table,
.calendarBox .el-calendar .el-calendar__body .el-calendar-table tbody,
.calendarBox .el-calendar-table .el-calendar-table__row .el-calendar-day, 
.calendarBox .el-calendar-table .el-calendar-day{
  height: 100% !important;
}
.calendarBox .el-calendar .el-calendar__body .el-calendar-table tbody td {
  position: relative;
}
.calendarBox .el-calendar__body .el-calendar-table thead{
  background-color: #f9f9f9;
}
.calendarBox .el-calendar-table__row {
  height: 20%;
}
  .calendarBox  .el-calendar__header{
    display: none;
  }
  .el-calendar .el-calendar__header>div:first-child{
    padding-left: 25px !important;
  }
  .el-calendar .el-calendar__header>div:last-child{
    padding-right: 25px !important;
  }
  .el-calendar .el-calendar__header>span{
    display: flex;
    align-items: center;
  }
  .calendarBox .el-calendar__body{
    padding: 0;
  }
  .calendarBox  .el-calendar-table:not(.is-range) td.next, .el-calendar-table:not(.is-range) td.prev{
pointer-events: none;
}
.calendarBox .mainbox{
  display: flex;
  justify-content: space-between;
}


.card-pumen {
  padding: 24px;
}

.card-pumen .cradBox .carditem {
  float: left;
  width: 200px;
  margin-right: 20px;
}

.card-pumen .cradBox .carditem .el-card__header {
  padding-bottom: 8px;
  padding-top: 8px;
  font-size: 16px;
}

.card-pumen .cradBox .carditem .el-card__body {
  padding-bottom: 8px;
  padding-top: 8px;
}

.card-pumen .cradBox .carditem .el-card__footer {
  padding-bottom: 8px;
  padding-top: 8px;
}

.card-pumen .cradBox .carditem p {
  display: flex;
}

.card-pumen .cradBox .carditem p span {
  display: inline-block;
  margin: 0 8px 8px 0;
}

.card-pumen .cradBox .carditem .lin2 {
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 115px;
}

/* 常用功能样式 */
.common-function-item:hover .common-function-close {
display: inline;
}
.common-function-close {
  display: none;
}

/* 首页公示公告 */
.notice-card {
  padding-bottom: 16px;
}
.notice-card .notice-btn-span {
  color: rgba(0,0,0,0.45);
}
.notice-card .notice-btn-span:hover {
  color: #326FF6;
}
.notice-card .notice-file-list {
  height: 24px;
  line-height: 24px;
  padding-left: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 首页-待办 */
.dymicToDo-card-main {
  background-color: #ffffff;
  border-radius: 4px;
  height: 100%;
  padding-right: 16px;
  padding-top: 16px;
}
.dymicToDo-card-main .el-table td.el-table__cell{
  border-bottom: none;
}
.dymicToDo-card-main .el-table th.el-table__cell.is-leaf {
  border-bottom: none;
  background: #F9F9F9;
  font-weight: bold;
  font-size: 14px;
  color: rgba(0,0,0,0.85);
}
.dymicToDo-card-main .el-table {
  margin-left: 16px;
  padding-top: 16px;
}
.dymicToDo-card-main .el-table--striped .el-table__body tr.el-table__row--striped td.el-table__cell {
  background: #F9F9F9;
}
.dymicToDo-card-main .el-badge__content.is-fixed {
  top: -2px;
  right: calc(-5px + var(--el-badge-size) / 2);
}
.dymicToDo-card-main .el-table tr {
  height: 48px;
}
.dymicToDo-card-main .el-scrollbar__view {
  width: 100% !important;
}
.dymicToDo-card-main .el-table__body {
  width: auto !important;
  overflow-x: hidden !important;
}
.dymicToDo-card-main .el-table__header {
  width: auto !important;
}
.dymicToDo-card-main .el-table--scrollable-x .el-table__body-wrapper {
  overflow-x: hidden !important;
}
/* 首页-年度预算/季度预算 */
.quarter-or-tear-money {
  height: 100%;
  border-radius: 4px;
  background-color: #ffffff;
}
.quarter-or-tear-money .item-div {
  width: 100%;
  height: 36px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding: 0px 24px;
  margin-right: 16px;
}
.quarter-or-tear-money .item-div .name {
  font-size: 14px;
  color: rgba(0,0,0,0.85);
}
.quarter-or-tear-money .item-div .value {
  font-weight: bold;
  font-size: 14px;
  color: #DA251C;
}
.quarter-or-tear-money .item-div .value.rate {
  color: #326FF6;
}

/* 首页历史累计数据 */
.history-card-data {
  height: 100%;
  background-color: #ffffff;
  border-radius: 4px;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
}
/* 历史累计数据移动端适配 */
.app-main-class-form-isMobile .history-card-data .all-div {
   flex-wrap: wrap;
   height: initial;
}
.app-main-class-form-isMobile .history-card-data .all-div .history-item {
  flex: 1 0 calc(33% - 30px);
  margin: 4px 4px;
  padding: 16px 0;
}
.app-main-class-form-isMobile .history-card-data-container #container {
  height: initial !important;
}
/* 历史累计数据移动端适配 */
.history-card-data .all-div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 0px 16px 16px;
}
.history-card-data .all-div .history-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 150px;
  background: rgba(0,0,0,0.02);
  border-radius: 4px;
  margin-right: 8px;
}
.history-card-data .all-div .history-item .name {
  font-size: 14px;
  line-height: 20px;
  color: rgba(0,0,0,0.65);
  /* padding-bottom: 6px; */
}
.history-card-data .all-div .history-item .img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  background-size: 100% 100%;
}
.history-card-data .all-div .history-item .value {
  font-weight: bold;
  font-size: 18px;
  color: rgba(0,0,0,0.85);
}


/* 常用模板下载 */
.fiel-download-card .file-download-item {
  /* width: 164px; */
  height: 80px;
  /* width: 100%; */
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 12px;
  padding: 0px 10px;
  text-align: justify;
  /* margin-right:12px */
}
.fiel-download-card .file-parent:nth-child(2n) .file-download-item {
  margin-right: 0px;
}
.fiel-download-card .file-parent:nth-child(2n+1) .file-download-item {
  margin-right: 12px;
}
.span-goMore-card:hover {
  color: var(--global-color) !important;
}
.tab-item-todo {
  cursor: pointer;
}
.tab-item-todo:hover{
  color: var(--global-color) !important;
}
.card-dashbord-yujing .content-div {
  cursor: pointer;
}
.card-dashbord-yujing .content-div .circle-dot {
  background: rgba(0,0,0,0.25)
}
.card-dashbord-yujing .content-div .content-yujing {
  max-width: 380px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(0,0,0,0.85)
}
.card-dashbord-yujing .content-div:hover .circle-dot {
  background: #DA251C
}
.card-dashbord-yujing .content-div:hover .content-yujing {
  color: #DA251C;
}
.card-dashbord-yujing .global-div .circle-dot {
  background: rgba(0,0,0,0.25)
}
.card-dashbord-yujing .global-div:hover .content-yujing {
  color: var(--global-color);
}
.card-dashbord-yujing .global-div:hover .circle-dot {
  background: var(--global-color);
}
/* 法规库 */
.regulation-library {
  background-color: #ffffff;
  height: 100%;
  padding-bottom: 70px;
  padding-top: 16px;
}
.regulation-library .document-list {
  padding-top: 20px;
  /* margin: 0px 16px; */
}
.regulation-library .document-list .document-countAll {
  font-size: 12px;
  background-color: #fbf6f6;
  color: rgba(0,0,0,0.85);
  letter-spacing: 1px;
  padding: 8px 20px;
}
.regulation-library .document-list .document-item {
  padding: 8px 20px;
  border-bottom: 1px solid #f4f4f4;
}
.regulation-library .document-list .document-item .title {
  cursor: pointer;
  /* padding-bottom: 8px; */
  font-size: 18px;
}
.regulation-library .document-list .document-item .decribtion {
  font-size: 14px;
  color: #6d6c6c;
}
.regulation-library .page-div {
  margin-top: 18px;
  float: right;
}
.regulation-library .query-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* width: 45%; */
  /* padding-left: 16px; */
}
.regulation-library .query-list > div {
  margin-right: 32px;
}
.regulation-library .query-list .btn-query, .regulation-library .el-dialog__body .btn-query {
  width: 88px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  background-color: #0f58d6;
  color: #ffffff;
}
.regulation-library .query-list .btn-query:hover {
  background-color: #0f58d6;
  color: #ffffff;
}
.regulation-library .query-list .btn-query.add, .regulation-library .el-dialog__body .btn-query.add {
  background-color: #ffffff;
  color: rgba(0,0,0,0.85);
  border: 1px solid rgba(95, 94, 94, 0.45);
}
.regulation-library .query-list .btn-query.add:hover, .regulation-library .el-dialog__body .btn-query.add:hover {
  background-color: #ecf5ff;
  border: 1px solid #c6e2ff;
  color: #409eff;
}
.regulation-library .uploadBtn {
  background-color: #409eff;
  border-radius: 4px;
  height: 36px;
  color: #ffffff;
  padding: 0px 12px;
}
.regulation-library .el-dialog__header {
  border-bottom: 1px solid #e5e5e5;
}
.regulation-library .el-dialog__header {
  padding-bottom: 0px !important;
}
.regulation-library .el-dialog__body .el-form {
  padding-top: 16px;
}
.regulation-library .el-dialog__body .el-button {
  width: auto !important
}
.regulation-library .el-dialog__body .el-form-item {
  margin-bottom: 16px !important;
}
.regulation-library .el-dialog__body .el-form-item__label {
  display: block !important;
  /* padding-top: 32px; */
}
.regulation-library .el-upload-list {
  width: 400px;
}

/* 首页待办任务移动端适配 */
.app-main-class-form-isMobile .mobile-dbtask-item > div {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  color: #606266;
}

/* 首页待办任务移动端适配 */

/* 跟踪审计首页头部发现问题 */
.question-container {
  display: flex;
  align-items: center;
  background-color: #f0f4f7;
  width: 100%;
}
.question-container .question-container-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  margin-right: 8px;
  width: 25%;
  height: 72px;
  border-radius: 4px;
}
.question-container .question-container-item:last-child {
  margin-right: 0px;
}
.question-container .question-container-item img {
  margin-right: 20px;
  margin-left: 20px;
}
.question-container .question-container-item .right {
  padding-top: 20px;
}
.question-container .question-container-item .right .top-text {
  color: #005ade;
  font-size: 16px;
  font-weight: bold;
  line-height: 0px;
}
.question-container .question-container-item .right .bottom-text {
  color: #bfbfbf;
  font-size: 14px;
}