.container {
    width: 100%;
    height: 100%;
    min-width: 1400px;
    background: #F5F7FB;
}

.header {
    width: 100%;
    height: 50px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 40, 100, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 8px rgba(0, 40, 100, 0.12);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.header .menu {
    min-width: 1400px;
    height: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .menu .nav {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header .menu .nav .nav-item {
    height: 100%;
    min-width: 2rem;
    box-sizing: border-box;
    padding: 0 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.header .menu .nav .nav-item .nav-link {
    height: 100%;
    border: 0;
    color: inherit;
    border-bottom: 2px solid transparent;
    font-weight: 400;
    margin-bottom: -1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 15px;
    text-align: center;
}

.header .menu .nav .nav-item .nav-link.active {
    border-color: #467fcf;
    color: #467fcf;
    background: transparent;
}

.header .menu .nav .nav-item .nav-link:hover {
    border-color: #467fcf;
    color: #467fcf;
}

.header .handle {
    width: 700px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .handle span {
    margin-left: 10px;
}

.header .handle .logout {
    color: #467fcf;
    text-decoration: underline;
    cursor: pointer;
}

.header .handle .info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .handle img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.header .handle .info span:last-child {
    color: #467fcf;
    text-decoration: underline;
    cursor: pointer;
}

.center {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
    padding-top: 50px;
    background: #F5F7FB;
}

.center .wrap {
    width: 1400px;
    padding: 20px;
    box-sizing: border-box;
}

.center .wrap .page-title {
    font-size: 18px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 20px;
}

.center .wrap .list {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.center .wrap .list .table {
    width: 100%;
    border: 1px solid #EBEEF5;
    background: #fff;
}

.center .wrap .list .table .page {
    text-align: right;
    box-sizing: border-box;
    padding: 10px;
}

.center .wrap .list .table span {
    display: inline-block;
    color: #606266;
    font-size: 12px;
    padding: 1px 3px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.center .wrap .list .table .green {
    background: #67C23A;
    border: 1px solid #67C23A;
    color: #fff;
}

.center .wrap .list .table .red {
    background: #d30000;
    border: 1px solid #d30000;
    color: #fff;
}

.center .wrap .list .table .blue {
    background: #409eff;
    border: 1px solid #409eff;
    color: #fff;
    cursor: pointer;
}

.center .wrap .list .params {
    width: 100%;
    border: 1px solid #EBEEF5;
    background: #fff;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 20px;
}

.center .wrap .list .params .moneys {
    width: 100%;
    box-sizing: border-box;
}

.center .wrap .list .params .moneys .sel {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 10px;
}

.center .wrap .list .params .moneys .sel label {
    width: 100px;
}

.center .wrap .list .params .moneys .sel .miane {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.center .wrap .list .params .moneys .sel .miane span {
    border: 1px solid #DCDFE6;
    color: #495057;
    width: 100px;
    font-size: 15px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.center .wrap .list .params .moneys .sel .miane span:hover {
    border: 1px solid #d30000;
}

.center .wrap .list .params .moneys .sel .miane span.active {
    border: 1px solid #d30000;
}

.center .wrap .list .params .moneys .sel .miane span.active::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: 0;
    z-index: 3;
    display: block;
    width: 18px;
    height: 18px;
    overflow: hidden;
    background: url(../img/selected.gif) 0 0 no-repeat;
    opacity: 1;
    filter: alpha(opacity=100);
}

.center .wrap .list .params ul {
    width: 100%;
    padding: 10px;
    padding-left: 20px;
    box-sizing: border-box;
}

.center .wrap .list .params ul li {
    list-style: disc;
    font-size: 14px;
    line-height: 30px;
}

.center .wrap .list .params .shop-btn {
    width: 100%;
    border-top: 1px solid #EBEEF5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    padding-top: 10px;
}

.center .wrap .list .params label {
    display: block;
    width: 100%;
    font-size: 15px;
    color: #495057;
    margin-bottom: 10px;
}

.center .wrap .list .sider {
    height: 200px;
    margin-right: 10px;
}

.center .wrap .list .content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.center .wrap .panel {
    width: 310px;
    /* border: 1px solid rgba(0, 40, 100, 0.12); */
    border-top: 4px solid #5EBA00;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    box-shadow: 0px 2px 8px rgba(0, 40, 100, 0.12);
    background: #fff;
    margin-bottom: 20px;
    margin-right: 15px;
}

.center .wrap .list .sider .panel {
    height: 200px;
    box-sizing: border-box;
    padding: 10px 20px;
}

.center .wrap .list .sider .panel span {
    cursor: pointer;
    display: block;
    width: 100%;
    border: 1px solid #5EBA00;
    color: #5EBA00;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    box-sizing: border-box;
    padding: 3px 0;
    margin-bottom: 10px;
}

.center .wrap .list .sider .panel span:hover {
    background: #5EBA00;
    color: #fff;
}

.center .wrap .panel .panel-header {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0, 40, 100, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.center .wrap .panel .panel-header .title {
    font-size: 18px;
    color: #495057;
    width: 200px;
    height: 50px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    word-break: break-all;
    -webkit-box-orient: vertical;
}

.center .wrap .panel .panel-header .right {
    height: 50px;
    width: 55px;
    text-align: right;
}

.center .wrap .panel .panel-header i {
    font-size: 18px;
    cursor: pointer;
    color: #9AA0AC;
    vertical-align: middle;
}

.center .wrap .panel .panel-header i:first-child {
    margin-right: 5px;
}

.center .wrap .panel .panel-content {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 20px;
    color: #495057;
    font-size: 14px;
}

.center .wrap .panel .panel-content .row {
    padding: 2px 0;
}

.center .wrap .panel .panel-content .row .star {
    width: 17px;
    height: 17px;
    cursor: pointer;
}

.center .wrap .panel .panel-content .height {
    height: 46px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.center .wrap .panel .panel-content .row .green {
    display: inline-block;
    color: #fff;
    background: #67C23A;
    border: 1px solid #67C23A;
    font-size: 12px;
    padding: 1px 3px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.center .wrap .panel .panel-content .row .red {
    display: inline-block;
    color: #fff;
    background: #F56C6C;
    border: 1px solid #F56C6C;
    font-size: 12px;
    padding: 1px 3px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.center .wrap .panel .panel-content .download {
    /* margin-top: 10px; */
}

.center .wrap .panel .panel-content .download span:last-child {
    text-decoration: underline;
    color: #467fcf;
    cursor: pointer;
}

.center .wrap .panel .panel-content .download span.renew {
    text-decoration: none;
    text-align: center;
    color: rgb(211, 0, 0);
    cursor: pointer;
}

.center .wrap .panel .panel-content .download a {
    text-decoration: underline;
    color: #467fcf;
    cursor: pointer;
}

.tipcontainer {
    width: 100%;
}

.tipcontainer .msg {
    text-align: center;
    display: block;
    width: 100%;
    font-size: 25px;
    color: red;
}

.tipcontainer .color {
    color: #1abc9c;
    text-align: center;
}

.tipcontainer p {
    width: 100%;
    color: #467fcf;
    font-size: 16px;
    text-align: center;
}

.tipcontainer .money {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

#qrcode {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}


/* 重置UI样式 */

.el-dialog__header {
    padding: 10px;
}

.el-dialog__headerbtn {
    top: 10px;
}

.el-dialog__body {
    padding: 10px;
}

.el-dialog__footer {
    padding: 10px;
}

.el-select {
    width: 100%;
}

.el-form {
    width: 100%;
}

.el-form-item {
    margin-bottom: 0;
}

.tip {
    font-size: 12px;
}