index.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. %paddBox {
  2. margin-top: 20rpx;
  3. border-radius: 10rpx;
  4. padding: 30rpx 20rpx;
  5. box-sizing: border-box;
  6. background-color: #fff;
  7. }
  8. %title {
  9. border-bottom: 1rpx solid #ccc;
  10. font-size: 30rpx;
  11. color: #000;
  12. font-weight: 600;
  13. padding-bottom: 20rpx;
  14. }
  15. .establish {
  16. width: 100vw;
  17. min-height: 100vh;
  18. background-color: #f5f5f5;
  19. .establish-box {
  20. padding: 30rpx;
  21. box-sizing: border-box;
  22. // margin-bottom: 130rpx;
  23. .business-card {
  24. width: 100%;
  25. height: 400rpx;
  26. background-color: aquamarine;
  27. border-radius: 20rpx;
  28. }
  29. .business-style {
  30. @extend %paddBox;
  31. .business-title {
  32. @extend %title;
  33. }
  34. .style-list {
  35. margin-top: 20rpx;
  36. @include flex(space-between, null, 20rpx);
  37. .style-item {
  38. flex: 1;
  39. position: relative;
  40. .style-icon {
  41. position: absolute;
  42. right: 16rpx;
  43. bottom: 16rpx;
  44. image {
  45. width: 24rpx;
  46. height: 24rpx;
  47. }
  48. }
  49. & > image {
  50. width: 100%;
  51. height: 135rpx;
  52. }
  53. }
  54. }
  55. }
  56. .basic-info {
  57. @extend %paddBox;
  58. .info-title {
  59. border-bottom: 1rpx solid #ccc;
  60. font-size: 30rpx;
  61. color: #000;
  62. font-weight: 600;
  63. padding-bottom: 20rpx;
  64. }
  65. }
  66. .contact-mode {
  67. @extend %paddBox;
  68. .mode-title {
  69. @extend %title;
  70. }
  71. }
  72. .personal-brief {
  73. @extend %paddBox;
  74. .brief-title {
  75. @extend %title;
  76. }
  77. }
  78. .company-brief {
  79. @extend %paddBox;
  80. margin-bottom: calc(112rpx + constant(safe-area-inset-bottom));
  81. margin-bottom: calc(112rpx + env(safe-area-inset-bottom));
  82. .company-title {
  83. @extend %title;
  84. }
  85. }
  86. }
  87. .footer {
  88. position: fixed;
  89. left: 0;
  90. bottom: 0;
  91. z-index: 2;
  92. width: 100vw;
  93. margin-top: 24rpx;
  94. padding-bottom: constant(safe-area-inset-bottom); //兼容 IOS<11.2
  95. padding-bottom: env(safe-area-inset-bottom); //兼容 IOS>11.2
  96. background-color: #ffffff;
  97. .btn-list {
  98. width: 100%;
  99. height: 112rpx;
  100. padding: 0 30rpx;
  101. box-sizing: border-box;
  102. @include flex(space-between, null, null);
  103. view {
  104. width: 333rpx;
  105. height: 88rpx;
  106. border-radius: 16rpx;
  107. font-size: 28rpx;
  108. text-align: center;
  109. line-height: 88rpx;
  110. &:nth-of-type(1) {
  111. color: #1472ff;
  112. border: 2rpx solid #1472ff;
  113. box-sizing: border-box;
  114. }
  115. &:nth-of-type(2) {
  116. background-color: #1472ff;
  117. color: #ffffff;
  118. }
  119. }
  120. }
  121. }
  122. }