*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.layout{
    width: 100%;
    margin: 0 auto;
    min-height: 900px;
    height: auto;
}
.title1{
    width: 100%;
    height: 45px;
    line-height: 45px;
    font-family: "Microsoft YaHei";
    font-size: 24px;
    font-weight: bold;
}
.select{
    margin-top: 30px;
}
select{
    width: 35%;
    height: 40px;
    margin-right: 1%;
    border: 2px solid #cccccc;
}
.addresslist{
    margin-top: 30px;
}
.item{
    width: 100%;
    height: auto;
    position: relative;
    float: left;
    margin-right: 12px;
}

.store{
    width: 100%;
    height: 112px;
    border-radius: 3px;
    padding-top: 15px;
    color: #1f1f1f;
    position: relative;
    float: left;
    margin-right: 12px;
    margin-bottom: 12px;
    background-color: #f5f5f5;
    box-shadow: 0px 0px 0px;
}

.store.active{
    background-color: #FFFFff;
    box-shadow: 10px 20px 15px #f3f3f3;
}
.store .hover.active{
    display: block;
    position: absolute;
    z-index: 10;
}

.store .hover{
    width:27.5rem;
    height:292px;
    padding: 15px;
    overflow:hidden;
    background-color: #ffffff;
    position:relative;
    top:115px;
    left:-8px;
    color:#1f1f1f;
    background-color: transparent;
    background-image:url("../img/bg.png");
    background-repeat:no-repeat;
    background-size: 100% 100%;
    display: none;
}

.store .hover .infoitem{
    width: 100%;
    min-height: 45px;
    height: auto;
    line-height: 45px;
    font-size: 15px;
    font-family: "Microsoft YaHei";
    color: #333333;
}
.store .hover .infoitem p:nth-child(1){
    width: 10%;
    line-height: 45px;
    padding-top: 12.5px;
    display: block;
    text-align: center;
    float: left;
}
.store .hover .infoitem p:nth-child(2){
    height: 45px;
    line-height: 45px;
    display: block;
    text-align: left;
    float: left;
}

.store .hover .infoitem p.addr{
    width: 85%;
    min-height: 45px;
    height: auto;
    line-height: 20px;
    padding-top: 12px;
    display: block;
    text-align: left;
    float: left;
    word-wrap: break-word;
}

.store .hover .infobottom{
    width: 100%;
    height: 45px;
    line-height: 45px;
    position: absolute;
    top: 225px;
    padding-left: 15px;
    padding-right: 15px;
}

.store .hover .infoitem2{
    width: 50%;
    height: 45px;
    float: left;
}

.store .hover .infoitem2 p:nth-child(1){
    width: 10%;
    line-height: 45px;
    padding-top: 12.5px;
    display: block;
    text-align: center;
    float: left;
    margin-right: 3%;
}
.store .hover .infoitem2 p:nth-child(2){
    height: 45px;
    line-height: 45px;
    display: block;
    text-align: left;
    padding-left: 5%;
    float: left;
}

.infoitem2 a, .infoitem2 a:visited{color: #333333;}

.name{
    width: 100%;
    height: 20px;
    line-height: 20px;
    font-family: "Microsoft YaHei";
    font-size: 18px;
}
.name p:nth-child(1){
    width: 5%;
    height: 20px;
    margin-left: 3%;
    margin-right: 3%;
    float: left;
    background-image: url("../img/location.png");
    background-repeat: no-repeat;
}
.name p:nth-child(2){
    float: left;
}

.tel{
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 11px;
    float: left;
    font-family: "Microsoft YaHei";
}
.tel p{
    margin-left: 3%;
    line-height: 30px;
    letter-spacing: 2px;
}
.addressitem{
    width: 95%;
    margin-left: 3%;
    line-height: 18px;
    font-size: 13px;
    color: #4a4a4a;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: "Microsoft YaHei";
}
.address p{
    letter-spacing: 1px;
}

.btnSubmit{
    width: 5rem;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    float: right;
}

.store .hover{
    animation: animate 1s ease;
    overflow: hidden;
}
@keyframes animate{
    from {
        height: 0px;
    }
    to {
        height: 292px;
    }
}