| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /**底部的样式*/
- .bottom-class{
- position: fixed;
- bottom: 20rpx;
- width: 100%;
- align-items: center;
- justify-content: center;
- border-top: 2rpx solid #efefef;
- z-index: 2;
- display: flex;
- }
- /**底部保存按钮的样式*/
- .save-button-class{
- width: 640rpx;
- background: #1B365D !important;
- border-radius: 15rpx !important;
- color:#fff !important;
- font-size: 16px !important;
- font-weight: 500 !important;
- }
-
- .task-progress {
- margin-left: 30rpx;
- width: calc(100% - 60rpx);
- background: #FFFFFF;
- box-shadow: 0px 10px 20px rgba(225, 229, 238, 0.6);
- border-radius: 15rpx;
- margin-top: 30rpx;
- margin-bottom: -15rpx;
- }
-
- .task-progress-header {
- display: flex;
- background: linear-gradient(90.12deg, #9BCBEB 0.13%, #D9F0FF 99.92%);
- padding: 24rpx;
- border-radius: 15rpx 15rpx 0px 0px;
- align-items: center;
- justify-content: space-between;
- }
-
- .task-progress-header-name {
- font-style: normal;
- font-weight: 500;
- font-size: 16px;
- color: #FFFFFF;
- font-family: 'PingFang SC';
- }
|