help.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /* pages/help/help.wxss */
  2. page{
  3. background: white;
  4. }
  5. .list-container {
  6. width: 100%;
  7. height: 100px;
  8. flex: 1;
  9. }
  10. .headIconBox {
  11. margin-top: 20rpx;
  12. display: flex;
  13. flex-direction: row;
  14. justify-content: center;
  15. }
  16. .headIconBox image {
  17. width: 100%;
  18. height: auto;
  19. }
  20. .userNameBox {
  21. display: flex;
  22. flex-flow: row;
  23. }
  24. .inputBox {
  25. margin-top: 20rpx;
  26. height: 50rpx;
  27. display: flex;
  28. flex-direction: row;
  29. justify-content: center;
  30. }
  31. .inputBox input {
  32. width: 70%;
  33. height: 50rpx;
  34. background-color: transparent;
  35. font-size: 30rpx;
  36. border-bottom: 1px gray solid;
  37. }
  38. .inputBox image {
  39. height: 50rpx;
  40. width: 50rpx;
  41. margin-left: 20rpx;
  42. }
  43. .help-block{
  44. height: 200rpx;
  45. width: 80%;
  46. margin-top: 10px;
  47. margin-left: 10px;
  48. margin-right: 10px;
  49. margin-bottom: 10px;
  50. }
  51. .help-content{
  52. width: 100%;
  53. height: 100%;
  54. border-radius: 10px;
  55. display: flex;
  56. flex-direction: row;
  57. align-items: center;
  58. }
  59. .help-content-img{
  60. /* display: flex;
  61. flex-direction: column;
  62. justify-content: center;
  63. align-items: center; */
  64. height: 100rpx;
  65. width: 100rpx;
  66. margin-left: 20px;
  67. margin-right: 10px;
  68. }
  69. .xcxImg,
  70. .rtuImg{
  71. height: 100rpx;
  72. width: 100rpx;
  73. }
  74. .help-content-text{
  75. height: 30%;
  76. width: 100%;
  77. margin-left: 20px;
  78. }
  79. .helpBox{
  80. display: flex;
  81. justify-content: center;
  82. align-items: center;
  83. flex-flow: column;
  84. width: 100%;
  85. height: 90%;
  86. }
  87. .help-text{
  88. color: white;
  89. font-size: 1.2rem;
  90. }
  91. .helpFooter{
  92. display: flex;
  93. flex-direction: column;
  94. align-items: center;
  95. }
  96. .footerText{
  97. font-size: 0.7rem;
  98. color: #acacac;
  99. }