| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- .head {
- display: flex;
- align-items: center;
- width: 100vw;
- height: 120rpx;
- padding: 0 20rpx 0 30rpx;
- box-sizing: border-box;
- .count {
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .expand {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- .but {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- width: 80rpx;
- height: 80rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- border: 2rpx solid #CCCCCC;
- margin-left: 20rpx;
- color: #666666;
- }
- }
- }
- .item {
- position: relative;
- width: 100vw;
- background-color: #fff;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- margin-bottom: 20rpx;
- .left {
- position: absolute;
- left: 0;
- top: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 80rpx;
- height: 48rpx;
- background: #3874F6;
- border-radius: 0rpx 0rpx 16rpx 0rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: 600;
- font-size: 28rpx;
- color: #FFFFFF;
- }
- .status {
- position: absolute;
- top: 10rpx;
- right: 30rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 24rpx;
- }
- .date {
- margin-left: 70rpx;
- line-height: 34rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 24rpx;
- color: #3874F6;
- margin-top: -10rpx;
- }
- .title {
- line-height: 40rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: bold;
- font-size: 28rpx;
- color: #333333;
- margin-top: 18rpx;
- }
- .value {
- line-height: 34rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 24rpx;
- color: #333333;
- margin-top: 8rpx;
- }
- .bottom {
- width: 100%;
- border-top: 1px solid #DDDDDD;
- margin-top: 20rpx;
- padding-top: 20rpx;
- box-sizing: border-box;
- line-height: 40rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 28rpx;
- .first-line {
- display: flex;
- .label {
- display: flex;
- align-items: center;
- color: #333333;
- .iconfont {
- color: #3874F6;
- margin-left: 10rpx;
- }
- }
- .confime {
- color: #EA820A;
- margin-right: 40rpx;
- text {
- margin-right: 10rpx;
- }
- }
- .add {
- color: #3874F6;
- }
- }
- .rows {
- position: relative;
- width: 100%;
- background: #F8F9FD;
- border-radius: 8rpx;
- margin-top: 20rpx;
- padding: 20rpx;
- box-sizing: border-box;
- .right {
- display: flex;
- justify-content: center;
- align-items: center;
- position: absolute;
- top: 0;
- right: 0;
- width: 128rpx;
- height: 48rpx;
- background: #ECF0F8;
- border-radius: 0rpx 8rpx 0rpx 8rpx;
- navigator {
- font-size: 24rpx;
- color: #999;
- padding: 0 10rpx;
- }
- }
- .changedate {
- line-height: 34rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 24rpx;
- color: #3874F6;
- }
- .record {
- line-height: 34rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 24rpx;
- color: #333333;
- margin-top: 8rpx;
- }
- }
- }
- }
- .textarea {
- width: 90%;
- height: 200rpx;
- box-sizing: border-box;
- padding: 20rpx 30rpx;
- background-color: #FDF9FC;
- margin: 20rpx auto;
- border: 1rpx solid #EEECEF;
- border-radius: 8rpx;
- }
|