/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 2020年3月30日, 下午2:46:12
    Author     : Administrator
*/
html,body{
    margin: 0;padding: 0;
    font-family:Heiti, Heiti SC, DroidSans, DroidSansFallback, Arial, "Microsoft YaHei";
    background: #fffffa;
}
header{
    background: #FFBF66;
    padding: 12px 5%;
    position: fixed;
    top:0;
    left:0;
    width: 90%;
    z-index: 100;
}
header .select{
    background: #fff;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    padding: 10px 6%;
    color: #6d6c6c;
    font-weight: bold;
}
header .select .area{
    display: inline-block;
    padding-right: 20px;
    border-right: 1px #6d6c6c solid;
}
header .select .floor{
    display: inline-block;
    padding-left: 20px;
}
header .select img{
    width: 16px;
    float: right;
    margin-top: 4px;
}
.items{
    margin-top: 65px;
    position: relative;
}
.items img{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    transform: scale(0);
    /*display: none;*/
    -webkit-transition-duration:.5s;
    -moz-transition-duration:.5s;
    -o-transition-duration:.5s;
}
.items img.active{
    transform: scale(1) translate(0px);
    /*display:block;*/
}
