| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- .font {
- font-family: PingFang HK;
- font-size: 30rpx;
- font-weight: 400;
- line-height: 40rpx;
- letter-spacing: 0em;
- text-align: left;
- }
- /**底部的样式*/
- .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;
- }
- /**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;
- }
- .nomal-label,
- .nomal-label>view {
- color: #95A8CB !important;
- font-size: 14px;
- }
- /**普通label*/
- .nomal-label .van-field__label {
- color: #95A8CB !important;
- font-size: 14px !important;
- }
- /**普通label*/
- .nomal-label {
- color: #95A8CB !important;
- font-size: 14px !important;
- }
- /**cell值颜色**/
- .dk-cell-value-class {
- text-align: right !important;
- font-size: 13px !important;
- color: #95A8CB !important;
- font-weight: normal;
- }
- /**cell空值颜色**/
- .dk-cell-value-empty-class {
- text-align: right !important;
- font-size: 13px !important;
- color: #95A8CB !important;
- }
- /**cell值颜色**/
- .dk-cell-value-class-switch {
- text-align: right !important;
- font-size: 14px !important;
- color: #3b3b3b !important;
- font-weight: normal;
- display: flex;
- width: 100%;
- padding: 0 30rpx;
- margin: 15rpx 0;
- }
- .label-class {
- min-width: 15em !important;
- }
|