change.scss 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .new-footer {
  2. display: flex;
  3. align-items: center;
  4. justify-content: flex-end;
  5. position: fixed;
  6. width: 100vw;
  7. height: 130rpx;
  8. background: #FFFFFF;
  9. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  10. bottom: 0;
  11. .new-submit {
  12. width: 156rpx;
  13. height: 90rpx;
  14. background: #3874F6;
  15. border-radius: 8rpx;
  16. font-size: 28rpx;
  17. font-family: PingFang SC-Bold, PingFang SC;
  18. font-weight: bold;
  19. color: #FFFFFF;
  20. margin-right: 30rpx;
  21. }
  22. }
  23. .popup {
  24. .title {
  25. position: sticky;
  26. height: 80rpx;
  27. line-height: 80rpx;
  28. width: 100%;
  29. text-align: center;
  30. border-bottom: 1rpx solid #ddd;
  31. font-weight: 600;
  32. color: #333;
  33. top: 0;
  34. background-color: #fff;
  35. .icon {
  36. position: absolute;
  37. right: 28rpx;
  38. top: 22rpx;
  39. color: #999;
  40. }
  41. }
  42. .enterprise {
  43. width: 100%;
  44. box-sizing: border-box;
  45. padding-left: 30rpx;
  46. padding-right: 10rpx;
  47. padding-bottom: 10rpx;
  48. border-bottom: 1rpx solid #ddd;
  49. margin-top: 10rpx;
  50. .tag-box {
  51. margin-top: 10rpx;
  52. .tag {
  53. height: 40rpx;
  54. font-size: 20rpx;
  55. font-family: PingFang SC-Regular, PingFang SC;
  56. padding: 0 12rpx;
  57. margin-right: 8rpx;
  58. }
  59. }
  60. &_title {
  61. line-height: 40rpx;
  62. font-size: 28rpx;
  63. font-family: PingFang SC-Bold, PingFang SC;
  64. font-weight: bold;
  65. color: #333333;
  66. }
  67. .exp {
  68. line-height: 34rpx;
  69. font-size: 24rpx;
  70. font-family: PingFang SC-Regular, PingFang SC;
  71. color: #666666;
  72. margin-top: 8rpx;
  73. }
  74. }
  75. }