body {
  margin: 0px;
  padding:0px;
   background-color:#130a60;
}

a{font:"微软雅黑"; font-size:26px; color:#FFFFFF; padding-left:30px; margin-top:30px;text-decoration: none; /* 去除下划线 */}
a:ink {color:#FFFFFF;} /*未访问的链接*/
a:visited {color:#FFFFFF;} /*已访问的链接*/
a:hover {color:#2ab6d6;font-size:26px;} /*鼠标移动到链接上*/
a:active {font-size:26px; color:#b01d9e;} /*选定的链接，即鼠标按下去的时候不松开显示的状态*/

.image-container {
  position: relative;
  display: inline-block;
}
 
.base-image {
  width: 100%; /* 或根据需要设置具体尺寸 */
  display: block;
}
 
.left-image {
  position: absolute;/* 根据需要调整位置 */
  top: 600px; /* 上边距 */
  left: 10px; /* 左边距 */
}

.right-image {
  position: absolute;/* 根据需要调整位置 */
  float:right;
  top: 600px; /* 上边距 */
  right: 10px; /* 左边距 */
}

.top-div1 {
    position: fixed; /* 或者其他定位方式 */
    top: 0; /* 如果设置了top: 0; 它会被定位在顶部 */
	z-index:100;
	padding-top:20px;
	height:70px;
  }
  
.top-div2 {
    position: fixed; /* 或者其他定位方式 */
    top: 0; /* 如果设置了top: 0; 它会被定位在顶部 */
	z-index:100;
	padding-top:20px;
    /*background-image:url(images/banner_bg.gif);background-size: 100% 100%;background-position: center;background-repeat: no-repeat;*/
	height:70px;
	background-color:#130656;
  }