123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- <template>
- <div class="ldm-login">
- <van-overlay :show="show" @click="show = false">
- <div class="wrapper flex justify-center items-center" @click.stop>
- <div class="block flex items-center flex-col">
- <div class="close" @click="onClose"></div>
- <img
- class="logo"
- src="https://static.caimei365.com/www/authentic/pc/ldm-logo-rect.png"
- alt=""
- />
- <div class="forlogoutm">
- <div class="form-item mb-4">
- <input type="text" placeholder="手机号" />
- </div>
- <div class="form-item mb-4">
- <input type="text" placeholder="验证码" class="code" />
- <span class="send">获取验证码</span>
- </div>
- <div class="submit" @click="onSubmit">登录</div>
- </div>
- </div>
- </div>
- </van-overlay>
- </div>
- </template>
- <script>
- export default {
- name: 'ldm-login',
- data() {
- return {
- show: true,
- }
- },
- methods: {
- onSubmit() {},
- onClose() {
- this.show = false
- },
- },
- }
- </script>
- <style scoped lang="scss">
- @media screen and (min-width: 768px) {
- .wrapper {
- height: 100vh;
- .block {
- position: relative;
- width: 532px;
- background: linear-gradient(180deg, #d7dbe6, #ffffff);
- border-radius: 45px;
- .close {
- position: absolute;
- right: 16px;
- top: 16px;
- width: 24px;
- height: 24px;
- background: url(https://static.caimei365.com/www/authentic/h5/icon-close.png)
- center no-repeat;
- background-size: 24px 24px;
- cursor: pointer;
- }
- .logo {
- width: 294px;
- height: 57px;
- margin: 98px 0 82px;
- }
- .form-item {
- position: relative;
- width: 464px;
- input {
- width: 464px;
- height: 50px;
- display: block;
- padding: 16px 24px;
- font-size: 14px;
- border: 1px solid #000000;
- box-sizing: border-box;
- background: transparent;
- font-size: 19px;
- }
- .code {
- padding-right: 220px;
- }
- .send {
- position: absolute;
- right: 18px;
- top: 50%;
- transform: translateY(-50%);
- font-size: 16px;
- color: #a62645;
- cursor: pointer;
- }
- }
- .submit {
- width: 200px;
- height: 58px;
- margin: 0 auto;
- background: #000;
- font-size: 16px;
- color: #fff;
- text-align: center;
- line-height: 58px;
- cursor: pointer;
- margin-top: 39px;
- margin-bottom: 59px;
- }
- }
- }
- }
- @media screen and (max-width: 768px) {
- .wrapper {
- height: 100vh;
- .block {
- position: relative;
- width: 76vw;
- background: linear-gradient(180deg, #d7dbe6, #ffffff);
- border-radius: 4.5vw;
- .close {
- position: absolute;
- right: 2.4vw;
- top: 2.4vw;
- width: 5.6vw;
- height: 5.6vw;
- background: url(https://static.caimei365.com/www/authentic/h5/icon-close.png)
- center no-repeat;
- background-size: 4.8vw 4.8vw;
- cursor: pointer;
- }
- .logo {
- width: 42vw;
- height: 8.2vw;
- margin: 14vw 0 11.6vw;
- }
- .form-item {
- position: relative;
- width: 66.1vw;
- input {
- width: 66.1vw;
- height: 7.1vw;
- display: block;
- padding: 2.2vw 3.4vw;
- font-size: 2.7vw;
- border: 0.1vw solid #000;
- background: transparent;
- box-sizing: border-box;
- font-size: 2.7vw;
- }
- .code {
- padding-right: 30vw;
- }
- .send {
- position: absolute;
- right: 3vw;
- top: 50%;
- transform: translateY(-50%);
- font-size: 3.2vw;
- color: #bc1724;
- cursor: pointer;
- }
- }
- .submit {
- width: 28.4vw;
- height: 8.2vw;
- margin: 0 auto;
- background: #000;
- font-size: 3.2vw;
- color: #fff;
- text-align: center;
- line-height: 8.2vw;
- margin-top: 5.6vw;
- margin-bottom: 8.4vw;
- }
- }
- }
- }
- </style>
|