detail.scss 866 Bytes
.main {
  padding-top: 87px; // 标题栏80px + 间距7px
  background-color: #F8F8F8;
  min-height: 100vh;
  .toptitle{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #0052D8;
    display: flex;
    height: 80px;
    justify-content: center;
    align-items: center;
    z-index: 200;
    .toptitle_left{
      padding-top: 20px;
      position: absolute;
      left: 10px;
      z-index: 1000;
    }
    .toptitle_title{
      color: #fff;
      font-size: 14px;
      padding-top: 20px;
    }
  }
  .box {
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #fff;
    .box_item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      margin-bottom: 20px;
      .f1 { font-size: 16px; }
      .f2 { font-size: 16px; }
    }
  }
}