page {
  background-color: white;
}

.messagePage {
  overflow: hidden;
  border-top-left-radius: 24rpx;
  border-top-right-radius: 24rpx;
  background-color: white;

  .searchBox {
    position: relative;
    padding: 20rpx 40rpx;

    .input {
      background-color: #F2F6FC;
      font-size: 28rpx;
      padding: 14rpx 20rpx;
      border-radius: 26rpx;
    }

    .magnifier {
      position: absolute;
      right: 70rpx;
      top: 0rpx;
      bottom: 0rpx;
      margin: auto;
      padding: 10rpx 38rpx;
      width: 28rpx;
      height: 28rpx;
      border-radius: 50rpx;
      background-color: #30C866;
    }
  }

  .messageList {
    padding: 0rpx 36rpx 250rpx;
    box-sizing: border-box;

    .base {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20rpx 0rpx 20rpx 20rpx;
      border-bottom: 1rpx solid #D8D8D8;

      .avatar {
        border-radius: 50rpx;
        width: 80rpx;
        height: 80rpx;
      }

      .body {
        flex: 1;
        padding: 0rpx 20rpx;

        .name {
          max-width: 330rpx;
          font-size: 30rpx;
          font-weight: bolder;
        }
      }

      .right {
        min-width: 140rpx;
        display: flex;
        flex-direction: column;
        align-items: flex-end;

        .date {
          font-size: 24rpx;
        }

        .unread {
          margin-top: 6rpx;
          width: 32rpx;
          height: 32rpx;
          line-height: 32rpx;
          border-radius: 550rpx;
          color: white;
          font-size: 20rpx;
          text-align: center;
          background-color: #FF0000;
        }
      }
    }

    .authority {
      .body {
        display: flex;
        justify-content: space-between;
        padding-right: 50rpx;

        .avatars {
          display: flex;

          .miniAvatar {
            width: 38rpx;
            height: 38rpx;
            border-radius: 50rpx;
            margin-left: 4rpx;
            background-color: #E4E1E1;
          }
        }
      }
    }

    .user {
      .info {
        margin-top: 4rpx;
        width: 400rpx;
        color: #969696;
        font-size: 24rpx;
      }
    }

    .pressHover {
      background-color: #f1f1f1;
    }
  }

  .menuBg {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
  }

  .menu {
    position: fixed;
    width: 278rpx;
    height: 180rpx;
    padding: 0rpx 20rpx;
    box-sizing: border-box;
    border-radius: 24rpx;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 6rpx 16rpx;

    view {
      height: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon {
      width: 30rpx;
      height: 30rpx;
      margin-right: 16rpx;
    }

    .menu-one {
      border-bottom: 1rpx solid #D8D8D8;

      .icon {
        width: 22rpx;
        height: 28rpx;
      }
    }
  }
}