﻿
  #album{/*相册*/
    position:relative;
      width: 100%;height: 100%;
    overflow:hidden;/*隐藏tip*/
  }
  #album dt {/*相册的内容显示区，包含相片与下面的翻页栏*/
    margin:0;/*去除浏览器的默认设置*/
    padding:0;/*去除浏览器的默认设置*/
       width: 100%;height: 100%;
    overflow:hidden;/*重点，让每次只显示一张图片*/
  }
  #album dt img{cursor:pointer}
  #album img {
    border:0px;
  }
  #album dd {/*翻页栏*/
    position:absolute;
    right:0px;
    bottom:10px;  
  }
  #album a {
    display:block;/*让其拥有盒子模型*/
    float:left;
    margin-right:10px;/*错开格子*/
    width:18px;/*呈正方形*/
    height:18px;border-radius: 18px;background:#ccc;
    line-height:15px;
    text-align:center;/*居中显示*/
    text-decoration:none;/*消除下划线*/
   
  }
  #album dd a:hover ,#album dd a.hover{
    background-position:0 0;
  }
  dd{ text-align:center;}
  dd a{ font-size:17px; font-weight:bold; color:Black;}