index.scss 1.3 KB

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