binding.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. .container.data-v-18847812 {
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. height: 100vh;
  32. background-color: #fff;
  33. }
  34. .container ._img.data-v-18847812 {
  35. margin-top: 20rpx;
  36. width: 347rpx;
  37. height: 387rpx;
  38. }
  39. .container .form.data-v-18847812 {
  40. box-sizing: border-box;
  41. padding: 0 30rpx;
  42. margin-top: 35rpx;
  43. width: 690rpx;
  44. height: 548rpx;
  45. border-radius: 23rpx;
  46. box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.25);
  47. }
  48. .container .form .form_title.data-v-18847812 {
  49. line-height: 120rpx;
  50. font-size: 32rpx;
  51. font-weight: bold;
  52. }
  53. .container .form .form_name.data-v-18847812 {
  54. display: flex;
  55. align-items: center;
  56. font-size: 28rpx;
  57. }
  58. .container .form .form_name .name_input.data-v-18847812 {
  59. display: flex;
  60. align-items: center;
  61. box-sizing: border-box;
  62. padding: 0 24rpx;
  63. margin-left: 25rpx;
  64. width: 545rpx;
  65. height: 80rpx;
  66. border-radius: 15rpx;
  67. border: 1rpx solid #a6a6a6;
  68. }
  69. .container .form .form_name .name_input input.data-v-18847812 {
  70. width: 100%;
  71. }
  72. .container .form .form_password.data-v-18847812 {
  73. display: flex;
  74. align-items: center;
  75. margin-top: 46rpx;
  76. font-size: 28rpx;
  77. }
  78. .container .form .form_password .password_input.data-v-18847812 {
  79. display: flex;
  80. align-items: center;
  81. box-sizing: border-box;
  82. padding: 0 24rpx;
  83. margin-left: 25rpx;
  84. width: 545rpx;
  85. height: 80rpx;
  86. border-radius: 15rpx;
  87. border: 1rpx solid #a6a6a6;
  88. }
  89. .container .form .form_password .password_input input.data-v-18847812 {
  90. width: 100%;
  91. }
  92. .container .form .form_msg.data-v-18847812 {
  93. margin-top: 23rpx;
  94. color: #d43030;
  95. font-size: 24rpx;
  96. text-align: center;
  97. }
  98. .container .form .form_btn.data-v-18847812 {
  99. display: flex;
  100. justify-content: center;
  101. align-items: center;
  102. margin-top: 28rpx;
  103. width: 624rpx;
  104. height: 96rpx;
  105. border-radius: 64rpx;
  106. color: #fff;
  107. font-size: 32rpx;
  108. background-color: #096562;
  109. }