index.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .box{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 100%;
  6. height: 100%;
  7. }
  8. .box .top{
  9. width: 100%;
  10. height:560rpx;
  11. background:rgba(254,169,65,1);
  12. }
  13. .box .top image{
  14. width: 100%;
  15. height: 100%;
  16. }
  17. .box .message{
  18. width:690rpx;
  19. background:rgba(255,255,255,1);
  20. box-shadow:0px 0px 18rpx 0px rgba(179,178,178,1);
  21. border-radius:24rpx;
  22. margin-top: -230rpx;
  23. display: flex;
  24. flex-direction: column;
  25. align-items: center;
  26. }
  27. .box .message .message_top{
  28. width: 90%;
  29. border-bottom: 1rpx solid #D2D2D2;
  30. padding-top: 40rpx;
  31. padding-bottom: 30rpx;
  32. font-size:34rpx;
  33. font-family:PingFang SC;
  34. color:rgba(62,58,57,1);
  35. }
  36. .box .message .message_content{
  37. width: 90%;
  38. display: flex;
  39. padding-top: 30rpx;
  40. padding-bottom: 30rpx;
  41. }
  42. .message_content view{
  43. display: flex;
  44. flex-direction: column;
  45. align-items: center;
  46. width: 25%;
  47. font-size:28rpx;
  48. font-family:PingFang SC;
  49. color:rgba(62,58,57,1);
  50. }
  51. .message_content view text:nth-of-type(2){
  52. padding-top: 25rpx;
  53. font-size: 24rpx;
  54. }
  55. .instructions{
  56. width: 100%;
  57. display: flex;
  58. flex-direction: column;
  59. align-items: center;
  60. }
  61. .instructions .text{
  62. font-size:32rpx;
  63. font-family:PingFang SC;
  64. color:rgba(40,40,40,1);
  65. width: 80%;
  66. padding-bottom: 10rpx;
  67. padding-top: 40rpx;
  68. border-bottom: 1rpx solid #2A2A2A;
  69. }
  70. .instructions_icon{
  71. width: 80%;
  72. display: flex;
  73. flex-wrap: wrap;
  74. }
  75. .instructions_icon view{
  76. width: 33%;
  77. display: flex;
  78. flex-direction: column;
  79. align-items: center;
  80. font-size:28rpx;
  81. font-family:PingFang SC;
  82. color:rgba(40,40,40,1);
  83. padding-top: 50rpx;
  84. }
  85. .instructions_icon view text{
  86. padding-top: 14rpx;
  87. }