kidArtExpo/src/views/login/size375/index.vue

140 lines
3.1 KiB
Vue
Raw Normal View History

2024-08-06 09:07:36 +00:00
<script setup>
</script>
<template>
2024-08-07 03:51:02 +00:00
<div class="box-border relative w-screen h-screen bg-center bg-no-repeat bg-cover bg-[url('@/assets/image/gdz53@2x.png')]" style="">
2024-08-06 12:43:08 +00:00
<div class="relative z-10 flex items-center flex-col"> <div class="content1 mb-[123px] shrink-0 "></div>
<div class="content2">
<div class="wrap1">
<div class="wrap1_1">手机号</div>
<div class="wrap1_2">
<input class="pl-[61px] w-[1174px] h-[174px] focus:outline-none placeholder:text-primary placeholder:text-[72px] focus: bg-[#DCE5E9] focus:text-[72px] border-none" placeholder="请输入手机号" type="text">
</div>
2024-08-06 09:07:36 +00:00
</div>
2024-08-06 12:43:08 +00:00
<div class="wrap2">
<div class="wrap2_1">验证码</div>
<div class="wrap2_2">
<input class="wrap2_2_1" placeholder="请输入验证码" type="text">
</div>
<div class="wrap2_3 bg-primary">
获取验证码
</div>
2024-08-06 09:07:36 +00:00
</div>
2024-08-06 12:43:08 +00:00
<div class="wrap3">登录/注册</div>
2024-08-06 09:07:36 +00:00
</div>
2024-08-06 12:43:08 +00:00
<div class="content3">
<img src="@/assets/image/gdz27.png" alt="">
</div></div>
<div class="content4 absolute bottom-[200px] left-[50%] transform translate-x-[-50%]">
<img class="w-[1270px] h-[145px]" src="@/assets/image/zu733@2x.png" alt="">
2024-08-06 09:07:36 +00:00
</div>
</div>
</template>
<style scoped lang="scss">
2024-08-06 12:43:08 +00:00
.content3 {
position: absolute;
top: 0;
left: 0;
background-size: cover;
img {
width: 671px;
height: 728px;
}
}
.content1 {
margin-top: 835px;
background-size: cover;
width: 1074px;
height: 178px;
2024-08-06 09:07:36 +00:00
background-repeat: no-repeat;
2024-08-06 12:43:08 +00:00
background-image: url("@/assets/image/zu3310@2x.png");
}
.content2 {
2024-08-06 09:07:36 +00:00
background-size: cover;
2024-08-06 12:43:08 +00:00
width: 1654px;
height: 1285px;
background-repeat: no-repeat;
background-image: url("@/assets/image/zu3270@2x.png");
2024-08-06 09:07:36 +00:00
display: flex;
flex-direction: column;
2024-08-06 12:43:08 +00:00
align-items: center;
padding-top: 241px;
2024-08-06 09:07:36 +00:00
2024-08-06 12:43:08 +00:00
.wrap3 {
2024-08-06 09:07:36 +00:00
background-size: cover;
2024-08-06 12:43:08 +00:00
background-repeat: no-repeat;
font-size: 82px;
color: #fff;
margin-top: 261px;
display: flex;
justify-content: center;
align-items: center;
width: 866px;
height: 200px;
2024-08-06 09:07:36 +00:00
2024-08-06 12:43:08 +00:00
background-image: url("@/assets/image/fbbb@4x.png");
2024-08-06 09:07:36 +00:00
}
2024-08-06 12:43:08 +00:00
.wrap1 {
2024-08-06 09:07:36 +00:00
display: flex;
align-items: center;
2024-08-06 12:43:08 +00:00
.wrap1_2 {
2024-08-06 09:07:36 +00:00
}
2024-08-06 12:43:08 +00:00
.wrap1_1 {
margin-right: 41px;
font-weight: bold;
color: #2B69A1;
font-size: 72px;
2024-08-06 09:07:36 +00:00
}
2024-08-06 12:43:08 +00:00
}
.wrap2 {
margin-top: 118px;
display: flex;
align-items: center;
2024-08-06 09:07:36 +00:00
2024-08-06 12:43:08 +00:00
.wrap2_3 {
margin-left: 51px;
color: #FFFFFF;
font-size: 72px;
2024-08-06 09:07:36 +00:00
display: flex;
2024-08-06 12:43:08 +00:00
justify-content: center;
2024-08-06 09:07:36 +00:00
align-items: center;
2024-08-06 12:43:08 +00:00
width: 460px;
height: 174px;
}
2024-08-06 09:07:36 +00:00
2024-08-06 12:43:08 +00:00
.wrap2_2 {
.wrap2_2_1 {
padding-left: 61px;
width: 660px;
2024-08-06 09:07:36 +00:00
height: 174px;
2024-08-06 12:43:08 +00:00
background-color: #DCE5E9;
border: none;
&:focus{
outline: none;
}
&::placeholder {
font-size: 72px;
color: #2B69A1;
2024-08-06 09:07:36 +00:00
}
}
2024-08-06 12:43:08 +00:00
}
2024-08-06 09:07:36 +00:00
2024-08-06 12:43:08 +00:00
.wrap2_1 {
margin-right: 41px;
font-weight: bold;
color: #2B69A1;
font-size: 72px;
2024-08-06 09:07:36 +00:00
}
}
}
</style>