Skip to content
verify-handle.scss 3.99 KiB
Newer Older
wangqinghua's avatar
wangqinghua committed
page-verify-handle {
  .stuff {
    font-size: 1.8rem;
    line-height: 2.4rem;
wangqinghua's avatar
wangqinghua committed
    height: calc(100% - 6rem);
wangqinghua's avatar
wangqinghua committed
    overflow-y: scroll;
    background-color: #f3f3f3;

    .stuff-container {
      padding: 1.5rem;
      background-color: #fff;
wangqinghua's avatar
wangqinghua committed

wangqinghua's avatar
wangqinghua committed
      .stuff-title {
        font-weight: 600;
        font-size: 2.5rem;
        margin-bottom: .5rem;
        line-height: 3rem;
        color: #4c4c4c;
        font-family: 'SourceHanSans-Bold';
      }

      .stuff-info {
        font-size: 1.5rem;
        margin-bottom: 1rem;

        .info-publisher {
          color: #5c5c5c;
          margin-right: 1rem;
        }

        .info-time {
          color: #888888;
        }
      }
wangqinghua's avatar
wangqinghua committed

      .stuff-content {
wangqinghua's avatar
wangqinghua committed
        line-height: 2.8rem;
        color: #444444;
        font-family: 'SourceHanSans-Light';
      }
    }
  }

  .stuff-footer {
    position: fixed;
    bottom: 0;
wangqinghua's avatar
wangqinghua committed
    height: 6rem;
wangqinghua's avatar
wangqinghua committed
    width: 100%;
    text-align: center;
    border-top: 1px solid #eeeeee;
    z-index: 9;
wangqinghua's avatar
wangqinghua committed
    img{
      margin-top: .5rem;
      width: 30px;
    }
wangqinghua's avatar
wangqinghua committed
    button {
      width: 100px;
      height: 35px;
      line-height: 35px;
      background: #e42417;
      color: #fff;
      border-radius: 5px;
      font-size: 1.6rem;
    }

wangqinghua's avatar
wangqinghua committed
    .tip-num {
      position: absolute;
      right: 15px;
      top: 10px;
      color: #e12724;
      font-size: 1rem;
      background: #fff;
      display: block;
      line-height: 1rem;
      border-radius: 5px;
    }

    ion-icon {
      color: #666666;
      position: relative;
      font-size: 2.5rem;
    }

    ion-icon.main-color {
      color: #e66866;
    }

    .input {
      background: #ddd;
      border: 1px solid #ddd;
      border-radius: 2px;
      height: 2.8rem;
      line-height: 2.8rem;
      color: #666666;
    }
  }

  .error-text {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .2);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;

    .error-flex {
      text-align: center;
      width: 80%;
      background-color: #fff;

      .error-title {
        background-color: #5579bb;
        color: #ffffff;
        padding: 1rem 0;
      }

      .content-textarea {
        margin-top: 1rem;
        padding: 10px;
        min-height: 100px;
        width: 100%;
        border: 1px solid #ddd;
      }

      .error-footer {
        height: 4rem;

        .sure, .cancel {
          color: #ffffff;
          background-color: #fd5151;
          width: 50%;
          margin-right: 10px;
          height: 2.5rem;
          line-height: 2.5rem;
          border-radius: 5px;
        }
      }
    }
  }

  .stuff-comment {
    margin-top: 1rem;
    padding: 0 1.5rem;
    background-color: #fff;
wangqinghua's avatar
wangqinghua committed

wangqinghua's avatar
wangqinghua committed
    .comment-title {
      border-bottom: 1px solid #dddddd;
      font-weight: 500;
      padding-bottom: .8rem;
      margin-bottom: .8rem;
      position: relative;
    }
wangqinghua's avatar
wangqinghua committed

    .comment-title::after {
wangqinghua's avatar
wangqinghua committed
      content: '';
      position: absolute;
      top: 7px;
      left: -8px;
      width: 3px;
      height: 15px;
      background-color: #e12724;
    }
wangqinghua's avatar
wangqinghua committed

    [col-10], [col-2] {
wangqinghua's avatar
wangqinghua committed
      padding: 0;
    }

    .comment-item {
wangqinghua's avatar
wangqinghua committed
      .contact-img {
wangqinghua's avatar
wangqinghua committed
        border-radius: 50%;
        width: 50px;
        height: 50px;
        text-align: center;
        margin-top: 8px;
      }
wangqinghua's avatar
wangqinghua committed

wangqinghua's avatar
wangqinghua committed
      .comment-info {
        color: #d88f27;
        font-size: 1.4rem;
        line-height: 1.8rem;
        font-weight: 500;
        margin-bottom: 5px;
      }

      .commnet-content {
        padding: .1rem 0;
        font-size: 1.4rem;
        color: #333333;
        line-height: 1.4rem;
      }
wangqinghua's avatar
wangqinghua committed

      .comment-time {
wangqinghua's avatar
wangqinghua committed
        font-size: 1.4rem;
        color: #888888;
wangqinghua's avatar
wangqinghua committed

        .repear {
wangqinghua's avatar
wangqinghua committed
          color: #3961b3;
          font-size: 1.2rem;
          cursor: pointer;
          margin-right: 5px;
        }
      }
    }

    .comment-item + .comment-item {
      border-top: 1px solid #eee;
      margin-top: .5rem;
    }
  }
wangqinghua's avatar
wangqinghua committed

  .toolbar-icon{
    color: #fff;
    margin-right: 1rem;
    font-size: 1.5rem;
  }
wangqinghua's avatar
wangqinghua committed
}