style.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. html,
  2. body {
  3. margin: 0;
  4. padding: 0;
  5. height: 100%;
  6. }
  7. #app{
  8. font-family: Avenir, Helvetica, Arial, sans-serif;
  9. -webkit-font-smoothing: antialiased;
  10. -moz-osx-font-smoothing: grayscale;
  11. text-align: center;
  12. color: #2c3e50;
  13. margin: 0;
  14. padding: 0;
  15. /* background: rgb(4, 22, 43); */
  16. height: 100%;
  17. background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
  18. }
  19. .el-button.red {
  20. background-color: rgb(192, 36, 40);
  21. border: 0;
  22. color: #fff;
  23. }
  24. .el-button.red:hover {
  25. background-color: rgb(173, 32, 36);
  26. }
  27. .el-input {
  28. /* box-shadow: 0px 0px 10px 0px #0d79f7; */
  29. border: 0;
  30. border-bottom: 1px solid #fff;
  31. }
  32. .el-input input {
  33. font-size: 20px;
  34. letter-spacing:1px;
  35. background:transparent;
  36. border: 0;
  37. color:#fff;
  38. }
  39. .portrait {
  40. width: 100px;
  41. height: 100px;
  42. border-radius: 50%;
  43. display: block;
  44. margin: 0 auto 10px;
  45. }
  46. @media screen and (max-width: 767px) {
  47. .el-message {
  48. min-width: 180px;
  49. }
  50. }
  51. /* 水波 */
  52. .page-bottom{
  53. position:fixed;
  54. left: 0;
  55. right: 0;
  56. bottom: 0;
  57. }
  58. .page-bottom .content-wrap{
  59. background-color: #fff;
  60. }
  61. .page-bottom .content{
  62. max-width: 1200px;
  63. padding:0 24px;
  64. margin: 0 auto;
  65. padding: 24px 0;
  66. }
  67. .waves {
  68. position:relative;
  69. width: 100%;
  70. height:15vh;
  71. margin-bottom:-7px; /*Fix for safari gap*/
  72. min-height:100px;
  73. max-height:150px;
  74. }
  75. .parallax > use {
  76. animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
  77. }
  78. .parallax > use:nth-child(1) {
  79. animation-delay: -2s;
  80. animation-duration: 7s;
  81. }
  82. .parallax > use:nth-child(2) {
  83. animation-delay: -3s;
  84. animation-duration: 10s;
  85. }
  86. .parallax > use:nth-child(3) {
  87. animation-delay: -4s;
  88. animation-duration: 13s;
  89. }
  90. .parallax > use:nth-child(4) {
  91. animation-delay: -5s;
  92. animation-duration: 20s;
  93. }
  94. @keyframes move-forever {
  95. 0% {
  96. transform: translate3d(-90px,0,0);
  97. }
  98. 100% {
  99. transform: translate3d(85px,0,0);
  100. }
  101. }
  102. /*Shrinking for mobile*/
  103. @media (max-width: 768px) {
  104. .waves {
  105. height:40px;
  106. min-height:40px;
  107. }
  108. }