﻿/*重置属性*/
*{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
}
a,a:link,a:visited,a:hover,a:active{
    color: #fff;
    text-decoration: none;
}
a:hover{
    color: rgb(23,181,181);
}
.active{
    color: rgb(191,191,191);
}
body{
    background-color: #fff;
}
.back{                  /*返回*/
    visibility: hidden;
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: rgba(148,148,148,0.8);
    bottom: 100px;
    right: 10px;
    z-index: 1000;
    -moz-transition:  0.4s ease;
    -webkit-transition:  0.4s ease;
    -ms-transition:  0.4s ease;
    transition:  0.4s ease;
    cursor: pointer;
}
.back:before,.back:after{
    content: "";
    position: absolute;
    background-color: #fff;
    width: 25px;
    border-radius: 20px;
    height: 3px;
    left: 26px;
    top: 25px;
    transform:rotate(45deg);
    -ms-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    -o-transform:rotate(45deg);
}
.back:after{
    transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -webkit-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    left: 9px;
}
/*页头样式*/
#header{
    width: 100%;
    height: 100%;
    min-width: 786px;
    overflow: hidden;
}

.links{
    width: 100%;
    min-width: 786px;
    height: 5em;
    position: absolute;
    background-color: rgba(0,0,0,0.4);
    z-index: 1000;
    top: 3em;
    -moz-transition:  0.2s ease;
    -webkit-transition:  0.2s ease;
    -ms-transition:  0.2s ease;
    transition:  0.2s ease;
}
.links ul{
    text-align: right;
    margin-top: 1.6em;
    font-size: 1em;
    letter-spacing: 0.1em;  /*字间距*/
    text-transform: uppercase;   /*大小写*/
}
.links li{
    display: inline-block;
    list-style: none;
    padding: 0 0 0 3em;
}
.links li a:before,.links li a:after{
    content: "";
    position: absolute;
    height: 0em;
    margin-top: -0.6em;
    margin-left: 0.3em;
    width: 1px;
    background-color: #fff;
    -moz-transition:  0.2s ease;
    -webkit-transition:  0.2s ease;
    -ms-transition:  0.2s ease;
    transition:  0.2s ease;
    -webkit-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
    transform:rotate(45deg);
    transform-origin:100% 0%;
    -webkit-transform:100% 0%;
    -ms-transform:100% 0%;
}
.links li a:after{
    margin-top: 0.6em;
    margin-left: 0.8em;
}
.links li a:hover:after{
    height: 2em;
}
.links li a:hover:before{
    height: 2em;
}
.logo img{
    margin-top: 10px;
    height: 50px;
    float: left;
}
.container h3{
    color: #fff;
    left: 10em;
    letter-spacing: 0.3em;  /*字间距*/
    margin-left: 1em;
    float: left;
}
.poster img{
    -moz-transition:  0.2s ease-out;
    -webkit-transition:  0.2s ease-out;
    -ms-transition:  0.2s ease-out;
    transition:  0.2s ease-out;
    width: 100%;
    overflow: hidden;
}
.poster img:hover{
    -moz-transform: scale(1.01);
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}
/*内容*/
#main{
    width: 100%;
    height: 100%;
    overflow: hidden;
    min-width: 786px;
}
#main div{
    width: 100%;
    height: 20px;
}
#main img{
    width: 100%;
    -moz-transition:  0.2s ease-out;
    -webkit-transition:  0.2s ease-out;
    -ms-transition:  0.2s ease-out;
    transition:  0.2s ease-out;
    overflow: hidden;
}
#main img:hover{
    -moz-transform: scale(1.01);
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}
/*页脚*/
#footer{
    width: 100%;
    min-width: 786px;
    min-height: 150px;
    background-color: rgb(60,60,60);
    text-align: center;
    color: #fff;
    letter-spacing: 0.15em;  /*字间距*/
    padding: 1em 0 1em 0;
}
#footer div{
    width: 100%;
    display: block;
    float: left;
}
.we{
    width: 25%;
    margin: auto;
}
.we li{
    display: block;
    width: 50%;
    float: left;
    border-right: 1px solid #fff;
}
.we li:last-child{
    border-right: 0;
}
.cut-off{
    width: 100%;
    height: 30px;
}

