index.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. .establish .business-style.data-v-55397b13, .establish .basic-info.data-v-55397b13, .establish .contact-mode.data-v-55397b13, .establish .personal-brief.data-v-55397b13, .establish .company-brief.data-v-55397b13 {
  28. margin-top: 20rpx;
  29. border-radius: 10rpx;
  30. padding: 30rpx 20rpx;
  31. box-sizing: border-box;
  32. background-color: #fff;
  33. }
  34. .establish .business-style .business-title.data-v-55397b13, .establish .contact-mode .mode-title.data-v-55397b13, .establish .personal-brief .brief-title.data-v-55397b13, .establish .company-brief .company-title.data-v-55397b13 {
  35. border-bottom: 1rpx solid #ccc;
  36. font-size: 30rpx;
  37. color: #000;
  38. font-weight: 600;
  39. padding-bottom: 20rpx;
  40. }
  41. .establish.data-v-55397b13 {
  42. min-height: 100vh;
  43. background-color: #f5f5f5;
  44. padding: 30rpx;
  45. box-sizing: border-box;
  46. }
  47. .establish .business-card.data-v-55397b13 {
  48. width: 100%;
  49. height: 400rpx;
  50. background-color: aquamarine;
  51. border-radius: 20rpx;
  52. }
  53. .establish .business-style .style-list.data-v-55397b13 {
  54. margin-top: 20rpx;
  55. display: flex;
  56. align-items: center;
  57. justify-content: space-between;
  58. gap: 20rpx;
  59. }
  60. .establish .business-style .style-list .style-item.data-v-55397b13 {
  61. flex: 1;
  62. height: 100rpx;
  63. background-color: bisque;
  64. border-radius: 10rpx;
  65. }
  66. .establish .basic-info .info-title.data-v-55397b13 {
  67. border-bottom: 1rpx solid #ccc;
  68. font-size: 30rpx;
  69. color: #000;
  70. font-weight: 600;
  71. padding-bottom: 20rpx;
  72. }
  73. .establish .company-brief.data-v-55397b13 {
  74. margin-bottom: 130rpx;
  75. }
  76. .establish .footer.data-v-55397b13 {
  77. position: fixed;
  78. left: 0;
  79. bottom: 0;
  80. width: 100%;
  81. height: 100rpx;
  82. line-height: 100rpx;
  83. z-index: 99;
  84. display: flex;
  85. align-items: center;
  86. justify-content: space-between;
  87. gap: 0rpx;
  88. font-size: 30rpx;
  89. text-align: center;
  90. }
  91. .establish .footer .preview.data-v-55397b13 {
  92. width: 250rpx;
  93. background-color: #fff;
  94. color: #3a8fff;
  95. }
  96. .establish .footer .preserve.data-v-55397b13 {
  97. flex: 1;
  98. background-color: #3A8FFF;
  99. color: #fff;
  100. }