|
@@ -5,10 +5,11 @@
|
|
|
</route>
|
|
|
|
|
|
<template>
|
|
|
- <view class="text-center">
|
|
|
+ <view class="container">
|
|
|
<view>
|
|
|
<!-- 卡片 -->
|
|
|
- <view class="mx-2 rpx-2 left card">
|
|
|
+ <view class="mx-2 left card">
|
|
|
+ <view class="center mb-3">处方名字</view>
|
|
|
<view>
|
|
|
方案名称:
|
|
|
<text class="not">治疗感冒</text>
|
|
@@ -57,14 +58,19 @@ defineOptions({
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
//
|
|
|
+.container {
|
|
|
+ padding-top: 10rpx;
|
|
|
+}
|
|
|
.card {
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
padding: 20rpx;
|
|
|
margin: 20rpx;
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #333;
|
|
|
text-align: left;
|
|
|
background-color: #fff;
|
|
|
- border-radius: 10rpx;
|
|
|
+ border-radius: 20rpx;
|
|
|
box-shadow: 0 8rpx 12rpx rgba(0, 0, 0, 0.1);
|
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
|
}
|
|
@@ -76,13 +82,11 @@ defineOptions({
|
|
|
|
|
|
.not {
|
|
|
padding-left: 6rpx;
|
|
|
- font-size: 26rpx;
|
|
|
- color: #333;
|
|
|
}
|
|
|
.card-title {
|
|
|
margin-bottom: 10rpx;
|
|
|
- font-size: 18rpx;
|
|
|
- font-weight: bold;
|
|
|
+ font-size: 28rpx;
|
|
|
+ // font-weight: bold;
|
|
|
color: #333;
|
|
|
}
|
|
|
.card-selected {
|