h1, h2, h3{
    color: black;
    height: 100px;/*元素的高度*/
    position: absolute;

    margin-top: -50px;/*设置元素顶边负边距，大小为元素高度的一半*/
    margin-left: -100px;
    border: none;
    font-weight:bold;

    font-family: 'Avenir Next', 'Helvetica Neue', 'Lato', 'Helvetica', 'Arial', sans-serif;
}
h1{
        left: 50%;/*配合margin-left的负值实现水平居中*/
        font-size:60px;
        top: 19%;/*元素的顶部边界离父元素的的位置是父元素高度的一半*/
}

h2{
        left: 43%;/*配合margin-left的负值实现水平居中*/
        font-size:55px;
        top: 20%;/*元素的顶部边界离父元素的的位置是父元素高度的一半*/
}
h3{
        left: 50%;/*配合margin-left的负值实现水平居中*/
        font-size:55px;
        top: 20%;/*元素的顶部边界离父元素的的位置是父元素高度的一半*/
}

body,html{
  height: 100%;
}

* { margin: 0; padding: 0; }
html{ 
    background: url(../image/3.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

button{
    background-color: transparent; /*效果同none*/ 
}

div.body{
    background-color:white;
    background:rgba(270, 270, 270, 0.6) none repeat scroll 0 0;/*实现FF背景透明，文字不透明*/
    margin-left: auto;
    margin-right: auto;
    width: 70%; 
    top: 75%;
    margin-top: 200px;
    height: :auto;
}

div.script{
    background-color:black;
    background:rgba(270, 270, 270, 0.6) none repeat scroll 0 0;/*实现FF背景透明，文字不透明*/
    margin-left: auto;
    margin-right: auto;
    width: 70%; 
    height: :auto;
}


.perl{
  color: #27AE60;
  font-family: "Avenir Next";
  font-size: 90%;
}

.script{
  width: 90%;
  border-color: #27AE60;
  border-width:2px;
  overflow: scroll;
}




p{
    font-family: Avenir Next;
    padding-left:5%;
    color:#0277BD;
}

h4{
    font-family: Avenir Next;
    padding-left:5%;
    color:#E64A19;
}

a.click{
    text-decoration:none; 
}

a.click:hover{
    color:red;
}

ul
{
    font-family: Avenir Next;
    padding-left:5%;
    color:#0277BD;
}



#home{
      top:5%;
      left:10%;
}
#avance{
        left: 72%;/*配合margin-left的负值实现水平居中*/
}
#home, #avance, #return{
    font-color: white;
    height: 10px;/*元素的高度*/
    position: absolute;
    margin-top: -10px;/*设置元素顶边负边距，大小为元素高度的一半*/
    margin-left: -100px;
    border:none;
    outline: none;
    font-weight:normal;
    font-size:28px;
    font-family: 'Avenir Next', 'Helvetica Neue', 'Lato', 'Segoe UI', Helvetica, Arial, sans-serif;
    text-decoration: none;
}
#return{
    left: 33%;/*配合margin-left的负值实现水平居中*/
}
#avance, #return{
    top: 20%;/*元素的顶部边界离父元素的的位置是父元素高度的一半*/
}

     .float-button {
         position: fixed;  //关键
         height: 90px;
         width: 60px;
         bottom: 90px;
             font-family: 'Avenir Next', 'Helvetica Neue', 'Lato', 'Segoe UI', Helvetica, Arial, sans-serif;
             border: none;
         right: 50px;
             font-color: white;
                 border:none;
    outline: none;
    font-weight:normal;
    font-size:28px;
    text-decoration:none;

     }




