12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /* pages/myAppointment/myAppointment.wxss */
- .myappoint-content {
- width: 100%;
- height: 100%;
- overflow-y: auto;
- background-color: #f7f7f7;
- }
- .nav-header {
- width: 100%;
- height: 88rpx;
- background-color: #fff;
- }
- .nav-item {
- width: 230rpx;
- height: 100%;
- font-size: 30rpx;
- font-weight: 400;
- color: #999999;
- }
- .nav-item-active {
- font-weight: bold;
- color: var(--maincolor);
- }
- .nodate {
- width: 100%;
- height: calc(100% - 88rpx);
- margin-top: 250rpx;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- }
- .nodate-img {
- width: 450rpx;
- height: 400rpx;
- }
- .nodate-text {
- font-size: 26rpx;
- font-weight: 400;
- color: #999999;
- margin-top: 20rpx;
- }
- .data-item {
- width: 690rpx;
- height: 352rpx;
- margin: 20rpx auto 0;
- background: #FFFFFF;
- border-radius: 20rpx;
- }
- .top {
- width: 100%;
- height: 82rpx;
- border-bottom: 1rpx solid #e4e4e4;
- }
- .top-date {
- font-size: 30rpx;
- font-weight: bold;
- color: #333333;
- margin-left: 20rpx;
- }
- .status {
- font-size: 26rpx;
- font-weight: 400;
- margin-right: 20rpx;
- color: var(--maincolor);
- }
- .s-cancel {
- color: #999;
- }
- s-done {
- color: #333;
- }
- .info-item {
- margin-top: 20rpx;
- margin-left: 20rpx;
- font-size: 26rpx;
- font-weight: 400;
- color: #333333;
- }
- .bototm {
- width: 100%;
- height: 60rpx;
- margin-top: 20rpx;
- display: flex;
- justify-content: flex-end;
- }
- .cancel-button {
- width: 144rpx;
- height: 60rpx;
- margin-right: 20rpx;
- background: #FFFFFF;
- border-radius: 10rpx;
- border: 1rpx solid #333333;
- font-size: 26rpx;
- font-weight: 400;
- color: #333333;
- }
|