input::-webkit-outer-spin-button,input::-webkit-inner-spin-button  {
    -webkit-appearance: none;
}
input[type="number"]{
    -moz-appearance: textfield;
}

head body{
    width: 100%;
    height: 100%;
}

.title{

}
.title .sel{
    float: left;
    width: 150px;
    margin-bottom: 20px;
}
.title_i1{
    float: left;
    width: 500px;
    margin-left: 20px;
}
.title_i2{
    float: left;
    width: 100px;
    margin-left: 20px;
}
.pub{
    margin-top: 20px;
}


.abc{
    height: 60px;
    max-height: 60px;
    /*width: 230px;*/
    /*background-color: red;*/
    /*overflow:hidden;*/
}

.search{
     width: 160px;
     height: 36px;
     margin-left: 15%;
     outline:none;
     margin-right: 10px;
     border:1px solid;
     padding-left: 10px;
}

/*部门下滑二级菜单*/
.menuitem{
    position: relative;
}
.submenu{
    position: absolute;
    top: 25px;
    left:5%;
    width: 100%;
    background: #fff;
    z-index: 99999;
}
.submenu ul {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap; /* 避免文字Q行 */
    width: 200px;
    text-align: center;
}
.submenu ul li:hover {
    background: #1E9FFF;
}



.submenu ul li a {
    text-decoration: none;
    color: #777;
    padding: 10px 20px;
    display: block;

}
.submenu ul li:hover > a {
    color: #fff;
    text-decoration: none;
}
/** 下面的控制显示和隐藏 **/
.submenu
{display: none;}
.menuitem:hover .submenu
{display: block;}