index.wxss 1006 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .message_details {
  2. margin: auto;
  3. }
  4. .message_details .title {
  5. width: 100%;
  6. text-align: center;
  7. font-size: 36rpx;
  8. font-weight: bold;
  9. padding: 20rpx;
  10. background-color: #fff;
  11. }
  12. .message_details .header {
  13. display: flex;
  14. width: 100%;
  15. background-color: #fff;
  16. padding: 30rpx;
  17. margin-bottom: 20rpx;
  18. }
  19. .message_details .header .from {
  20. font-size: 26rpx;
  21. color: gray;
  22. width: 50%;
  23. text-align: left;
  24. }
  25. .message_details .header .date {
  26. font-size: 26rpx;
  27. color: gray;
  28. width: 50%;
  29. text-align: right;
  30. }
  31. .message_details .content {
  32. font-size: 32rpx;
  33. background-color: #fff;
  34. padding: 30rpx;
  35. }
  36. .message_details .bottom {
  37. position: fixed;
  38. bottom: 30rpx;
  39. text-align: center;
  40. width: 100%;
  41. }
  42. .message_details .bottom button {
  43. width: 90%;
  44. background-color: red;
  45. border-radius: 20rpx;
  46. color: #fff;
  47. height: 80rpx;
  48. line-height: 80rpx;
  49. margin: auto;
  50. }
  51. .fixed {
  52. bottom: 70rpx !important;
  53. }