| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- * {
- padding: 0;
- margin: 0;
- list-style: none;
- box-sizing: border-box;
- }
- html,
- body {
- width: 100%;
- height: 100%;
- }
- .LoginContainer {
- width: 100%;
- height: 100%;
- position: absolute;
- display: flex;
- display: -moz-flex;
- display: -o-flex;
- display: -webkit-flex;
- display: -ms-flex;
- justify-content: center;
- align-items: center;
- background-color: #F7F8F9;
- }
- .LoginContainerInput {
- width: 880px;
- height: 720px;
- background-image: url(../img/loginround.png);
- background-repeat: no-repeat;
- background-size: 100% 100%;
- }
- .LoginContainerInputTitle {
- font-size: 24px;
- margin-top: 222px;
- color: #000000;
- font-weight: bold;
- text-align: center;
- }
- .LoginContainerInputAcconuntText {
- color: #000000;
- font-size: 12px;
- font-weight: bold;
- margin-top: 24px;
- margin-left: 264px;
- }
- .LoginContainerInputAcconuntBox {
- width: 352px;
- height: 40px;
- background-color: #FFFFFF;
- color: #000000;
- font-size: 14px;
- margin-top: 8px;
- margin-left: 264px;
- border: 1px solid #C2C9D1;
- border-radius: 8px;
- outline: none;
- padding-left: 12px;
- }
- .LoginContainerInputPasswordText {
- color: #000000;
- font-size: 12px;
- font-weight: bold;
- margin-top: 24px;
- margin-left: 264px;
- }
- .LoginContainerInputPasswordBox {
- width: 352px;
- height: 40px;
- background-color: #FFFFFF;
- color: #000000;
- font-size: 14px;
- margin-top: 8px;
- margin-left: 264px;
- border: 1px solid #C2C9D1;
- border-radius: 8px;
- outline: none;
- padding-left: 12px;
- }
- .LoginContainerInputLanding {
- width: 352px;
- height: 44px;
- background-color: #000000;
- border-radius: 8px;
- margin-top: 24px;
- margin-left: 264px;
- color: #FFFFFF;
- font-weight: bold;
- font-size: 16px;
- text-align: center;
- line-height: 44px;
- }
- .ContainerTitleYanZheng {
- margin-top: 24px;
- }
|