12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /* pages/appointReplace/index.wxss */
- page {
- --cell-vertical-padding: 12rpx;
- /* --cell-horizontal-padding: 0; */
- --cell-background-color: transparent;
- }
- .container{
- padding-bottom: 120rpx;
- }
- .bottomBtn{
- padding-top: 20rpx;
- text-align: right;
- }
- .bottomBtn button {
- margin-left: 0 !important;
- }
- .orderLoadBox > .title {
- height: 100rpx;
- line-height: 100rpx;
- font-weight: bold;
- font-size: 40rpx;
- color: #14284A;
- text-align: center;
- background: linear-gradient(180deg, #D4E1F6 0%, #FFFFFF 100%);
- }
- .orderLoadBox .dialogUser {
- height: 50vh;
- padding-top: 30rpx;
- }
- .orderLoadBox .dialogUser .saleItem {
- width: 700rpx;
- margin: 0 auto 30rpx;
- padding-bottom: 20rpx;
- border-bottom: 1px solid #eee;
- }
- .orderLoadBox .dialogUser .saleItem .title {
- font-size: 36rpx;
- display: flex;
- justify-content: space-between;
- }
- .orderLoadBox .dialogUser .saleItem .time {
- margin-top: 10rpx;
- color: #666;
- font-size: 24rpx;
- }
- /* 表单根据内容自动调整高度 */
- .radioHeight .radioHeightBx {
- width: 100%;
- }
- radio-group {
- text-align: right;
- }
- .fieldAutoHeight .van-field__body,.fieldAutoHeight .van-field__control {
- height: auto !important;
- text-align: left;
- line-height: 30px;
- }
- .radioHeight .van-field__body {
- height: 28px;
- line-height: 25px;
- }
|