1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- * {
- touch-action: none;
- }
- /* 统计项样式 */
- .cr-item {
- background-color: rgb(255, 255, 0);
- display: flex;
- flex-direction: column;
- margin-bottom: 5px;
- }
- /* 统计项行样式 */
- .cr-item-row {
- display: flex;
- flex-direction: row;
- height: 20px;
- align-items: center;
- }
- /* 统计项列样式 */
- .cr-item-column {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- /* 统计项标题样式 */
- .cr-item-title {
- font-size: 14px !important;
- color: rgb(232, 183, 99);
- }
- /* 统计项值样式 */
- .cr-item-value {
- font-family: 'UnidreamLED', sans-serif !important;
- font-size: 16px !important;
- color: rgb(255, 255, 255);
- }
- /* 统计项名称样式 */
- .cr-item-name {
- flex: 1;
- }
- /* 统计项名称标题样式 */
- .cr-item-name span {
- background-color: rgb(200, 211, 251);
- display: inline-block;
- padding: 4px 4px 4px 14px;
- margin-left: 20px;
- font-size: 14px;
- width: 140px;
- font-family: 'TTTGB-Medium', sans-serif !important;
- border-radius: 0px 14px 14px 0px;
- }
- /* 统计项排序样式 */
- .cr-item-order {
- /* width: 120px; */
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: right;
- /* background-color: blue; */
- margin-right: 10px;
- }
- /* 统计项排序名称标识 */
- .cr-item-order span:nth-child(1) {
- display: inline-block;
- font-size: 14px;
- color: rgb(147, 225, 212);
- }
- /* 统计项执法率 */
- .cr-item-order span:nth-child(2) {
- display: inline-block;
- font-size: 14px;
- color: rgb(216, 126, 113);
- font-weight: bold;
- }
- /* 统计项排序数字样式 */
- .cr-item-order span:nth-child(3) {
- font-size: 14px;
- background-color: rgb(236, 201, 201);
- width: 24px;
- height: 24px;
- border-radius: 12px;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-left: 8px;
- font-family: 'UnidreamLED', sans-serif !important;
- }
|