my-message.scss 1.3 KB
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';

$contentWidth:690px;

.page {
  .bgc {}

  .bg {}

  .main {
    font-size: 28px;
    color: #333333;

    .top-space {
      height: 30px;
    }

    .content {
      width: $contentWidth;
      margin: 0 auto;
      position: relative;

      .func {
        display: flex;
        justify-content: space-between;

        &-item {
          color: #3680EB;
        }

        &-item2 {
          color: #E62435;
        }
      }

      .news {
        margin: 30px auto 0;

        &-item {

          .tit {
            display: flex;
            justify-content: space-between;
            align-items: center;

            &-item {
              .t1 {
                padding: 4px 12px;
                display: inline-block;
                background: #F8F8F8;
                border-radius: 8px;
                color: #3680EB;
              }

              // 删除
              .t2 {
                color: #E62435;
              }

              .no {
                color: #666666;
                // padding-left: 12px;
              }
            }
          }

          .desc {
            margin: 16px auto 0;
            color: #666666;
          }

          .code{
            font-size: 20px;
          }
        }
      }
    }
  }
}