index.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .popup {
  2. .title {
  3. position: sticky;
  4. height: 80rpx;
  5. line-height: 80rpx;
  6. width: 100%;
  7. text-align: center;
  8. border-bottom: 1rpx solid #ddd;
  9. font-weight: 600;
  10. color: #333;
  11. top: 0;
  12. background-color: #fff;
  13. z-index: 999999999999999;
  14. .icon {
  15. position: absolute;
  16. right: 28rpx;
  17. top: 22rpx;
  18. color: #999;
  19. }
  20. }
  21. .enterprise {
  22. width: 100%;
  23. box-sizing: border-box;
  24. padding-left: 30rpx;
  25. padding-right: 10rpx;
  26. padding-bottom: 10rpx;
  27. border-bottom: 1rpx solid #ddd;
  28. margin-top: 10rpx;
  29. .tag-box {
  30. margin-top: 10rpx;
  31. .tag {
  32. height: 40rpx;
  33. font-size: 20rpx;
  34. font-family: PingFang SC-Regular, PingFang SC;
  35. padding: 0 12rpx;
  36. margin-right: 8rpx;
  37. }
  38. }
  39. &_title {
  40. line-height: 40rpx;
  41. font-size: 28rpx;
  42. font-family: PingFang SC-Bold, PingFang SC;
  43. font-weight: bold;
  44. color: #333333;
  45. }
  46. .exp {
  47. line-height: 34rpx;
  48. font-size: 24rpx;
  49. font-family: PingFang SC-Regular, PingFang SC;
  50. color: #666666;
  51. margin-top: 8rpx;
  52. }
  53. }
  54. }