Analysis.less 2.8 KB
Newer Older
1 2 3 4 5
@import "~antd/lib/style/themes/default.less";
@import "../../utils/utils.less";

.iconGroup {
  i {
nikogu's avatar
nikogu committed
6 7
    transition: color 0.32s;
    color: @text-color-secondary;
8 9
    cursor: pointer;
    margin-left: 16px;
nikogu's avatar
nikogu committed
10 11 12
    &:hover {
      color: @text-color;
    }
13 14
  }
}
niko's avatar
niko committed
15

16
.rankingList {
afc163's avatar
afc163 committed
17 18 19
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
  li {
    .clearfix();
    margin-top: 16px;
    span {
      color: @text-color;
      font-size: 14px;
      line-height: 22px;
    }
    span:first-child {
      background-color: @background-color-base;
      border-radius: 20px;
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      margin-right: 24px;
      height: 20px;
      line-height: 20px;
      width: 20px;
      text-align: center;
    }
    span.active {
niko's avatar
niko committed
41 42
      //background-color: @primary-color;
      background-color: #314659;
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
      color: #fff;
    }
    span:last-child {
      float: right;
    }
  }
}

.salesExtra {
  display: inline-block;
  margin-right: 24px;
  a {
    color: @text-color;
    margin-left: 24px;
    &:hover {
      color: @primary-color;
    }
afc163's avatar
afc163 committed
60 61 62
    &.currentDate {
      color: @primary-color;
    }
63 64 65 66
  }
}

.salesCard {
67
  .salesBar {
niko's avatar
niko committed
68
    padding: 0 0 32px 32px;
69 70
  }
  .salesRank {
niko's avatar
niko committed
71
    padding: 0 32px 32px 72px;
72
  }
73 74
  :global {
    .ant-tabs-bar {
niko's avatar
niko committed
75
      padding-left: 16px;
76 77 78 79 80 81 82 83 84 85 86 87 88
      .ant-tabs-nav .ant-tabs-tab {
        padding-top: 16px;
        padding-bottom: 14px;
        line-height: 24px;
      }
    }
    .ant-tabs-extra-content {
      padding-right: 24px;
      line-height: 55px;
    }
  }
}

niko's avatar
niko committed
89 90 91 92 93 94 95
.salesCard {
  :global {
    .ant-card-head {
      position: relative;
    }
  }
}
niko's avatar
niko committed
96

niko's avatar
niko committed
97
.salesCardExtra {
niko's avatar
niko committed
98
  height: 68px;
niko's avatar
niko committed
99
}
niko's avatar
niko committed
100

niko's avatar
niko committed
101 102 103 104 105 106 107 108
.salesTypeRadio {
  position: absolute;
  left: 24px;
  bottom: 15px;
}

.offlineCard {
  :global {
afc163's avatar
afc163 committed
109 110 111
    .ant-tabs-ink-bar {
      bottom: auto;
    }
niko's avatar
niko committed
112 113 114
    .ant-tabs-bar {
      border-bottom: none;
    }
niko's avatar
niko committed
115 116 117 118 119 120 121 122 123 124 125 126
    .ant-tabs-nav-container-scrolling {
      padding-left: 40px;
      padding-right: 40px;
    }
    .ant-tabs-tab-prev-icon:before {
      position: relative;
      left: 6px;
    }
    .ant-tabs-tab-next-icon:before {
      position: relative;
      right: 6px;
    }
niko's avatar
niko committed
127
  }
afc163's avatar
afc163 committed
128 129 130 131 132 133 134 135 136

  :global(.ant-tabs-tab-active) h4 {
    color: @primary-color;
  }
}

td.alignRight,
th.alignRight {
  text-align: right!important;
niko's avatar
niko committed
137 138
}

afc163's avatar
afc163 committed
139
.trendText {
偏右's avatar
偏右 committed
140 141 142 143
  margin-left: 8px;
  color: @heading-color;
}

144
@media screen and (max-width: @screen-lg) {
145 146 147
  .salesExtra {
    display: none;
  }
niko's avatar
niko committed
148

149 150 151 152 153 154 155 156 157
  .rankingList {
    li {
      span:first-child {
        margin-right: 8px;
      }
    }
  }
}

afc163's avatar
afc163 committed
158 159 160
@media screen and (max-width: @screen-md) {
  .rankingTitle {
    margin-top: 16px;
161
  }
niko's avatar
niko committed
162

afc163's avatar
afc163 committed
163 164
  .salesCard .salesBar {
    padding: 16px;
niko's avatar
niko committed
165
  }
afc163's avatar
afc163 committed
166 167 168
}

@media screen and (max-width: @screen-sm) {
169
  .salesExtraWrap {
afc163's avatar
afc163 committed
170
    display: none;
171
  }
niko's avatar
niko committed
172

173 174 175 176 177 178 179 180
  .salesCard {
    :global {
      .ant-tabs-content {
        padding-top: 30px;
      }
    }
  }
}