67 lines
1.4 KiB
Plaintext
67 lines
1.4 KiB
Plaintext
/* packageI/invoice/invoiceOperation/invoiceOperation.wxss */
|
|
.invoiceOperation {
|
|
text-align: left;
|
|
padding: 20rpx;
|
|
}
|
|
|
|
.invoiceOperation .cell-plane {
|
|
background-color: #ffffff;
|
|
border-radius: 10rpx;
|
|
padding: 26rpx;
|
|
margin-bottom: 20rpx;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.invoiceOperation .cell-plane .van-radio {
|
|
margin-left: 50rpx;
|
|
}
|
|
|
|
.invoiceOperation .cell-plane .van-radio .van-radio__icon {
|
|
background-color: #d4d4d4;
|
|
color: #fff;
|
|
border: none;
|
|
}
|
|
|
|
.invoiceOperation .cell-plane .van-radio .van-radio__icon--checked {
|
|
background-color: #f15353;
|
|
}
|
|
|
|
.invoiceOperation .cell-plane .input-box {
|
|
padding: 25rpx 0;
|
|
}
|
|
|
|
.invoiceOperation .cell-plane .van-cell {
|
|
padding: 0;
|
|
}
|
|
|
|
.invoiceOperation .cell-plane .van-cell::after {
|
|
display: none;
|
|
}
|
|
|
|
.invoiceOperation .cell-plane .van-field__body input{
|
|
text-align: right !important;
|
|
}
|
|
|
|
.invoiceOperation .addInvoice {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 100%;
|
|
padding: 17rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: #fff;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.invoiceOperation .addInvoice .addInvoice-item{
|
|
width: 600rpx;
|
|
line-height: 76rpx;
|
|
background-color: #f15353;
|
|
border-radius: 46rpx;
|
|
color: #fff;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
|