| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- @import "../../../../themes/t.cell.scss";
- @import "../../report-common.scss";
- @import "../../../../themes/card.scss";
- @import '../../../../themes/draggable-sheet.scss';
- /* module/health/components/report-health-status/report-health-status.wxss */
- .status-box{
- font-size: 28rpx;
- font-weight: bold;
- color: #000000;
- width: 95%;
- }
- .status-title{
- font-size: 32rpx;
- font-weight: 500;
- }
- .status-content{
- width: 100%;
- white-space: pre-wrap;
- // text-align: center;
- text-align: left;
- font-size: 28rpx;
- }
- .title-box{
- font-size: 16px;
- font-weight: bold;
- color: black !important;
- }
- .health-title{
- display: flex;
- align-items: center;
- }
- .tongue-box{
- background-color: #FFFFFF !important;
- margin: 10px !important;
- border-radius: 10px !important;
- flex-direction: column !important;
- align-items: stretch !important;
- }
- .report-status-row{
- display: flex;
- flex-direction: row;
- align-items: flex-start;
- width: 100%;
- }
- .status-data-wrapper {
- font-size: 12px;
- }
- .icon{
- width: 23px;
- height: 23px;
- margin-right: 10rpx;
- }
- .report-box {
- display: flex;
- align-items: center;
- height: 30px;
- justify-content: space-between;
- padding: 10px;
- background-image: url('https://wx.hzliuzhi.com:4433/manager/file/statics/2025/08/21/WechatIMG731_20250821155626A830.jpg');
- background-size: cover;
- background-position: center;
- }
- .report-data-wrapper {
- // background: linear-gradient(180deg, #D6E4F5 0%, #F3F4F6 100%);
- background: linear-gradient(180deg, #D6E4F5 0%, #F5F6F7 100%);
- font-size: 14px;
- border-radius: 20px;
- width: 100%;
- margin:auto;
- .card-body {
- display: flex;
- flex-direction: row;
- align-items: center;
- .content-wrapper {
- flex: auto;
- .row {
- white-space: nowrap;
- }
- }
- .image-wrapper {
- flex: none;
- width: 200rpx;
- height: 200rpx;
- margin-left: 10px;
- border-radius: 10px;
- }
- }
- .title {
- text-align: center;
- font-size: 32rpx;
- }
- .primary {
- // color: #34A76B;
- color: #1D6FF6;
- }
- }
- .text-item+.text-item::before {
- content: ',';
- }
- .status-title{
- width: 100%;
- font-size: 16px;
- font-weight: bold;
- color: black;
- height: 50px;
- line-height: 50px;
-
- text-align: center;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .card-container{
- background-color: #F8FAFD;
- border-radius: 10px;
- width: 94%;
- margin: auto auto 10px auto;
- }
- .report-content{
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: space-between;
- // padding: 10px 16px;
- }
- .nodata-box{
- width: 94%;
- margin: auto;
- border-top: 1px solid #E7E7E7;
- padding-top: 10px;
- }
|