index.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. /* uni.scss */
  7. .content.data-v-1d378803 {
  8. display: flex;
  9. flex-direction: column;
  10. width: 100vw;
  11. height: 100vh;
  12. }
  13. .content .info.data-v-1d378803 {
  14. position: relative;
  15. flex-grow: 1;
  16. background-color: var(--f1Color);
  17. }
  18. .content .info .one.data-v-1d378803 {
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. height: 25vh;
  23. background: linear-gradient(to bottom, #2979ff, #f1f1f1);
  24. }
  25. .content .info .one .text.data-v-1d378803 {
  26. background-image: -webkit-linear-gradient(left, #000, #2979ff 10%, #2979ff 20%, #2979ff 30%, #2979ff 40%, #2979ff 50%, #2979ff 60%, #2979ff 70%, #2979ff 80%, #2979ff 90%, #000 100%);
  27. -webkit-text-fill-color: transparent;
  28. -webkit-background-clip: text;
  29. -webkit-background-size: 200% 100%;
  30. -webkit-animation: masked-animation-1d378803 4s linear infinite;
  31. font-size: 30px;
  32. font-weight: bold;
  33. }
  34. @keyframes masked-animation-1d378803 {
  35. 0% {
  36. background-position: 0 0;
  37. }
  38. 100% {
  39. background-position: -100% 0;
  40. }
  41. }
  42. .content .info .two.data-v-1d378803 {
  43. background-color: var(--mainColor);
  44. margin: 0 3vw 2vw 3vw;
  45. padding: 2vw;
  46. border-radius: 10px;
  47. }
  48. .content .info .two .text.data-v-1d378803 {
  49. font-size: var(--font16Size);
  50. font-weight: bold;
  51. padding: 2vw;
  52. }
  53. .content .info .two .two_1.data-v-1d378803 {
  54. display: flex;
  55. align-items: center;
  56. justify-content: center;
  57. background-color: var(--f1Color);
  58. padding: 6vw 2vw;
  59. }
  60. .content .info .two .two_1 text.data-v-1d378803 {
  61. font-size: var(--font16Size);
  62. margin: 0 0 0 1vw;
  63. }
  64. .content .info .two .two_2.data-v-1d378803 {
  65. display: flex;
  66. align-items: center;
  67. color: #323233;
  68. padding: 2vw 0;
  69. font-size: var(--font16Size);
  70. border-bottom: 1px solid var(--f5Color);
  71. }
  72. .content .info .two .two_2 .image.data-v-1d378803 {
  73. width: 60px;
  74. height: 60px;
  75. border-radius: 60px;
  76. }
  77. .content .info .two .two_2 .title.data-v-1d378803 {
  78. width: 75%;
  79. margin: 0 0 0 2vw;
  80. }
  81. .content .info .two .form .picker.data-v-1d378803 {
  82. padding: 2vw;
  83. }
  84. .content .info .two .form .input.data-v-1d378803 {
  85. padding: 2vw;
  86. }
  87. .content .foot.data-v-1d378803 {
  88. padding: 2vw;
  89. }
  90. .content .foot .foot_1 .btn.data-v-1d378803 {
  91. background-color: var(--fFFColor);
  92. font-size: var(--font16Size);
  93. }
  94. .content .foot .foot_2.data-v-1d378803 {
  95. font-size: var(--font12Size);
  96. color: var(--f85Color);
  97. margin: 1vw;
  98. }
  99. .scroll-view.data-v-1d378803 {
  100. position: absolute;
  101. top: 0;
  102. left: 0;
  103. right: 0;
  104. bottom: 0;
  105. }
  106. .scroll-view .list-scroll-view.data-v-1d378803 {
  107. display: flex;
  108. flex-direction: column;
  109. }