main .tipstext{
    line-height: 40px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
main .tipstext i{
    font-style: normal;
    color: #00a795;
}
main .tipstext em{
    color: #d52121;
}
main .tipstext a{
    width: 120px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    font-size: 16px;
    background: #ff9c00;
    color: #fff;
    border-radius: 5px;
}
main .tipstext a:hover{
    box-shadow: 2px 5px 5px #aaa;
}
/*查询结果过*/
main .list{
    background: #fff;
    margin-top: 20px;
}
main .thead{
    line-height: 50px;
    background: #ff9c00;
    color: #fff;
}
main .tbody{
    height: 570px;
    overflow-y: auto;
    padding: 10px 0;
    box-sizing: border-box;
}
main .tbody .row{
    line-height: 40px;
    padding: 5px 0;
}
main .thead div,
main .tbody .row div{
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
}
main .tbody .cz a{
    color: #d52121;
}
main .tbody .qr a{
    color: #00a795;
}
main .tbody .row:hover{
    background: #fff3dc;
}
main .list .date{
    width: 25%;
}
main .list .num{
    width: 25%;
}
main .list .type{
    width: 8%;
}
main .list .code{
    width: 20%;
}
main .list .ticketname{
    width: 15%;
}
main .list .tickettype{
    width: 13%;
}
main .list .paytype{
    width: 15%;
}
main .list .money{
    width: 15%;
}
main .list .operation{
    width: 20%;
}
main .list .remark{
    width: 10%;
}
/*冲正弹窗*/
.correct{
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5);
}
.correct .box{
    width: 700px;
    padding: 50px 0;
    position: relative;
    background: #fff;
    border-radius: 10px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}
.correct .box .order h1{
    font-size: 20px;
}
.correct .box .order .inputbox{
    margin-top: 50px;
}
.correct .box .order .inputbox input{
    width: 400px;
    height: 50px;
    line-height: 48px;
    font-size: 16px;
}
.correct .box .btn {
    margin-top: 50px;
}
.correct .box .btn a{
    font-size: 20px;
    width: 220px;
    line-height: 70px;
    border-radius: 5px;
    background: #ff9c00;
    color: #fff;
    display: inline-block;
    margin: 0 30px;
}
.correct .box .btn a.cancel{
    background: #b0b0b0;
}
.correct .box .detail .item .itemname,
.correct .box .detail .item .iteminfo{
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    line-height: 50px;
    white-space: nowrap;
    text-align: left;
    width: 60%;
    height: 50px;
}
.correct .box .detail .item .itemname{
    width: 40%;
    text-align: right;
}
/*确认支付*/
.payed{
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5);
}
.payed .box{
    width: 800px;
    height: 520px;
    position: relative;
    background: #fff;
    border-radius: 10px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}
.payed .box .icon{
	padding-top: 80px;
}
.payed .box .icon i{
	width: 72px;
	height: 72px;
	display: inline-block;
	background: url(../images/icon.png) no-repeat -304px -235px;
}
.payed .box h1{
	color: #e72a2a;
	font-size: 36px;
	padding: 50px 0 20px 0;
}
.payed .box p{
	font-size: 20px;
	line-height: 40px;
}
.payed .box .btn {
    margin-top: 70px;
}
.payed .box .btn a{
    font-size: 20px;
    width: 220px;
    line-height: 70px;
    border-radius: 5px;
    background: #ff9c00;
    color: #fff;
    display: inline-block;
    margin: 0 30px;
}
.payed .box .btn a.cancel{
    background: #b0b0b0;
}
/*成功提示*/
.printing{
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5);
}
.printing .box{
    width: 400px;
    height: 400px;
    position: relative;
    background: #fff;
    border-radius: 10px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}
.printing .box i{
    width: 158px;
    height: 160px;
    display: inline-block;
    background: url(../images/icon.png) no-repeat 0 -235px;
    margin: 50px 0 40px 0;
}
.printing .box h1{
    font-size: 36px;
    padding-bottom: 30px;
}
.printing .box p{
    font-size: 18px;
    line-height: 40px;
}