.multipleimage_outer {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 5px;
  width: 100%;
  height: 100%;
}

.left_inner {
  box-sizing: border-box;
  width: 110px;
  height: 100%;
  padding: 5px;
  overflow: hidden;
  overflow-y: auto;
  background-color: #fafafa;
}

.right_inner {
  overflow: hidden;
  flex: 1;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 5px;
  margin-left: 10px;
  background-color: #fafafa;
}

.album_item {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 30px;
  padding: 0 5px;
  cursor: pointer;
}

.album_item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.album_item_active {
  /*background-color: #ccc;*/
  color: #4d6bf8;
}

.list_inner {
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
  height: 220px;
}

.image_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.image_item {
  position: relative;
  box-sizing: border-box;
  width: 90px;
  height: 120px;
  margin: 5px;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
}

.image_item .image_box {
  width: 100%;
  height: 95px;
  overflow: hidden;
}

.image_item .image_box img {
  width: 100%;
  height: 100%;
}

.image_item .image_name {
  padding: 0 5px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 5px;
  font-size: 10px;
}

.image_item .active_index {
  overflow: hidden;
  position: absolute;
  top: 2px;
  right: 2px;
  display: none;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #4d6bf8;
  color: #fff;
  transform: scale(0.7);
}

.image_item_active {
  border-color: #4d6bf8;
}

.btn_box {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.btn_box .all_box {
  display: flex;
  align-items: center;
}

.btn_box .selected_count {
  font-size: 14px;
  color: #333;
  margin-left: 15px;
}
