uni-nvue.css 2.2 KB

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