follow-evaluation.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. @import "../../../../themes//t.cell.scss";
  2. @import "../../report-common.scss";
  3. @import "../../../../themes/card.scss";
  4. /* module/health/components/follow-evaluation/follow-evaluation.wxss */
  5. .card-wrapper {
  6. margin: 0 0rpx 30rpx 0;
  7. }
  8. .constitution-container {
  9. border-radius: 20rpx;
  10. background: linear-gradient(180deg, #D6E4F5 0%, #F3F4F6 100%);
  11. // padding: 0px 10px 10px 10px;
  12. }
  13. .constitution-box{
  14. background-image: url('https://wx.hzliuzhi.com:4433/manager/file/statics/2025/08/21/WechatIMG731_20250821155626A830.jpg');
  15. background-size: cover;
  16. background-position: center;
  17. }
  18. .table-box{
  19. padding: 0px 10px 10px 10px;
  20. }
  21. .text-title {
  22. font-size: 16px;
  23. color: black;
  24. font-weight: 500;
  25. }
  26. .card-title {
  27. display: flex;
  28. align-items: center;
  29. margin-bottom: 20rpx;
  30. margin-left: 30rpx;
  31. }
  32. .icon-title {
  33. width: 20px;
  34. height: 20px;
  35. margin-right: 10rpx;
  36. }
  37. .card-header {
  38. display: flex;
  39. align-items: center;
  40. justify-content: space-between;
  41. margin-bottom: 10rpx;
  42. padding: 20px 0 0px 0 !important;
  43. }
  44. .table {
  45. background: #FFFFFF;
  46. border: 1px solid #EEEEEE;
  47. border-radius: 8px;
  48. .table-row {
  49. display: flex;
  50. border-bottom: 1px solid #EEEEEE;
  51. height: 40px;
  52. line-height: 40px;
  53. border-radius: 8px 8px 0px 0px;
  54. &:last-child {
  55. border-bottom: none;
  56. }
  57. &.header {
  58. background: #EEEEEE;
  59. font-weight: 500;
  60. }
  61. }
  62. .table-cell {
  63. flex: 1;
  64. padding: 0 16rpx;
  65. text-align: center;
  66. font-size: 28rpx;
  67. color: #191919;
  68. white-space: nowrap;
  69. overflow: hidden;
  70. text-overflow: ellipsis;
  71. // max-width: 0;
  72. &:first-child {
  73. text-align: center;
  74. }
  75. }
  76. }
  77. .truncate {
  78. width: 100px !important; /* Set your desired width */
  79. white-space: nowrap; /* Prevent text from wrapping */
  80. overflow: hidden; /* Hide overflow text */
  81. text-overflow: ellipsis; /* Show ellipsis for overflow text */
  82. }