20 lines
747 B
Plaintext
20 lines
747 B
Plaintext
|
|
.page { display:flex; flex-direction: column; height: 100vh;
|
|
}
|
|
.search { display:flex; gap: 12rpx; padding: 16rpx; background:#fff; align-items:center;
|
|
}
|
|
.search input { flex:1; background:#f6f6f6; border-radius: 12rpx; padding: 12rpx;
|
|
}
|
|
.list { flex:1;
|
|
}
|
|
.item { padding: 20rpx 24rpx; background:#fff; border-bottom: 1rpx solid #f1f1f1;
|
|
}
|
|
.name { color:#333; margin-bottom: 6rpx;
|
|
}
|
|
.meta { color:#888; font-size: 24rpx;
|
|
}
|
|
.bottom { position: fixed; left:0; right:0; bottom:0; background:#fff; padding: 16rpx 24rpx calc(env(safe-area-inset-bottom) + 16rpx); box-shadow: 0 -4rpx 12rpx rgba(0,0,0,0.06);
|
|
}
|
|
.primary { width: 100%; background: linear-gradient(135deg, #A0E4FF 0%, #17A2C4 100%); color:#fff; border-radius: 999rpx; padding: 20rpx 0;
|
|
}
|