setting.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. page {
  2. background-color: #ffffff;
  3. }
  4. .page {
  5. background-color: #ffffff;
  6. }
  7. .topBody {
  8. width:750rpx;
  9. }
  10. .list_info {
  11. display: flex;
  12. flex-direction: column;
  13. width: 750rpx;
  14. padding: 20rpx 0;
  15. .group-header {
  16. padding: 20rpx 30rpx;
  17. font-size: 28rpx;
  18. color: #999;
  19. background-color: #f8f8f8;
  20. }
  21. .item {
  22. width: 750rpx;
  23. height: 100rpx;
  24. padding: 0 30rpx;
  25. display: flex;
  26. flex-direction: row;
  27. justify-content: space-between;
  28. align-items: center;
  29. border-bottom: solid 1px #f0f0f0;
  30. .item-left {
  31. display: flex;
  32. align-items: center;
  33. .icon {
  34. width: 40rpx;
  35. height: 40rpx;
  36. margin-right: 20rpx;
  37. }
  38. text {
  39. font-size: 28rpx;
  40. color: #333;
  41. }
  42. }
  43. .item-right {
  44. display: flex;
  45. align-items: center;
  46. .arrow {
  47. width: 36rpx;
  48. }
  49. }
  50. }
  51. }
  52. .version-info {
  53. position: fixed;
  54. width: 100%;
  55. text-align: center;
  56. font-size: 24rpx;
  57. color: #999;
  58. position: fixed;
  59. bottom: 176rpx;
  60. }
  61. .btn_submit {
  62. width: 660rpx;
  63. height: 96rpx;
  64. position: fixed;
  65. bottom: 50rpx;
  66. left: 45rpx;
  67. border: 2rpx solid #f0f0f0;
  68. border-radius: 28rpx;
  69. font-size: 32rpx;
  70. color: #FF2A95;
  71. display: flex;
  72. flex-direction: row;
  73. justify-content: center;
  74. align-items: center;
  75. background-color: #fff;
  76. }
  77. .blankHeight {
  78. height:300rpx;
  79. }