| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- @import "../../../../themes/t.cell.scss";
- @import "../../report-common.scss";
- @import "../../../../themes/card.scss";
- /* module/health/components/report-health-patient/report-health-patient.wxss */
- .user-image {
- width: 104px;
- height:104px;
- border-radius: 10px;
- margin-right: 10px;
- }
- .card-box {
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 40px;
- padding: 0 10px 0px 10px;
- }
- .basic-info{
- color: black;
- font-weight: 500;
- }
- .card-body {
- .row+.row {
- margin-top: 8px;
- }
- }
- .text-item{
- color: #191919;
- }
- .text-items{
- display: flex;
- color: #191919;
- }
- .patient-info-content {
- --td-cell-description-color: #fff;
- --td-cell-description-font-size: 12px;
- display: flex;
- flex-direction: row;
- align-items: center;
- font-size: 14px;
- .avatar {
- flex: none;
- margin-right: 8px;
- }
- .content {
- flex: auto;
- }
- .title {
- font-size: 16px;
- color: #191919;
- font-weight: bold;
- }
- }
- .patient-data-wrapper {
- width: 94% !important;
- margin: auto;
- background: white !important;
- // padding: 0px 20px 10px 20px;
- .body-box {
- display: flex;
- flex-direction: row;
- align-items: center;
- background-color: #F9F9F9;
- padding: var(--td-cell-vertical-padding, 32rpx) var(--td-cell-horizontal-padding, 32rpx);
- font-size: 14px;
- border-radius: 0 0 12px 12px;
- .content-wrapper {
- flex: auto;
- }
- .image-wrapper {
- flex: none;
- width: 100px;
- height: 100px;
- margin-right: 13px;
- border-radius: 10px;
- }
- }
- .row {
- display: flex;
- column-gap: 12px;
- .col {
- flex: 1 1 50%;
- display: flex;
- align-items: center;
- white-space: nowrap; /* 防止真机 50% 宽度下换行 */
- min-width: 0;
- }
- }
- .tag-row {
- display: block;
- line-height: 1.6;
- margin-bottom: 5px;
- .tag-row__label {
- display: inline-block;
- vertical-align: middle;
- white-space: nowrap;
- color: #8c8c8c;
- margin-right: 8px;
- }
- t-tag {
- display: inline-block;
- vertical-align: middle;
- margin: 0 8px 12px 0;
- }
- }
- }
- .text-item+.text-item::before {
- content: ',';
- }
- .primary {
- // color: #34A76B;
- color:#191919;
- }
- .tag + .tag {
- margin-left: 4px;
- }
|