@charset "UTF-8";
/*单行溢出*/
.one_row_ellipsis {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.m-auto{
  margin: 0 auto;
}
.wrapper{
  width: 1200px;
}
.header{
  height: 155px;
  background-image: url(../images/header-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
  padding: 30px 0;
}
.header .logo-box{
 clear: both;
 /* margin: 27px auto; */
}
.header .logo-box .left{
  display: inline-block;
  overflow: hidden;
  float: left;
  vertical-align: middle;
}
.header .logo-box .left img{
  /* height: 108px; */
  /* margin-top: 53px; */
  vertical-align: middle;
}
.header .logo-box .left img:nth-child(1){
    margin-right: 32px;
}
.header .logo-box .right{
  float: right;
  vertical-align: middle;
  margin-top: 27px;
}

/* .header .logo-box .right > div{
  display: inline-block;
  width: 296px;
  height: 42px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 21px;
  margin-top: 24px;
  font-weight: 400;
  color: #0655B6;
  padding: 0 10px;
} */
.header .logo-box .right > div input{
    height: 53px;
    background-color: rgba(255, 255, 255,.8);
    background-image: url(../images/search.png);
    background-position: 15px;
    background-repeat: no-repeat;
    width: 363px;
    border: none;
    outline: none;
    vertical-align: middle;
    color: #4D6642;
    text-indent: 42px;
}
.header .logo-box .right > div input::placeholder{
  color: #4D6642;
}
.header .logo-box .right > .search{
  position: relative;

}
.header .logo-box .right > .search div{
  display: inline-block;
  vertical-align: middle;
  width: 110px;
  height: 53px;
  background: linear-gradient(180deg, #92CA4A, #29813F);
  text-align: center;
  line-height: 53px;
  position: absolute;
  top: 0;
  right: 0;
  color: #FFFFFF;
}
.nav{
  height: 63px;
  background: linear-gradient(180deg, #61AD43, #257F3F);
  margin-top: -5px;
}
.nav > ul > li{
  display: inline-block;
  margin: 0 10px;
  position: relative;
}
.nav > ul > li > a{
  display: block;
  padding: 0 10px;
  font-weight: 600;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 63px;
  height: 63px;
}
.nav > ul > li > a:hover{
  background: #FFFFFF;
  color: #4D6642;
}
.nav > ul > li:hover ul{
  display: block !important;
}
.nav > ul > li > ul{
  position: absolute;
  top: 63px;
  left: 0;
  background: linear-gradient(180deg, #61AD43, #257F3F);
  display: none;
  z-index: 999;
}
.nav > ul > li > ul >li{
  width: 100%;
}
.nav > ul > li > ul >li > a{
  display: block;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  line-height: 63px;
  height: 63px;
  color: #FFFFFF;
  padding: 0 10px;
  font-size: 18px;

}
.nav > ul > li > ul >li > a:hover{
    background: #FFFFFF;
    color: #4D6642;
}


footer{
    height: 203px;
    background: #26803F;
    color: #FFFFFF;
    font-size: 14px;
    background-size: 100% 100%;
    padding-top: 54px;
}

footer > div > img{  
  vertical-align: middle;
  display: inline-block;
}
footer > div > img:nth-child(2){
    margin-left: 54px;
}
footer p{
  display: block;
  width: 712px;
  margin: 0 auto;
  margin-bottom: 17px;
  text-align: left;
  line-height: 34px;
}

footer span{
  display: block;
  color: #F39454;
  border-top:1px solid  rgba(243, 148, 84, .3);
  padding: 14px 0;
}


.mbx{
  padding: 12px 0;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  font-size: 14px !important;
  color: #7D7F81 !important;
}
.mbx a{
  font-size: 14px !important;
  color: #7D7F81 !important;
}
.select{
    display: inline-block;
    width: 262px;
    height: 49px;
    background-image: url(../images/select-bg.png);
    text-align: center;
    color: #fff;
    line-height: 49px;
    position: relative;
    margin-left: 80px;
  }
  .select > ul {
    position: absolute;
    height: 50px;
    top: 49px;
    width: 262px;
    border: 1px solid #0B6C50;
    overflow: auto;
    background-color: rgba(255, 255, 255, .92);
    opacity: 0;
    transition: all .5s;
  }
  /* 应用到具有滚动条的元素 */
  .select > ul::-webkit-scrollbar {
  width: 5px; /* 滚动条宽度 */
  }
  
  /* 滚动条轨道 */
  .select > ul::-webkit-scrollbar-track {
  background: #f1f1f1; /* 轨道颜色 */
  }
  
  /* 滚动条 thumb（即拖动部分） */
  .select > ul::-webkit-scrollbar-thumb {
  background: #888; /* 滚动条 thumb 颜色 */
  border-radius: 10px; /* thumb 的圆角 */
  }
  
  /* 当鼠标悬停在 thumb 上时 */
  .select > ul::-webkit-scrollbar-thumb:hover {
  background: #555; /* 悬停时的 thumb 颜色 */
  }
  
  
                        
  .select > ul a{
    color: #333;
    font-size: 14px;
  }
  .select:hover ul{
    opacity: 1;
  }