addAndEdit.scss 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. z-index: 9999999;
  12. .new-submit {
  13. width: 156rpx;
  14. height: 90rpx;
  15. background: #3874F6;
  16. border-radius: 8rpx;
  17. font-size: 28rpx;
  18. font-family: PingFang SC-Bold, PingFang SC;
  19. font-weight: bold;
  20. color: #FFFFFF;
  21. margin-right: 30rpx;
  22. }
  23. .query {
  24. border: 1rpx solid #CCCCCC !important;
  25. background-color: #fff !important;
  26. color: #666666 !important;
  27. }
  28. }
  29. .popup {
  30. .title {
  31. position: sticky;
  32. height: 80rpx;
  33. line-height: 80rpx;
  34. width: 100%;
  35. text-align: center;
  36. border-bottom: 1rpx solid #ddd;
  37. font-weight: 600;
  38. color: #333;
  39. top: 0;
  40. background-color: #fff;
  41. .icon {
  42. position: absolute;
  43. right: 28rpx;
  44. top: 22rpx;
  45. color: #999;
  46. }
  47. }
  48. .enterprise {
  49. width: 100%;
  50. box-sizing: border-box;
  51. padding-left: 30rpx;
  52. padding-right: 10rpx;
  53. padding-bottom: 10rpx;
  54. border-bottom: 1rpx solid #ddd;
  55. margin-top: 10rpx;
  56. .tag-box {
  57. margin-top: 10rpx;
  58. .tag {
  59. height: 40rpx;
  60. font-size: 20rpx;
  61. font-family: PingFang SC-Regular, PingFang SC;
  62. padding: 0 12rpx;
  63. margin-right: 8rpx;
  64. }
  65. }
  66. &_title {
  67. line-height: 40rpx;
  68. font-size: 28rpx;
  69. font-family: PingFang SC-Bold, PingFang SC;
  70. font-weight: bold;
  71. color: #333333;
  72. }
  73. .exp {
  74. line-height: 34rpx;
  75. font-size: 24rpx;
  76. font-family: PingFang SC-Regular, PingFang SC;
  77. color: #666666;
  78. margin-top: 8rpx;
  79. }
  80. }
  81. }