uploadResume.wxss 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. .upload-container {
  27. padding: 30rpx;
  28. background-color: #f5f6fa;
  29. min-height: 100vh;
  30. }
  31. .upload-container .header-notice {
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. text-align: center;
  36. font-size: 24rpx;
  37. color: #999;
  38. line-height: 1.5;
  39. }
  40. .upload-container .illustration {
  41. text-align: center;
  42. margin: 40rpx auto;
  43. padding: 20rpx;
  44. border-radius: 12rpx;
  45. }
  46. .upload-container .illustration image {
  47. width: 650rpx;
  48. height: 550rpx;
  49. }
  50. .upload-container .upload-btn {
  51. width: 90%;
  52. height: 88rpx;
  53. line-height: 88rpx;
  54. background-color: #2b4acb;
  55. color: #ffffff;
  56. border-radius: 8rpx;
  57. font-size: 32rpx;
  58. margin: 60rpx auto;
  59. text-align: center;
  60. }
  61. .upload-container .upload-btn::after {
  62. border: none;
  63. }
  64. .upload-container .instructions {
  65. padding: 0 30rpx;
  66. }
  67. .upload-container .instructions .title {
  68. font-size: 28rpx;
  69. color: #333;
  70. margin-bottom: 30rpx;
  71. }
  72. .upload-container .instructions .instruction-list .instruction-item {
  73. font-size: 26rpx;
  74. color: #666;
  75. line-height: 44rpx;
  76. margin-bottom: 20rpx;
  77. }
  78. .upload-container .instructions .privacy-notice {
  79. margin-top: 40rpx;
  80. font-size: 24rpx;
  81. color: #999;
  82. line-height: 1.5;
  83. }