html{
    width: 100%;
    height: 100%;
    font-size: 16px;

}
body{
    width: 100%;
    background: rgba(249,249,249,1);
}
a{
    text-decoration: none;
}
a:link{
    text-decoration: none;
}
a:visited{
    text-decoration: none;
}
a:hover{
     text-decoration: none;
 }
a:active{
    text-decoration: none;
}
#wrap{
    width: 100%;
    height: 100%;
    padding: 0 7%;
    /*background: rgba(249,249,249,1);*/
}
/*header*/
header{
    width: 100%;
    height: 50px;
    padding: 10px 0;
}
/*搜索框样式*/
.searcher {
    width: 100%;
    height:100%;
    background: rgba(255, 255, 255, 0);

}

.searcher-main {
    display:inline-block;
    background: rgba(238,238,238,1);
    /*margin:0 0 0 10%;*/
    border-radius:2rem;
    line-height: 100%;
    position:relative;
    width:100%;
    height:100%;
    border:1px solid rgba(255, 255, 255, 0);
}
.glyphicon-search{
    display:inline-block;
    position: absolute;
    top:50%;
    transform: translate(0,-50%);
    -ms-transform:translate(0,-50%); 	/* IE 9 */
    -moz-transform:translate(0,-50%); 	/* Firefox */
    -webkit-transform:translate(0,-50%); /* Safari 和 Chrome */
    -o-transform:translate(0,-50%);
    left:4%;
    color:#808080;

}

.searcher-text {
    display: inline-block;
    width: 74%;
    height: 99%;
    /*text-align: center;*/
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0);
    position: absolute;
    top:0.5%;
    left:13%;
    color: #808080;
    font-size:15px;
}
/*主要内容*/
main{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content : space-between;
}
.partWrap{
    width: 45%;
    height: 150px;
    background: rgba(255,255,255,1);
    padding: 10px 5px;
    margin-bottom: 8px;
    box-shadow: 5px 5px 5px rgba(226,225,225,1);
}
.partWrap .imgWrap{
    display: inline-block;
    width: 100%;
    height: 100px;
}
.imgWrap img{
    /*width: 100%;*/
    display: inline-block;
    /*width: 50%;*/
    max-height:65px ;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

}
.partWrap p{
    color: rgb(104,104,104);
    font-size: 12px;
    text-align: center;
}