| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- @import "../../../../themes/t.cell.scss";
- @import "../../report-common.scss";
- @import "../../../../themes/card.scss";
- /* module/health/components/card-analysis/card-analysis-content.wxss */
- .togue-title{
- font-size: 16px;
- color: black;
- font-weight: 500;
- text-align: center;
- width: 100%;
- height: 50px;
- line-height: 50px;
- background-color: white;
- border-radius: 10px 10px 0 0;
-
- }
- .picture-container {
- display: flex;
- margin: 20px 0;
- align-items: center;
- .body-image {
- width: 200px;
- height: auto;
- margin-bottom: 20px;
- }
- .picture-wrapper {
- display: flex;
- gap: 10px;
- image {
- width: 120px;
- height: 120px;
- border-radius: 10px;
- object-fit: cover;
- }
- }
- }
- .tongue-label {
- position: absolute;
- color: #666;
- font-size: 14px;
- }
- .tongue-top {
- top: 20%;
- right: 0;
- }
- .tongue-bottom {
- bottom: 20%;
- right: 0;
- }
- .picture-container{
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .body-image{
- width: 200px;
- }
- .tongue-right{
- display: flex;
- align-items: center;
- }
- .tongue-container{
- padding: 0px 5px 0px 5px;
- }
- // padding: var(--td-cell-horizontal-padding, 32rpx) !important;
- // background: linear-gradient(180deg, #D6E4F5 0%, #F3F4F6 100%);
- .constitution-container{
- border-radius: 0 0 10px 10px;
-
- }
- .card-title{
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 20rpx;
- }
- .text-title{
- font-size: 16px;
- color: black;
- font-weight: 500;
- }
- .icon-title{
- width: 20px;
- height: 20px;
- margin-right: 10rpx;
- }
- .talbel-wrapper {
- $border: 1px solid transparent;
- margin-top: 12px;
- border: $border;
- border-radius: 8px;
- .tr {
- display: flex;
- flex-direction: row;
- align-items: center;
- .td ,.th{
- text-align: center;
- }
- &+.tr {
- border-top: $border;
- }
- &.exception .td:nth-child(2) {
- color: #FF4D4F;
- }
- &.invalid .td:nth-child(2) {
- color: #aaa;
- }
- }
- .th {
- // color: #fff;
- font-weight: 500;
- background-color: #B4D1FF;
- &:first-child {
- // background-color: #EFF4F9;
- background-color: #B4D1FF;
- border-radius: 10px 0 0 0;
- }
- }
- .th,
- .td {
- // display: flex;
- text-align: center;
- word-break: break-all;
- white-space: pre-wrap;
- &:nth-child(1) {
- flex: 0 0 100px;
- border-radius: 20px 0px 0px 20px;
- }
- &:nth-child(2) {
- flex: auto;
- border-left: $border;
- border-right: $border;
- }
- &:nth-child(3) {
- flex: 0 0 100px;
- border-radius: 0 20px 20px 0px;
- }
- }
- }
- .picture-wrapper {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- image {
- margin: 6px;
- width: 128px;
- height: 128px;
- }
- }
|