index.wxss 945 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. page{
  2. background-color: #ebebeb;
  3. }
  4. .title {
  5. width: 20rem;
  6. height: 3rem;
  7. font-size: 2rem;
  8. border-radius: 1rem;
  9. background-color: #c7c6c6;
  10. color: rgb(20, 34, 240);
  11. display: flex; /*设置显示样式**/
  12. align-items: center; /**子view垂直居中*/
  13. vertical-align: center; /**垂直居中*/
  14. justify-content: center; /**内容居中*/
  15. flex-direction: row;
  16. margin-right: 2rem;
  17. }
  18. .index {
  19. border-radius: 0.5rem;
  20. background-color: #fff;
  21. margin: 0.2rem;
  22. }
  23. .index-item-odd {
  24. display: flex;
  25. padding: 0.4rem 1rem;
  26. background-color: #e9b596;
  27. }
  28. .index-item-even {
  29. display: flex;
  30. padding: 0.4rem 1rem;
  31. background-color: #ecd895;
  32. }
  33. .index-item-odd label {
  34. width: 16rem;
  35. margin-right: 2rem;
  36. }
  37. .index-item-even label {
  38. width: 16rem;
  39. margin-right: 2rem;
  40. }
  41. .generateBtnView button{
  42. width: 90% !important;
  43. position: fixed;
  44. bottom: 0.1rem;
  45. left: 5%;
  46. z-index: 10;
  47. background-color: #f0af89;
  48. }