| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- .page-container {
- background-color: #f3f3f3;
- padding-top: 10px;
- height: calc(100vh - 44px);
- box-sizing: border-box;
- -webkit-overflow-scrolling: touch;
- }
- .offline-treatment-page {
- background: #f6f7fa;
- min-height: 100vh;
- }
- .page-container {
- padding: 24rpx 0;
- }
- .treatment-card {
- background: #fff;
- border-radius: 16rpx;
- margin: 0 24rpx 24rpx 24rpx;
- padding: 24rpx 24rpx 18rpx 24rpx;
- box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.03);
- }
- .treatment-title {
- font-size: 28rpx;
- font-weight: 500;
- color: #222;
- margin-bottom: 12rpx;
- }
- .treatment-row {
- font-size: 26rpx;
- color: #666;
- margin-bottom: 8rpx;
- display: flex;
- flex-wrap: wrap;
- }
- .label {
- color: black;
- margin-right: 8rpx;
- }
- .treatment-detail-card {
- display: flex;
- justify-content: space-between;
- align-items: center;
- background: #fff;
- border-radius: 16rpx;
- margin: 0 24rpx 32rpx 24rpx;
- padding: 24rpx 54rpx 18rpx 24rpx;
- box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.03);
- font-size: 28rpx;
- }
- .row {
- display: flex;
- align-items: center;
- color: #222;
- font-size: 28rpx;
- margin-bottom: 20rpx;
- }
- .between {
- justify-content: space-between;
- }
- .bold {
- font-weight: 600;
- }
- .status {
- font-size: 28rpx;
- font-weight: 500;
- margin-bottom: 20rpx;
- }
- .status.done {
- color: #43A047;
- margin-left: 16rpx;
- }
- .count {
- margin-left: 16rpx;
- color: #222;
- }
- .divider {
- height: 1rpx;
- background: #eee;
- margin: 18rpx 0;
- }
- .sub-label {
- color: #bbb;
- }
|