123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- /* 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;
- margin: 20rpx auto 0;
- background: #FFFFFF;
- border-radius: 20rpx;
- padding-bottom: 20rpx;
- }
- .top {
- width: 100%;
- height: 82rpx;
- border-bottom: 1rpx solid #e4e4e4;
- }
- .top-date {
- font-size: 30rpx;
- font-weight: bold;
- color: #333333;
- margin-left: 20rpx;
- }
- .app-str {
- margin-right: 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%;
- margin-top: 20rpx;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .cancel-button {
- margin-right: 20rpx;
- background: #FFFFFF;
- color: #333333;
- }
- .action-btn {
- width: 144rpx;
- height: 60rpx;
- font-size: 26rpx;
- margin: 0;
- }
- .submit-btn {
- margin-right: 20rpx;
- }
- .cancels-btn {
- margin-right: 20rpx;
- }
- .wrapper {
- height: 100%;
- }
- .model {
- width: 540rpx;
- height: 208rpx;
- background: #FFFFFF;
- border-radius: 24rpx;
- }
- .top-title {
- font-size: 34rpx;
- font-weight: bold;
- color: #333333;
- text-align: center;
- height: 118rpx;
- line-height: 118rpx;
- border-bottom: 1rpx solid #DDDDDD;
- box-sizing:border-box;
- }
- .btn {
- width: 270rpx;
- height: 90rpx;
- box-sizing: border-box;
- font-size: 34rpx;
- color: #333333;
- }
- .w-cancel-btn {
- font-weight: 400;
- }
- .w-confirm-btn {
- border-left: 1rpx solid #DDDDDD;
- font-weight: bold;
- }
|