/* 
每个微组件的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;
}
.weather-card-box {
  background-image: linear-gradient(180deg, #0072ff 0%, #90c2ff 100%);
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 4px;
   justify-content: space-around;

}
.weather-card-box .span-moning {
  font-family: PingFangSC-Medium;
  font-size: 24px;
  color: #ffffff;
  font-weight: 700;
  margin-left: 18px;
}
.weather-card-box .span-slogen {
  font-family: momo_xinjian;
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
}
.weather-card-box .span-data {
  font-family: PingFangSC-Regular;
  font-size: 12px;
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}
.weather-card-box img{
  height: 67px;
}

/*
审计成果-问题数量统计卡片微组件
*/
.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;
}
.el-table__row.warning-row{
  color: red !important;
}
.el-table__row.warning-row .itembg{
  color: red !important;
}


/* 实物工程量上报-新建样式 */
.quantity-report {
  background: #fff;
}
.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: flex-end;
  padding-right: 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: red;
}
.quantity-report-detail .top-button-container {
  display: flex;
  justify-content: flex-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: flex-end;
}
.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;
}
.quantity-report-detail .el-button {
  box-sizing: border-box;
}
.quantity-report-detail .el-button--primary{
  background: #c42c2b !important;
  color: #fff !important;
  border: 1px solid #c42c2b;
  padding: 0 12px;
  margin-left: 8px;
  min-width: 60px;
  border-radius: 2px !important;
}
.quantity-report-detail .el-button--primary:hover {
  background: #c42c2b !important;
  border: 1px solid #c42c2b;
}
.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: #c42c2b !important;
  border: 1px solid #c42c2b;
  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 #c42c2b !important;
  outline: none;
}

.quantity-report-warning .red-text{
  color: red;
}
.quantity-report-warning .bold-text{
  font-weight: 600;
}

.quantity-report .el-button {
  box-sizing: border-box;
}
.quantity-report .el-button--primary {
  background: #c42c2b !important;
  color: #fff !important;
  border: 1px solid #c42c2b;
  padding: 0 12px;
  margin-left: 8px;
  min-width: 60px;
  border-radius: 2px !important;
}

.quantity-report .el-button--primary:hover {
  background: #c42c2b !important;
  border: 1px solid #c42c2b;
}

.quantity-report .el-select__wrapper {
  border-radius: 0px;
  background-color: #ffffff
}
.quantity-report .btn0628{
  color: #c42c2b !important;
  border: 1px solid #c42c2b;
  padding: 0 12px;
  margin-left:8px;
  min-width: 60px;
  border-radius: 2px !important;
}
.quantity-report .btn0628:hover{ 
  background-color: #fff !important;
  border: 1px solid #c42c2b !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;
}

/* 首页日历组件事件提醒弹窗 */
.event-reminder-dialog {
}
.event-reminder-ul {
  padding: 0 6px 16px;
  max-height: 50vh;
  overflow: auto;
}
.event-reminder-li {
  border-radius: 2px;
  padding: 0 6px;
}
.event-reminder-li:hover {
  background-color: rgb(240, 245, 255);
}
.event-reminder-footer .el-button{
  width: initial !important;
}
/* 首页日历组件事件提醒弹窗 */


/* 首页 外出提醒弹窗样式 */

.go-out-dialog {

}
.go-out-dialog .el-table--default th .cell {
  display: flex;
  align-items: center;
  gap: 6px;
}


/* 首页 外出提醒弹窗样式 */



/* 用户弹框 */
.user-popover {
  padding: 0 !important;
  /* height: 300px !important; */
  position: relative;
}
.user-popover .user-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  font-size: 16px;
  background: linear-gradient(137deg, #4730E3 0%, #1355D7 100%);
  background-size: auto 100px;
}
.user-popover .hasj-user-titles {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120px;
  font-size: 16px;
  background:url(/static_img/update_bg.png) no-repeat ;
  background-size: 100% 100%;
}
.user-popover .user-title .img, .user-popover .hasj-user-titles .img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 16px;
}
.user-popover .user-title .message, .user-popover .hasj-user-titles .message {
  display:flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 200px;
  color: #fff;
}
.user-popover .user-title .message .time ,.user-popover .hasj-user-titles .message .time {
  font-size: 12px;
  height: 20px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  white-space: nowrap;
}
.user-popover .user-titles {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120px;
  font-size: 16px;
  background-image: url("../../../style/base/img/update_bg.png");
}
.user-popover .user-titles .img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 16px;
}
.user-popover .user-titles .message {
  color: #fff;
}
.user-popover .user-titles .message .time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}
.user-popover .user-operation {
  display: none;
  justify-content: flex-start;
  align-items: center;
  height: 150px;
  padding: 0 22px;
  border-bottom: 1px solid #EFEFEF;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
  margin-top: 20px;
}
.user-popover .user-operation > div {
  cursor: pointer;
}
.user-popover .user-operation > div:hover {
  color: var(--global-color);
}
.user-popover .user-operation .operation-img {
  display: flex;
  justify-content: center;
  margin: 0 22px 8px 22px;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #E5EFFF;
}
.user-popover .user-operation .operation-img .img {
  width: 28px;
  height: 28px;
}
.user-popover .user-operation .operation-img .operation-imgs {
  display: flex;
  justify-content: center;
  margin: 0 22px 8px 22px;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
}
.user-popover .user-operation .operation-img .operation-imgs .img {
  width: 28px;
  height: 28px;
}
.user-popover .user-footer {
  display: flex;
  justify-content: space-around;
  margin-bottom: 28px;
}
.user-popover .user-footer .user-footer-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.user-popover .user-footer .user-footer-item:hover > span {
  color: var(--global-color);
}
.user-popover .user-footer .user-footer-item > img {
  height: 48px;
  width: 48px;
  margin: 0 auto;
}
.user-popover .user-footer .user-footer-item > span {
  height: 20px;
  font-weight: 400;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 20px;
  text-align: center;
  font-style: normal;
  margin-top: 8px;
}
.user-popover .name-and-identity {
  font-size: 16px;
  display: flex;
  white-space: nowrap;
}
.user-popover .name-and-identity .name {
  font-weight: 500;
  height: 24px;
  white-space: nowrap;
  line-height: 24px;
}
.user-popover .name-and-identity .split-line {
  height: 11px;
  display: flex;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  line-height: 24px;
  margin: 0 8px;
  margin-top: 6px;
}
.user-popover .name-and-identity .identity {
  font-weight: normal;
  height: 24px;
  line-height: 24px;
}
.user-popover .work-info {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
.user-popover .work-info .work-info-item {
  display: flex;
  flex-direction: column;
  cursor: default;
}
.user-popover .work-info .work-info-item:hover > span {
  color: #0f58d6;
}
.user-popover .work-info .work-info-item > span {
  text-align: center;
  height: 16px;
  line-height: 16px;
}
.user-popover .work-info .work-info-item .work-info-item-time {
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-weight: bold;
}
.user-popover .work-info .work-info-item .work-info-item-text {
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  margin-top: 3px;
}
.user-popover .split-line-horizontal {
  margin: 20px auto;
  height: 0;
  width: 86%;
  background-color: rgba(0, 0, 0, 0.06);
  border: none;
  height: 1px;
}
.user-popover .avatar-container:hover .avatar-cover {
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-popover .avatar-cover {
  z-index: 999;
  display: none;
  background-color: rgba(0, 0, 0, 0.25);
  width: 48px;
  height: 48px;
  position: absolute;
  border-radius: 100%;
  overflow: hidden;
  cursor: pointer;
}
.user-popover .avatar-cover img {
  filter: drop-shadow(#ff0000 100% 0);
}
.user-popover .user-footer > div:hover {
  color: var(--global-color);
}

.upload-avavtar-dialog .avatar-uploader .el-upload {
  border: 1px dashed #dcdfe6;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.2s;
}
.upload-avavtar-dialog .el-icon.avatar-uploader-icon:hover {
  border-color: var(--global-color);
}
.upload-avavtar-dialog .el-icon.avatar-uploader-icon {
  font-size: 28px;
  color: #8c939d;
  width: 178px;
  height: 178px;
  text-align: center;
  border: 1px dashed #dcdfe6;
  border-radius: 6px;
}
/* 用户弹框 */
/* 同益首页代码实现 */
 
.top-stats { 
  display: grid;
  grid-template-columns: repeat(5 ,1fr);
  gap: 12px;
} 
 
.stat-item { 
  padding: 10px; 
  border-radius: 5px; 
  color: white; 
  text-align: center; 
  height: 120px;
} 
 
.stat-value { 
  font-size: 48px; 
  margin-bottom: 5px; 
  text-align: left;
} 
.stat-content-value-label{
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
 
.basic-info { 
  display: flex; 
  justify-content: space-between; 
  margin-bottom: 20px; 
} 
 
.info-item { 

  padding: 10px; 
  border: 1px solid #e4e7ed; 
  border-radius: 4px; 
  text-align: center; 
} 
 
.info-value { 
  font-size: 18px; 
  margin-bottom: 5px; 
  text-align: left;
} 
.history-card-data{
  padding: 16px;
  background-color: #fff;
  border-radius: 4px;
}
.history-card-data .all-div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 0px 0 0 ;
}
.history-card-data .all-div .history-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 238px;
  height: 248px;
  background: rgba(0,0,0,0.02);
  border-radius: 4px;
  margin-right: 8px;
}
.history-card-data .all-div .history-item .name {
  font-size: 14px;
  color: rgba(0,0,0,0.65);
  line-height: 21px;
  text-align: left;
  font-style: normal;
  margin-top: 28px;
}
.history-card-data .all-div .history-item .img {
  width: 78px;
  height: 78px;
  background-size: 100% 100%;
}
.history-card-data .all-div .history-item .value {
  font-weight: bold;
  font-size: 24px;
  color: #0F58D6;
  line-height: 36px;
  text-align: left;
  font-style: normal;
  margin-top: 16px;
}
.manager_home{
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-gap: 12px;
}
.manager_home_item{
  overflow-y: hidden;
  
}
.manager_home-container{
  display: flex;
}
.manager_home-container_item{
  margin-top: 16px;
  background-color: #fff;
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px; 
}
.manager_home-container_item .finance-item {
  height: 98px;
  padding:1.48vh 0.83vw;
  background-color: #fafafa;
  display: flex;
  align-items: center;
}
.manager_home-container_item .finance-item:first-child {
  display: flex;
  align-items: center;
}
.manager_home-container_item .finance-item div img {
  width: 48px;
  height: 48px;
  margin-right: 0.83vw;
  }
.manager_home-container_item .finance-amount {
  height: 24px;
  font-weight: bold;
  font-size: 1.25vw;
  line-height: 24px;
  color: #0F58D6;
  line-height: 36px;
  text-align: left;
  font-style: normal;
}
.manager_home-container_item .finance-desc {
  font-weight: 500;
  margin-top: 10px;
  font-size: 0.73vw;
  color: rgba(0,0,0,0.65);
  line-height: 21px;
  text-align: left;
  font-style: normal;
}

/*ai检测问题*/
.ai-page .lucky-dots {
	font-size: 24px;
	height: 24px;
	position: relative;
}
.ai-page .lucky-dots::after {
 content: '';
 animation: dot-blink 3s linear infinite;
 position: absolute;
 top: -3px;
 left: 3px;
}
@keyframes dot-blink {
 0% {
   content: '.';
 }
 25% {
   content: '..';
 }
 50% {
   content: '...';
 }
 75% {
   content: '....';
 }
 100% {
   content: '.....';
 }
}
.ai-container .stop-btn {
    background-color: #3e65ff;
    border-radius: 24px;
    justify-content: center;
    display: flex;
    align-items: center;
    width: 120px;
    height: 35px;
    color: #fff;
    box-shadow:0px 3px 7px 3px #d5ddff;
    cursor: pointer;
  }
 .ai-container .stop-btn:hover {
 	opacity: 0.8;
}

/* 中永在线客服后台聊天会话 */
.service-chat {
  display: flex;
  width: 100%;
  height: calc(100vh - 80px);
}
.service-chat .ai-nav {
  width: 250px;
  height: calc(100vh - 120px);
  overflow: auto;
  background: #f8f9fa;
  padding: 20px 20px; /* 增加内边距 */
}
.service-chat .ai-container {
  background-color: #f8f9fa;
}
.service-chat .ai-sibtn {
  display: flex;
  justify-content: flex-end;
  padding: 16px 16px 0;
  background-color: #f8f9fa;
}
.service-chat .hs-list {
  padding: 10px; /* 增加内边距 */
}
.service-chat .hs-title {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  padding: 8px 0;
  margin: 12px 0;
}
.service-chat .hs-item {
  font-size: 14px;
  padding: 10px 12px;
  margin: 8px 0;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.service-chat .hs-item:hover {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transform: translateX(2px);
}
.service-chat .content {
  height: calc(100% - 100px);
  display: flex;
  flex-direction: column;
}
.service-chat .ai-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.service-chat .footer {
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-chat .input-container {
  display: flex;
  align-items: center;
  width: 80%;
}
.service-chat .w-50 {
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 16px;
  padding: 8px;
}
.service-chat .w-50-tp {
  height: 50%;
}
.service-chat .w-50-ip {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.service-chat .w-50-bm {
  display: flex;
  justify-content: flex-end;
  align-content: center;
  margin-top: 8px;
}
.service-chat .icon-class {
  font-size: 28px;
}
.service-chat .new-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0 20px;
}
.service-chat .hs-title-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-chat .hs-title-item .title {
  overflow: hidden; /* 隐藏超出部分 */
  white-space: nowrap; /* 不换行 */
  text-overflow: ellipsis; /* 超出部分显示省略号 */

  /* 如果需要设置宽度，可以在这里设置 */
  width: 120px; /* 或者设置为具体的宽度，例如 200px */
}
.service-chat .hs-title-item el-button {
  border: none;
}
.service-chat .op-box {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  background-color: #fff; /* 背景色 */
  border-radius: 8px; /* 圆角 */
}

.service-chat .op-item {
  font-size: 14px; /* 字体大小 */
  display: flex;
  align-items: center;
  padding: 8px; /* 内边距 */
  cursor: pointer; /* 鼠标悬停时显示为手型 */
  transition: background-color 0.2s; /* 背景色过渡效果 */
}

.service-chat .op-item:hover {
  background-color: #f0f0f0; /* 悬停时的背景色 */
}

.service-chat .text {
  margin-left: 8px; /* 文本与图标之间的间距 */
  color: #333; /* 文本颜色 */
}
.service-chat .m-2:hover {
  cursor: pointer;
}
.service-chat .main-content-item {
  margin: 10px 0; /* 上下间距 */
  padding: 10px; /* 内边距 */
  border-radius: 8px; /* 圆角 */
}

.service-chat .main-user {
  flex-direction: column;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.service-chat .main-user > span {
  display: block;
  background-color: #eff6ff; /* 用户消息背景色 */
  display: inline-block; /* 让背景色仅包裹文字 */
  max-width: fit-content; /* 适应内容 */
  padding: 8px 12px; /* 调整内边距，使其更紧凑 */
  border-radius: 8px; /* 圆角 */
  word-break: break-word; /* 处理长文本 */
}

.service-chat .main-bot {
  text-align: left;
  align-self: flex-start; /* 左对齐 */
}
.service-chat .ai-main .content {
  font-size: 14px;
  padding: 16px;
  overflow-y: auto;
}
.service-chat .ai-content-box {
  display: flex;
  flex-direction: column;
}
.service-chat .main-content-item .chat-content {
  display: inline;
  border-radius: 8px;
  background: #eff6ff;
  padding: 12px 12px;
}
.service-chat .thinkBg {
  color: #fff;
  background: rgb(15, 88, 214);
}
.service-chat .userTxt {
  margin-left: 10px;
}

.service-chat .main-user,
.service-chat .main-bot {
  position: relative;
}

.service-chat .hover-icon {
  position: absolute;
  top: 100%;
  transform: translateY(-50%);
}
.service-chat pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}
.service-chat .show-hidden{
  opacity: 1 !important;
}
.service-chat .think-block {
  display: block;
  background: #f5f7ff;
  border-left: 3px solid #6c8cff;
  padding: 0.5em 1em;
  font-style: italic;
  margin: 0.5em 0;
  /* 新增：保留文本里的所有空格和换行，并在必要处折行 */  
  white-space: pre-wrap;    /* :contentReference[oaicite:0]{index=0} */
  word-break: break-word;   /* 避免长单词跑出容器 */
}

/* 法规库 */
.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;
}
