login-page.css 789 字节
Newer Older
DCloud_JSON's avatar
DCloud_JSON 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
/* #ifndef APP-NVUE */
view {
	display: flex;
	box-sizing: border-box;
	flex-direction: column;
}

/* #endif */

.content {
	padding: 0 50rpx;
	width: 750rpx;
	flex: 1;
}

.input-box {
	padding: 0 15px;
	margin-bottom: 10px;
	background-color: #F8F8F8;
	border-radius: 6px;
	font-size: 28rpx;
}

.get-code {
	margin: 0;
	margin-top: 15px;
	background-color: #007aff;
	color: #FFFFFF;
}

.input-box,
.get-code {
	height: 45px;
	line-height: 45px;
}

.title {
	text-align: center;
	padding-bottom: 5px;
}

.tip {
	color: #666666;
	font-size: 26rpx;
	margin: 6px 0;
}

.easyinput {
	background-color: #F8F8F8;
	border-radius: 6rpx;
}

.send-btn {
	width: 100%;
	margin-top: 15px;
	border-radius: 6rpx;
}

.link {
	color: #04498c;
雪洛's avatar
雪洛 已提交
61
}