123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /* pages/regular_visit_details/regular_visit_details.wxss */
- .page {
- margin-bottom: 50rpx;
- }
- .picker-area {
- overflow: hidden;
- padding: 20rpx 0;
- padding-top: 0;
- }
- /* 按钮区 */
- .btn-area {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .btn-area button {
- width: 348rpx;
- height: 80rpx;
- line-height: 80rpx;
- margin: 0;
- /* border-radius: 8rpx; */
- /* color: white; */
- }
- .reject {
- color: #b4bfd0 !important;
- background: rgba(223, 228, 236, 0.5) !important;
- border-radius: 0px 4px 0px 0px;
- }
- .white {
- background: #ffffff;
- border-radius: 4px 0px 0px 0px;
- }
- .pass {
- color: #b4bfd0;
- background: linear-gradient(180deg, #6eaaff 0%, #2f6fd1 100%);
- }
- .remark-bgc {
- background: rgba(223, 228, 236, 0.3);
- border-radius: 4px;
- }
- .choose {
- height: 81rpx;
- padding-top: 24rpx;
- background: rgba(223, 228, 236, 0.5);
- /* border-radius: 0px 4px 0px 0px; */
- }
- .textarea {
- min-height: 166rpx !important;
- background: rgba(223, 228, 236, 0.3) !important;
- border-radius: 4px;
- padding: 16rpx 20rpx !important;
- }
- .sure-btn {
- margin: 56rpx 28rpx 28rpx 28rpx;
- height: 110rpx;
- line-height: 110rpx;
- color: #fff;
- background: linear-gradient(180deg, #6eaaff 0%, #2f6fd1 100%);
- border-radius: 4px;
- }
|