clockIn.wxss 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .module.data-v-10d1d18a {
  27. overflow: hidden;
  28. margin: 20rpx auto;
  29. width: 320rpx;
  30. height: 320rpx;
  31. border-radius: 50%;
  32. color: #fff;
  33. text-align: center;
  34. }
  35. .sign-box.data-v-10d1d18a {
  36. margin-top: 40rpx;
  37. }
  38. .module .text.data-v-10d1d18a {
  39. font-size: 20px;
  40. margin: 100rpx auto 10rpx;
  41. }
  42. .CBlue.data-v-10d1d18a {
  43. background-color: #3E7CF7;
  44. box-shadow: 0 3px 3px #3E7CF7;
  45. }
  46. .CAsh.data-v-10d1d18a {
  47. background-color: #C8C7CC;
  48. box-shadow: 0 3px 3px #C8C7CC;
  49. }
  50. .colorRed.data-v-10d1d18a {
  51. color: red;
  52. text-align: center;
  53. }
  54. .sign-info.data-v-10d1d18a {
  55. text-align: center;
  56. color: #747474;
  57. line-height: 60rpx;
  58. }
  59. .picture-box.data-v-10d1d18a {
  60. margin-top: 40rpx;
  61. }
  62. .picture-box .picture-btn.data-v-10d1d18a {
  63. width: 44%;
  64. height: 70rpx;
  65. line-height: 70rpx;
  66. border-radius: 10rpx;
  67. background-color: #1E5FDF;
  68. color: #fff;
  69. font-size: 28rpx;
  70. text-align: center;
  71. }
  72. .picture-box .picture-show.data-v-10d1d18a {
  73. margin: 40rpx 0 20rpx;
  74. text-align: center;
  75. }
  76. .button-container.data-v-10d1d18a {
  77. position: fixed;
  78. bottom: 0;
  79. background-color: #ffffff;
  80. width: 100vw;
  81. padding: 40rpx 0;
  82. }
  83. .button-container .button-pad.data-v-10d1d18a {
  84. padding: 0 40rpx;
  85. display: flex;
  86. justify-content: space-between;
  87. }
  88. .button-container .clockBtn.data-v-10d1d18a {
  89. width: 44%;
  90. height: 70rpx;
  91. line-height: 70rpx;
  92. border-radius: 10rpx;
  93. background-color: #1E5FDF;
  94. color: #fff;
  95. font-size: 28rpx;
  96. text-align: center;
  97. }