clientDetail.wxss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. @charset "UTF-8";
  2. /* 需要放到文件最上面 */
  3. /* 水平间距 */
  4. /* 水平间距 */
  5. /*
  6. 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
  7. */
  8. /* 水平间距 */
  9. .detail {
  10. padding: 30rpx;
  11. }
  12. .detail .detail-box {
  13. background-color: #ffffff;
  14. border-radius: 16rpx;
  15. box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
  16. padding: 30rpx;
  17. position: relative;
  18. margin-bottom: 30rpx;
  19. }
  20. .detail .sub-title {
  21. display: flex;
  22. align-items: center;
  23. margin-left: -8rpx;
  24. }
  25. .detail .sub-title .sub-label {
  26. font-size: 32rpx;
  27. font-weight: 600;
  28. margin-left: 14rpx;
  29. }
  30. .detail .title-box {
  31. padding-left: 90rpx;
  32. position: relative;
  33. }
  34. .detail .title-box .title-icon {
  35. width: 70rpx;
  36. height: 70rpx;
  37. text-align: center;
  38. line-height: 70rpx;
  39. background: #08979c;
  40. border-radius: 70rpx;
  41. position: absolute;
  42. left: 0;
  43. top: 50%;
  44. margin-top: -35rpx;
  45. }
  46. .detail .title-box .title {
  47. font-size: 32rpx;
  48. font-weight: 600;
  49. }
  50. .detail .title-box .date {
  51. font-size: 24rpx;
  52. color: #8c8c8c;
  53. }
  54. .detail .other {
  55. margin-top: 20rpx;
  56. }
  57. .detail .other .item {
  58. margin-top: 10rpx;
  59. }
  60. .detail .other .label {
  61. color: #8c8c8c;
  62. font-size: 24rpx;
  63. }
  64. .detail .other .value {
  65. margin-top: 6rpx;
  66. font-weight: 400;
  67. }
  68. .detail .state {
  69. margin-top: 20rpx;
  70. display: flex;
  71. justify-content: space-between;
  72. }
  73. .detail .state .create {
  74. height: 48rpx;
  75. border-radius: 48rpx;
  76. border: 1px solid #08979c;
  77. display: flex;
  78. align-items: center;
  79. color: #08979c;
  80. padding: 0 10rpx;
  81. }
  82. .detail .state .create .name {
  83. font-size: 24rpx;
  84. flex: 1;
  85. max-width: 150rpx;
  86. min-width: 70rpx;
  87. overflow: hidden;
  88. margin-left: 10rpx;
  89. line-height: 36rpx;
  90. padding-right: 10rpx;
  91. }