body {
    position: relative;
    --main-color: #021a5b;
    /* --main-color: #0916AC; */
}

.mask {
    /* position: absolute; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none;
}

.mask.show {
    display: block;
}

.qrcode-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    display: none;
}

.qrcode-wrapper .message {
    padding: 20px;
}

.qrcode-wrapper.show {
    display: block;
}

.qrcode-wrapper img {
    width: 300px;
    height: 300px;
}

.container-wrapper {
    min-height: calc(100vh - 66px - 36px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-center {
    /* margin: 150px auto; */
    margin-top: 30px;
    margin-bottom: 10px;
    width: 100%;
    /* min-width: 1089px; */
    max-width: 1100px;
    height: 800px;
    border-radius: 24px;
    display: flex;
    background: #FFFFFF;
    box-shadow: 0px 0px 18px 0px rgba(9, 23, 183, 0.1);
}

@media (max-width:800px) {
    .user-center {
        max-width: 100vw;
        min-width: 100vw;
    }
}

.user-center .side-bar {
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    width: 25%;
    background: var(--main-color);
    color: #FFFFFF;
}

.user-center .tabs-content {
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    width: 75%;
}

.user-center .side-bar .user-info {
    height: 250px;
    text-align: center;
}

.user-info img {
    margin-top: 50px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
}

.user-info .name {
    font-size: 18px;
    font-weight: bold;
}

.user-info .phone {
    font-size: 16px;
}

.user-info div {
    margin-top: 12px;
}

.user-center .tabs-pane {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    padding: 20px 0;
    cursor: pointer;
}

.user-center .tabs-pane.active {
    background: #FFFFFF;
    color: #333;
    position: relative;
}

.user-center .tabs-pane.active::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    display: block;
    width: 3px;
    height: 36px;
    border-radius: 24px;
    background: #000000
}

.user-center .tabs-content {
    padding: 20px 50px;
    display: none;
}

.user-center .tabs-content.active {
    display: block
}

.user-center .tabs-content h4 {
    margin-top: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #949494;
    color: #333;
}

.user-center .tabs-content .user {
    width: 390px;
    margin: 20px auto;
    line-height: 40px;
    font-weight: bold;
    display: flex;
    justify-content: flex-end;
}

.user-center .tabs-content .user-name {
    margin-top: 60px;
}

.user-center .tabs-content .user input {
    padding-left: 12px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 300px;
    margin-left: 20px;
    color: #999999
}

.user-center .tabs-content .user-code input {
    width: 160px;
}

.user-center .tabs-content .user-code span {
    width: 126px;
    text-align: center;
    cursor: pointer;
    margin-left: 15px;
    background: var(--main-color);
    color: #ffffff;
    border-radius: 8px;
}

.user-center .tabs-content .confirm-modify {
    text-align: right;
}

.user-center .tabs-content .confirm-modify button {
    width: 300px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    margin-left: 15px;
    background: var(--main-color);
    color: #ffffff;
    border-radius: 8px;
    border: none;
    outline: none;
}

/*  */
.buyed-ticket .no-ticket {
    display: none;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 30vh;
}

.order-ticket .order-content .no-order-ticket {
    font-weight: 600;
}

.ticket-info .no-ticket {
    text-align: center;
    padding-top: 100px;
    display: none;
}

.user-center .tabs-content.invoice .no-invoice {
    text-align: center;
    padding-top: 100px;
    display: none;
}
/*  */

.buyed-ticket .select-status {
    display: flex;
    justify-content: flex-end;
}

.buyed-ticket .select-status p {
    margin-bottom: 0;
}

.buyed-ticket .select-status .status {
    display: flex;
    margin-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}

.buyed-ticket .select-status .status.selected span {
    background: rgba(255, 221, 29, 1);
    border: 1px solid rgba(0, 0, 0, 1);
}

.buyed-ticket .select-status .status span {
    width: 14px;
    height: 14px;
    background: rgba(247, 247, 247, 1);
    border: 1px solid rgba(111, 111, 111, 1);
    border-radius: 50%;
    margin-top: 3px;
    margin-right: 4px;
}

.order-ticket {
    position: relative;
}

.buyed-ticket .ticket-list,
.order-ticket .order-content {
    max-height: 550px;
    display: flex;
    flex-wrap: wrap;
    margin-right: -2%;
    margin-bottom: 0;
    padding-left: 0;
    overflow: hidden;
    /* margin-top: 30px; */
}

.buyed-ticket .ticket-list li,
.order-ticket .order-content li {
    width: 49%;
    margin-right: 1%;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    background: rgba(248, 248, 248, 1);
    cursor: pointer;
}


.buyed-ticket .ticket-list li p,
.order-ticket .order-content li p {
    margin-top: 6px;
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 400;
    color: rgba(153, 153, 153, 1);
    margin-bottom: 0;
}

.buyed-ticket .ticket-list li p:last-child,
.order-ticket .order-content li p:last-child {
    text-align: center;
}

.buyed-ticket .ticket-list li p:last-child a,
.order-ticket .order-content li p:last-child a {
    color: rgba(0, 137, 255, 1);
    text-decoration: underline;
    cursor: pointer;
}

.buyed-ticket .ticket-list li p span,
.order-ticket .order-content li p span {
    cursor: pointer;
    font-size: 16px;
    font-family: PingFang SC;
    color: rgba(153, 153, 153, 1);
}

.buyed-ticket .ticket-list li h3,
.order-ticket .order-content li h3 {
    text-align: center;
    padding: 12px 0;
    line-height: 36px;
}

.order-ticket .order-content li h3 {
    margin: 0;
}

.buyed-ticket .ticket-list li .active-name,
.order-ticket .order-content li .active-name {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
}

.order-ticket .order-content li .btn-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-ticket .order-content li .order-btn {
    padding: 10px 20px;
    border: none;
    color: rgba(0, 137, 255, 1);
    background: none;
    text-decoration: underline;
    cursor: pointer;
}

.order-ticket .order-content li .order-btn.refund-cancel {
    padding-left: 0;
}

.order-ticket .order-content .status {
    margin-bottom: 10px;
    text-align: right;
    color: #333;
}

.ticket-info .ticket-content {
    max-height: 550px;
    display: flex;
    flex-wrap: wrap;
    margin-right: -2%;
    margin-top: 40px;
    padding-left: 0;
}

.buyed-ticket .pagination-wrapper,
.ticket-info .pagination-wrapper,
.invoice .pagination-wrapper,
.invoice-info .pagination-wrapper,
.order-ticket .pagination-wrapper {
    text-align: center;
}

.ticket-info .ticket-content li {
    width: 48%;
    height: 216px;
    margin-right: 2%;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    background: rgba(248, 248, 248, 1);
}

.ticket-info ul li .current-status {
    text-align: right;
    padding-top: 10px;
    padding-right: 1em;
}

.ticket-info ul li .current-status::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 2px;
    background: rgba(153, 153, 153, 1);
    border-radius: 50%;
}

.ticket-info ul li p {
    margin-top: 8px;
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 500;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 0;
}

.ticket-info ul li p:last-child {
    text-align: center;
}

.ticket-info ul li p:last-child a {
    color: rgba(0, 137, 255, 1);
    text-decoration: underline;
    cursor: pointer;
}

.ticket-info ul li p span {
    font-size: 16px;
    font-family: PingFang SC;
    color: rgba(153, 153, 153, 1);
}

.ticket-info ul li h3 {
    text-align: center;
    padding: 12px 0;
}

.ticket-info ul li .active-name {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
}

.invoice-amount {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.invoice-amount p {
    margin-bottom: 0;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
}

.invoice-amount p span {
    color: #C10202;
}

.invoice-amount button {
    margin-left: 20px;
    width: 110px;
    height: 40px;
    line-height: 40px;
    background: var(--main-color);
    border-radius: 5px;
    border: none;
    display: inline-block;
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
}

.invoice-content {
    display: flex;
    flex-wrap: wrap;
    margin-right: -2%;
    margin-bottom: 0;
    padding-left: 0;
}

.invoice-content li {
    width: 48%;
    height: 222px;
    margin-right: 2%;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(248, 248, 248, 1);
}

.invoice-content li h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.invoice-content li p {
    margin-bottom: 4px;
}

.invoice-content li .invoice-price {
    color: #FF0000
}

.invoice-content li .invoice-status {
    text-align: right;
    color: rgba(153, 153, 153, 1);
}

.invoice-content li p span {
    font-weight: lighter;
    font-size: 16px;
    font-family: PingFang SC;
    color: rgba(153, 153, 153, 1);
}

.invoice-content li .button-wrapper {
    text-align: center;
}

.invoice-content li .button-wrapper a {
    color: rgba(0, 137, 255, 1);
    text-decoration: underline;
    cursor: pointer;
}

.invoice-content li .see-detail {
    margin-right: 30px;
}

.invoice-info .all-select-status {
    text-align: right;
    padding-top: 10px;
    padding-bottom: 6px;
}

.invoice-info .all-select-status .all-select {
    display: inline-block;
}

.invoice-info .all-select-status span {
    border: 2px solid var(--main-color);
    border-radius: 50%;
    display: inline-block;
    padding: 8px;
    background-color: #fff;
    position: relative;
}

.invoice-info .all-select-status.selected span:before {
    display: block
}

.invoice-info .all-select-status span:before {
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    display: none;
    content: '';
    border-radius: 50%;
    background-color: var(--main-color);
}

.invoice-info .all-select-status p {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: top;
    font-weight: bold;
}

.invoice-info .invoice-order {
    display: flex;
    flex-wrap: wrap;
    /* height: 500px;
    overflow: auto; */
    padding-left: 0;
    margin-right: -2%;
}

.invoice-info .total-amount {
    font-weight: bold;
    margin-bottom: 10px;
}

.invoice-info .total-amount span {
    color: #C10202
}

.invoice-info .total {
    text-align: right;
}

.invoice-info .total button {
    border: none;
    outline: none;
    margin-left: 20px;
    width: 110px;
    height: 40px;
    line-height: 40px;
    background: var(--main-color);
    border-radius: 5px;
    border: none;
    display: inline-block;
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
}

.invoice-info .invoice-order li {
    width: 48%;
    height: 210px;
    margin-right: 2%;
    margin-bottom: 20px;
    padding: 10px 10px 20px 20px;
    background: rgba(248, 248, 248, 1);
}

.invoice-info .invoice-order p {
    margin-bottom: 10px;
}

.invoice-info .invoice-order .pay-status {
    text-align: center
}

.invoice-info .invoice-order .select-status span {
    border: 2px solid var(--main-color);
    border-radius: 50%;
    display: inline-block;
    padding: 8px;
    background-color: #fff;
    position: relative;
}

.invoice-info .invoice-order li.selected {
    background-color: #E6E7F7;
}

.invoice-info .invoice-order li.selected span:before {
    display: block
}

.invoice-info .invoice-order .select-status span:before {
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    display: none;
    content: '';
    border-radius: 50%;
    background-color: var(--main-color);
}

.invoice-info .invoice-order .select-status {
    text-align: right;
}

.invoice-info .invoice-order h3 {
    text-align: center;
    margin-bottom: 20px;
}

.invoice-info .invoice-order p span {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: normal;
    color: rgba(153, 153, 153, 1);
}

.ask-for-invoice .invoice-form-wrapper {
    width: 90%;
    margin: 40px auto 0;
}

.ask-for-invoice input,
.ask-for-invoice select {
    border: none;
    outline: none;
    height: 40px;
}

.ask-for-invoice .invoice-form-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.ask-for-invoice .left,
.ask-for-invoice .right {
    width: 45%;
}

.ask-for-invoice .invoice-form {
    border-bottom: 1px solid #333;
    height: 44px;
    line-height: 47px;
}

.ask-for-invoice .form-cost-type,
.ask-for-invoice .form-invoice-type {
    display: flex;
    justify-content: space-between;
}

.ask-for-invoice .form-email input {
    width: 200px;
}

.ask-for-invoice .form-identifier input {
    width: 170px;
}

.ask-for-invoice .form-remark {
    border: none;
}

.ask-for-invoice .form-remark textarea {
    width: 100%;
    height: 88px;
    line-height: 27px;
}

.ask-for-invoice .invoice-form select {
    width: 210px;
}

.ask-for-invoice .invoice-submit {
    border: none;
    text-align: center;
}

.ask-for-invoice .invoice-submit input {
    background: var(--main-color);
    color: #fff;
    width: 100px;
    height: 40px;
    border-radius: 4px;
    font-weight: bold;
}

.invoice-setting form {
    width: 60%;
    margin: 40px auto 0;
}

.invoice-setting input,
.invoice-setting select {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #999;
    outline: none;
    height: 40px;
    width: 300px;
}

.invoice-setting select {
    border: none;
}

.invoice-setting .invoice-form {
    border-bottom: 1px solid #999;
    height: 44px;
    line-height: 47px;
}

.invoice-setting .form-email input {
    width: 300px;
}

.invoice-setting .form-identifier input {
    width: 300px;
}

.invoice-setting .form-remark {
    border: none;
}

.invoice-setting .form-remark textarea {
    width: 100%;
    height: 88px;
    line-height: 27px;
    padding-left: 10px;
    padding-right: 10px;
}

.invoice-setting .invoice-form-submit {
    border: none;
    text-align: center;
    padding-top: 120px;
}

.invoice-setting .invoice-form-submit input {
    background: var(--main-color);
    color: #fff;
    width: 100px;
    height: 40px;
    border-radius: 4px;
    font-weight: bold;
}

.invoice-setting #invoiceName,
.invoice-setting #invoiceEmail {
    margin-left: 1em;
}

.invoice-setting #invoiceHeader,
.invoice-setting #invoiceType {
    margin-left: 2em
}

.invoice-detail-content {
    /* margin: 0 auto;
    width: 80%; */
    font-weight: bold;
}

.invoice-detail-content .invoice-detail-address {
    width: auto;
}

.invoice-detail-content p {
    min-height: 24px;
    line-height: 24px;
    margin-bottom: 10px;
    color: gray;
    width: 330px;
}

.invoice-detail-content p span {
    color: #333;
}

.invoice-detail-content .invoice-detail-info,
.invoice-detail-content .invoice-user-content,
.invoice-detail-content .invoice-package-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.invoice-detail-order table {
    width: 100%;
}

.invoice-detail-order thead {
    background-color: #fafafa
}

.invoice-detail-order td {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (max-width: 800px) {
    .container {
        padding-left: 0;
        padding-right: 0;
    }

    .user-center {
        margin: 0;
        height: auto;
        box-shadow: none;
        margin-top: 88px;
    }

    .user-center a {
        color: inherit
    }

    .user-center .side-bar {
        display: none;
    }

    .user-center .tabs-content {
        width: 100vw;
        padding: 0;
    }

    .user-center .tabs-content h4 {
        border: none;
        text-align: center;
    }

    .user-center .tabs-content .user {
        width: 82vw;
    }

    .user-center .tabs-content .user-name {
        margin-top: 0;
    }

    .user-center .tabs-content .user input {
        width: 60vw;
    }

    .user-center .tabs-content .user-code input {
        width: 27vw;
    }

    .user-center .tabs-content .user-code span {
        width: 30vw;
        margin-left: 3vw;
    }

    .user-center .tabs-content .confirm-modify {
        justify-content: center;
    }

    .user-center .tabs-content .confirm-modify button {
        width: 60vw;
    }

    .user-center .buyed-ticket h4,
    .user-center .order-ticket h4,
    .user-center .ticket-info h4,
    .user-center .invoice-info h4,
    .user-center .invoice h4,
    .user-center .ask-for-invoice h4 {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        width: 80vw;
        padding-bottom: 14px;
        font-size: 30px;
        font-family: PingFang SC;
        font-weight: 600;
        color: #000;
        border-bottom: 1px solid #949494;
    }

    .user-center .complete {
        margin-top: 10vh;
    }

    .buyed-ticket .select-status {
        width: 80vw;
        margin-left: auto;
        margin-right: auto;
    }

    .buyed-ticket .ticket-list {
        max-height: 1100px;
    }

    .buyed-ticket .ticket-list li {
        width: 85vw;
        margin-left: auto;
        margin-right: auto;
    }

    .buyed-ticket .ticket-list li a {
        color: rgba(0, 137, 255, 1);
    }

    .order-ticket .select-status {
        width: 80vw;
        margin-left: auto;
        margin-right: auto;
    }

    .order-ticket .order-content {
        max-height: 1100px;
    }

    .order-ticket .order-content li {
        width: 85vw;
        margin-left: auto;
        margin-right: auto;
    }

    .order-ticket .order-content li a {
        color: rgba(0, 137, 255, 1);
    }

    .ticket-info .ticket-content {
        flex-direction: column;
        max-height: 1000px;
    }

    .ticket-info .ticket-content li {
        width: 85vw;
        margin-left: auto;
        margin-right: auto;
    }

    .site-footer {
        display: none
    }

    .invoice-amount {
        justify-content: center;
    }

    .invoice-content {
        flex-direction: column;
        width: 80vw;
        margin: 0 auto;
    }

    .invoice-content li {
        width: 100%;
        height: auto;
    }

    .invoice-info .all-select-status {
        width: 80vw;
        margin: 0 auto;
    }

    .invoice-info .invoice-order {
        flex-direction: column;
        width: 80vw;
        margin: 0 auto;
    }

    .invoice-info .invoice-order li {
        width: 100%;
    }

    .invoice-info .total {
        text-align: center;
    }

    .user-center .ask-for-invoice {
        width: 80vw;
        margin: 0 auto;
    }

    .ask-for-invoice .invoice-form-content {
        flex-direction: column;
    }

    .ask-for-invoice .left,
    .ask-for-invoice .right {
        width: 100%;
    }

    .ask-for-invoice .invoice-form input {
        width: 130px;
    }

    .ask-for-invoice .form-phone input,
    .ask-for-invoice .form-name input,
    .ask-for-invoice .form-city input,
    .ask-for-invoice .form-identifier input {
        width: 110px;
    }

    .ask-for-invoice .form-email input {
        width: 176px;
    }

    .ask-for-invoice input {
        height: 38px;
        width: 110px;
    }

    .ask-for-invoice .invoice-submit {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .invoice-detail-info,
    .invoice-user-content {
        flex-direction: column;
        padding-left: 30px;
    }

    .invoice-detail-user h3 {
        text-align: center;
    }

    .user-center .invoice-setting {
        width: 80vw;
        margin: 0 auto;
    }

    .invoice-setting form {
        width: 100%;
    }

    .invoice-setting .form-content {
        flex-direction: column;
    }

    .invoice-setting form input {
        width: 130px;
    }

    .invoice-setting .form-phone input,
    .invoice-setting .form-name input,
    .invoice-setting .form-invoice-type select,
    .invoice-setting .form-identifier input {
        width: 110px;
    }

    .invoice-setting .form-email input {
        width: 140px;
    }

    .invoice-setting input {
        height: 38px;
        width: 110px;
        border: none;
    }

    .invoice-setting .invoice-submit {
        padding-top: 80px;
        padding-bottom: 50px;
    }
}

@media (max-width: 750px) {
    .user-center .tabs-content .user {
        width: 84vw;
    }
}
@media (max-width: 640px) {
    .user-center .tabs-content .user {
        width: 88vw;
    }
}