261 lines
5.2 KiB
Plaintext
261 lines
5.2 KiB
Plaintext
@charset "UTF-8";
|
||
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
/* 透明度 */
|
||
/* 文章场景相关 */
|
||
.text {
|
||
margin-top: 40rpx;
|
||
padding-bottom: 80rpx;
|
||
}
|
||
.btn1,
|
||
.btn2 {
|
||
width: 50%;
|
||
height: 80rpx;
|
||
line-height: 80rpx;
|
||
text-align: center;
|
||
display: inline-block;
|
||
background-color: #fff;
|
||
}
|
||
.btn2 {
|
||
border-left: 1rpx solid #F4F5F9;
|
||
right: 0;
|
||
}
|
||
.masks {
|
||
background-color: rgba(246, 247, 248, 0.5);
|
||
height: 100vh;
|
||
width: 100%;
|
||
position: absolute;
|
||
top: 0;
|
||
z-index: 999;
|
||
background-color: #F4F5F9;
|
||
}
|
||
.mask {
|
||
padding: 0 30rpx 0 30rpx;
|
||
width: 80%;
|
||
background-color: #fff;
|
||
margin: 100rpx auto;
|
||
opacity: 1;
|
||
position: relative;
|
||
}
|
||
.title {
|
||
height: 100rpx;
|
||
border-bottom: 1px solid #eeeeee;
|
||
/* background-color: red; */
|
||
font-size: 36rpx;
|
||
margin: 0px auto;
|
||
width: 100%;
|
||
text-align: center;
|
||
/* line-height: 80rpx; */
|
||
}
|
||
.content {
|
||
background-image: linear-gradient(#D7EEE8, #fff);
|
||
width: 100%;
|
||
height: 600rpx;
|
||
padding: 5% 0 0 0;
|
||
position: relative;
|
||
}
|
||
.content .top {
|
||
width: 95%;
|
||
margin: 0 auto 0;
|
||
height: 1266rpx;
|
||
background: #FFFFFF;
|
||
box-shadow: 0rpx 3rpx 18rpx 0rpx rgba(182, 218, 213, 0.43);
|
||
border-radius: 10rpx;
|
||
position: relative;
|
||
}
|
||
.content .top .cancelitem {
|
||
position: absolute;
|
||
bottom: 10%;
|
||
display: flex;
|
||
left: 10%;
|
||
}
|
||
.content .top .cancelitem .cancel {
|
||
width: 254rpx;
|
||
margin-left: 5%;
|
||
height: 69rpx;
|
||
background: #F4F5F9;
|
||
border-radius: 10rpx;
|
||
line-height: 69rpx;
|
||
font-size: 28rpx;
|
||
text-align: center;
|
||
}
|
||
.content .top .cancelitem .submit {
|
||
width: 254rpx;
|
||
margin-left: 5%;
|
||
height: 69rpx;
|
||
font-size: 28rpx;
|
||
background: #35A97A;
|
||
border-radius: 10rpx;
|
||
line-height: 69rpx;
|
||
text-align: center;
|
||
color: #fff;
|
||
}
|
||
.content .top .bottombutton ._span {
|
||
font-size: 22rpx;
|
||
font-family: Source Han Sans CN;
|
||
font-weight: 400;
|
||
color: #666666;
|
||
line-height: 36rpx;
|
||
bottom: 18%;
|
||
position: absolute;
|
||
left: 25%;
|
||
}
|
||
.content .top .itemphone .parentphone {
|
||
position: absolute;
|
||
top: 26%;
|
||
left: 5%;
|
||
font-size: 28rpx;
|
||
font-family: Source Han Sans CN;
|
||
font-weight: 500;
|
||
color: #000000;
|
||
line-height: 48rpx;
|
||
display: flex;
|
||
}
|
||
.content .top .itemphone .inputitems {
|
||
background: #FBFBFD;
|
||
border-radius: 10rpx;
|
||
width: 85%;
|
||
height: 89rpx;
|
||
top: 30%;
|
||
left: 6%;
|
||
position: absolute;
|
||
border: 1px solid #D7EEE8;
|
||
}
|
||
.content .top .itemphone .inputitems input {
|
||
position: absolute;
|
||
width: 75%;
|
||
top: 30%;
|
||
left: 15%;
|
||
}
|
||
.content .top .itemphone .name-items {
|
||
width: 71rpx;
|
||
height: 71rpx;
|
||
position: absolute;
|
||
top: 30%;
|
||
left: 7%;
|
||
z-index: 999;
|
||
}
|
||
.content .top .itemphone .name-items image {
|
||
top: 24%;
|
||
position: absolute;
|
||
left: 7%;
|
||
width: 71rpx;
|
||
height: 71rpx;
|
||
}
|
||
.content .top .itemidcard .schoolphone {
|
||
position: absolute;
|
||
top: 40%;
|
||
left: 5%;
|
||
font-size: 28rpx;
|
||
font-family: Source Han Sans CN;
|
||
font-weight: 500;
|
||
color: #000000;
|
||
line-height: 48rpx;
|
||
display: flex;
|
||
}
|
||
.content .top .itemidcard .idcard {
|
||
width: 71rpx;
|
||
height: 71rpx;
|
||
position: absolute;
|
||
top: 45%;
|
||
left: 7%;
|
||
z-index: 999;
|
||
}
|
||
.content .top .itemidcard .idcard image {
|
||
top: 24%;
|
||
position: absolute;
|
||
left: 7%;
|
||
width: 71rpx;
|
||
height: 71rpx;
|
||
}
|
||
.content .top .itemidcard .inputidcard {
|
||
background: #FBFBFD;
|
||
border-radius: 10rpx;
|
||
width: 85%;
|
||
height: 89rpx;
|
||
top: 45%;
|
||
left: 6%;
|
||
position: absolute;
|
||
border: 1px solid #D7EEE8;
|
||
}
|
||
.content .top .itemidcard .inputidcard input {
|
||
position: absolute;
|
||
width: 75%;
|
||
top: 37%;
|
||
left: 15%;
|
||
}
|
||
.content .top .itemsname .parentname {
|
||
position: absolute;
|
||
top: 8%;
|
||
left: 5%;
|
||
font-size: 28rpx;
|
||
font-family: Source Han Sans CN;
|
||
font-weight: 500;
|
||
color: #000000;
|
||
line-height: 48rpx;
|
||
display: flex;
|
||
}
|
||
.content .top .itemsname .name-item {
|
||
width: 71rpx;
|
||
height: 71rpx;
|
||
position: absolute;
|
||
top: 15%;
|
||
left: 7%;
|
||
z-index: 999;
|
||
}
|
||
.content .top .itemsname .name-item image {
|
||
position: absolute;
|
||
top: 16%;
|
||
left: 7%;
|
||
width: 71rpx;
|
||
height: 71rpx;
|
||
}
|
||
.content .top .itemsname .inputitem {
|
||
background: #FBFBFD;
|
||
border-radius: 10rpx;
|
||
width: 85%;
|
||
height: 89rpx;
|
||
top: 15%;
|
||
left: 6%;
|
||
position: absolute;
|
||
border: 1px solid #D7EEE8;
|
||
}
|
||
.content .top .itemsname .inputitem input {
|
||
position: absolute;
|
||
width: 75%;
|
||
top: 25%;
|
||
left: 15%;
|
||
}
|
||
.content .top .touxiang {
|
||
position: absolute;
|
||
right: 3%;
|
||
-webkit-transform: translateY(0px);
|
||
transform: translateY(0px);
|
||
}
|
||
.content .top .touxiang image {
|
||
width: 130rpx;
|
||
height: 120rpx;
|
||
}
|
||
|