123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- * {
- margin: 0;
- padding: 0;
- }
- html,
- body {
- height: 100%;
- width: 100%;
- }
- .main {
- height: 100%;
- width: 100%;
- background: url(../image/bg.jpg) no-repeat center center;
- background-size: 100% 100%;
- display: flex;
- flex-direction: column;
- text-align: center;
- text-align: left;
- }
- .main h1 {
- font-weight: bold;
- margin-top: 10%;
- font-size: 40px;
- line-height: 1;
- position: relative;
- left: 30%;
- color: rgba(25, 70, 127, 1);
- }
- .main span {
- display: block;
- font-size: 20px;
- margin-bottom: 10px;
- font-weight: 400;
- }
- .main .text {
- padding: 10px;
- margin: 0 auto;
- max-width: 800px;
- position: relative;
- top: 30px;
- z-index: 999;
- }
- .text .center {
- padding: 60px 60px 30px 60px;
- background: rgb(255, 255, 255);
- border-radius: 6px;
- box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 16px 0px;
- position: relative;
- margin-bottom: 121px;
- }
- .text .center:before {
- content: '';
- position: absolute;
- background: rgb(36, 147, 239);
- background-image: linear-gradient(
- 127deg,
- rgb(13, 183, 189),
- rgb(226, 71, 196)
- );
- inset: -4px;
- border-radius: 12px;
- filter: blur(30px);
- opacity: 0.8;
- z-index: -1;
- -webkit-border-radius: 12px;
- -moz-border-radius: 12px;
- -ms-border-radius: 12px;
- -o-border-radius: 12px;
- -webkit-filter: blur(30px);
- }
- .text .center p {
- margin-top: 30px;
- font-size: 17px;
- }
- .text .center p:nth-child(1) {
- margin-top: 0;
- }
- .text .center .container {
- margin-top: 50px;
- margin-bottom: 10px;
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .center .container .line {
- display: block;
- height: 1px;
- width: 100%;
- border-top: 1px solid red;
- margin: 2px auto;
- }
- .center .container .one {
- width: 30%;
- border-color: rgba(36, 147, 239, 0.8);
- }
- .center .container .two {
- width: 50%;
- border-color: rgba(36, 147, 239, 0.6);
- }
- .center .container .three {
- width: 70%;
- border-color: rgba(36, 147, 239, 0.4);
- }
- .text .center .name {
- text-align: center;
- margin-top: 1%;
- }
- /* @keyframes typing {
- from {
- width: 20%;
- }
- }
- @keyframes caret {
- 50% {
- margin-left: 5%;
- border-right-color: transparent;
- }
- }
- .main p {
- margin-top: 5%;
- width: 100%;
- white-space: nowrap;
- overflow: hidden;
- border-right: 0.05em solid;
- animation: typing 5s steps(15), caret 1s steps(1) infinite;
- -webkit-animation: typing 5s steps(15), caret 1s steps(1) infinite;
- } */
|