index.init.css 3.1 KB
Newer Older
D
devil_gong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

/**
 * 基础
 */
html, body {
    background: #f5f5f5;
}
.echarts-container, .echarts-combination-container-2 li {
    width: 100%;
    background: #fff !important;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 3px;
    overflow: hidden;;
}
.echarts-container, .echarts-combination-container-2 {
    position: relative;
}
.echarts-container {
    margin-bottom: 20px;
}

.echarts-container .echarts-title {
    margin-left: 10px;
}
.echarts-container .echarts-title .icon {
G
gongfuxiang 已提交
27
    background: #3f82fe;
D
devil_gong 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
    display: block;
    width: 5px;
    height: 16px;
    position: absolute;
    left: 10px;
    top: 13px;
}
.echarts-container .echarts-title .title {
    color: #666;
    font-size: 14px;
    margin-left: 5px;
}
@media only screen and (min-width: 641px) {
    .echarts-combination-container-2 {
        margin-bottom: 20px;
    }
    .echarts-combination-container-2 li {
        width: calc(50% - 10px);
    }
    .echarts-combination-container-2 li:nth-child(1) {
        float: left;
        top: 0;
        left: 0;
    }
    .echarts-combination-container-2 li:nth-child(2) {
        float: right;
        top: 0;
        right: 0;
    }
}
@media only screen and (max-width: 641px) {
    .echarts-combination-container-2 li {
        margin-bottom: 20px;
    }
}


/**
 * 基础数据
 */
.shopxo-base li {
    padding: 20px;
}
.shopxo-base li .li-content {
    padding: 10px;
    border-radius: 3px;
}
.shopxo-base li:nth-child(1) .li-content {
    background: #00BCD4;
}
.shopxo-base li:nth-child(2) .li-content {
    background: #FF9800;
}
.shopxo-base li:nth-child(3) .li-content {
    background: #e63a75;
}
.shopxo-base li:nth-child(4) .li-content {
    background: #9c40ac;
}
.shopxo-base li .name {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}
G
gongfuxiang 已提交
93
.shopxo-base li .li-content .total {
D
devil_gong 已提交
94 95 96
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 26px;
G
gongfuxiang 已提交
97 98 99 100 101 102 103
    font-weight: 700;
}
.shopxo-base li .li-content p, .shopxo-base li .li-content .yesterday, .shopxo-base li .li-content .today {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
D
devil_gong 已提交
104
}
G
gongfuxiang 已提交
105
.shopxo-base li .li-content .yesterday, .shopxo-base li .li-content .today {
D
devil_gong 已提交
106 107 108
    color: #f0f0f0;
    font-size: 12px;
}
G
gongfuxiang 已提交
109
.shopxo-base li .li-content .yesterday {
D
devil_gong 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
    padding-bottom: 5px;
}
@media only screen and (max-width: 641px) {
    .shopxo-base li:nth-child(1){
        padding: 10px 5px 5px 0;
    }
    .shopxo-base li:nth-child(2){
        padding: 10px 0 5px 5px;
    }
    .shopxo-base li:nth-child(3){
        padding: 5px 5px 0 0;
    }
    .shopxo-base li:nth-child(4){
        padding: 5px 0 0 5px;
    }
}

/**
 * 支付方式
 */
#echarts-order-pay-type {
    margin-top: 10px;
    height: 400px;
}

/**
 * 热销商品
 */
#echarts-goods-hot {
    margin-top: 10px;
    height: 400px;
}

/**
 * 订单交易
 */
#echarts-order-trading {
    margin-top: 10px;
    height: 400px;
}

/**
 * 系统信息
 */
.dl-content {
    margin: 10px 0 0 0;
}
.dl-content dt, .dl-content dd {
    line-height: 22px;
    min-height: 30px;
}
.dl-content dd:last-child {
    border-bottom: 0;
}