page .anyui-collapseitem-titlewrap {
  display: flex;
  padding: 20rpx 30rpx;
  box-sizing: border-box;
  width: 100%;
  font-size: 25rpx;
  line-height: 50rpx;
  background: #fff;
  overflow: hidden;
  border-bottom: 1px solid #eee;
  color: #323233;
  align-items: center;
  flex-direction: row;
}

page .anyui-collapseitem-title {
  font-size: 32rpx;
  font-weight: bold;
  flex: 1;
  padding: 5rpx 10rpx;
}

page .anyui-collapseitem-linkicon-down {
  margin-right: 10rpx;
  width: 22rpx;
  height: 22rpx;
  border-top: 2rpx solid #666666;
  border-right: 2rpx solid #666666;
  font-size: 28rpx;
  transition: transform 0.3;
  transform-origin: center;
  transform: rotate(135deg);
}

page .anyui-collapseitem-linkicon-up {
  margin-right: 10rpx;
  width: 22rpx;
  height: 22rpx;
  border-top: 2rpx solid #666666;
  border-right: 2rpx solid #666666;
  font-size: 28rpx;
  transition: transform 0.3;
  transform-origin: center;
  transform: rotate(-45deg);
}

page .anyui-collapseitem-disable {
  color: #c8c9cc;
}

page .anyui-collapseitem-contentwrap {
  padding: 0 30rpx;
  border-bottom: 1px solid #eee;
  background: #fff;
  color: #969799;
  font-size: 23rpx;
  line-height: 33rpx;
  align-items: center;
  min-height: 80rpx;
}

page .anyui-collapseitem-contentwrap-show {
  display: block;
}