.bgc{
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0px;
    top: 0px;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    background-repeat: no-repeat;
}
.searchPage{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #f9f9f9;
    /*background-color: rgba(255,255,255,0.9);  */
}
.searchPage .logo{
    margin-top: -150px;
}
.searchPage .searchBox{
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    background-color: #fff;
    width: 350px;
}
.searchPage .searchBox .orders{
    max-height: 50vh;
    overflow: auto;
}
.searchPage .searchBox .orderNo{
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 7px;
}
.searchPage .searchBox p{
    border-left: 5px solid #666;
    line-height: 1em;
    padding-left: 10px;
    margin-bottom: 15px;
}
.searchPage .searchBox .form-control{
    width: 100%;
    height: 50px;
    border: 1px solid #000;
    border-radius: 30px;
    text-align: center;
}
.searchPage .searchBox .btn{
    width: 100%;
    height: 50px;
    background-color: #000;
    color: #fff;
    margin-top: 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    transition: all .5s;
}
.searchPage .searchBox .btn:hover{
    background-color: #333;
}
.searchPage .searchBox ul{
    padding-left: 15px;
    margin-bottom: 30px;
    list-style-type: none;
}
.searchPage .searchBox ul li{
    padding: 5px 0px;
    border-bottom: 1px dashed #ccc;
    word-break: break-all;
}
