@font-face {
    font-family: 'fzyaotiregular';
    src: url('../font/font1/fzytk-webfont.eot');
    src: url('../font/font1/fzytk-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/font1/fzytk-webfont.woff2') format('woff2'),
         url('../font/font1/fzytk-webfont.woff') format('woff'),
         url('../font/font1/fzytk-webfont.ttf') format('truetype'),
         url('../font/font1/fzytk-webfont.svg#fzyaotiregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

.img_btn {
	border: none;
	width: 95px;
	height: 34px;
	background-image:url(../images/btn_bg_green.png);
	background-repeat:no-repeat;
	font-size:15px;
	color:#666;
}

.img_btn:active {
	border: none;
	background-image:url(../images/btn_bg_blue.png);
}


/* ------带图标的逢定义下位框（Start）------ */
 .custom-select {
    position: relative;
    width: 150px;
    font-family: Arial;
}
.selected-option {
    padding: 0px 15px;
    height: calc(100% - 5px);
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: white;
}
.selected-option img {
    width: 20px;
    height: 15px;
    margin-right: 10px;
}
.options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: white;
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
    display: none;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.options li {
    padding: 0px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.options li:hover {
    background-color: #f5f5f5;
}
.options li img {
    width: 20px;
    height: 15px;
    margin-right: 10px;
}
.arrow {
    margin-left: auto;
    transition: transform 0.3s;
}
.rotate {
    transform: rotate(180deg);
}
/* ------带图标的逢定义下位框（End）------ */