.next-menu .next-menu-submenu-item:hover {
  background: #fff;
}

.next-menu .next-menu-submenu-item-popup {
  position: relative;
  z-index: 2;
  padding: 0;
}

.next-menu .next-menu-submenu-item-popup.outside {
  position: static;
}

.next-menu .next-menu-submenu-item-popup.outside>.next-menu {
  bottom: -1px;
  top: -1px;
}

.next-menu .next-menu-submenu-item-popup>.next-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

.next-menu .next-menu-submenu-item-popup .next-menu-submenu-title {
  background: #FFFFFF;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.next-menu .next-menu-submenu-item-popup.opened>.next-menu-submenu-title {
  background: #F2F3F7;
}

.next-menu-submenu-title {
  padding: 0 20px;
  font-size: 14px;
  position: relative;
  background: #FFFFFF;
  color: #333333;
}

.next-menu-submenu-title:hover .next-icon-arrow-down {
  color: #CCCCCC;
}

.next-menu-submenu-title .next-icon-arrow-down, .next-menu-submenu-title .next-icon-arrow-up, .next-menu-submenu-title .next-icon-arrow-right {
  position: absolute;
  right: 10px;
  top: 0;
  color: #CCCCCC;
}

.next-menu-submenu-title .next-icon-arrow-down:before, .next-menu-submenu-title .next-icon-arrow-up:before, .next-menu-submenu-title .next-icon-arrow-right:before {
  width: 12px;
  font-size: 12px;
  line-height: inherit;
}

.next-menu-group .next-menu {
  border: none;
  box-shadow: none;
  padding: 0;
}

.next-menu-group-title {
  padding: 0 12px;
  color: #999999;
}

.next-menu-cascade .next-menu {
  display: inline-block;
  width: 180px;
}

.next-input {
  box-sizing: border-box;
  display: inline-table;
  border-collapse: separate;
  overflow: visible;
  border: 1px solid #E6E7EB;
  -webkit-transition: border 0.3s ease 0.1s;
  transition: border 0.3s ease 0.1s;
  width: 200px;
  border-spacing: 0;
}

.next-input *, .next-input *:before, .next-input *:after {
  box-sizing: border-box;
}

.next-input input {
  height: 100%;
  /* 去除autofill黄色背景 */
}

.next-input input[type="reset"], .next-input input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

.next-input input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.next-input input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #FFFFFF inset;
}

.next-input textarea {
  resize: none;
}

.next-input input, .next-input textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 0;
  font-weight: normal;
  vertical-align: baseline;
  background-color: #FFFFFF;
}

.next-input input::-moz-placeholder, .next-input textarea::-moz-placeholder {
  color: #999999;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

.next-input input:-ms-input-placeholder, .next-input textarea:-ms-input-placeholder {
  color: #999999;
}

.next-input input::-webkit-input-placeholder, .next-input textarea::-webkit-input-placeholder {
  color: #999999;
}

.next-input input::-ms-clear, .next-input textarea::-ms-clear {
  display: none;
}

.next-input.next-input-single {
  border-color: #C4C6CF;
}

.next-input.next-input-single:hover {
  border-color: #A0A2AD;
}

.next-input.next-input-single.focus {
  border-color: #2192D9;
}

.next-input.next-input-single input {
  color: #333333;
}

.next-input.next-input-multiple {
  border-color: #C4C6CF;
  border-radius: 0px;
  font-size: 0;
}

.next-input.next-input-multiple:hover {
  border-color: #A0A2AD;
}

.next-input.next-input-multiple.focus {
  border-color: #2192D9;
}

.next-input.next-input-multiple textarea {
  color: #333333;
  padding: 4px 8px;
  font-size: 14px;
  min-height: 60px;
  border-radius: 0px;
}

.next-input.next-input-multiple .next-input-control {
  display: block;
  text-align: right;
  width: auto;
  border-radius: 0px;
}

.next-input.next-input-multiple .next-input-len {
  padding-bottom: 4px;
}

.next-input-small {
  border-radius: 0px;
}

.next-input-small input {
  height: 18px;
  line-height: 18px;
  margin: 0;
  padding: 0 4px;
  font-size: 14px;
}