import styled from "styled-components";

export const SendPrescriptionWrapper = styled.div`
  max-height: 440px;
  overflow: auto;
  .title{
    color: #323233;
    font-size: 15px;
    font-weight: 700;
    margin: 4px 0;
  }
  .lefticon{
    padding-top: 10px;
    box-sizing: border-box;
    margin-right: 5px;
  }
  .grayIcon{
    font-size: 18px;
    color: #000;
  }
  .add{
    width: 100%;
    box-sizing: border-box;
    padding: 13px 0;
    background: #F3FFFF;
    .blueIcon{
      font-size: 18px;
      color: #09b9d3;
      margin-right: 3px;
    }
    span{
      color: #05b8d2;
      font-size: 15px;
      font-weight: 700;
    }
  }
`

export const ViewPrescriptionWrapper = styled.div`
  max-height: 440px;
  overflow: auto;
  .title{
    color: #323233;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .marbot{
    margin-bottom: 8px;
  }
  .content{
    color: #323233;
    font-size: 14px;
  }
  .itemo{
    margin-bottom: 20px;
  }
  .listbox{
    box-sizing: border-box;
    padding: 16px 14px;
    background: #F8F8FA;
    border-radius: 24px;
    margin-bottom: 12px;
  }
  .black{
    color: #323233;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .gray{
    color: #999999;
    font-size: 12px;
    font-weight: 700;
  }
`

export const ViewSymptomWrapper = styled.div`
  max-height: 440px;
  overflow: auto;
  .title{
    color: #323233;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .top{
    margin-bottom: 12px;
  }
  .username{
    color: #242424;
    font-size: 16px;
    font-weight: 700;
    margin: 0 10px;
  }
  .tag{
    border-radius: 12px;
    background: #05B8D2;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    box-sizing: border-box;
    padding: 2px 7px;
  }
  .money{
    color: #f33f2e;
    font-size: 15px;
    font-weight: 700;
  }
  .row{
    margin-bottom: 12px;
    color: #323233;
    font-size: 28rpx;
    font-weight: 700;
    span{
      color:#666666;
    }
  }
  .fff{
    color: #fff;
  }
`