login.wxss 916 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. page {
  2. font-size: 0;
  3. }
  4. .header {
  5. height: 360rpx;
  6. display: flex;
  7. margin-top: 84rpx;
  8. width: 100%;
  9. justify-content: center;
  10. position: relative;
  11. }
  12. .left,
  13. .right {
  14. height: 360rpx;
  15. width: 360rpx;
  16. position: absolute;
  17. top: 0;
  18. }
  19. .left {
  20. left: 0;
  21. }
  22. .right {
  23. right: 0;
  24. }
  25. .login_logo {
  26. width: 240rpx;
  27. height: 56rpx;
  28. position: absolute;
  29. left: 255rpx;
  30. bottom: 52rpx;
  31. }
  32. .content {
  33. display: flex;
  34. width: 100%;
  35. flex-direction: column;
  36. justify-content: center;
  37. align-items: center;
  38. }
  39. .content .company {
  40. font-size: 42rpx;
  41. font-family: SourceHanSansCN-Medium;
  42. font-weight: bold;
  43. color: rgba(51, 51, 51, 1);
  44. }
  45. .content .info {
  46. font-size: 28rpx;
  47. font-family: SourceHanSansCN-Regular;
  48. font-weight: 400;
  49. color: #666;
  50. }
  51. .bottom {
  52. width: 570rpx;
  53. height: 88rpx;
  54. font-size: 34rpx;
  55. color: #fff;
  56. background: #0177ff;
  57. border-radius: 10rpx;
  58. margin-top: 170rpx;
  59. }