index.scss 556 B

123456789101112131415161718192021222324252627
  1. .start {
  2. display: flex;
  3. align-items: center;
  4. justify-content: space-between;
  5. width: 750rpx;
  6. height: 90rpx;
  7. padding: 0 30rpx;
  8. box-sizing: border-box;
  9. .title {
  10. font-size: 30rpx;
  11. font-family: PingFang SC-Bold, PingFang SC;
  12. font-weight: bold;
  13. color: #333333;
  14. }
  15. .but {
  16. width: 208rpx;
  17. height: 60rpx;
  18. background: #3874F6;
  19. border-radius: 30rpx;
  20. font-size: 24rpx;
  21. font-family: PingFang SC-Regular, PingFang SC;
  22. color: #FFFFFF;
  23. }
  24. }