patient.wxss 2.6 KB

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