goods-category.acss 1008 字节
Newer Older
D
devil_gong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/**
  左侧导航
*/
.left-nav {
  height: 100vh;
  background: #ececec;
  width: 230rpx;
  overflow-x: hidden;
  overflow-y: auto;
}
.left-nav .items {
  height: 120rpx;
  line-height: 120rpx;
  font-size: 34rpx;
  padding: 0 10rpx;
  text-align: center;
  color: #666;
  border-left: 3px solid #ececec;
  border-right: 3px solid #ececec;
D
devil 已提交
20
  overflow: hidden;
D
devil_gong 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
}
.left-nav .items:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
}
.nav-active {
  border-left: 3px solid #e23f36 !important;
  border-right: 3px solid #fff !important;
  color: #e23f36;
  background: #fff;
}


/**
  右侧内容
*/
.right-content {
  height: 100vh;
  width: calc( 100% - 230rpx );
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  right: 0;
D
v1.2.0  
devil_gong 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
}
.content-items {
    float: left;
    width: calc(33.33% - 20rpx);
    padding: 20rpx 10rpx;
    text-align: center;
}
.content-items .text {
    font-size: 28rpx;
    line-height: 46rpx;
}
.content-items .icon {
    width: 100%;
    height: 120rpx;
}