styled.ts 1.5 KB
import styled from "styled-components"

export const ConsultationOrderWrapper = styled.div`
  box-sizing: border-box;
  padding: 16px 24px;
  width: 100%;
  height: calc(100vh - 65px);
  overflow: auto;
  position: relative;
  background: #f5f5f5;
  .title{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .paginationBox{
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
`

export const ConsultationOrderItemWrapper = styled.div`
  display: flex;
  flex-wrap: wrap;
  margin-right: -32px;

  .orderItem{
    margin-bottom: 16px;
    margin-right: 16px;

    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 20px;
    background: #fff;
    width: 48%;
    .topinfo{
      margin-bottom: 20px;
      .username{
        color: #323233;
        font-size: 15px;
        font-weight: 700;
        margin: 0 10px;
      }
      .statetag{
        box-sizing: border-box;
        padding: 2px 6px;
        border: 1px solid #05B8D2;
        border-radius: 8px;
        color: #05b8d2;
        font-size: 11px;
        font-weight: 700;
        margin-right: 10px;
      }
      .time{
        color: #999999;
        font-size: 13px;
      }
      .stateText{
        color: #05b8d2;
        font-size: 14px;
        font-weight: 700;
      }
    }
    .contenttext{
      color: #323233;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 10px;
      span{
        color: #666666;
      }
    }
    .moneytext{
      color: #f33f2e;
      font-size: 14px;
      font-weight: 700;
    }
  }
`