body {
    font-size: 14px;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #009900;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.nav-buttons {
    display: flex;
    padding: 12px;
}

.mt-12 {
    margin-top: 12px;
}

.member_con {
    width: 980px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.datetime {
    font-size: 14px;
    margin-bottom: 10px;
}

hr {
    margin: 15px 0;
    border: none;
    height: 1px;
    background-color: #ccc;
}

/* 遮罩层样式 */
.mask-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

/* 弹窗样式 */
.score-modal {
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    background-color: #9FD59E;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.modal-body {
    padding: 20px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.close-btn:hover {
    color: #333;
}

.score-detail-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.score-detail-item:last-child {
    border-bottom: none;
}

.detail-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.detail-content {
    color: #666;
    font-size: 13px;
}

.detail-value {
    float: right;
    font-weight: bold;
    color: #009900;
}

.detail-value.total {
    color: #e74c3c;
    font-size: 16px;
}

.view-detail-link {
    color: #009900;
    text-decoration: underline;
    cursor: pointer;
}

.view-detail-link:hover {
    color: #006600;
}

.vip-badge {
    background-color: #e74c3c;
    color: white;
    padding: 2px 6px;
    font-size: 12px;
    margin-left: 5px;
}

.register-badge {
    background-color: #f39c12;
    color: white;
    padding: 2px 6px;
    font-size: 12px;
    margin-left: 5px;
}

.member_nav {
    font-size: 14px;
    border: 1px solid #006600;
    background-color: #eefaee;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}

.member_nav a {
    color: #009900;
    text-decoration: none;
}

.menu_item {
    position: relative;
}

.member_menu {
    color: #1fa51f;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
    font-weight: bold;
}

.second_menu a {
    color: #000;
}

.member_menu:hover {
    background-color: #fff;
}

.second_menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9fff9;
    border: 1px solid #006600;
    border-top: none;
    min-width: 150px;
    z-index: 100;
    display: none;
    overflow: hidden;
}

.menu_item:hover .second_menu {
    display: block;
}

.member_menu_second {
    color: #000;
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    background-color: #eefaee;
}

.member_menu_second:last-child {
    border-bottom: none;
}

.member_menu_second:hover {
    background-color: #fff;
}

.menu_item:hover .member_menu {
    background-color: #fff;
}

.has_submenu .member_menu::after {
    font-size: 10px;
    margin-left: 5px;
}