| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- /* pages/my-apply/my-apply.wxss */
- page {
- background: #F0F1F2;
- }
- .cell {
- width: 750rpx;
- height: 258rpx;
- padding: 30rpx;
- box-sizing: border-box;
- background: #fff;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- margin-top: 20rpx;
- }
- .info {
- display: flex;
- justify-content: space-between;
- }
- .name {
- flex: 1;
- color: #31364c;
- font-size: 34rpx;
- display: flex;
- align-items: center;
- }
- .name-content {
- max-width: 325rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .icon {
- height: 34rpx;
- width: 100rpx;
- font-size: 22rpx;
- text-align: center;
- line-height: 34rpx;
- color: #fff;
- background: #888A8E;
- border-radius: 10rpx;
- margin-left: 15rpx;
- }
- .money {
- color: #3243bd;
- font-size: 34rpx;
- max-width: 265rpx;
- text-align: right;
- }
- .month {
- font-size: 24rpx;
- }
- .midden {
- font-size: 26rpx;
- color: #888a8e;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .bottom view {
- display: flex;
- align-items: center;
- }
- .company {
- color: #31364c;
- font-size: 28rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .bottom {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .address {
- height: 48rpx;
- font-size: 24rpx;
- color: #535768;
- padding: 0 15rpx;
- box-sizing: border-box;
- background: #F0F1F2;
- border-radius: 10rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .address image {
- height: 22rpx;
- width: 18rpx;
- margin-right: 10rpx;
- }
- .status {
- height: 48rpx;
- font-size: 24rpx;
- padding: 5rpx 15rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .status image {
- height: 18rpx;
- width: 18rpx;
- margin-right: 10rpx;
- }
- .underway {
- font-size: #a67b0c;
- background: #fff6dd;
- }
- .already {
- font-size: #669bb4;
- background: #eef8fc;
- }
- .out {
- font-size: #888a8e;
- background: #F0F1F2;
- }
- .cancel-enrollment {
- width: 136rpx;
- height: 48rpx;
- font-size: 24rpx;
- color: rgba(50, 67, 189, 1);
- border-radius: 10rpx;
- border: 2rpx solid rgba(50, 67, 189, 1);
- display: flex;
- align-items: center;
- justify-content: center;
- }
|