account.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .row {
  12. display: -webkit-box;
  13. display: -webkit-flex;
  14. display: flex;
  15. -webkit-box-align: center;
  16. -webkit-align-items: center;
  17. align-items: center;
  18. position: relative;
  19. padding: 0 30rpx;
  20. height: 110rpx;
  21. background: #fff;
  22. }
  23. .row .tit {
  24. -webkit-flex-shrink: 0;
  25. flex-shrink: 0;
  26. width: 120rpx;
  27. font-size: 30rpx;
  28. color: #303133;
  29. }
  30. .row .input {
  31. -webkit-box-flex: 1;
  32. -webkit-flex: 1;
  33. flex: 1;
  34. font-size: 30rpx;
  35. color: #303133;
  36. }
  37. .row .iconlocation {
  38. font-size: 36rpx;
  39. color: #909399;
  40. }
  41. page,
  42. .content {
  43. background: #f8f8f8;
  44. height: 100%;
  45. }
  46. .swiper-box {
  47. height: 750rpx;
  48. }
  49. .navbar {
  50. display: -webkit-box;
  51. display: -webkit-flex;
  52. display: flex;
  53. height: 40px;
  54. padding: 0 5px;
  55. background: #fff;
  56. -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  57. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  58. position: relative;
  59. z-index: 10;
  60. }
  61. .navbar .nav-item {
  62. -webkit-box-flex: 1;
  63. -webkit-flex: 1;
  64. flex: 1;
  65. display: -webkit-box;
  66. display: -webkit-flex;
  67. display: flex;
  68. -webkit-box-pack: center;
  69. -webkit-justify-content: center;
  70. justify-content: center;
  71. -webkit-box-align: center;
  72. -webkit-align-items: center;
  73. align-items: center;
  74. height: 100%;
  75. font-size: 15px;
  76. color: #303133;
  77. position: relative;
  78. }
  79. .navbar .nav-item.current {
  80. color: #5dbc7c;
  81. }
  82. .navbar .nav-item.current:after {
  83. content: '';
  84. position: absolute;
  85. left: 50%;
  86. bottom: 0;
  87. -webkit-transform: translateX(-50%);
  88. transform: translateX(-50%);
  89. width: 44px;
  90. height: 0;
  91. border-bottom: 2px solid #5dbc7c;
  92. }
  93. .add-btn {
  94. display: -webkit-box;
  95. display: -webkit-flex;
  96. display: flex;
  97. -webkit-box-align: center;
  98. -webkit-align-items: center;
  99. align-items: center;
  100. -webkit-box-pack: center;
  101. -webkit-justify-content: center;
  102. justify-content: center;
  103. width: 690rpx;
  104. height: 80rpx;
  105. margin: 0 auto;
  106. margin-top: 30rpx;
  107. font-size: 32rpx;
  108. -webkit-border-radius: 10rpx;
  109. border-radius: 10rpx;
  110. }
  111. .add-btn.up {
  112. background-color: #5dbc7c;
  113. color: #fff;
  114. }