/*文本溢出变...*/
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.loading {
  -webkit-animation-name: loading;
          animation-name: loading;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-duration: 200ms;
          animation-duration: 200ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.page-staff {
  padding-bottom: 100px;
  /*  &-nav{
    &-li{
      flex-shrink: 0;

      margin-right:20px;
      box-sizing: border-box;
      padding:0 15px;
      height:@headH;
      border-top:8px solid transparent;
      line-height:@headH - 8px;
      font-size:18px;
      color:#333;
      cursor: pointer;
      &:hover,&.active{
        border-top-color:@primaryColor;
      }
      &:last-child{
        margin-right:0;
      }
    }
  }*/
}
.page-staff-head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  /* -webkit-justify-content: space-between; */
      /* -ms-flex-pack: justify; */
          /* justify-content: space-between; */
  margin: 0 auto;
  box-sizing: border-box;
  height: 100px;
  width: 1200px;
  padding: 0 60px;
  background: #fff;
}
.page-staff-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
          margin: 0 auto;
  box-sizing: border-box;
  width: 1200px;
  background: #fff;
}
.page-staff-content table{
  width: 100%;
  border-collapse: collapse;
}
.page-staff-content th {
  background-color: #99aebf;
  color: #fff;
  padding: 10px 0;
  border: 1px solid #eee;
}
.page-staff-content td {
  text-align: center;
  color: #2f2f2f;
  border: 1px solid #eee;
  padding: 0 10px;
}
.page-staff-content img {
  width: 120px;
  height: 120px;
  margin: 10px 0;
}
.drop-down-wrapper {
  position: relative;
  box-sizing: border-box;
  min-width: 280px;
  height: 48px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease-out;
  font-size: 16px;
  background: #fff;
  z-index: 1;
}
.drop-down-wrapper:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  border-width: 0 6px 6px;
  border-style: solid;
  border-color: #4cbeff transparent;
  transition: all 0.3s ease-out;
}
.drop-down-wrapper.active {
  border-radius: 5px 5px 0 0;
  background: #44a2f2;
  box-shadow: none;
  border-bottom: none;
}
.drop-down-wrapper.active:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  border-color: #82d1ff transparent;
}
.drop-down-select {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  padding: 8px 10px;
  line-height: 30px;
  color: #000;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.drop-down-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 5px 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-top: none;
  border-bottom: none;
  list-style: none;
  transition: all 0.3s ease-out;
  height: 0;
  overflow-y: scroll;
}
.drop-down-option {
  display: block;
  box-sizing: border-box;
  padding: 8px 10px;
  color: #333;
  transition: all 0.3s ease-out;
  border-bottom: 1px solid #e6e8ea;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.drop-down-option:hover {
  color: #44a2f2;
  font-weight: 700;
}
.drop-down-wrapper.active .drop-down-select {
  color: #fff;
}
.drop-down-wrapper.active .drop-down-box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  height: 204px;
}
