| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /**底部的样式*/
- .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: #3E69F6 !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(91.65deg, #D9E6FF 3.83%, #F5F9FF 55.06%);
- 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: #002340;
- font-family: 'PingFang SC';
- }
- .helper-view {
- margin-left: 34rpx;
- width: calc(100% - 68rpx - 48rpx);
- background: #FFFFFF;
- box-shadow: 0px 10px 20px rgba(225, 229, 238, 0.6);
- border-radius: 15rpx;
- padding: 24rpx;
- margin-top: 10rpx;
- }
- .helper-view-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .helper-view-header-name {
- font-size: 18px;
- }
- .help-view-content {
- font-style: normal;
- font-weight: 400;
- font-size: 13px;
- color: #95A8CB;
- font-family: 'PingFang SC';
- }
- .help-view-content-item-text {
- margin-top: 30rpx;
- }
- .help-view-content-item-text-end {
- display: flex;
- justify-content: left;
- align-items: center;
- }
|