| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**card的外部样式*/
- .dk-card-outer-class{
- margin: 10px 32rpx 10px 32rpx;
- margin-top: 10px;
- border-radius: 15rpx;
- box-shadow:2px 2px 5px #e5e5e6;
- }
- /**card的样式*/
- .dk-card-class{
- background: #FFFFFF;
- box-shadow: 0rpx 10rpx 20rpx rgba(225, 229, 238, 0.6);
- border-radius: 15rpx !important;
- padding: 5rpx;
- margin-bottom: 10rpx;
- }
- /**红色label**/
- .red-label,
- .red-label>view {
- color: #E4002B !important;
- font-style: normal;
- font-weight: bold;
- font-size: 14px;
- }
- .readonly-label{
- color: #95A8CB !important;
- }
- .nomal-label{
- color: #002340 !important
- }
- /**cell值颜色**/
- .dk-cell-value-class {
- text-align: left !important;
- font-size: 13px !important;
- color: #002340 !important;
- font-weight: normal;
- }
- /**cell空值颜色**/
- .dk-cell-value-empty-class{
- text-align: left !important;
- font-size: 13px !important;
- color: #95A8CB !important;
- }
- .input-rows-class{
- text-align: left !important;
- height: 200rpx !important;
- }
|