#form_list_dialog{
  overflow-x: hidden;
  /* overflow-y: hidden; */
}
#s_form_save:hover{
  opacity: 0.8;
  cursor: pointer
}
#s_form_save:active{
  opacity: 0.6;
}
.myxp_container{
  /* width: 800px; */
  height: 750px;
  /* padding: 12px 16px; */
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  /* overflow-x: hidden; */
}

.myxp_tabs{
  /* width: 100%; */
  padding-bottom: 20px;
  display: flex;
}
.myxp_tabs_item{
  position: relative;
  font-size: 13px;
  margin-right: 16px;
  color: #333;
}
.myxp_tabs_item_current::before{
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: #afc7e7;
  border-radius: 3px;
}

.myxp_tabs_item:hover{
  cursor: pointer
}
.myxp_tabs_item:active{
  opacity: 0.8;
}

.myxp_list{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.myxp_Empty{
  width: 100%;
  height: 500px;
  /* line-height: 500px; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ccc;
  font-size: 12px;
}
.myxp_item{
  /* padding-left: 10px; */
  /* width: 100%; */
  /* height: 32px; */
  padding: 4px 0;
  min-height: 34px;
  font-size: 11px;
  line-height: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fffff ;
  color: #333;
  border-bottom: 1px dashed #eeeeee;
}
.myxp_item_tip{
  height: 32px;
  font-size: 11px;
  line-height: 32px;
  text-align: center;
  color: #9E9E9E;
}
.myxp_text{
  padding-left: 12px;
  width: 68%;
  line-height: 18px;
  font-size: 11px;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}
.myxp_item:hover{
  background: #F4F6FF;
}
.myxp_button_box{
  margin-left: 12px;
  padding-right: 12px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.myxp_search_button{
  background-color: aquamarine;
}