72 lines
1.2 KiB
Plaintext
72 lines
1.2 KiB
Plaintext
/*
|
|
* 手太欠
|
|
* 愿这世界都如故事里一样 美好而动人~
|
|
*/
|
|
|
|
/* 表单 */
|
|
.form {
|
|
background-color: #fff;
|
|
padding: 30rpx;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
position: relative;
|
|
height: 130rpx;
|
|
}
|
|
|
|
.form-img {
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.form-input {
|
|
position: absolute;
|
|
width: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
padding: 30rpx 30rpx 30rpx 90rpx;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
line-height: 80rpx;
|
|
}
|
|
|
|
.form-input-label {
|
|
width: 180rpx;
|
|
}
|
|
|
|
.form-input input {
|
|
border: 2rpx solid #d5d5d5;
|
|
width: calc(100% - 180rpx);
|
|
padding: 0 20rpx;
|
|
box-sizing: border-box;
|
|
border-radius: 10rpx;
|
|
height: 74rpx;
|
|
line-height: 74rpx;
|
|
}
|
|
|
|
/* footer */
|
|
.form-btn {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
padding-left: 30rpx;
|
|
padding-right: 30rpx;
|
|
background: white;
|
|
z-index: 9;
|
|
height: 110rpx;
|
|
}
|
|
|
|
.form-btn button {
|
|
width: 100% !important;
|
|
padding: 0;
|
|
line-height: 80rpx;
|
|
display: block;
|
|
height: 80rpx;
|
|
margin: 15rpx 0;
|
|
text-align: center;
|
|
background: #e53134;
|
|
font-size: 30rpx;
|
|
color: white;
|
|
border-radius: 10rpx
|
|
} |