me.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /* pages/me.wxss */
  2. /* #ifndef APP-PLUS-NVUE */
  3. page {
  4. min-height: 100%;
  5. height: auto;
  6. }
  7. /* #endif */
  8. /* 解决头条小程序字体图标不显示问题,因为头条运行时自动插入了span标签,且有全局字体 */
  9. /* #ifdef MP-TOUTIAO */
  10. /* text :not(view) {
  11. font-family: uniicons;
  12. } */
  13. /* #endif */
  14. .uni-icon {
  15. font-family: uniicons;
  16. font-weight: normal;
  17. }
  18. .uni-container {
  19. padding: 15px;
  20. background-color: #f8f8f8;
  21. }
  22. .uni-header-logo {
  23. /* #ifdef H5 */
  24. display: flex;
  25. /* #endif */
  26. padding: 15px 15px;
  27. flex-direction: column;
  28. justify-content: center;
  29. align-items: center;
  30. margin-top: 10rpx;
  31. }
  32. .uni-header-image {
  33. width: 80px;
  34. height: 80px;
  35. }
  36. .uni-hello-text {
  37. margin-bottom: 20px;
  38. }
  39. .hello-text {
  40. color: #7A7E83;
  41. font-size: 14px;
  42. line-height: 20px;
  43. }
  44. .hello-link {
  45. color: #7A7E83;
  46. font-size: 14px;
  47. line-height: 20px;
  48. }
  49. .uni-panel {
  50. margin-bottom: 12px;
  51. }
  52. .uni-panel-h {
  53. /* #ifdef H5 */
  54. display: flex;
  55. /* #endif */
  56. background-color: #ffffff;
  57. flex-direction: row !important;
  58. /* justify-content: space-between !important; */
  59. align-items: center !important;
  60. padding: 12px;
  61. /* #ifdef H5 */
  62. cursor: pointer;
  63. /* #endif */
  64. }
  65. /*
  66. .uni-panel-h:active {
  67. background-color: #f8f8f8;
  68. }
  69. */
  70. .uni-panel-h-on {
  71. background-color: #f0f0f0;
  72. }
  73. .uni-panel-text {
  74. flex: 1;
  75. color: #000000;
  76. font-size: 14px;
  77. font-weight: normal;
  78. }
  79. .uni-panel-icon {
  80. margin-left: 15px;
  81. color: #999999;
  82. font-size: 14px;
  83. font-weight: normal;
  84. transform: rotate(0deg);
  85. transition-duration: 0s;
  86. transition-property: transform;
  87. }
  88. .uni-panel-icon-on {
  89. transform: rotate(180deg);
  90. }
  91. .uni-navigate-item {
  92. /* #ifdef H5 */
  93. display: flex;
  94. /* #endif */
  95. flex-direction: row;
  96. align-items: center;
  97. background-color: #FFFFFF;
  98. border-top-style: solid;
  99. border-top-color: #f0f0f0;
  100. border-top-width: 1px;
  101. padding: 12px;
  102. /* #ifdef H5 */
  103. cursor: pointer;
  104. /* #endif */
  105. }
  106. .uni-navigate-item:active {
  107. background-color: #f8f8f8;
  108. }
  109. .uni-navigate-text {
  110. flex: 1;
  111. color: #000000;
  112. font-size: 14px;
  113. font-weight: normal;
  114. }
  115. .uni-navigate-icon {
  116. margin-left: 15px;
  117. color: #999999;
  118. font-size: 14px;
  119. font-weight: normal;
  120. }