particulars.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /* 盒子 */
  2. .header-box {
  3. width: 100vw;
  4. background-color: #ffffff;
  5. padding: 20rpx 24rpx 30rpx;
  6. border-radius: 0px 0px 20rpx 20rpx;
  7. box-sizing: border-box;
  8. }
  9. /* 居中标题 */
  10. .venter-the-title {
  11. display: flex;
  12. justify-content: center;
  13. align-items: center;
  14. height: 44rpx;
  15. width: 100%;
  16. font-size: 32rpx;
  17. text-align: center;
  18. color: #000000;
  19. margin: 30rpx 0 20rpx;
  20. }
  21. .venter-the-title>text {
  22. display: inline-block;
  23. padding: 0 20rpx;
  24. }
  25. .venter-the-title>view {
  26. width: 44rpx;
  27. height: 4rpx;
  28. background: #4DC2D4;
  29. border-radius: 2rpx;
  30. opacity: 0.5;
  31. }
  32. .title-and-userMessage {
  33. width: 100%;
  34. margin-left: 6rpx;
  35. margin-bottom: 15rpx;
  36. }
  37. .header-title {
  38. font-size: 32rpx;
  39. color: #000000;
  40. }
  41. .header-userMessage {
  42. display: flex;
  43. align-items: center;
  44. height: 28rpx;
  45. margin-top: 10rpx;
  46. }
  47. .header-userMessage-img {
  48. display: flex;
  49. width: 28rpx;
  50. height: 28rpx;
  51. padding: 0;
  52. }
  53. .header-userMessage-img>image {
  54. width: 100%;
  55. height: 100%;
  56. border-radius: 50%;
  57. }
  58. .header-userMessage-textMsg {
  59. font-size: 20rpx;
  60. color: #333333;
  61. opacity: .7;
  62. margin-left: 8rpx;
  63. }
  64. /* 数据,按钮 插槽样式 */
  65. .dataAndBut {
  66. display: flex;
  67. justify-content: space-between !important;
  68. align-items: center;
  69. flex-wrap: nowrap;
  70. margin-top: 14rpx;
  71. }
  72. .dataAndBut_data {
  73. flex: 1;
  74. display: flex;
  75. font-size: 24rpx;
  76. color: #000000;
  77. margin-left: 16rpx;
  78. }
  79. .dataAndBut_data>text {
  80. color: #4DC2D4;
  81. text-decoration: underline;
  82. margin-left: 8rpx;
  83. }
  84. .dataAndBut_but {
  85. display: flex;
  86. align-items: center;
  87. margin-right: 6rpx;
  88. }
  89. .custom-slotBut {
  90. height: 44rpx !important;
  91. background: linear-gradient(180deg, #84E3EC 0%, #4DC2D4 100%) !important;
  92. box-shadow: 0px 0px 12rpx 0px rgba(0, 0, 0, 0.1) !important;
  93. border-radius: 10rpx !important;
  94. color: 20rpx !important;
  95. padding: 0 14rpx !important;
  96. border: 0 !important;
  97. }
  98. .detailed-description>image {
  99. width: 100%;
  100. }
  101. /* 按钮 */
  102. .custom-slotBut {
  103. height: 44rpx !important;
  104. background: linear-gradient(180deg, #84E3EC 0%, #4DC2D4 100%) !important;
  105. box-shadow: 0px 0px 12rpx 0px rgba(0, 0, 0, 0.1) !important;
  106. border-radius: 10rpx !important;
  107. color: 20rpx !important;
  108. padding: 0 14rpx !important;
  109. border: 0 !important;
  110. }
  111. .custom-NoSlotBut {
  112. height: 44rpx !important;
  113. background: linear-gradient(180deg, #D3D3D3 0%, #A7A8A8 100%) !important;
  114. box-shadow: 0px 0px 12rpx 0px rgba(0, 0, 0, 0.1) !important;
  115. border-radius: 10rpx !important;
  116. color: #FFFFFF;
  117. padding: 0 14rpx !important;
  118. border: 0 !important;
  119. }
  120. .details-custom-slotBut {
  121. float: right !important;
  122. margin-right: 16rpx;
  123. margin-top: 15rpx;
  124. }