index.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. height:400rpx;
  12. background:rgba(254,169,65,1);
  13. }
  14. .box .top image{
  15. width: 100%;
  16. height: 100%;
  17. }
  18. .box .message{
  19. width:690rpx;
  20. background:rgba(255,255,255,1);
  21. box-shadow:0px 0px 18rpx 0px rgba(179,178,178,1);
  22. border-radius:24rpx;
  23. margin-top: -230rpx;
  24. padding-bottom: 20rpx;
  25. display: flex;
  26. flex-direction: column;
  27. align-items: center;
  28. }
  29. .box .message .message_top{
  30. width: 90%;
  31. border-bottom: 1rpx solid #D2D2D2;
  32. padding-top: 20rpx;
  33. padding-bottom: 20rpx;
  34. font-size:34rpx;
  35. font-family:PingFang SC;
  36. color:rgba(62,58,57,1);
  37. }
  38. .box .message .message_content{
  39. width: 90%;
  40. display: flex;
  41. padding-top: 30rpx;
  42. /* padding-bottom: 30rpx; */
  43. }
  44. .message_content view{
  45. display: flex;
  46. flex-direction: column;
  47. align-items: center;
  48. width: 50%;
  49. font-size:28rpx;
  50. font-family:PingFang SC;
  51. color:rgba(62,58,57,1);
  52. }
  53. .message_content view text:nth-of-type(2){
  54. padding-top: 25rpx;
  55. font-size: 24rpx;
  56. }
  57. .instructions{
  58. width: 100%;
  59. display: flex;
  60. flex-direction: column;
  61. align-items: center;
  62. }
  63. .instructions .text{
  64. font-size:32rpx;
  65. font-family:PingFang SC;
  66. color:rgba(40,40,40,1);
  67. width: 80%;
  68. padding-bottom: 10rpx;
  69. padding-top: 40rpx;
  70. border-bottom: 1rpx solid #2A2A2A;
  71. }
  72. .instructions_icon{
  73. width: 80%;
  74. display: flex;
  75. flex-wrap: wrap;
  76. }
  77. .instructions_icon view{
  78. width: 33%;
  79. display: flex;
  80. flex-direction: column;
  81. align-items: center;
  82. font-size:28rpx;
  83. font-family:PingFang SC;
  84. color:rgba(40,40,40,1);
  85. padding-top: 50rpx;
  86. }
  87. .instructions_icon view text{
  88. padding-top: 14rpx;
  89. }
  90. .dire {
  91. font-size: 24rpx;
  92. padding: 15rpx 0 15rpx 20rpx;
  93. border-bottom: 1rpx solid #dedede;
  94. box-sizing: border-box;
  95. display: flex;
  96. align-items: center;
  97. justify-content: space-between;
  98. }
  99. .wx-switch-input{
  100. width:82rpx !important;
  101. height:36rpx !important;
  102. background: #50D2C2 !important;
  103. border: #50d2c2 !important; /* 2018-07-18 重置开关边框颜色 */
  104. }
  105. /*白色样式(false的样式)*/
  106. .wx-switch-input::before{
  107. width:82rpx !important;
  108. height: 36rpx !important;
  109. background: #cccccc !important;
  110. }
  111. /*绿色样式(true的样式)*/
  112. .wx-switch-input::after{
  113. width: 40rpx !important;
  114. height: 36rpx !important;
  115. }