| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /* 盒子和头部标题 */
- /*
- <view class="public_con">
- <view class="public_con_nav">
- <view class="public_con_nav_tit">
- 张胜利
- </view>
- <image class="public_line" src="https://zygzh.fyey.cn/uploadFile/staticresource/st1/green/static/images/icon/line.png"></image>
- <view class="public_con_nav_name">
- <text class="mr10">陈辛同</text>
- <text>呼吸内科</text>
- </view>
- </view>
- <view class="public_info_list">
- <view class="public_info_item">
- <view class="public_info_tit">卡类型</view>
- <view class="public_info_val">就诊卡</view>
- </view>
- </view>
- <view class="public_info_foot">
- </view>
- </view>
- */
- .mr10 {
- margin-right: 10rpx;
- }
- .public_con {
- background-color: #fff;
- box-shadow: 0px 0px 40rpx 0px rgba(0, 0, 0, 0.06);
- border-radius: 24rpx;
- margin-bottom: 30rpx;
- overflow: hidden;
- }
- .public_con_nav {
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 36rpx;
- font-weight: 500;
- position: relative;
- padding: 0 30rpx;
- height: 110rpx;
- }
- .public_con_nav_name {
- font-size: 32rpx;
- font-weight: 400;
- color: rgba(0, 0, 0, 1);
- }
- .public_con_nav_tit {
- display: flex;
- align-items: center;
- }
- .public_line {
- width: 6rpx;
- height: 32rpx;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- margin: auto 0;
- }
- .public_info_list {
- padding: 0 30rpx;
- display: inline-block;
- width: 100%;
- position: relative;
- background-color: #fff;
- }
- .public_info_item {
- display: flex;
- margin: 34rpx 0;
- }
- .public_info_tit {
- width: 220rpx;
- font-size: 28rpx;
- font-family: Source Han Sans CN;
- font-weight: 400;
- color: rgba(85, 85, 85, 1);
- line-height: 40rpx;
- flex-shrink: 0;
- }
- .public_info_val {
- font-size: 28rpx;
- font-family: Source Han Sans CN;
- font-weight: 400;
- color: rgba(0, 0, 0, 1);
- max-width: 400rpx;
- align-items: flex-start;
- line-height: 40rpx;
- word-break:break-all;
- }
- .public_info_foot {
- height: 110rpx;
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- .public_icon {
- width: 50rpx;
- height: 50rpx;
- position: absolute;
- top: 0rpx;
- bottom: 0;
- left: 24rpx;
- margin: auto 0;
- }
|