insert.scss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. .new-footer {
  2. display: flex;
  3. justify-content: flex-end;
  4. position: fixed;
  5. width: 100vw;
  6. height: 130rpx;
  7. background: #FFFFFF;
  8. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  9. bottom: 0;
  10. padding-top: 10rpx;
  11. box-sizing: border-box;
  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. &_title {
  57. line-height: 40rpx;
  58. font-size: 28rpx;
  59. font-family: PingFang SC-Bold, PingFang SC;
  60. font-weight: bold;
  61. color: #333333;
  62. }
  63. .tag-box {
  64. margin-top: 10rpx;
  65. .tag {
  66. height: 40rpx;
  67. font-size: 20rpx;
  68. font-family: PingFang SC-Regular, PingFang SC;
  69. padding: 0 12rpx;
  70. margin-right: 8rpx;
  71. }
  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. }