index.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* pages/index/index.wxss */
  2. .container {
  3. width: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. padding: 0;
  8. margin: 0;
  9. }
  10. .action-container {
  11. width: 100%;
  12. display: flex;
  13. flex-direction: row;
  14. align-items: center;
  15. justify-content: center;
  16. padding-top: 30px;
  17. padding-bottom: 22px;
  18. }
  19. .action-container .btn-container {
  20. height: 100px;
  21. display: flex;
  22. flex-direction: column;
  23. justify-content: center;
  24. align-items: center;
  25. }
  26. .btn-container .action-btn {
  27. width:72px;
  28. height:72px;
  29. background:linear-gradient(180deg,rgba(125,218,153,1) 0%,rgba(71,179,96,1) 100%);
  30. border-radius:36px;
  31. display: flex;
  32. flex-direction: column;
  33. justify-content: center;
  34. align-items: center;
  35. }
  36. .btn-container .action-label {
  37. font-size:16px;
  38. font-family:PingFangSC-Regular;
  39. font-weight:400;
  40. color:rgba(122,124,145,1);
  41. line-height:20px;
  42. text-align: center;
  43. margin-top: 8px;
  44. }
  45. .question-title {
  46. font-size:24px;
  47. font-family:PingFangSC-Semibold;
  48. font-weight:600;
  49. color:rgba(44,58,81,1);
  50. line-height:34px;
  51. }
  52. .question-info {
  53. font-size:14px;
  54. font-family:PingFangSC-Regular;
  55. font-weight:400;
  56. color:rgba(122,124,145,1);
  57. line-height:20px;
  58. margin-top: 8px;
  59. }
  60. AudioPanel {
  61. width: 100%;
  62. }