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

169 lines
3.5 KiB
Vue
Raw Normal View History

2024-08-06 09:07:36 +00:00
<script setup>
import { useAdaptation } from "@/utils/self-adaption.js";
const { maxWidth } = useAdaptation([
{ maxWidth: '375px' },
{ maxWidth: '768px' }
])
</script>
<template>
<div class="container">
<div class="content1"></div>
<div class="content2">
<div class="wrap1">
<div class="wrap1_1">手机号</div>
<div class="wrap1_2">
2024-08-06 11:32:06 +00:00
<input class="pl-[61px] w-[1174px] h-[174px] focus:outline-none placeholder:text-primary focus: bg-[#DCE5E9] border-none" placeholder="请输入手机号" type="text">
2024-08-06 09:07:36 +00:00
</div>
</div>
<div class="wrap2">
<div class="wrap2_1">验证码</div>
<div class="wrap2_2">
<input class="wrap2_2_1" placeholder="请输入验证码" type="text">
</div>
2024-08-06 11:32:06 +00:00
<div class="wrap2_3 bg-primary">
2024-08-06 09:07:36 +00:00
获取验证码
</div>
</div>
<div class="wrap3">登录/注册</div>
</div>
<div class="content3">
<img src="@/assets/image/gdz27.png" alt="">
</div>
<div class="content4">
<img src="@/assets/image/zu733@2x.png" alt="">
</div>
</div>
</template>
<style scoped lang="scss">
.container {
box-sizing: border-box;
position: relative;
width: 1920px;
height: 100vh;
background-repeat: no-repeat;
background-size: cover;
background-image: url("@/assets/image/zu3237.png");
display: flex;
align-items: center;
flex-direction: column;
.content4 {
position: absolute;
bottom: 200px;
img {
width: 1270px;
height: 145px;
}
}
.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;
background-repeat: no-repeat;
background-image: url("@/assets/image/zu3310@2x.png");
}
.content2 {
margin-top: 123px;
background-size: cover;
width: 1654px;
height: 1285px;
background-repeat: no-repeat;
background-image: url("@/assets/image/zu3270@2x.png");
display: flex;
flex-direction: column;
align-items: center;
padding-top: 241px;
.wrap3 {
background-size: cover;
background-repeat: no-repeat;
font-size: 82px;
color: #fff;
margin-top: 261px;
display: flex;
justify-content: center;
align-items: center;
width: 866px;
height: 200px;
background-image: url("@/assets/image/fbbb@4x.png");
}
.wrap1 {
display: flex;
align-items: center;
.wrap1_2 {
}
.wrap1_1 {
margin-right: 41px;
font-weight: bold;
color: #2B69A1;
font-size: 72px;
}
}
.wrap2 {
margin-top: 118px;
display: flex;
align-items: center;
.wrap2_3 {
margin-left: 51px;
color: #FFFFFF;
font-size: 72px;
display: flex;
justify-content: center;
align-items: center;
width: 460px;
height: 174px;
}
.wrap2_2 {
.wrap2_2_1 {
padding-left: 61px;
width: 660px;
height: 174px;
background-color: #DCE5E9;
border: none;
&:focus{
outline: none;
}
&::placeholder {
font-size: 72px;
color: #2B69A1;
}
}
}
.wrap2_1 {
margin-right: 41px;
font-weight: bold;
color: #2B69A1;
font-size: 72px;
}
}
}
}
</style>