<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*
 * global.css
 * author: Liuyong
 * time: 2014-12-24
*/

.dropdown {
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-style: solid;
line-height: 0;
display: inline-block;
position: relative;
text-align: left;
border: 0;
}

.dropdown .dropdown-default-btn {
height: 36px;
margin: 0 auto;
}

.dropdown .dropdown-center-btn {
	text-align: center;
}

.dropdown .dropdown-left-btn {
	text-align: left;
}

.dropdown .dropdown-default-btn {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
min-width:50px;
}

.dropdown .dropdown-default-btn {
background-color: #fff;
border-color: #ccc;
color: #555;
}
.dropdown .dropdown-default-btn{
display: inline-block;
cursor: pointer;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-style: solid;
border-width: 1px;
line-height: 1.57142857;
padding: 6px 12px;
border-radius: 2px;
min-width:60px;
}

.dropdown .dropdown-default-btn:hover {
background-color: #f2f2f2;
border-color: #c2c2c2;
-webkit-transition: background-color .2s;
transition: background-color .2s;
}

.dropdown .caret {
float: right;
margin-top: 8px;
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid #666;
}

.dropdown .dropdown-menu {
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-style: solid;
border-width: 1px;
line-height: 1.57142857;
max-height: 250px;
background-color: #fff;
border-color: #ccc;
display: none;
overflow-x: hidden;
overflow-y: auto;
position: absolute;
left: 0;
right: 0;
z-index: 2;
margin-top: -1px;
}

.dropdown .dropdown-menu ul {
list-style: none;
}

.dropdown .dropdown-menu li {
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-style: solid;
line-height: 1.57142857;
padding: 6px 12px;
border-color: transparent;
color: #888;
cursor: pointer;
display: list-item;
text-align: -webkit-match-parent;
}

.dropdown .dropdown-menu li:hover {
background-color: #fffbef;
-webkit-transition: background-color .2s;
transition: background-color .2s;
}

.dropdown .dropdown-menu li:active, 
.dropdown .dropdown-menu li[active], 
.dropdown .dropdown-menu li.active {
background-color: #f90;
color: #fff;
}</pre></body></html>