171 lines
2.5 KiB
Plaintext
171 lines
2.5 KiB
Plaintext
/* pages/myPrescript/myPrescript.wxss */
|
|
.page{
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.data{
|
|
flex:1;
|
|
}
|
|
.desc .textdesc:after{
|
|
content:';'
|
|
}
|
|
.desc .textdesc:last-child:after{
|
|
content:''
|
|
}
|
|
.conbox{
|
|
margin-top: 172rpx;
|
|
overflow-y: scroll;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
.nonedata{
|
|
min-height:620rpx;
|
|
}
|
|
.cell .title{
|
|
display: flex;
|
|
height: 112rpx;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding:0 32rpx;
|
|
background: #FFFFFF;
|
|
border-bottom: 1rpx solid #E3E4E5;
|
|
}
|
|
.form{
|
|
background: #FFFFFF;
|
|
padding:30rpx 32rpx;
|
|
border-bottom: 1rpx solid #E3E4E5;
|
|
}
|
|
.cell:last-child .form{
|
|
border-bottom:none;
|
|
}
|
|
.title .status{
|
|
color: #333;
|
|
font-size: 28rpx;
|
|
}
|
|
.title .status.outdate{
|
|
color: #EF4F20;
|
|
font-size: 28rpx;
|
|
}
|
|
.row .outdate{
|
|
color: #333;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.title .date{
|
|
color:#000;
|
|
font-size: 34rpx;
|
|
}
|
|
.form .row{
|
|
display: flex;
|
|
line-height: 52rpx;
|
|
}
|
|
.row .unit{
|
|
word-break: break-all;
|
|
color:#666;
|
|
font-weight: normal;
|
|
display: inline;
|
|
}
|
|
.single .name{
|
|
display: inline;
|
|
white-space: nowrap;
|
|
}
|
|
.row .bar{
|
|
margin:0 8rpx 1rpx;
|
|
color:#333;
|
|
}
|
|
.single{
|
|
width:100%;
|
|
display: inline;
|
|
position: relative;
|
|
|
|
margin-left: 15rpx;
|
|
}
|
|
.single:first-child{
|
|
margin-left: 0;
|
|
}
|
|
.unit{
|
|
padding-right:15rpx;
|
|
}
|
|
.unit:first-child{
|
|
margin-left: 0;
|
|
}
|
|
|
|
.unit::after{
|
|
padding-left:15rpx ;
|
|
content:"|";
|
|
margin-top: -3rpx;
|
|
color:#333;
|
|
position: absolute;
|
|
}
|
|
.single:last-child .unit::after{
|
|
display: none;
|
|
}
|
|
.row .name{
|
|
color:#333;
|
|
font-size: 28rpx;
|
|
display: flex;
|
|
font-weight:600;
|
|
align-items: baseline;
|
|
justify-content: space-between;
|
|
width:114rpx;
|
|
}
|
|
.row .dot{
|
|
display: flex;
|
|
align-items: baseline;
|
|
|
|
font-weight:600;
|
|
}
|
|
.row .desc{
|
|
align-items: baseline;
|
|
word-break: break-all;
|
|
color:#333;
|
|
flex:1;
|
|
display:inline;
|
|
font-size: 28rpx;
|
|
|
|
|
|
}
|
|
.row .look{
|
|
color:#3CC7C0;
|
|
text-decoration: underline;
|
|
}
|
|
.btnbox{
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
font-size: 26rpx;
|
|
margin-top: 34rpx;
|
|
}
|
|
.btnbox .btn{
|
|
margin-left: 20rpx;
|
|
padding:0 26rpx;
|
|
height: 58rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 6rpx;
|
|
}
|
|
.btnbox .btn:first-child{
|
|
margin-left: 0;
|
|
}
|
|
.btnbox .del{
|
|
background: #F8F8F8;
|
|
color: #353535;
|
|
border: 1rpx solid rgba(5,5,5,0.1);
|
|
}
|
|
.btnbox .lookdetail{
|
|
background: #3CC7C0;
|
|
color:#fff;
|
|
border: 1rpx solid #3CC7C0;
|
|
}
|
|
.btnbox .pay{
|
|
|
|
color:#fff;
|
|
background: #ED9C00;
|
|
border: 1rpx solid #ED9C00;
|
|
}
|
|
.btnbox .fuzhen{
|
|
|
|
color:#fff;
|
|
background: #ED9C00;
|
|
border: 1rpx solid #ED9C00;
|
|
}
|