index.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .subject {
  28. width: 100%;
  29. height: 100vh;
  30. background-color: #F9F9F9;
  31. }
  32. .personal {
  33. width: 90%;
  34. margin: 0 auto;
  35. display: -webkit-box;
  36. display: -webkit-flex;
  37. display: flex;
  38. padding: 20rpx 0 40rpx;
  39. box-sizing: border-box;
  40. }
  41. .personal .personal_left {
  42. width: 18%;
  43. margin-right: 30rpx;
  44. }
  45. .personal .personal_left image {
  46. width: 124rpx;
  47. height: 120rpx;
  48. border-radius: 60rpx;
  49. }
  50. .personal .personal_center {
  51. padding-top: 20rpx;
  52. }
  53. .personal .personal_center ._p:nth-child(1) {
  54. font-size: 34rpx;
  55. font-weight: 700;
  56. margin-bottom: 10rpx;
  57. }
  58. .personal .personal_center ._p:nth-child(2) {
  59. font-size: 24rpx;
  60. }
  61. .personal .personal_right {
  62. width: 150rpx;
  63. background-color: #55C87B;
  64. height: 60rpx;
  65. text-align: center;
  66. border-radius: 30rpx;
  67. line-height: 60rpx;
  68. color: #FFFFFF;
  69. position: absolute;
  70. top: 50rpx;
  71. right: 30rpx;
  72. }
  73. .AboutUs,
  74. .quit,
  75. .opinion {
  76. width: 90%;
  77. height: 100rpx;
  78. line-height: 100rpx;
  79. margin: 20rpx auto 0;
  80. position: relative;
  81. padding-left: 20rpx;
  82. font-size: 28rpx;
  83. }
  84. .AboutUs .icon_left,
  85. .quit .icon_left,
  86. .opinion .icon_left {
  87. margin-right: 20rpx;
  88. color: #55C87B !important;
  89. font-size: 32rpx;
  90. }
  91. .AboutUs .icon_right,
  92. .quit .icon_right,
  93. .opinion .icon_right {
  94. position: absolute;
  95. top: 0;
  96. right: 10rpx;
  97. font-size: 32rpx !important;
  98. }
  99. .AboutUs .update,
  100. .quit .update,
  101. .opinion .update {
  102. position: absolute;
  103. top: 34rpx;
  104. right: 40rpx;
  105. font-size: 16rpx !important;
  106. background-color: #f00;
  107. border-radius: 25rpx;
  108. height: 30rpx;
  109. padding: 2rpx 16rpx;
  110. line-height: 30rpx;
  111. color: #fff;
  112. }
  113. .opinion {
  114. margin: 0 auto;
  115. border-top: 2rpx solid #EAEAEA;
  116. }