account.wxss 1.5 KB

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