128 lines
1.9 KiB
Plaintext
128 lines
1.9 KiB
Plaintext
/* pages/sickDetail/sickDetail.wxss */
|
|
.page{
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.content{
|
|
overflow-y: scroll;
|
|
}
|
|
.countcell{
|
|
margin: 192rpx 30rpx 0;
|
|
background:#fff;
|
|
display: flex;
|
|
padding:30rpx 20rpx;
|
|
border-radius: 10rpx;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
}
|
|
.icon{
|
|
font-size: 34rpx;
|
|
color: #666666;
|
|
}
|
|
.countcell .time{
|
|
font-size: 30rpx;
|
|
color: #666666;
|
|
margin-top: 20rpx;
|
|
}
|
|
.basiccell{
|
|
padding:23rpx 20rpx;
|
|
margin:0 30rpx;
|
|
background: #FFFFFF;
|
|
border-radius: 10rpx;
|
|
}
|
|
.infobox .title{
|
|
margin:0 30rpx;
|
|
padding:30rpx 0;
|
|
}
|
|
.namebox{
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.namebox .name{
|
|
font-size: 34rpx;
|
|
color: #3CC7C0;
|
|
}
|
|
.age{
|
|
margin-left: 30rpx;
|
|
font-size: 34rpx;
|
|
color: #666666;
|
|
}
|
|
.infocell{
|
|
font-size: 30rpx;
|
|
margin-top: 20rpx;
|
|
flex-wrap: wrap;
|
|
padding:20rpx;
|
|
display: flex;
|
|
background: #FAFAFA;
|
|
border-radius: 10rpx;
|
|
}
|
|
.infocell .cell{
|
|
flex:1;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
line-height: 60rpx;
|
|
|
|
}
|
|
.infocell .cell:nth-child(2){
|
|
text-align: center;
|
|
}
|
|
.infocell .cell:nth-child(3){
|
|
text-align: right;
|
|
}
|
|
|
|
.cell .desc{
|
|
font-size: 28rpx;
|
|
color: #666666;
|
|
}
|
|
.row{
|
|
padding:0 20rpx;
|
|
margin-top: 20rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.row.top{
|
|
align-items:flex-start
|
|
}
|
|
|
|
.row .name{
|
|
font-size: 30rpx;
|
|
flex-shrink: 0;
|
|
white-space: nowrap;
|
|
}
|
|
.row .desc{
|
|
word-break: break-all;
|
|
font-size: 28rpx;
|
|
color: #666666;
|
|
}
|
|
.row.top .desc{
|
|
margin-top: 5rpx;
|
|
}
|
|
.tip{
|
|
margin-top: 10rpx;
|
|
background: #FAFAFA;
|
|
border-radius: 10rpx;
|
|
padding:20rpx;
|
|
font-size: 26rpx;
|
|
color: #999999;
|
|
}
|
|
.img{
|
|
width:200rpx;
|
|
margin-right: 25rpx;
|
|
height:200rpx;
|
|
}
|
|
.imgtip{
|
|
margin-top: 20rpx;
|
|
}
|
|
.img:nth-child(3n){
|
|
margin-right: 0rpx;
|
|
}
|
|
.rowcell{
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.rowcell:last-child{
|
|
width:66.66%;
|
|
} |