app.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /**app.wxss**/
  2. @import "/static/iconfont/iconfont.wxss";
  3. .container {
  4. height: 100%;
  5. display: flex;
  6. flex-direction: column;
  7. align-items: center;
  8. justify-content: space-between;
  9. padding: 200rpx 50rpx;
  10. box-sizing: border-box;
  11. }
  12. .appscrollarea {
  13. flex: 1;
  14. overflow-y: hidden;
  15. height: 100vh;
  16. box-sizing: border-box;
  17. }
  18. .padding_50{
  19. padding:50rpx;
  20. }
  21. page {
  22. --themeColor: #316192;
  23. /* --themeColor:#3f395c */
  24. }
  25. button[type=primary]{
  26. background-color: var(--themeColor);
  27. }
  28. .loadData{
  29. width: 100%;
  30. color: #969799;
  31. background-color: #f7f8fa;
  32. text-align: center;
  33. line-height:100rpx;
  34. }
  35. .headTitle{
  36. background-color: var(--themeColor);
  37. text-align: center;
  38. line-height: 80rpx;
  39. color: #ffffff;
  40. font-weight: bolder;
  41. border-radius: 10rpx;
  42. }
  43. .form_dropdown{
  44. height: 50rpx !important;
  45. box-shadow:none !important;
  46. }
  47. .form_dropdown>.van-dropdown-menu__item{
  48. justify-content:flex-start !important;
  49. }
  50. .form_radio{
  51. display: flex;
  52. justify-content: space-around;
  53. align-items: center;
  54. flex-direction: row;
  55. }
  56. .label{
  57. font-size: 35rpx;
  58. }