85 lines
1.4 KiB
Plaintext
85 lines
1.4 KiB
Plaintext
.container {
|
|
padding: 32rpx;
|
|
background: #f7f7f7;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.form-card {
|
|
width: 100%;
|
|
background: white;
|
|
border-radius: 24rpx;
|
|
padding: 40rpx;
|
|
box-shadow: 0 4rpx 16rpx rgba(0,0,0,0.08);
|
|
}
|
|
|
|
.card-title {
|
|
font-size: 36rpx;
|
|
font-weight: 600;
|
|
color: #333;
|
|
margin-bottom: 40rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.device-types {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24rpx;
|
|
margin-bottom: 48rpx;
|
|
}
|
|
|
|
.type-item {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 24rpx;
|
|
border-radius: 16rpx;
|
|
background: #f8f9fa;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.type-item.active {
|
|
background: rgba(0,122,255,0.1);
|
|
border: 2rpx solid #007AFF;
|
|
}
|
|
|
|
.type-item radio {
|
|
transform: scale(0.8);
|
|
margin-right: 16rpx;
|
|
}
|
|
|
|
.type-content {
|
|
flex: 1;
|
|
}
|
|
|
|
.type-name {
|
|
display: block;
|
|
font-size: 32rpx;
|
|
color: #333;
|
|
font-weight: 500;
|
|
margin-bottom: 8rpx;
|
|
}
|
|
|
|
.type-desc {
|
|
font-size: 24rpx;
|
|
color: #666;
|
|
}
|
|
|
|
.submit-btn {
|
|
width: 100%;
|
|
height: 88rpx;
|
|
line-height: 88rpx;
|
|
background: linear-gradient(135deg, #007AFF, #40a9ff);
|
|
color: white;
|
|
border-radius: 44rpx;
|
|
font-size: 32rpx;
|
|
font-weight: 500;
|
|
box-shadow: 0 4rpx 12rpx rgba(0,122,255,0.2);
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.submit-btn:active {
|
|
transform: scale(0.98);
|
|
box-shadow: 0 2rpx 6rpx rgba(0,122,255,0.2);
|
|
} |