123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- html,
- body {
- margin: 0;
- padding: 0;
- height: 100%;
- }
- #app{
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- color: #2c3e50;
- margin: 0;
- padding: 0;
- /* background: rgb(4, 22, 43); */
- min-height: 100%;
- background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
- box-sizing: border-box;
- padding-bottom: 207px;
- }
- .el-button.red {
- background-color: rgb(192, 36, 40);
- border: 0;
- color: #fff;
- }
- .el-button.red:hover {
- background-color: rgb(173, 32, 36);
- }
- .el-input {
- /* box-shadow: 0px 0px 10px 0px #0d79f7; */
- border: 0;
- border-bottom: 1px solid #fff;
-
- }
- .el-input input {
- font-size: 20px;
- letter-spacing:1px;
- background:transparent;
- border: 0;
- color:#fff;
- }
- .portrait {
- width: 100px;
- height: 100px;
- border-radius: 50%;
- display: block;
- margin: 0 auto 10px;
- }
- @media screen and (max-width: 767px) {
- .el-message {
- min-width: 180px;
- }
- }
- /* 水波 */
- .page-bottom{
- position:fixed;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .page-bottom .content-wrap{
- background-color: #fff;
- }
- .page-bottom .content{
- max-width: 1200px;
- padding:24px;
- margin: 0 auto;
- font-weight: 300;
- }
- .waves {
- position:relative;
- width: 100%;
- height:15vh;
- margin-bottom:-7px; /*Fix for safari gap*/
- min-height:100px;
- max-height:150px;
- }
- .parallax > use {
- animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
- }
- .parallax > use:nth-child(1) {
- animation-delay: -2s;
- animation-duration: 7s;
- }
- .parallax > use:nth-child(2) {
- animation-delay: -3s;
- animation-duration: 10s;
- }
- .parallax > use:nth-child(3) {
- animation-delay: -4s;
- animation-duration: 13s;
- }
- .parallax > use:nth-child(4) {
- animation-delay: -5s;
- animation-duration: 20s;
- }
- @keyframes move-forever {
- 0% {
- transform: translate3d(-90px,0,0);
- }
- 100% {
- transform: translate3d(85px,0,0);
- }
- }
- /*Shrinking for mobile*/
- @media (max-width: 768px) {
- .waves {
- height:40px;
- min-height:40px;
- }
- }
|