registerDoctor.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. .content.data-v-03357766 {
  27. display: flex;
  28. flex-direction: column;
  29. justify-content: flex-start;
  30. }
  31. .content .inner.data-v-03357766 {
  32. padding: 20rpx 20rpx 120rpx;
  33. }
  34. .content .inner .bg.data-v-03357766 {
  35. width: 100%;
  36. height: 300rpx;
  37. position: relative;
  38. display: flex;
  39. flex-direction: column;
  40. justify-content: center;
  41. align-items: flex-start;
  42. }
  43. .content .inner .bg image.data-v-03357766 {
  44. position: absolute;
  45. border-radius: 30rpx 30rpx 0rpx 0rpx;
  46. width: 100%;
  47. height: 100%;
  48. }
  49. .content .inner .bg .title.data-v-03357766 {
  50. z-index: 999;
  51. padding: 0rpx 30rpx;
  52. font-size: 40rpx;
  53. font-family: PingFang SC;
  54. font-weight: bold;
  55. color: #FFFFFF;
  56. }
  57. .content .inner .bg .desc.data-v-03357766 {
  58. z-index: 999;
  59. padding: 0rpx 30rpx;
  60. margin-top: 20rpx;
  61. font-size: 28rpx;
  62. opacity: 0.5;
  63. font-family: PingFang SC;
  64. color: #FFFFFF;
  65. }
  66. .content .inner .my-form.data-v-03357766 {
  67. z-index: 1;
  68. background-color: #FFFFFF;
  69. padding: 0 30rpx;
  70. }
  71. .content .inner .my-form input.data-v-03357766 {
  72. text-align: right;
  73. }
  74. .content .agree.data-v-03357766 {
  75. padding: 10rpx 20rpx;
  76. display: flex;
  77. align-items: center;
  78. justify-content: flex-start;
  79. }
  80. .content .agree .label.data-v-03357766 {
  81. font-size: 24rpx;
  82. }
  83. .content .agree .text.data-v-03357766 {
  84. margin-left: 10rpx;
  85. color: royalblue;
  86. font-size: 24rpx;
  87. }
  88. .content .btn-box.data-v-03357766 {
  89. z-index: 9999;
  90. width: 100%;
  91. position: fixed;
  92. bottom: 0;
  93. height: 120rpx;
  94. padding: 0 30rpx;
  95. display: flex;
  96. align-items: center;
  97. justify-content: center;
  98. background: #FFFFFF;
  99. }
  100. .content .btn-box .sub-btn.data-v-03357766 {
  101. width: 100%;
  102. height: 88rpx;
  103. line-height: 88rpx;
  104. text-align: center;
  105. font-size: 30rpx;
  106. font-family: PingFang SC;
  107. font-weight: bold;
  108. color: #FFFFFF;
  109. background: #C39A58;
  110. border-radius: 44rpx;
  111. }