/*
* @Author: zhouningyi
* @Date: 2016-12-26 11:55:57
*/

.z_control-container, .z_control-name, .z_control-body, .z_control-end, .z_control-depth-space{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.z_control-container{
  width: 100%;
  justify-content: space-around;
  transition: opacity 0.3s, color 0.3s, background 0.3s, background-color 0.3s;
}

.z_control-container:hover{
  opacity: 1;
  cursor: pointer;
  overflow: visible;
}

.z_control-depth-space{
  width: 1px;
  background: rgba(0, 0, 0, 0);
  height: 100%;
}

.z_desc_incon{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
}

.z_name_wrapper{
  display: flex;
  justify-content: flex-start;
  align-items: center
}

.z_control-name{
  width: 1px;
  max-width: 80px;
  flex-grow: 2.5;
  font-size: 12px;
  justify-content: flex-start;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  text-overflow:ellipsis;
  flex-wrap: nowrap;
}

.z_control-body{
  width: 1px;
  flex-grow: 8;
  height: 100%;
  justify-content: center;
}

.z_control-end{
  transition: opacity 0.3s, color 0.3s, background 0.3s, background-color 0.3s;
  flex-grow: 1;
  width: 1px;
  min-width: 40px;
  min-height: 100%;
  pointer-events: auto;
  justify-content: center;
  align-items: center;
  // border-left: 1px solid rgba(150, 150, 150, 0.2);
}

.z_control-end:hover{
}