Skip to content
comment.scss 1.76 KiB
Newer Older
wangqinghua's avatar
wangqinghua committed
comment {
  .main {
    background-color: rgba(0, 0, 0, .4);
    height: 100%;
  }

  .content {
    position: relative;
    height: 100%;
    width: 100%;
  }

  .comment {
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 80%;
    background: #fff;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    padding: 15px;

    ion-icon {
      font-size: 3rem;
      font-weight: bold;
    }
  }

  .content-textarea {
    padding: 10px;
    min-height: 100px;
    width: 100%;
    border: 1px solid #f2f2f2;
    background-color: #f2f2f2;
    border-radius: 5px;
  }

  .send {
    background-image: linear-gradient(to right, #feca46, #fee6a3);
    padding: 6px 30px;
    border-radius: 100px;
    font-weight: 500;
    color: rgba(0, 0, 0, .8);
    line-height: 17px;
  }

  .img-star {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    span {
      color: #facd70;
      font-size: 3rem;
    }

    span.score {
      color: #e44f17;
      margin-left: 15px;
    }
  }

  .select {
    .select-ios {
      border: 1px solid #ccc;
      border-radius: 100px;
      color: #333333;
      padding: 6px 8px;
      font-size: 1.4rem;
      max-width: 30%;
      margin-bottom: 15px;
    }
  }

  .item-cover {
    width: auto;
    height: auto;
  }

  .selecTeacher {
    display: inline-block;
    background: rgba(255, 255, 255, 1);
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    margin-bottom: 10px;
    span{
      display: flex;
      align-items: center;
      justify-content: center;
      img{
        width: 25px;
        height: 25px;
        margin-right: 10px;
      }
      ion-icon{
        font-size: 1.5rem;
        color: #999999;
        margin-left: 10px;
      }
    }
  }
}