.page-header {
    height: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #333;
}
.header-box {
    width: 12rem;
    height: 100%;
    margin: 0 auto;
}
.header-box-seat {
    width: 100%;
    height: 1rem;
}
.header-logo {
    font-size: 0.28rem;
    color: #16133E;
    font-weight: bold;
}
.header-logo img {
    width: 1.76rem;
    height: 0.4rem;
    border-radius: 0.08rem;
}
.header-nav a{
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 1.32rem;
    font-size: 0.18rem;
    color: #fff;
}
.header-nav a:first-child {
    margin-left: 0;
}
.header-nav-active {
    border-bottom: 2px solid #fff;
}
.register-btn {
    display: inline-block;
    width: 1.2rem;
    height: 0.46rem;
    text-align: center;
    line-height: 0.44rem;
    border-radius: 0.08rem;
    border: 0.02rem solid #3385FD;
    font-size: 0.16rem;
}
.register-btn a {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #3385FD;
}
.login-btn {
    width: 1.2rem;
    height: 0.46;
    text-align: center;
    line-height: 0.44rem;
    background-color: #3385FD;
    border-radius: 0.08rem;
    border: 0.02rem solid #3385FD;
    font-size: 0.16rem;
    margin-left: 0.16rem;
}
.login-btn a {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #fff;
}
.user-nav {
    font-size: 0.16rem;
    color: #16133E;
}
.user-nav img {
    width: 0.46rem;
    height: 0.46rem;
    margin-right: 0.1rem;
}
.footer-box {
    height: 1.73rem;
    background-color: #303741;
}
.footer-box-cnt {
    width: 12rem;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-box-cnt-text {
    font-size: 0.18rem;
    color: #999;
    text-align: right;
}
.footer-box2 {
    height: 0.75rem;
    background-color: #282C30;
}
.footer-box2-cnt {
    width: 12rem;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.18rem;
    color: #999;
}
.footer-box2-cnt a {
    color: #999;
}

/* 消息提示弹窗 */
.message-box {
    position: fixed;
    top: -100px;
    z-index: 10000;
    width: 100%;
    font-size: 16px;
    display: flex;
    justify-content: center;
}
.message-cnt {
    padding: 10px 16px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
}
.message-error {
    color: #f56c6c;
    background-color: #fef0f0;
    border-color: #fde2e2;
}
.message-success {
    color: #67c23a;
    background-color: #f0f9eb;
    border-color: #e1f3d8;
}

/* 对话框 */
.dialog-box {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.5);
}
.dialog-cnt {
    width: 30%;
    background-color: #fff;
    border-radius: 0.1rem;
    position: relative;
}
.dialog-title {
    font-size: 0.24rem;
    text-align: center;
    padding: 0.2rem;
}
.dialog-desc {
    font-size: 0.2rem;
    text-align: center;
    padding: 0 0.2rem 0.2rem;
}
.pay-qrcode {
    width: 100%;
    text-align: center;
}
.pay-qrcode img {
    width: 80%;
}
.dialog-close {
    position: absolute;
    top: 0;
    right: 0.1rem;
    font-size: 0.5rem;
    line-height: 1;
    cursor: pointer;
}