index.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. .index.data-v-57280228 {
  28. min-height: 100vh;
  29. background-color: #f5f5f5;
  30. box-sizing: border-box;
  31. }
  32. .index .contant.data-v-57280228 {
  33. height: calc(100vh - env(safe-area-inset-bottom));
  34. box-sizing: border-box;
  35. background-color: #fff;
  36. }
  37. .index .contant .header.data-v-57280228 {
  38. position: relative;
  39. width: 100%;
  40. height: 80rpx;
  41. }
  42. .index .contant .header .header-icon.data-v-57280228 {
  43. position: absolute;
  44. top: 50%;
  45. -webkit-transform: translateY(-50%);
  46. transform: translateY(-50%);
  47. left: 30rpx;
  48. }
  49. .index .contant .header .header-icon image.data-v-57280228 {
  50. width: 50rpx;
  51. height: 50rpx;
  52. display: block;
  53. }
  54. .index .contant .header .header-title.data-v-57280228 {
  55. text-align: center;
  56. line-height: 80rpx;
  57. font-size: 32rpx;
  58. }
  59. .index .contant .main.data-v-57280228 {
  60. padding: 20rpx 30rpx;
  61. }
  62. .index .contant .main .add-card.data-v-57280228 {
  63. width: 100%;
  64. height: 200rpx;
  65. border: 1px solid #a3a3a3;
  66. border-radius: 10rpx;
  67. display: flex;
  68. align-items: center;
  69. justify-content: center;
  70. gap: 20rpx;
  71. color: #3a8fff;
  72. font-size: 30rpx;
  73. }
  74. .index .d-container.data-v-57280228 {
  75. box-sizing: border-box;
  76. height: 100vh;
  77. width: 350rpx;
  78. background-color: #fff;
  79. }
  80. .index .d-container .d-image.data-v-57280228 {
  81. display: flex;
  82. align-items: center;
  83. justify-content: center;
  84. flex-direction: column;
  85. gap: 20rpx;
  86. padding: 35rpx 0;
  87. box-sizing: border-box;
  88. border-top: 1rpx solid #cccccc;
  89. border-bottom: 1rpx solid #cccccc;
  90. }
  91. .index .d-container .d-image image.data-v-57280228 {
  92. width: 100rpx;
  93. height: 100rpx;
  94. display: block;
  95. border-radius: 50%;
  96. }
  97. .index .d-container .d-image text.data-v-57280228 {
  98. font-size: 28rpx;
  99. }
  100. .index .d-container .quit.data-v-57280228 {
  101. height: 80rpx;
  102. text-align: center;
  103. line-height: 80rpx;
  104. font-size: 26rpx;
  105. border-bottom: 1rpx solid #cccccc;
  106. }