| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- [v-cloak] {
- display: none;
- }
- * {
- margin: 0;
- padding: 0;
- }
- body {
- /* background: #f2f2f2; */
- }
- .content {
- }
- .el-header {
- box-shadow: 0 3px 5px #0000000d;
- /* border-bottom: 1px solid #cfcaca; */
- /* height: 100px; */
- overflow: hidden;
- height: auto !important;
- padding: 0 !important;
- }
- .header {
- width: 100%;
- /* max-width: 460px; */
- max-width: 1200px;
- margin: 0 auto;
- height: 88px;
- padding: 20px 20px;
- background: #fff;
- display: flex;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- }
- .el-footer {
- position: absolute;
- margin-top: 100px;
- bottom: 0;
- left: 0;
- color: #999;
- font-size: 12px;
- text-align: center;
- width: 100%;
- line-height: 60px;
- }
- .el-footer.mobile {
- position: relative;
- margin-top: 0px;
- line-height: 20px;
- }
- .header .logo img {
- width: 190px;
- height: auto;
- /* cursor: pointer; */
- }
- .header.mobile {
- height: 60px;
- }
- .header.mobile .logo img {
- width: 110px;
- }
- .header .download {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .download .use-btn {
- font-size: 12px;
- text-decoration: underline;
- margin-right: 10px;
- cursor: pointer;
- }
- .download .use-btn a {
- color: #000;
- }
- .download .use-btn a:active {
- color: #000;
- }
- .form-box {
- max-width: 460px;
- margin: 0 auto;
- }
- .invite-box {
- position: relative;
- }
- .invite-box .icon {
- width: 24px;
- height: 24px;
- background: url(../img/help.svg);
- background-size: 100% 100%;
- position: absolute;
- right: -30px;
- top: 50%;
- transform: translateY(-50%);
- cursor: pointer;
- }
- .invite-box .icon p {
- position: absolute;
- white-space: nowrap;
- left: 50%;
- top: -40px;
- transform: translateX(-50%);
- font-size: 12px;
- display: none;
- }
- .invite-box .icon:hover p {
- display: block;
- }
- /* .el-form > div {
- margin: 20px 0;
- } */
- .el-form > div .text {
- font-size: 14px;
- }
- .el-form > div .text > span {
- cursor: pointer;
- }
- .el-form > div .text > span:hover {
- color: #409eff;
- }
- .el-form > div .el-input-group__prepend {
- width: 40px;
- }
- .sms-box {
- width: 80px;
- padding: 12px 5px !important;
- }
- .el-input-group__append {
- overflow: hidden;
- }
- .success-box {
- max-width: 460px;
- margin: 150px auto 0;
- }
- .success-box h3,
- .success-box p {
- margin-bottom: 10px;
- text-align: center;
- }
- .success-box p {
- margin-bottom: 20px;
- }
- @media screen and (max-width: 500px) {
- .el-message {
- min-width: 300px !important;
- }
- .el-dialog__body {
- padding: 10px 10px !important;
- }
- }
|