@charset "gb2312";
section {
    height: 102px;
    background-color: #024ac2;
    width: 100%;            
}
.listNav {
    width: 1400px;            
    margin: 0 auto; 
    overflow: hidden;
}
.listLogo {
    width: 240px;
    float: left;
    background-image: url('https://www.lanzhou.cn/images/index25/logo_bgWhite.png');
    background-repeat: no-repeat;
    background-position: center;
    height: 102px;
}
.listLogo a {
    display: block;
    width: 100%;
    height: 100%;
}
/* 基础导航项样式 */
.navItem {
    float: left;
    font-size: 20px;
    font-family: SourceHanSansCN-Medium, sans-serif;
    line-height: 102px;
    margin-right: 20px;            
    /* CSS3 text-shadow for modern browsers */
    text-shadow: 2px 2px rgba(16, 61, 116, 0.8);
    /* IE8 filter for text shadow */
    filter: dropshadow(color=#103d74, offx=2, offy=2);
    position: relative;
}

/* 最后一个导航项去除右侧margin */
.navItemLast {
    margin-right: 0px;
}

/* 导航链接样式 */
.navItem a {
    color: white;
    text-decoration: none;
    display: block;
}

/* Hover效果 */
.navItem:hover {
    left: 1px;
    top: 1px;
}

/* IE8兼容处理：将hover效果应用到a标签 */
.navItem a:hover {
    position: relative;
    left: 1px;
    top: 1px;
}