box.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* 盒子和头部标题 */
  2. /*
  3. <view class="public_con">
  4. <view class="public_con_nav">
  5. <view class="public_con_nav_tit">
  6. 张胜利
  7. </view>
  8. <image class="public_line" src="https://zygzh.fyey.cn/uploadFile/staticresource/st1/green/static/images/icon/line.png"></image>
  9. <view class="public_con_nav_name">
  10. <text class="mr10">陈辛同</text>
  11. <text>呼吸内科</text>
  12. </view>
  13. </view>
  14. <view class="public_info_list">
  15. <view class="public_info_item">
  16. <view class="public_info_tit">卡类型</view>
  17. <view class="public_info_val">就诊卡</view>
  18. </view>
  19. </view>
  20. <view class="public_info_foot">
  21. </view>
  22. </view>
  23. */
  24. .mr10 {
  25. margin-right: 10rpx;
  26. }
  27. .public_con {
  28. background-color: #fff;
  29. box-shadow: 0px 0px 40rpx 0px rgba(0, 0, 0, 0.06);
  30. border-radius: 24rpx;
  31. margin-bottom: 30rpx;
  32. overflow: hidden;
  33. }
  34. .public_con_nav {
  35. display: flex;
  36. align-items: center;
  37. justify-content: space-between;
  38. font-size: 36rpx;
  39. font-weight: 500;
  40. position: relative;
  41. padding: 0 30rpx;
  42. height: 110rpx;
  43. }
  44. .public_con_nav_name {
  45. font-size: 32rpx;
  46. font-weight: 400;
  47. color: rgba(0, 0, 0, 1);
  48. }
  49. .public_con_nav_tit {
  50. display: flex;
  51. align-items: center;
  52. }
  53. .public_line {
  54. width: 6rpx;
  55. height: 32rpx;
  56. position: absolute;
  57. top: 0;
  58. bottom: 0;
  59. left: 0;
  60. margin: auto 0;
  61. }
  62. .public_info_list {
  63. padding: 0 30rpx;
  64. display: inline-block;
  65. width: 100%;
  66. position: relative;
  67. background-color: #fff;
  68. }
  69. .public_info_item {
  70. display: flex;
  71. margin: 34rpx 0;
  72. }
  73. .public_info_tit {
  74. width: 220rpx;
  75. font-size: 28rpx;
  76. font-family: Source Han Sans CN;
  77. font-weight: 400;
  78. color: rgba(85, 85, 85, 1);
  79. line-height: 40rpx;
  80. flex-shrink: 0;
  81. }
  82. .public_info_val {
  83. font-size: 28rpx;
  84. font-family: Source Han Sans CN;
  85. font-weight: 400;
  86. color: rgba(0, 0, 0, 1);
  87. max-width: 400rpx;
  88. align-items: flex-start;
  89. line-height: 40rpx;
  90. word-break:break-all;
  91. }
  92. .public_info_foot {
  93. height: 110rpx;
  94. display: flex;
  95. align-items: center;
  96. justify-content: space-around;
  97. }
  98. .public_icon {
  99. width: 50rpx;
  100. height: 50rpx;
  101. position: absolute;
  102. top: 0rpx;
  103. bottom: 0;
  104. left: 24rpx;
  105. margin: auto 0;
  106. }