/* 列表组件 */
.list {
  background-color: #FFFFFF;
  border-radius: 8rpx;
  overflow: hidden;
}

.list-item {
  display: flex;
  align-items: center;
  padding: 24rpx 30rpx;
  border-bottom: 1rpx solid #EEEEEE;
}

.list-item:last-child {
  border-bottom: none;
}

.list-item-content { flex: 1; }
.list-item-extra { color: #999999; font-size: 28rpx; } 