/*-- 二维码 qrcode --*/
.box {
    width: 500px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
}
.box h1.h1{
    font-size: 1.5rem;
}
.box .note{
    text-align: center;
    color: #646464;
    margin-bottom: 5px;
}
.box #qrcode{
    width: 200px;
    height: 200px;
    position: relative;
    margin: 10px auto;
    display: none;
}
.box input{
    width: 288px;
    height: 34px;
    line-height: 34px;
    padding: 4px;
    outline: 0;
    /*以下两行解决 input select 相同height,但不同浏览器显示不同问题*/
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.box select.select{
    width: auto;
    height: 34px;
    line-height: 34px;
    padding: 4px;
    outline: 0;
    /*以下两行解决 input select 相同height,但不同浏览器显示不同问题*/
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.box #pick, .box #pick-bg{
    display: inline;
    width: 40px;
    height: 32px;
    line-height: 30px;
    border-radius: 3px;
    background: #009ae1;
}
.box #reset{
    display: inline;
    width: 60px;
    height: 32px;
    line-height: 30px;
    border-radius: 5px;
    background: #a1a1a1;
    margin-left: 5px;
}
.box button {
    display: block;
    width: 120px;
    height: 45px;
    background: #0cc;
    text-align: center;
    line-height: 45px;
    border-radius: 45px;
    margin: 10px auto;
    border: none;
    cursor: pointer;
    color: #fff;
    outline: 0;
}

/*-- 条码 barcode --*/
.barcode-box{
    width: 100%;
    height: auto;
    min-height: 450px;
    margin: 0 auto;
    overflow:hidden;
}
.barcode-box a.picker{
    display: inline-block;
}