| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- .page-container {
- background-color: #f3f3f3;
- padding-top: 10px;
- height: calc(100vh - 44px);
- box-sizing: border-box;
- -webkit-overflow-scrolling: touch;
- .follow-box {
- display: flex;
- align-items: center;
- background-color: #fff;
- padding: 10px 16px;
- font-size: 16px;
- .title {
- color: #666;
- min-width: 80px;
- flex-shrink: 0;
- }
- .content {
- color: #000000;
- margin-left:7px;
- flex: 1;
- line-height: 1.5;
- word-break: break-all;
- }
- }
- .follow-record {
- color: #000000;
- font-size: 16px;
- font-weight: bold;
- margin: 10px 0px 10px 15px;
- }
- .time-box {
- width: 100%;
- height: 34px;
- line-height: 34px;
- color: #000000;
- font-size: 14px;
- background-color: #e4e6ff;
- padding-left: 10px;
- font-weight: bold;
- }
- .record-box {
- background-color: #fff;
- padding: 10px 16px;
- border-radius: 8px;
- .new-symptoms {
- margin-bottom: 20px;
- }
- .questions {
- margin-bottom: 10px;
- }
- .sym-center {
- margin-top: 10px;
- margin-bottom: 10px;
- }
- .symptoms {
- margin-left: 20px;
- display: flex !important;
- .improved {
- color: #909090;
- font-size: 16px;
- width: 80px;
- }
- }
- .image-box {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- margin-top: 20px;
- margin-bottom: 10px;
- .tongue__img {
- width: 30%;
- height: 100px;
- object-fit: cover;
- border-radius: 8px;
- // border: 1px solid #000000;
- }
- }
- .report-box {
- width: 98%;
- height: 40px;
- margin: 0 auto;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #d6e1f3;
- border-radius: 8px;
- font-size: 15px;
- color: #1F457F;
- font-weight: bold;
- .icon-bg {
- width: 20px;
- height: 20px;
- margin-right: 5px;
- }
- }
- }
- }
|