/* 页面底部区域 */
.page-bottom-old {
    color: white;
    padding: 0px;
    text-align: right;
    margin-top: 0px;
    font-family: "SimSun", "宋体", Arial, sans-serif;
    /* 中文安全字体 */
}

/* 按钮样式 - 使用 a 标签模拟按钮 */
.go-to-new {
    background-color: #34495e;
    /* 深一点的蓝色，替代半透明效果 */
    color: white;
    border: 1px solid #4a627a;
    padding: 5px 12px;
    text-decoration: none;
    font-size: 18px;
    /* IE6 不支持 inline-block，用以下 hack */
    display: inline-block;
    zoom: 1;
    /* 触发 hasLayout */
    display: inline;
    /* IE6/7 专用 hack */
}

/* IE6 支持 a:hover */
.go-to-new:hover {
    background-color: #3d5673;
    /* hover 时稍亮 */
    color: white;
}