/* 收货地址 */
body , html {
    height: 100%;
}
#localFixed {
    position: fixed;
    top: 0;
    right: -40%;
    width: 40%;
    height: 100%;
    z-index: 10;
    background:#f7f7f7;
    transition:right .1s;
}
#localFixed .fixedWrap {
    padding:0 10px;
    height: 100%;
}
#localFixed .icon {
    position: absolute;
    left: -40px;
    top: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color:#fff;
    clear:both;
}
#localFixed i {
    display: block;
    width: 40px;
    height: 40px;
    float: right;
    background:#000 url(../img/local.png) left center no-repeat;
    cursor:pointer;
}
#localFixed b {
    position: absolute;
    top: 0;
    right: 40px;
    display: block;
    height: 40px;
    overflow: hidden;
    width: 0;
    transition:width .1s;
    background: #333;
    text-align: center;
}
#localFixed i:hover + b {
    width: 116px;
}
#localFixed .localWrap {
    height: 100%;
    overflow: auto;
    position: relative;
    z-index: 10;
}
#localtionList {
    padding-bottom: 50px;
    padding-top: 50px;
}
#localtionList li {
    background: #fff;
    color:#4a4a4a;
    padding:10px;
    box-shadow: 0 1px 3px 0 rgba(0,34,77,0.05);
}
#localtionList li > p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}
#localtionList li .fieldList {
    font-size: 14px;
}
#localtionList li .fieldList p {
    font-size: 0;
    height: 35px;
    line-height: 35px;
    margin-bottom: 15px;
}
#localtionList li .fieldList p span {
    display: block;
    height: 35px;
    width: 50px;
    float: left;
    font-size: 14px;
}
#localtionList li  .fieldList input {
    font-size: 14px;
    height: 35px;
    color:#4a4a4a;
    outline: none;
    border:1px solid #eee;
    width: 80%;
    padding:0 0 0 10px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
}
#localtionList li  .fieldList input:focus {
    border-color:#5cbab5
}
#localtionList li .localtionSub {
    display: block;
    width: 100px;
    height: 35px;
    text-align: center;
    line-height:35px;
    background: #5cbab5;
    border-radius: 3px;
    color:#fff;
    text-decoration: none;
    font-family: "microsoft yahei";
    font-size: 16px;
}


/*移动端*/
@media (max-width: 1024px) {
    #localFixed {
        width: 80%;
        right: -80%;
    }
    #localFixed i:hover + b {
        width: 0;
    }
}
@media (max-width: 768px) {
    #localtionList li .fieldList input {
        width: 70%;
    }
}