@import "config.styl"
.header
  position relative
  z-index 100
  display flex
  justify-content space-between
  padding 0.3rem
  background-color #ffffff
  
  .drop
    color #222222
    font-weight bold
    font-size 0.3rem
    
    span
      display inline-block
      transition 300ms
      
      &.rotate
        transform rotateZ(180deg)
  
  .time
    color #666666
    font-size 0.26rem
    
    .refresh
      margin-left 0.1rem
      display inline-block
      transform-origin center center
      
      &.on
        animation turn 1s linear infinite

.export
  display flex
  justify-content space-between
  padding 0 0.3rem
  padding-right 0.35rem
  margin-bottom 0.25rem
  color #666666
  font-size 0.26rem
  
  & > div
    & > span
      display inline-block
      transform rotateZ(180deg)
      margin-left 0.3em
      
      &.refresh
        margin-left 0.1rem
        display inline-block
        transform-origin center center
        
        &.on
          animation turn 1s linear infinite

.period
  font-size 0.26rem
  
  span
    transform rotateZ(0deg) !important

.count
  width 6.9rem
  height 1.4rem
  border-radius 0.1rem
  display flex
  text-align center
  margin auto
  margin-bottom 0.1rem
  
  & > div
    flex 1
    margin 0 0.05rem
    border-radius 0.1rem
    setTransition()
    
    &.on
      background-color themeColor !important
      border-radius 0.1rem
      
      .num, .desc
        color #ffffff
    
    &.filter
      background-color #ebf4fe
    
    p.num
      color #222222
      font-weight bold
      font-size 0.36rem
      margin-top 0.25rem
    
    p.desc
      width 85%
      margin auto
      line-height 1.2
      margin-top 0.1rem
      color #555555
      font-size 0.26rem

.topMenuMask
  position fixed
  z-index 2
  left 0
  right 0
  top 0
  bottom 0
  background-color rgba(15, 19, 2, 0.4)

.topMenu
  position absolute
  z-index 9
  top 100%
  left 0
  right 0
  background-color #ffffff

.menuList
  width 100%
  background-color #ffffff
  border-top 1px solid #DFDFDF
  border-bottom 1px solid #DFDFDF
  
  li
    line-height 0.8rem
    padding-left 0.28rem
    overflow hidden
    font-size 0.3rem
    width 100%
    color #666666
    setActive()
    
    &.on
      font-weight bold
      
      span
        display inline-block
    
    span
      margin-right 0.3rem
      float right
      display none
      
      i.iconfont
        font-size 0.4rem
        color themeColor
