
.tab {
    background: #fff;
}

.tab_menu {
    padding: 1rem 0 1rem 0;
    clear: both;
}

.tab_menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab_menu li {
    float: left;
    text-align: center;
    cursor: pointer;
    list-style: none;
    padding: 3px 6px;
    background: #fff;
    border: 1px solid rgb(238, 10, 37);
    color:  rgb(238, 10, 37);
    width: 10.5rem;
    font-size: .1rem;
}

.tab_menu li:nth-of-type(1) {
    border-radius: 3px 0 0 3px;
}

.tab_menu li:nth-of-type(2) {
    border-radius: 0 3px 3px 0;
}
.tab_menu li.hover {
    background: #DFDFDF;
}

.tab_menu li.selected {
    color: #FFF;
    background: rgb(238, 10, 37);
}

.tab_box {
    clear: both;
}

.hide {
    display: none
}

.list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin: 0 .5rem;
    border-bottom: 0.1rem solid #f1f1f1;
}

.list-content .name {
    font-size: 1rem;
    color: #333;
    margin-bottom: .5rem;
}

.list-content .time {
    font-size: 1rem ;
    color: #898989;

}

.list-content .tipsucc {
    font-size: .1rem ;
    color: #6DE44E;
    border: 0.1rem solid #6DE44E;
    display: inline-block;
    padding: 0 .1rem;
    border-radius: 2px;
    margin-top: .5rem;
}

.list-content .tipload {
    font-size: .1rem ;
    color: #898989;
    border: 0.1rem solid #898989;
    display: inline-block;
    padding: 0 .1rem;
    border-radius: 2px;
    margin-top: .5rem;
}

.list-content .tiperr {
    font-size: .1rem ;
    color: rgb(238, 10, 37);
    border: 0.1rem solid rgb(238, 10, 37);
    display: inline-block;
    padding: 0 .1rem;
    border-radius: 2px;
    margin-top: .5rem;
}

.tab_box .btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab_box .btn a {
    background: rgb(238, 10, 37);
    color: #fff;
    padding: .2rem .6rem;
    border-radius: 4px;
    font-size: 1rem;
}

.invoice-dialog{
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
}

.invoice-dialog>div{
	background: #fff;
	width: 60%;
	padding-top: .8rem;
	margin: 30% auto 0;
	text-align: justify;
	font-size: .75rem;
    border-radius: 10px;
    width: 16.5rem;
}

.invoice-dialog h1{
	font-size: 1rem;
	text-align: center;
	line-height: 2.2rem;
    border-bottom: 0.1rem solid #f1f1f1;
}

.dialog-content {
    padding: 0 .8rem;
}

.dialog-content input{
    text-align: right;
}

.dialog-content ul li {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
    margin: 0 .5rem;
    border-bottom: 0.1rem solid #f1f1f1;
}

.dialog-content ul li:last-child {
    border-bottom: 0;
}

.dialog-label {
    width: 5rem;
}

.dialog-text {
    color: #898989;
    width: 8rem;
    text-align: right;
}

.dialog-text input {
    border: 0;
    width: 8rem;
}

.dialog-footer {
    display: flex;
	width: 100%;
	border-top: #f1f1f1 solid 1px;
	font-size: 1rem;
}

.dialog-footer a {
    width: 50%;    
    text-align: center;
    height: 2.5rem;
    line-height: 2.5rem;
}

.dialog-footer a:nth-of-type(1) {
    border-right: .1rem solid #f1f1f1;
}

.dialog-text-sum {
    background: rgb(238, 10, 37);
    color: #fff;
    padding: .2rem .6rem;
    border-radius: 4px;
    font-size: .1rem;
}

.dialog-submit {
    color: #e01c07;
}

.tab_box .btn .btn-download {
    padding: 0.2rem 1rem;
    background: #0099FF;
}