login.wxss 880 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .header {
  2. display: flex;
  3. margin-top: 84rpx;
  4. width: 100%;
  5. justify-content: center;
  6. }
  7. .header image {
  8. width: 160rpx;
  9. height: 160rpx;
  10. }
  11. .content {
  12. display: flex;
  13. width: 100%;
  14. flex-direction: column;
  15. justify-content: center;
  16. align-items: center;
  17. margin-top: 100rpx;
  18. }
  19. .content .company {
  20. font-size: 42rpx;
  21. font-family: SourceHanSansCN-Medium;
  22. font-weight: bold;
  23. color: rgba(51, 51, 51, 1);
  24. }
  25. .content .info {
  26. margin-top: 26rpx;
  27. font-size: 28rpx;
  28. font-family: SourceHanSansCN-Regular;
  29. font-weight: 400;
  30. color: rgba(153, 153, 153, 1);
  31. }
  32. .bottom {
  33. margin: 80rpx 44rpx 0 44rpx;
  34. background: linear-gradient(90deg, rgba(59, 120, 207, 1), rgba(80, 166, 195, 1));
  35. border-radius: 10rpx;
  36. height: 88rpx;
  37. line-height: 88rpx;
  38. font-size: 30rpx;
  39. font-family: SourceHanSansCN-Normal;
  40. font-weight: 400;
  41. color: rgba(255, 254, 254, 1);
  42. }