myCenter.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 引入uView样式 */
  15. /* 颜色变量 */
  16. /* 行为相关颜色 */
  17. /* 文字基本颜色 */
  18. /* 背景颜色 */
  19. /* 边框颜色 */
  20. /* 尺寸变量 */
  21. /* 文字尺寸 */
  22. /* 图片尺寸 */
  23. /* Border Radius */
  24. /* 水平间距 */
  25. /* 垂直间距 */
  26. /* 透明度 */
  27. /* 文章场景相关 */
  28. .myCenter {
  29. background-color: #eeeeee;
  30. background-size: 100% 430rpx;
  31. background-repeat: no-repeat;
  32. font-size: 28rpx;
  33. }
  34. .myCenter .set_class {
  35. display: inline-block;
  36. float: right;
  37. padding: 25rpx;
  38. margin-top: 140rpx;
  39. }
  40. .myCenter .urowClass {
  41. padding-top: 130rpx;
  42. }
  43. .myCenter .urowClass .imClass {
  44. margin-right: 30rpx;
  45. }
  46. .myCenter .urowClass .nameClass {
  47. font-size: 30rpx;
  48. margin-left: 60rpx;
  49. }
  50. .myCenter .gridClass {
  51. margin-top: 60rpx;
  52. }
  53. .myCenter .gridClass .bottomText {
  54. font-size: 23rpx;
  55. color: #313131;
  56. }
  57. .myCenter .menuClass {
  58. margin-top: 48rpx;
  59. padding-top: 40rpx;
  60. padding-bottom: 20rpx;
  61. height: 200rpx;
  62. background-color: #fff;
  63. }
  64. .myCenter .menuClass text {
  65. font-size: 25rpx;
  66. }
  67. .myCenter .menuClass .title_class {
  68. margin-left: 20rpx;
  69. margin-top: -20rpx;
  70. margin-bottom: 40rpx;
  71. }
  72. .myCenter .menuClass .imgClasses {
  73. position: relative;
  74. width: 50rpx;
  75. height: 50rpx;
  76. }
  77. .myCenter .menuClass .imgClass {
  78. position: relative;
  79. width: 100rpx;
  80. height: 100rpx;
  81. }
  82. .myCenter .menuClass .badgeClass {
  83. position: absolute;
  84. top: 4rpx;
  85. left: 90rpx;
  86. z-index: 99;
  87. }
  88. .myCenter .myPurse {
  89. background-color: #fff;
  90. width: 100%;
  91. margin-top: 15rpx;
  92. padding-top: 20rpx;
  93. height: 80rpx;
  94. padding-left: 25rpx;
  95. }
  96. .myCenter .myPurse text {
  97. display: inline-block;
  98. vertical-align: top;
  99. margin-left: 30rpx;
  100. }
  101. .myCenter .bott {
  102. background-color: #fff;
  103. margin-top: 15rpx;
  104. height: 900rpx;
  105. width: 100%;
  106. }
  107. .myCenter .bott .title {
  108. padding-left: 20rpx;
  109. padding-top: 15rpx;
  110. }
  111. .myCenter .bott .tool_class {
  112. margin: 10rpx;
  113. padding-top: 20rpx;
  114. }
  115. .myCenter .bott .tool_class .grid-text {
  116. font-size: 25rpx;
  117. padding: 10rpx 0 20rpx 0rpx;
  118. }