  /* 全屏模态框背景 */
  #myModal.modal {
      z-index: 20241214;
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      backdrop-filter: blur(14px);
      background-color: rgba(0, 0, 0, 0.1);

      /* 半透明黑色背景 */
      align-items: center;
      justify-content: center;
      /* opacity: 0; */
      /* 初始时隐藏 */
      transition: opacity 0.5s ease;

      /* 渐变动画 */
      @media screen and (max-width: 500px) {
          align-items: flex-end;
      }
  }

  /* 模态框内容 */
  #myModal .modal_content {
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      width: 500px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

      position: relative;
  }

  #myModal .modal_content * {
      /* 首字母 */
      text-transform: none;
  }

  /* 标题和关闭图标的容器 */
  #myModal .modal_content .modal_header {
      display: flex;
      justify-content: space-between;
      /* 使标题和关闭按钮分开 */
      align-items: center;
      margin-bottom: 20px;
  }

  /* 模态框标题 */
  #myModal .modal_content .modal_header h4 {
      margin: 0;
      font-size: 18px;
  }

  /* 右上角关闭按钮 */
  #myModal .modal_content .close_img {
      cursor: pointer;
      object-fit: cover;
      width: 18px;
      height: 18px;
      flex-shrink: 0;
  }

  #myModal .modal_content .close-btn:hover {
      color: #333;
  }

  /* 模态框消息 */
  #myModal .modal_content .modal_content p {
      margin-bottom: 30px;
      font-size: 1rem;
      color: #555;
  }

  #myModal .modal_content #modalMessage1 {
      box-sizing: border-box;
      width: 100%;
      padding: 45px 20px;
      border-radius: 8px;
      margin-bottom: 0;
      background-color: #f5f5f5;
  }

  #myModal .modal_content #modalMessage2 .modal_row {
      display: flex;
      flex-direction: column;
      /* align-items: center; */
  }

  #myModal .modal_content #modalMessage2 .modal_row .send_cont {
      box-sizing: border-box;
      text-align: left;
      width: 100%;
      max-height: 60vh;
      overflow-y: auto;
      padding: 12px;

      background-color: #f5f5f5;
  }

  #myModal .modal_content #modalMessage2 .modal_row .send_cont #editor {
      max-height: 100%;
  }

  #myModal .modal_content #modalMessage2 .modal_row .send_footer {
      box-sizing: border-box;
      width: 100%;
      margin-top: 16px;

      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      row-gap: 15px;
  }

  #myModal .modal_content #modalMessage2 .icon_item#sendEmoji .absolute {
      box-sizing: border-box;
      position: absolute;
      top: auto;
      left: 100%;
      bottom: 0;
      padding-top: 0;
      padding-left: 10px;
  }

  #myModal .modal_content #modalMessage2 .modal_row.modal_row2 {
      min-height: 130px;
  }


  #myModal .modal_content #modalMessage2 .modal_row .left {
      margin-right: 8px;
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      border-radius: 50%;
      object-fit: cover;
      background-color: #f5f5f5;
  }

  #myModal .modal_content #modalMessage2 .modal_row .right,
  #myModal .modal_content #modalMessage2 .modal_row .right2 {
      position: relative;
      min-width: 1px;
      flex: 1;
      flex-shrink: 0;
  }

  #myModal .modal_content #modalMessage2 .modal_row .right2 {
      min-height: 100px;

      display: block;
      width: 100%;
      height: 150px;
      /* height: calc(1.5em + .75rem + 2px);
      min-height: 150px; */

      padding: .375rem .75rem;
      padding-bottom: 20px;

      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
      color: #0b1721;
      background-color: #fff;
      background-clip: padding-box;
      border: 1px solid #ced4da;
      border-radius: .25rem;
      transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;


  }

  #myModal .modal_content #modalMessage2 .modal_row .right2:focus-within {
      border: 1px solid #f33d0b;
  }

  #myModal .modal_content #modalMessage2 .modal_row .right .flex {
      line-height: 20px;

      display: flex;
      align-items: center;
      flex-wrap: wrap;
  }


  #myModal .modal_content #modalMessage2 .modal_row .right .reply_cont {
      margin-top: 5px;
      /* margin: 10px 0; */
      /* padding: 10px; */
      text-align: left;
      max-height: 44vh;
      overflow-y: auto;
      border-radius: 4px;
      /* border: 1px solid #ced4da; */
  }

  #myModal .modal_content #modalMessage2 .modal_row .right2 textarea {
      width: 100%;
      height: 100%;
      border: none;
      outline: none;
  }

  #myModal .modal_content #modalMessage2 .modal_row .right2 .input_tip {
      position: absolute;
      right: 1px;
      bottom: 1px;
      padding: 0px 9px 0px 4px;
      font-size: 12px;
      line-height: 16px;
      color: #707a8a;
      backdrop-filter: blur(14px);
      background-color: #fff;
  }


  #myModal .modal_content #modalMessage2 .modal_row span.author {
      margin: 0;
      margin-right: 4px;
      color: #0b1721;
      font-size: 16px;
      line-height: 20px;
      font-style: normal;
  }

  #myModal .modal_content #modalMessage2 .modal_row span.time {
      margin: 0;
      margin-right: 4px;
      color: #707a8a;
      font-weight: 400;
      font-size: 14px;
      line-height: 20px;
  }

  #myModal .modal_content #modalMessage2 .line_box {
      flex-shrink: 0;
      box-sizing: border-box;
      padding: 2px;
      width: 40px;
      height: 24px;

      margin: 5px 0 5px;

      display: flex;
      align-items: center;
      justify-content: center;
  }

  #myModal .modal_content #modalMessage2 .line_box .line {
      width: 2px;
      height: 100%;
      background-color: #f5f5f5;
  }


  #myModal .modal_content #modalMessage4 {
      box-sizing: border-box;
      /* min-height: 52px;
      max-height: 52px;
      overflow-y: auto; */
      border-radius: 4px;
      border: 1px solid #f5f5f5;
      background-color: #f5f5f5;
  }

  #myModal .modal_content #modalMessage4 .list_cont {
      box-sizing: border-box;
      width: 100%;
      max-height: 300px;
      overflow-y: auto;
  }

  #myModal .modal_content #modalMessage4 .list_cont .list_item {
      box-sizing: border-box;
      display: flex;
      align-items: center;
      padding: 11px 12px;
      min-height: 58px;
      border-bottom: 1px solid #ffffff;
  }

  #myModal .modal_content #modalMessage4 .list_cont .list_item img.key {
      box-sizing: border-box;
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      object-fit: cover;
      margin-right: 10px;
      border-radius: 50%;
      background-color: #ffffff;
  }

  #myModal .modal_content #modalMessage4 .list_cont .list_item .val {
      min-width: 1px;
      flex: 1;
      flex-shrink: 0;

      display: flex;
      align-items: center;
      justify-content: space-between;

      /* word-break: break-word;
      white-space: break-spaces;
      text-align: left;
      color: #0b1721;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.5px;
      line-height: 18px; */
  }


  #myModal .modal_content #modalMessage4 .list_cont .list_item .val .val_left {
      min-width: 1px;
      flex: 1;
      flex-shrink: 0;

      word-break: break-word;
      white-space: break-spaces;
      text-align: left;
      color: #0b1721;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.5px;
      line-height: 18px;
  }

  #myModal .modal_content #modalMessage4 .list_cont .list_item .val .val_btn {
      flex-shrink: 0;
      margin-left: 5px;
      min-width: 44px;
      min-height: 30px;
      padding: 0 15px;

      cursor: pointer;
      color: #ffffff;
      font-size: 14px;
      font-weight: 500;
      line-height: 22px;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 3px;
      background-color: #f33d0b;
  }

  #myModal .modal_content #modalMessage4 .list_cont .list_item .val .val_btn.followed {
      opacity: 0.6;
  }

  #myModal .modal_content #modalMessage4 .list_cont .list_item2 {
      box-sizing: border-box;
      padding: 11px 12px;
      border-bottom: 1px solid #ffffff;
  }

  #myModal .modal_content #modalMessage4 .list_cont .list_item2 .list_item2_row {
      width: 100%;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      /* align-items: center; */

  }

  #myModal .modal_content #modalMessage4 .list_cont .list_item2 .list_item2_row img.row_left {
      box-sizing: border-box;
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      object-fit: cover;
      margin-right: 10px;
      border-radius: 50%;
      background-color: #ffffff;
  }

  #myModal .modal_content #modalMessage4 .list_cont .list_item2 .list_item2_row .row_right {
      min-width: 1px;
      flex: 1;
      flex-shrink: 0;

      display: flex;
      align-items: center;
      justify-content: space-between;

      word-break: break-word;
      text-align: left;
      font-weight: 400;
      letter-spacing: 0.5px;
  }

  #myModal .modal_content #modalMessage4 .list_cont .list_item2 .list_item2_row .row_right .nickname {
      color: #0b1721;
      font-size: 16px;
      line-height: 18px;
  }

  #myModal .modal_content #modalMessage4 .list_cont .list_item2 .list_item2_row .row_right .operate_time {
      flex-shrink: 0;
      margin-left: 5px;
      color: #707a8a;
      font-size: 14px;
      line-height: 18px;
  }

  #myModal .modal_content #modalMessage4 .list_cont .list_item2 .list_item2_cont {
      box-sizing: border-box;
      width: 100%;
      padding-top: 8px;
      padding-left: 46px;
      max-height: 250px;



      word-break: break-word;
      white-space: break-spaces;
      text-align: left;
      color: #0b1721;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.5px;
      line-height: 18px;
  }

  #myModal .modal_content #modalMessage4 .list_cont .loading {
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 11px 12px;

      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.5px;
      line-height: 22px;
  }


  #myModal .modal_content #modalMessage4 .list_cont .no-more-data {
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 11px 12px;

      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.5px;
      line-height: 22px;
  }

  /* 用户 */
  #myModal .modal_content #modalMessage5 .userInfos_login_cont {}

  #myModal .modal_content #modalMessage5 .userInfos_login_cont .login_userInfo {
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;

      font-size: 14px !important;
      height: 70px;
      width: 100%;
      margin: 0 auto 20px;
      border-bottom: 1px solid #edf1f6;
  }

  #myModal .modal_content #modalMessage5 .userInfos_login_cont .login_userInfo img {
      width: 48px !important;
      height: 48px !important;
      border-radius: 50%;
      object-fit: cover;
      box-sizing: border-box;
  }

  #myModal .modal_content #modalMessage5 .userInfos_login_cont .login_userInfo .text {
      margin-left: 10px;
      word-break: break-all;
      color: #0b1721;
      font-size: 14px;
  }

  #myModal .modal_content #modalMessage5 .userInfos_login_cont .login_item {
      box-sizing: border-box;
      /* text-align: left; */
      width: 100%;
      margin: 0 auto 20px;
  }

  #myModal .modal_content #modalMessage6 {
      /* min-height: 120px;
      display: flex;
      align-items: center;
      justify-content: center; */
      text-align: left;
  }

  #myModal .modal_content #modalMessage6 .title {
      margin-top: 12px;

      margin-bottom: 15px;
  }

  #myModal .modal_content #modalMessage6 .bind {
      width: 100%;
      height: 42px;
      padding: 0 15px;
      border-radius: 4px;
      background-color: #f4f6fa;
  }

  #myModal .modal_content #modalMessage7 {
      margin: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  #myModal .modal_content #modalMessage8 .contact_cont {
      margin-top: 15px;

      max-height: 440px;
      overflow-y: auto;
  }

  #myModal .modal_content #modalMessage8 .contact_cont .contact_item {
      display: flex;
      align-items: center;
      justify-content: space-between;

      min-height: 42px;
      margin-bottom: 15px;

      padding: 15px;
      border-radius: 8px;
      background-color: #f4f6fa;

      /* 首字母 */
      text-transform: none;
  }

  #myModal .modal_content #modalMessage8 .contact_cont .contact_item .left {
      font-size: 14px;
      line-height: 24px;

      word-break: break-all;
      margin-right: 5px;
      max-width: 45%;

      display: flex;
      align-items: center;
  }

  #myModal .modal_content #modalMessage8 .contact_cont .contact_item .left .text {
      margin-left: 4px;
      word-break: break-all;
  }

  #myModal .modal_content #modalMessage8 .contact_cont .contact_item img {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      object-fit: cover;
  }

  #myModal .modal_content #modalMessage8 .contact_cont .contact_item .right {
      display: flex;
      align-items: center;

      font-size: 15px;
      line-height: 24px;

      /* 首字母 */
      text-transform: none;
  }

  #myModal .modal_content #modalMessage8 .contact_cont .contact_item .right .copy {
      cursor: pointer;
      width: 20px;
      height: 20px;
  }

  #myModal .modal_content #modalMessage8 .contact_cont .contact_item .right .text {
      /* 首字母 */
      text-transform: none;
  }

  #myModal .modal_content #modalMessage8 .contact_cont .contact_item .right .text.line {
      cursor: pointer;
      color: #f33d0b;
      text-decoration: underline;
  }


  #myModal .modal_content #modalMessage8 .contact_cont .contact_item .right .ml10 {
      margin-left: 10px !important;
  }



  #myModal .modal_content #modalMessage9 .cent_cont {
      box-sizing: border-box;
      width: 100%;
      /* padding: 24px; */

      display: flex;
      align-items: flex-start;
      /* border-bottom: 1px solid #edf1f6; */
      background-color: #ffffff;
  }


  #myModal .modal_content #modalMessage9 .cent_cont .send_left {
      display: none;
  }


  #myModal .modal_content #modalMessage9 .cent_cont .send_left img {
      box-sizing: border-box;
      flex-shrink: 0;
      margin-right: 15px;
      object-fit: cover;
      width: 42px;
      height: 42px;
      border-radius: 50%;
  }


  #myModal .modal_content #modalMessage9 .cent_cont .send_right {
      min-width: 1px;
      flex: 1;
      flex-shrink: 0;
  }


  #myModal .modal_content #modalMessage9 .cent_cont .send_right .send_cont {
      text-align: left;
      box-sizing: border-box;
      width: 100%;
      max-height: 60vh;
      overflow-y: auto;
      padding: 12px;

      background-color: #f5f5f5;
  }

  #myModal .modal_content #modalMessage9 .cent_cont .send_right .send_cont #editor {
      max-height: 100%;
      min-height: 120px;
  }


  #myModal .modal_content #modalMessage9 .cent_cont .send_right .send_footer {
      box-sizing: border-box;
      width: 100%;
      min-height: 40px;
      margin-top: 16px;

      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      row-gap: 15px;
  }

  #myModal .modal_content #modalMessage9 .cent_cont .send_footer_left {
      display: flex;
      align-items: center;
  }

  #myModal .modal_content #modalMessage9 .cent_cont .send_footer_left .icon_item {
      cursor: pointer;
      display: flex;
      align-self: center;
      margin-right: 20px;
      font-size: 14px;
      line-height: 20px;
  }

  #myModal .modal_content #modalMessage9 .cent_cont .send_footer_left .icon_item:last-of-type {
      margin-left: 0;
  }

  #myModal .modal_content #modalMessage9 .cent_cont .send_footer_left .icon_item img {
      box-sizing: border-box;
      object-fit: cover;
      flex-shrink: 0;
      width: 20px;
      height: 20px;
  }

  #myModal .modal_content #modalMessage9 .cent_cont .send_footer_left .icon_item .line {
      width: 1px;
      height: 20px;
      background-color: #d8dce1;
  }

  #myModal .modal_content #modalMessage9 .cent_cont .send_footer_right {
      display: flex;
      align-items: center;
      justify-content: flex-end;

      flex: 1;
      max-width: 60%;
  }

  #myModal .modal_content #modalMessage9 .cent_cont .send_footer_right .icon_item {
      color: #707a8a;
      cursor: pointer;

      display: flex;
      align-items: center;
      justify-content: center;

      margin-left: 15px;
      padding: 4px 6px;
      border-radius: 6px;
      background-color: #f5f5f5;
  }

  #myModal .modal_content #modalMessage9 .cent_cont .send_footer_right .icon_item.down img {
      transform: rotate(60deg);
  }

  #myModal .modal_content #modalMessage9 .cent_cont .send_footer_right .icon_item img {
      box-sizing: border-box;
      object-fit: cover;
      flex-shrink: 0;
      width: 16px;
      height: 16px;
  }

  #myModal .modal_content #modalMessage9 .cent_cont .send_footer_right .btn {
      cursor: pointer;

      margin-right: 0 !important;
      box-sizing: border-box;
      width: 100%;
      min-width: 52px;
      min-height: 24px;
      margin-left: 20px;

      font-size: 14px;
      font-weight: 500;
      line-height: 20px;

      color: #ffffff;
      word-break: keep-all;

      padding: 8px 16px;
      border-radius: 4px;

      display: flex;
      align-items: center;
      justify-content: center;

      background-color: #f33d0b;
  }

  #myModal .modal_content #modalMessage9 .cent_cont .send_footer_right .btn .text {
      box-sizing: border-box;
      width: 100%;
      text-align: center;
  }

  #myModal .modal_content #modalMessage9 #sendEmoji .absolute {
      box-sizing: border-box;
      top: auto;
      left: 100%;
      bottom: 0;
      padding-top: 0;
      padding-left: 10px;
  }

  #myModal .modal_content #modalMessage10 .contact_cont {
      margin-top: 20px;
  }

  #myModal .modal_content #modalMessage10 .contact_cont .contact_title {
      word-break: break-all;
      text-align: left;

      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.5px;
      line-height: 22px;

      margin-bottom: 6px;
  }

  #myModal .modal_content #modalMessage10 .contact_cont .mb15 {
      margin-bottom: 15px;
  }

  #myModal .modal_content #modalMessage10 .contact_cont .bg_line {
      width: 100%;
      height: 1px;
      background-color: #ffffff;
  }

  #myModal .modal_content #modalMessage10 .contact_cont .contact_item {
      display: flex;
      align-items: center;
      justify-content: space-between;

      min-height: 42px;


      padding: 15px;
      background-color: #f4f6fa;

      /* 首字母 */
      text-transform: none;
  }

  #myModal .modal_content #modalMessage10 .contact_cont .contact_item.border_q {
      border-radius: 8px;
  }

  #myModal .modal_content #modalMessage10 .contact_cont .contact_item.border_t {
      border-radius: 8px 8px 0 0;
  }

  #myModal .modal_content #modalMessage10 .contact_cont .contact_item.border_b {
      border-radius: 0 0 8px 8px;
  }

  #myModal .modal_content #modalMessage10 .contact_cont .contact_item .left {
      font-size: 14px;
      line-height: 24px;

      word-break: break-all;
      margin-right: 5px;

      display: flex;
      align-items: center;
  }

  #myModal .modal_content #modalMessage10 .contact_cont .contact_item .left .text {
      text-align: left;
      word-break: break-all;
  }

  #myModal .modal_content #modalMessage10 .contact_cont .contact_item img {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      object-fit: cover;
  }

  #myModal .modal_content #modalMessage10 .contact_cont .contact_item .right {
      flex-shrink: 0;
      display: flex;
      align-items: center;

      font-size: 15px;
      line-height: 24px;

      /* 首字母 */
      text-transform: none;
  }

  #myModal .modal_content #modalMessage10 .contact_cont .contact_item .right .copy {
      cursor: pointer;
      width: 20px;
      height: 20px;
  }

  #myModal .modal_content #modalMessage10 .contact_cont .contact_item .right .text {
      /* 首字母 */
      text-transform: none;
  }

  #myModal .modal_content #modalMessage10 .contact_cont .contact_item .line {
      cursor: pointer;
      color: #f33d0b;
      text-decoration: underline;
  }


  #myModal .modal_content #modalMessage10 .contact_cont .contact_item .right .ml10 {
      margin-left: 10px !important;
  }

  #myModal .modal_content #modalMessage11 .cent_cont .cell_right {}

  #myModal .modal_content #modalMessage11 .cent_cont .buy_amount {
      box-sizing: border-box;
      width: 100%;
      height: 42px;

      padding: 0 15px;

      display: flex;
      align-items: center;
      border-radius: 4px;
      border: 1px solid transparent;
      background-color: #f4f6fa;
  }

  #myModal .modal_content #modalMessage11 .cent_cont .buy_amount:focus-within {
      border: 1px solid #f33d0b;
  }

  #myModal .modal_content #modalMessage11 .cent_cont .buy_amount input {
      min-width: 1px;
      flex: 1;
      flex-shrink: 0
  }

  #myModal .modal_content #modalMessage11 .cent_cont .buy_amount .unit {
      margin-left: 15px;
      flex-shrink: 0;
  }

  #myModal .modal_content #modalMessage11 .cent_cont .cent_cont_cell {
      box-sizing: border-box;
      width: 100%;
      margin-top: 24px;

      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      row-gap: 15px;
  }

  #myModal .modal_content #modalMessage11 .cent_cont .cent_cont_cell .cent_cont_cell_item {
      cursor: pointer;
      box-sizing: border-box;
      width: calc(50% - 10px);
      height: 42px;

      padding: 0 10px;

      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      background-color: #f4f6fa;
  }

  #myModal .modal_content #modalMessage11 .cent_cont .balance {
      box-sizing: border-box;
      width: 100%;
      margin-bottom: 5px;
      text-align: right;

      font-size: 14px;
      line-height: 1.5;

      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: wrap;
  }

  #myModal .modal_content #modalMessage11 .cent_cont .balance img {
      width: 18px;
      height: 18px;
  }

  #myModal .modal_content #modalMessage11 .cent_cont .balance .num {
      color: #f33d0b;
      font-weight: 600;
  }

  #myModal .modal_content #modalMessage12 .cent_cont {
      box-sizing: border-box;
      /* padding: 20px;
      margin-top: 28px; */

      /* border-radius: 10px; */
      /* background-color: #f4f6fa; */
  }

  #myModal .modal_content #modalMessage12 .cent_cont .right_item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 42px;
      margin-bottom: 15px;
      padding: 15px;
      border-radius: 8px;
      background-color: #f4f6fa;
      text-transform: none;
  }

  #myModal .modal_content #modalMessage12 .cent_cont .right_item.mb15 {
      margin-bottom: 15px;
  }

  #myModal .modal_content #modalMessage12 .cent_cont .right_item .key {
      font-size: 14px;
      line-height: 24px;
      word-break: break-all;
      margin-right: 5px;
      max-width: 45%;
      display: flex;
      align-items: center
  }

  #myModal .modal_content #modalMessage12 .cent_cont .right_item .val {
      display: flex;
      align-items: center;
      font-size: 15px;
      line-height: 24px;
      text-transform: none;
  }

  #myModal .modal_content #modalMessage12 .cent_cont .right_item .val img {
      margin-left: 10px;
      cursor: pointer;
      width: 16px;
      height: 16px;
  }


  #myModal .modal_content #modalMessage13 .contact_cont {
      text-align: initial;
      margin-top: 15px;

      max-height: 520px;
      overflow-y: auto;
  }

  /* 通知 */
  #myModal .modal_content #modalMessage13 .contact_cont>.informCont * {
      word-break: break-word;
      box-sizing: border-box;
      max-width: 100%;
  }



  #myModal .modal_content #modalMessage3 #sendEmoji .absolute {
      box-sizing: border-box;
      top: auto;
      left: 100%;
      bottom: 0;
      padding-top: 0;
      padding-left: 10px;
  }

  /* 底部按钮 */
  #myModal .modal_content .modal_footer {
      box-sizing: border-box;
      width: 100%;
      padding-top: 24px;

      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  #myModal .modal_content .btn {
      width: calc(50% - 10px);
      padding: 10px 14px;
      /* margin: 0 10px; */
      cursor: pointer;
      font-size: 1rem;
      border-radius: 5px;
      border: none;
  }

  #myModal .modal_content .btn_confirm {
      box-sizing: border-box;

      background-color: #f33d0b;
      color: white;
  }

  #myModal .modal_content .btn_cancel {
      box-sizing: border-box;
      /* background-color: #f5f5f5; */
      color: #f33d0b;
      border: 1px solid #f33d0b;
  }

  #myModal .modal_content .btn_cancel:hover {
      color: white;
      background-color: #f33d0b;
  }

  /* 按钮 hover 效果 */
  #myModal .modal_content .btn:hover {
      opacity: 0.9;
  }

  /* 渐入动画 */
  #myModal.fadeIn {
      animation: fadeIn .5s ease-in forwards;
  }

  #myModal .modal_content.innerShow {
      animation: innerShow .5s ease;
  }

  /* 渐出动画 */
  #myModal.fadeOut {
      animation: fadeOut .5s ease-in forwards;
  }

  #myModal .modal_content.innerHide {
      animation: innerHide 0.5s ease !important;
  }

  @keyframes innerShow {
      0% {
          transform: translateY(100vh);
          opacity: 0;
      }

      100% {
          transform: translateY(0px);
      }
  }

  @keyframes innerHide {
      0% {
          transform: translateY(0px);
      }

      100% {
          transform: translateY(100vh);
          backdrop-filter: 0;
      }
  }

  @keyframes fadeIn {
      /* from {
          opacity: 0;
      }

      to {
          opacity: 1;
      } */

      0% {
          opacity: 0;
          display: none;
      }

      100% {
          transform: translateY(0px);
      }
  }

  @keyframes fadeOut {

      /* from {
          opacity: 1;
      }

      to {
          opacity: 0;
      } */
      0% {
          backdrop-filter: blur(0px);
      }

      100% {
          backdrop-filter: blur(0px);
          opacity: 0;
          display: flex;
      }
  }

  @media screen and (max-width: 767px) {
      #myModal .modal_content #modalMessage2 .modal_row span.author {
          font-size: 14px;
      }

      #myModal .modal_content #modalMessage2 .modal_row span.time {
          font-size: 12px;
      }
  }

  @media screen and (max-width: 500px) {
      #myModal .modal_content {
          width: 100%;
          border-radius: 10px 10px 0 0;
      }
  }

  @media screen and (max-width: 440px) {
      #myModal .modal_content {
          width: 100%;
          border-radius: 10px 10px 0 0;
      }
  }