@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
}

.fixed{
    position: fixed;
    width: 200px;
    height: 150px;
    top: 2px;
    right: 0;
}

.menu li{
    list-style-type: none;
    display: inline-block;
    width: 180px;
    margin: 0 10px;
}
.menu a{
    display: block;
    padding: 10px;
    background: #bbb36f;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}
.menu a:hover{
    background: #ddd590;
}

body{
    padding-top: 80px;
}

#wrap{
    width: 988px;
    margin: 0 auto;
}

#header{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: #ffffff;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px dotted #94c8b1;
    padding: 10px;
}
 .h{
    border-left: 10px solid #d0e35b;
    border-radius: 5px 0 0 5px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
}

.item{
    background-color: beige;
    float: left;
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
    padding: 10px;
    width: 225px;
    border: 1px solid #ccc;
}

.item img{
    padding-top: 10px;
    width: 225px;
    height: 160px;
}

.ico-new{
    position: absolute;
    left: -30px;
    top: 10px;
    transform: rotate(-45deg);
    width: 100px;
    padding: 5px;
    background: #f00;
    color: #fff;
    font-size: 0.8em;
    line-height: 1;
    text-align: center;
}

#footer{
    background-color: gold;
    clear: both;
}
