patient.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. body {
  27. height: 100%;
  28. }
  29. .content {
  30. height: 100%;
  31. display: flex;
  32. flex-direction: column;
  33. justify-content: space-between;
  34. }
  35. .content .inner {
  36. flex: 1;
  37. padding: 0.625rem 0.625rem 5rem;
  38. }
  39. .content .inner .peop-item {
  40. box-sizing: border-box;
  41. height: 5.75rem;
  42. background: #FFFFFF;
  43. border-radius: 0.5rem;
  44. padding: 1.5625rem 1.25rem 1.5625rem 0.9375rem;
  45. display: flex;
  46. align-items: center;
  47. justify-content: space-between;
  48. margin-bottom: 0.625rem;
  49. }
  50. .content .inner .peop-item .info .name {
  51. font-size: 0.9375rem;
  52. font-family: PingFang SC;
  53. font-weight: bold;
  54. color: #111111;
  55. line-height: 1;
  56. }
  57. .content .inner .peop-item .info .detail {
  58. display: flex;
  59. align-items: center;
  60. margin-top: 0.9375rem;
  61. }
  62. .content .inner .peop-item .info .detail .text {
  63. font-size: 0.8125rem;
  64. font-family: PingFang SC;
  65. font-weight: 500;
  66. color: #999999;
  67. line-height: 1;
  68. margin-right: 0.9375rem;
  69. }
  70. .content .inner .peop-item .info .detail .text:last-child {
  71. margin-right: 0;
  72. }
  73. .content .inner .peop-item .operat-box {
  74. display: flex;
  75. align-items: center;
  76. }
  77. .content .inner .peop-item .operat-box uni-image {
  78. padding: 0.46875rem;
  79. width: 0.9375rem;
  80. height: 0.9375rem;
  81. margin-left: 0.3125rem;
  82. }
  83. .content .inner .peop-item .operat-box uni-image:first-child {
  84. margin-left: 0;
  85. }
  86. .content .btn-box {
  87. z-index: 9999;
  88. width: 100%;
  89. padding: 0.9375rem;
  90. position: fixed;
  91. bottom: 0;
  92. left: 0;
  93. box-sizing: border-box;
  94. background: #FFFFFF;
  95. }
  96. .content .btn-box .sub-btn {
  97. width: 100%;
  98. height: 2.75rem;
  99. line-height: 2.75rem;
  100. text-align: center;
  101. font-size: 0.9375rem;
  102. font-family: PingFang SC;
  103. font-weight: bold;
  104. color: #FFFFFF;
  105. background: #C39A58;
  106. border-radius: 1.375rem;
  107. }