#onlineHanlerPop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#onlineHanlerPop .mask {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

#onlineHanlerPop .inner {
  position: fixed;
  width: 70%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-height: 400px;
  border-radius: 8px;
  padding: 10px 20px;
  background-color: #fff;
  z-index: 25;
}

#onlineHanlerPop .inner .row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
  border-bottom: 2px solid #ccc;
  margin-bottom: 10px;
}

#onlineHanlerPop .inner .row1 h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

#onlineHanlerPop .inner .row1 .closeIconBox {
  width: 22px;
  height: 22px;
}

#onlineHanlerPop .inner .row1 .closeIconBox svg {
  cursor: pointer;
  transition: 0.3s;
}

#onlineHanlerPop .inner .row1 .closeIconBox svg:hover {
  transform: rotate(180deg);
}

#onlineHanlerPop .detailPositions {
  display: flex;
  min-height: 200px;
  flex-direction: column;
  margin-bottom: 10px;
  border-bottom: 1px dashed #eee;
}

#onlineHanlerPop .detailPositions .allPlaces {
  display: flex;
  flex-wrap: wrap;
}

#onlineHanlerPop .detailPositions .allPlaces li {
  padding: 10px !important;
  width: 136px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#onlineHanlerPop .detailPositions .allPlaces a {
  padding: 6px 12px;
  font-size: 14px;
}

#onlineHanlerPop .detailPositions .allPlaces a:hover {
  background: #e8e8e8;
  color: #006eab;
  font-weight: bold;
}

#onlineHanlerPop .detailPositions .allPlaces .active {
  color: #4293f4;
  border: 1px solid #4293f4;
  padding: 5px 12px;
  position: relative;
  background-color: #fff;
}

#onlineHanlerPop .detailPositions .allPlaces .active::before {
  content: "";
  border-color: transparent #4293f4 #4293f4 transparent;
  border-style: solid;
  border-width: 10px;
  position: absolute;
  right: 0;
  bottom: 0;
}

#onlineHanlerPop .detailPositions .allPlaces .active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  font-style: normal;
  line-height: 1;
  width: 12px;
  height: 12px;
  background: url(/hnywtb/service/onlineHandlerPop/image/selectPlaceIcon.png) center center no-repeat;
}

#onlineHanlerPop .detailPositions .breadcrumbContainer {
  display: flex;
  height: 23px;
  line-height: 23px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #eee;
}

#onlineHanlerPop .detailPositions .breadcrumbContainer li {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

#onlineHanlerPop .detailPositions .breadcrumbContainer li a {
  font-weight: bold;
  font-size: 16px;
}

#onlineHanlerPop .detailPositions .breadcrumbContainer li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 100%;
  background: url(/hnywtb/service/onlineHandlerPop/image/breadArrow.png) no-repeat center;
  margin-left: 10px;
}

#onlineHanlerPop .detailPositions .placeListContainer {
  margin-top: 10px;
  margin-left: -18px;
  max-height: 200px;
  overflow-y: auto;
}

#onlineHanlerPop .detailPositions .placeListContainer::-webkit-scrollbar {
  display: none;
}

#onlineHanlerPop .fileMessage {
  margin-top: 10px;
}

#onlineHanlerPop .fileMessage h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#onlineHanlerPop .fileMessage .name {
  font-size: 14px;
  color: #333;
  cursor: pointer;
  padding: 6px 10px;
  border: 1px solid #4293f4;
  color: #4293f4;
  position: relative;
  display: inline-block;
}

#onlineHanlerPop .fileMessage .name::before {
  content: "";
  border-color: transparent #4293f4 #4293f4 transparent;
  border-style: solid;
  border-width: 10px;
  position: absolute;
  right: 0;
  bottom: 0;
}

#onlineHanlerPop .fileMessage .name::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  font-style: normal;
  line-height: 1;
  width: 12px;
  height: 12px;
  background: url(/hnywtb/service/onlineHandlerPop/image/selectPlaceIcon.png) center center no-repeat;
}

#onlineHanlerPop .operationBtn {
  text-align: right;
  margin-top: 10px;
}

#onlineHanlerPop .operationBtn button {
  padding: 0 20px;
  color: #4293f4;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  background-color: #ebf4fb;
  margin-left: 6px;
}

#onlineHanlerPop .operationBtn button:hover {
  background-color: #4293f4;
  font-weight: bold;
  color: #fff;
}

#onlineHanlerPop .operationBtn .disabledBtn {
  background-color: #cccccc;
  color: #fff;
  cursor: not-allowed;
}

#onlineHanlerPop .operationBtn .disabledBtn:hover {
  background-color: #cccccc;
  color: #fff;
  cursor: not-allowed;
}
