<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Combobox Style for
 * @author yiminghe@gmail.com
 */
/**
* Variables to customize the look and feel from Bootstrap.
*
* @author yiminghe@gmail.com
*/
/**
* Snippets of reusable CSS to develop faster and keep code readable from KISSY and Bootstrap.
*
* @author yiminghe@gmail.com
*/
/**
* Variables to customize the look and feel from Bootstrap.
*
* @author yiminghe@gmail.com
*/
.ks-combobox {
  border: 1px solid #cccccc;
  border-radius: 3px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2 s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2 s;
  -ms-transition: border linear 0.2s, box-shadow linear 0.2 s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2 s;
  transition: border linear 0.2s, box-shadow linear 0.2 s;
  vertical-align: middle;
  position: relative;
}
.ks-combobox-disabled {
  opacity: 0.7;
  filter: alpha(opacity=70);
  *zoom: 1;
}
.ks-combobox-focused {
  border-color: rgba(82, 168, 236, 0.8);
  *border-color: #52a8ec;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
.ks-combobox-trigger {
  float: right;
  padding: 5px 9px;
  border-left: 1px solid #cccccc;
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(top, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  color: #000000;
}
.ks-combobox-trigger.ks-button-hover,
.ks-combobox-trigger:hover {
  color: #000000;
  background-position: 0 -15px;
  /*
    transition is only when going to hover, otherwise the background
    behind the gradient (there for IE&lt;=9 fallback) gets mismatched
    */
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -ms-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
  background-color: #e6e6e6;
}
.ks-combobox-trigger.ks-button-active,
.ks-combobox-trigger:active,
.ks-combobox-trigger.ks-button-checked,
.ks-combobox-trigger.ks-menu-button-open {
  color: #000000;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  background-color: #cccccc \9;
}
.ks-combobox-trigger.ks-button-disabled {
  cursor: default;
  opacity: 0.65;
  filter: alpha(opacity=65);
  *zoom: 1;
  color: #000000;
  background-position: 0 0;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(top, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
.ks-combobox-trigger-inner {
  width: 0;
  height: 0;
  overflow: hidden;
  font-size: 0;
  vertical-align: top;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid black;
  opacity: 0.3;
  filter: alpha(opacity=30);
  margin-top: 7px;
  margin-left: 5px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.ks-combobox-trigger:hover .ks-combobox-trigger-inner {
  opacity: 1;
  filter: alpha(opacity=100);
  *zoom: 1;
}
.ks-combobox-input-wrap {
  margin-top: 1px;
  overflow: hidden;
  position: relative;
  padding-left: 4px;
  padding-right: 4px;
}
.ks-combobox-input {
  padding: 4px;
  padding-left: 0;
  padding-right: 0;
  line-height: 1.5;
  float: left;
  width: 100%;
  border: 0;
  background-color: #ffffff;
}
.ks-combobox-input:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.ks-combobox-placeholder {
  position: absolute;
  left: 5px;
  top: 5px;
  opacity: 0.6;
  filter: alpha(opacity=60);
  *zoom: 1;
  display: none;
}
.ks-combobox-invalid {
  border: 1px solid red;
}
.ks-combobox-invalid-el {
  padding: 5px 0px;
  *font-size: 0;
  float: right;
  display: none;
  background: red;
}
.ks-combobox-invalid-inner {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 14px;
  height: 14px;
  vertical-align: text-top;
  background-image: url(//gtms03.alicdn.com/tps/i3/TB1.yyfFVXXXXbNXXXX48eSMFXX-469-159.png);
  background-position: 14px 14px;
  background-repeat: no-repeat;
  *margin-right: .3em;
  background-position: 0 -120px;
  background-image: url(//gtms04.alicdn.com/tps/i4/TB13Rc.FFXXXXcwaXXX48eSMFXX-469-159.png);
}
.ks-combobox-invalid-inner:last-child {
  *margin-left: 0;
}
.ks-combobox-clear {
  position: absolute;
  width: 35px;
  top: 0;
  height: 100%;
  right: 0px;
  background: transparent;
  cursor: pointer;
}
.ks-combobox-clear-inner {
  width: 14px;
  height: 14px;
  background-image: url(//gtms03.alicdn.com/tps/i3/TB1.yyfFVXXXXbNXXXX48eSMFXX-469-159.png);
  background-repeat: no-repeat;
  background-position: -48px -96px;
  text-indent: -9999px;
  font-size: 0;
  margin: 0 auto;
  margin-top: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
</pre></body></html>