康巴易测肤/伤疤uniapp小程序类
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

112 行
2.6KB

  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. .safe-area-bottom.data-v-3e9c6c27 {
  28. padding-bottom: env(safe-area-inset-bottom);
  29. }
  30. view.data-v-3e9c6c27, scroll-view.data-v-3e9c6c27, swiper-item.data-v-3e9c6c27 {
  31. display: flex;
  32. flex-direction: column;
  33. flex-shrink: 0;
  34. flex-grow: 0;
  35. flex-basis: auto;
  36. align-items: stretch;
  37. align-content: flex-start;
  38. }
  39. .u-code-input.data-v-3e9c6c27 {
  40. display: flex;
  41. flex-direction: row;
  42. position: relative;
  43. overflow: hidden;
  44. }
  45. .u-code-input__item.data-v-3e9c6c27 {
  46. display: flex;
  47. flex-direction: row;
  48. justify-content: center;
  49. align-items: center;
  50. position: relative;
  51. }
  52. .u-code-input__item__text.data-v-3e9c6c27 {
  53. font-size: 15px;
  54. color: #606266;
  55. }
  56. .u-code-input__item__dot.data-v-3e9c6c27 {
  57. width: 7px;
  58. height: 7px;
  59. border-radius: 100px;
  60. background-color: #606266;
  61. }
  62. .u-code-input__item__line.data-v-3e9c6c27 {
  63. position: absolute;
  64. bottom: 0;
  65. height: 4px;
  66. border-radius: 100px;
  67. width: 40px;
  68. background-color: #606266;
  69. }
  70. .u-code-input__item__cursor.data-v-3e9c6c27 {
  71. position: absolute;
  72. top: 50%;
  73. left: 50%;
  74. -webkit-transform: translate(-50%, -50%);
  75. transform: translate(-50%, -50%);
  76. width: 1px;
  77. height: 40%;
  78. -webkit-animation: 1s u-cursor-flicker-data-v-3e9c6c27 infinite;
  79. animation: 1s u-cursor-flicker-data-v-3e9c6c27 infinite;
  80. }
  81. .u-code-input__input.data-v-3e9c6c27 {
  82. position: absolute;
  83. left: -750rpx;
  84. width: 1500rpx;
  85. top: 0;
  86. background-color: transparent;
  87. text-align: left;
  88. }
  89. @-webkit-keyframes u-cursor-flicker-data-v-3e9c6c27 {
  90. 0% {
  91. opacity: 0;
  92. }
  93. 50% {
  94. opacity: 1;
  95. }
  96. 100% {
  97. opacity: 0;
  98. }
  99. }
  100. @keyframes u-cursor-flicker-data-v-3e9c6c27 {
  101. 0% {
  102. opacity: 0;
  103. }
  104. 50% {
  105. opacity: 1;
  106. }
  107. 100% {
  108. opacity: 0;
  109. }
  110. }