.noticeBox{
  position: fixed;
  top: 47px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  overflow: auto;
  outline: 0;
  box-sizing: border-box;
  background-color: rgba(217,217,217,.9);
  animation: showPage 0.5s ease-out 1;
  animation-timing-function: cubic-bezier(.075, .82, .165, 1);

  &::after{
    position: absolute;
    content: '';
    display: block;
    top: 72px;
    width: calc(100%);
    height: 1px;
    background-color: #C3CAD9;
  }
}
.notice{
  width: 1150px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  .notice-header{
    position: relative;
    height: 72px;
    // border-bottom: 1px solid #C3CAD9;

    .header-search-top{
      width: 100%;
      height: 40px;
      background: #FFFFFF;
      margin: 16px auto;
      border-radius: 4px;
      overflow: hidden;

      .searchCancel{
        display: inline-block;
        background-color: #C3CAD9;
        border-radius: 50%;
        width: 17px;
        height: 17px;
        color: #fff;
        font-size: 14px;
        text-align: center;
        line-height: 18px;
        cursor: pointer;

        &:hover{
          background-color: #2196F3;
        }
      }
      .ant-input-placeholder{
        font-family: PingFangSC-Regular;
        font-size: 14px;
        color: #A3ACBF;
        text-align: left;
      }
      .ant-input-search{
        font-family: PingFangSC-Regular;
        font-size: 14px;
        color: #313E59;
        text-align: left;
      }

      .ant-input-content{
        line-height: 40px;
        padding: 0 14px;

        .ant-input{
          height: 22px;
          padding-right: 15px;
        }
        .ant-input-prefix{
          display: inline-block;
          color: #69758C;
          // margin-right: 10px;
        }
        .ant-input-rendered{
          margin: 0px 30px 0px 24px !important;
        }

      }
    }

    .header-cancel{
      position: absolute;
      top: 50%;
      right: -5%;
      transform: translateY(-50%);
      cursor: pointer;

      .icon-guanbi{
        font-size: 14px;
        color: #313E59;

        &:hover{
          color: #2196F3;
        }
      }
    }
  }



  .notice-content{
    height: 100%;
    overflow: hidden;
    padding: 24px 0;

    .content-center{
      // position: relative;
      height: 100%;
      // width: 1144px;
      width: 100%;
      margin: auto;
      display: flex;
      justify-content: space-between;

      .left-allNotice{
        // position: absolute;
        // position: relative;
        // display: inline-block;
        // left: 0;
        height: 100%;
        width: 400px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-right: 15px;
        border: 1px solid #DADFE8;
        border-radius: 4px;
        background-color: #fff;
        /* overflow: scroll; */

        .allN-header{
          display: flex;
          justify-content: space-between;
          height: 56px;
          font-family: PingFangSC-Medium;
          font-size: 16px;
          color: #020E26;
          text-align: left;
          line-height: 24px;
          padding: 16px 24px;
          border-bottom: 1px solid #DADFE8;
          overflow: hidden;

          .allN-select{
            font-family: PingFangSC-Medium;
            font-size: 15px;
            color: #020E26;
            text-align: left;
            line-height: 24px;
            font-weight: 600;

            .ant-select-selection-selected-value{
              font-family: PingFangSC-Medium;
              font-size: 15px;
              color: #020E26;
              text-align: left;
              line-height: 24px;
            }
          }

          .typeSelect{
            font-family: PingFangSC-Medium;
            font-size: 15px;
            color: #020E26;
            text-align: left;
            line-height: 24px;
            font-weight: 600;

            .ant-select-selection-selected-value{
              font-family: PingFangSC-Medium;
              font-size: 15px;
              color: #020E26;
              text-align: left;
              line-height: 24px;
            }
          }

          .icon{
            font-size: 18px;
            color: #69758C;
          }
          .shaixuanqipeizhi{
            margin-right: 5px;
            cursor: pointer;
          }

          .cancel{
            display: inline-block;
            font-size: 14px;
            vertical-align: middle;
            padding-right: 5px;
            cursor: pointer;

            &:hover{
              color: #2196F3;
            }
          }

          .ant-select{
            vertical-align: middle;
            font-size: 14px;
          }

          // 去除select默认边框
          .ant-select-underline{
            border: none;
            .ant-select-ripple{
              border: none;
            }
          }

          // dropdown的下拉框位置
          .ant-dropdown{

          }
        }

        .allN-list{
          height: 100%;
          overflow: hidden;
          // overflow-y: scroll;
          // overflow: overlay;
          &:hover{
            overflow-y: scroll;
            overflow-x: hidden;
          }
          &:hover::-webkit-scrollbar-thumb{
            visibility: visible;
          }
          &::-webkit-scrollbar{
            width: 3px;
          }
          &::-webkit-scrollbar-track{
            background: transparent;
          }
          &::-webkit-scrollbar-thumb{
            visibility: hidden;
          }

          .ant-spin{
            width: 100%;
            padding-top: 8px;
          }
          .listSpin{
            width: 100%;
            padding-top: 50px;
          }
          .loadingMore{
            margin-left: 147px;
            &:hover{
              color: #2196F3;
            }
            &:active{
              color: #0754A6;
            }
          }

          .selectItem{
            padding: 16px 24px;
            border-right: 3px solid #fff;
            border-bottom: 1px solid #DADFE8;

            .ant-list-item-meta-avatar{
              margin-right: 8px;
            }
          }

          .listTop{
            display: flex;
            justify-content: space-between;
            .listTitle{
              width: 280px;
              font-family: PingFangSC-Medium;
              font-size: 14px;
              font-weight: 600;
              color: #313E59;
              text-align: left;
              line-height: 22px;
              overflow: hidden;
              white-space: nowrap;
              cursor: pointer;

              .ellipsis{
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
              }
            }

            .noReadCount{
              width: 20px;
              height: 20px;

              div{
                width: 20px;
                height: 20px;
                line-height: 20px;
                text-align: center;
                color: #fff;
                background-color: #F8353F;
                border-radius: 50%;
              }
            }
          }

          .listDescription{

            font-family: PingFangSC-Regular;
            font-size: 14px;
            color: #69758C;
            text-align: left;
            line-height: 22px;
            display: flex;
            justify-content: space-between;
            overflow: hidden;
            cursor: pointer;

            .desEllipsis {
              width: 180px;
              white-space: nowrap;
              overflow: hidden;
              text-overflow: ellipsis;
            }

            .listContent{
              width: 130px;
              height: 25px;
              display: flex;
              flex-direction: column;
              justify-content: space-between;
              align-items: flex-end;
              overflow: hidden;
              white-space: nowrap;
              cursor: pointer;


              .list-name-time{
                display: flex;
                justify-content: flex-end;
                .itemName{
                  font-family: PingFangSC-Regular;
                  font-size: 12px;
                  color: #69758C;
                  text-align: left;
                  line-height: 20px;
                }
                .itemTime{
                  font-family: PingFangSC-Regular;
                  font-size: 12px;
                  color: #69758C;
                  text-align: left;
                  line-height: 20px;
                  margin-left: 8px;
                }
              }
            }
          }
        }

        .allN-footer{
          display: flex;
          justify-content: center;
          align-items: center;
          height: 56px;
          border-top: 1px solid #DADFE8;

          .footer-left{
            position: relative;
            font-family: PingFangSC-Regular;
            font-size: 14px;
            color: #313E59;
            text-align: left;
            line-height: 22px;
            cursor: pointer;

            & .icon{
              margin-top: -3px;
              margin-right: 5px;
            }

            &:hover{
              color: #2196F3;
            }
            &:active{
              color: #0754A6;
            }
          }
        }
      }

      .right-detailNotice{
        height: inherit;
        width: 735px;

        .detailNotice{
          height: 100%;
          width: 735px;
          border: 1px solid #DADFE8;
          background-color: #fff;
          display: flex;
          flex-direction: column;
          justify-content: flex-start;

          .detailN-header{
            height: 140px;
            color: #69758C;
            padding: 0 24px;
            border-bottom: 1px solid #DADFE8;
            overflow: hidden;

            .detailN-title{
              padding: 16px 0 6px 0;
              width: 100%;
              display: flex;
              justify-content: space-between;
              overflow: hidden;

              .detailN-h1{
                width: 600px;
                font-family: PingFangSC-Medium;
                font-size: 18px;
                font-weight: 600;
                color: #020E26;
                text-align: left;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;

                .h1-title{
                  overflow: hidden;
                  white-space: nowrap;
                  display: block;
                  text-overflow: ellipsis;
                }
              }

              .detailN-action{
                font-size: 17px;
                text-align: left;

                .quanbubiaojiweiyidu{
                  display: inline-block;
                  margin-right: 20px;
                  cursor: pointer;

                  &:hover{
                    color: #2196F3;
                  }
                  &:active{
                    color: #0754A6;
                  }

                }

                .shanchu{
                  display: inline-block;
                  margin-right: 1px;
                  cursor: pointer;

                  &:hover{
                    color: #2196F3;
                  }
                  &:active{
                    color: #0754A6;
                  }
                }
              }
            }

            .detail{
              // height: 100%;
              font-family: PingFangSC-Regular;
              font-size: 14px;
              color: #313E59;
              text-align: left;

              .ant-row{
                width: 100%;
                margin-bottom: 3px;
              }

              .detailN-field{
                color: #69758C;
                display: inline-block;
                margin-right: 8px;
              }
            }

          }

          .detailN-list{
            height: 100%;
            padding: 0 12px 0 20px;
            overflow-y: scroll;

            .ant-list-item{
              padding-right: 8px;
              border-bottom: 1px solid #DADFE8;

              .ant-list-item-meta-avatar{
                margin-right: 8px;
              }
            }

            .isPoint{
              display: inline-block;
              width: 6px;
              height: 6px;
              border-radius: 50%;
              vertical-align: middle;
              margin-right: 5px;
            }
            .redPoint{
              background-color: #F5222D;
            }
            .noPoint{
              background-color: inherit;
            }

            .title-date-delet{
              // width: 586px;
              display: flex;
              line-height: 24px;
              justify-content: space-between;
              margin-bottom: 10px;

              .itemTitle{
                width: 460px;
                font-family: PingFangSC-Regular;
                font-size: 16px;
                color: #020E26;
                text-align: left;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
              }
              .itemData{
                display: inline-block;
                // width: 130px;
                font-family: PingFangSC-Regular;
                font-size: 12px;
                color: #69758C;
                text-align: left;
              }
              .itemDelet{
                display: inline-block;
                font-size: 18px;
                color: #818999;
                margin-bottom: 3px;
                margin-left: 16px;
                cursor: pointer;

                &:hover{
                  color: #2196F3;
                }
                &:active{
                  color: #0754A6;
                }
              }

            }

            .listDescription{
              width: 100%;
              font-family: PingFangSC-Regular;
              font-size: 14px;
              color: #69758C;
              text-align: left;
              line-height: 22px;
            }
          }
        }
      }

       /* 公告 */
       .message-ann {
        height: 100%;
        width: 735px;
        background-color: #FFFFFF;
        /* 这个是滑动查看全部 */
        .announcement-more {
          height: 54px;
          width: 944px;
          background: #FFFFFF;
          filter: blur(0px);  
          box-shadow: 0px -4px 12px 0px rgba(83, 123, 166, 0.1);
          position: absolute;
          top: 534px;
          padding: 19px 0;
          text-align: center;
          .announcement-more-description {
            font-size: 14px;
            font-weight: 500;
            color: rgba(0, 0, 0, 0.85);
            line-height: 22px;
          }
        }
        .announcement-more-no {
          display: none;
        }

        /* 头部信息 */
        .message-ann-top {
          padding: 16px 24px;
          border-bottom: solid 1px #E8E8E8;
          background: #fff;
          .ann-top-title {
            font-size: 20px;
            font-weight: 500;
            color: #262626;
            line-height: 28px;
            margin-bottom: 12px;
          }
          .ann-top-other {
            display: flex;
            align-items: center;
            font-size: 14px;
            font-weight: 400;
            color: #595959;
            line-height: 22px;
            .ant-avatar {
              height: 20px;
              width: 20px;
              .ant-avatar-string {
                top: -9px;
                & > span {
                  font-size: 14px !important;
                }
              }
            }
            & > span {
              display: flex;
              align-items: center;
              .icon {
                font-size: 16px;
              }
            }
            .bottom-createby {
              margin-right: 24px;
              margin-left: 8px;
            }
            .bottom-creationDate {
              margin-left: 8px;
            }
          }
        }
        .message-ann-bottom {
          height: calc(100% - 96px);
          padding: 20px 24px;
          overflow: scroll;

          /* 正文内容 */
          .ann-content {
            font-size: 14px;
            font-weight: 500;
            color: #595959;
            line-height: 24px;
            img {
              width: auto;  
              height: auto; 
              max-width: 680px;
              max-height: 200px;
              display: block;
            }
          }
          .ann-file-content {
            .content-box {
              border-top: 1px solid #EBF1F5;
              padding: 16px 0;
              .file-area-title {
                font-size: 15px;
                font-weight: 500;
                color: #262626;
                line-height: 24px;
                margin-bottom: 8px;
              }
              .file-item {
                cursor: pointer;
                padding: 5px 24px 5px 8px;
                color: #262626;
                background: #FAFAFA;
                border-radius: 4px;
                margin-bottom: 8px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                .file-item-left {
                  display: flex;
                  align-items: center;
                  .file-item-title {
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 22px;
                    margin-right: 8px;
                  }
                  .file-item-size {
                    font-size: 12px;
                    font-weight: 400;
                    color: #BFBFBF;
                    line-height: 20px;
                  }
                }
                .file-item-right {
                  display: none;
                }
                &:hover {
                  color: #2196f3;
                  .file-item-right {
                    display: block;
                  }
                }
              }
            }
          }
        }
      }

    }
  }
}

.type-select{
  .ant-select-dropdown-menu-item{
    padding: 4px 24px;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #313E59;
    text-align: left;
  }
}

@keyframes showPage
{
    0% {bottom: 100%}
    100% {bottom: 0}
}

.header-inbox{
  transform: scale(.8);
  button {
    transform: scale(1.25);
    width: 30px;
    height: 30px;


    .icon {
      color: #fff;
      font-size: 23px;
      border-radius: 50%;
    }
  }
  .ant-badge-count {
    box-shadow: initial;
    cursor: pointer;
    top: -5px;
  }

  &-popover {
    width: 300px;
    .is-empty {
      background-color: white;
    }
    .ant-tabs-nav-scroll {
      padding-left: 16px;
    }
    .ant-tabs-bar {
      margin-bottom: 0;
    }
    .ant-popover-inner {
      box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.20), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    }
    &-header {
      padding: 0 0;
      line-height: 41px;
      //margin-bottom: 5px;
      background-color: white;
      // height: 41px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.12);
      border-radius: 4px 4px 0 0;
      .ant-tabs-tab {
        //font-weight: 500;
      }
      .ant-tabs-bar {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
      }
      .ant-tabs-extra-content {
        //margin-right: 16px;
        > .ant-btn-circle {
          color: #2196f3;
        }
      }
      .ant-card-meta-title {
        width: 190px;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-bottom: 2px !important;
        > a {
          font-size: 13px;
          color: #04173F;;
          text-decoration: none;
          //font-weight: normal;
        }
      }
      .ant-card-meta-description {
        width: 190px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        color: #04173F;
        > p {
          width: 211px;
        }
      }
      .ant-card-meta-detail {
        padding: 7px 0;
      }
      span {
        color: rgba(0, 0, 0, 0.54);
        font-size: 16px;
      }

      > a {
        float: right;
        color: #303f9f;
      }
    }
    .header-inbox-popover-card {
      width: 298px;
      height: 77px;
      margin: 8px 16px;
      background: #fff;
      //box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.20), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
      .ant-card-body {
        padding: 5px 0px;
        //margin-top: -5px;
      }
      .ant-avatar {
        margin: 7px auto;
        text-align: center;
        display:inline-block;
        position: relative;
        width: 80px;
        height: 80px;
        font-size: 40px;
        line-height: 80px;
        font-weight: 700;
        background-color: #c5cbe8;
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
        color: #3f51b5;
        text-transform: uppercase;
        border-radius: 99px;
      }
    }
    &-content {
      overflow: auto;
      overflow-x: hidden;
      height: 316px;
      ul {
        padding: 0;
        list-style: none;
        margin-top: 12px;
        .header-inbox-popover-card{
          margin: 17px 28px 16px 28px;
        }
      }
      li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        position: relative;
        font-size: 13px;
        line-height: 20px;
        padding: 9px 20px;
        > label {
          > a {
            vertical-align: middle;
            color: inherit;
          }
        }

        &:hover {
          background-color: rgba(0, 0, 0, 0.02);
        }
      }
      label {
        font-size: 13px;
        line-height: 20px;
        //font-weight: 500;
      }
      p {
        font-size: 12px;
        margin: 0;
        width: 262px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        transform: scale(0.9);
        transform-origin: 0;
      }
      .icon {
        color: #a3a3a3;
        font-size: 16px;
        cursor: pointer;
        position: absolute;
        left: 269px;
        top: 20px;
        z-index: 2;
      }
    }
    &-footer {
      background-color: white;
      line-height: 46px;
      text-align: center;
      font-size: 14px;
      //font-weight: 500;
      color: #303f9f;
      border-radius: 0 0 4px 4px;
      .footer-left{
        opacity: 0.98;
        font-size: 12px;
        color: #04173F;
        letter-spacing: 0;
        text-align: left;
        line-height: 18px;
        margin-left: 11px;
      }
      .footer-right{
        opacity: 0.98;
        font-size: 12px;
        color: #04173F;
        letter-spacing: 0;
        text-align: left;
        line-height: 18px;
        margin-left: 11px;
      }

    }

    .ant-popover-inner-content {
      padding: 0;
    }
  }
  &-empty {
    margin-top: 42px;
    margin-bottom: 42px;
    padding-top: 124px;
    text-align: center;
    font-size: 14px;
    color: rgba(140, 140, 140, 0.54);
    line-height: 48px;
    background-image: url("./icons/mnhbk.svg");
    background-repeat: no-repeat;
    background-position: top;
  }

  .ant-card-meta-avatar div div{
    overflow: auto;

  }.ant-card-meta-avatar div div:nth-child(3){
     width: 140px;
     overflow: hidden;
     text-overflow: ellipsis;
   }
  .ant-card-meta-avatar  div  div:nth-child(4){
    margin-left: 0!important;
  }
  .ant-card-meta-avatar{
    width: 100%;
    .inbox-notice{
      width: 100%;
    }
  }
  .master-head-right li:nth-child(1){
    display: flex;
    align-items: center;
  }
}


// .inbox-notice{
//   .inbox-notice-title{
//     opacity: 0.98;
//     font-size: 14px;
//     color: #04173F;
//     letter-spacing: 0;
//     text-align: left;
//     line-height: 14px;
//     font-weight: 400;
//     overflow: unset;
//   }
//   .inbox-notice-title:hover{
//     color: #2196F3;
//   }
// }

.header-inbox-popover{
  width: 340px;
  box-shadow: rgba(60, 77, 115, 0.17) -2px 5px 20px;
  border-right: 4px;
}
