<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans SC", "Source Sans Pro", Helvetica, Arial, sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.logo {
    margin-left: 20px;
}

.logo img {
    vertical-align: middle;
}

.no-wrap {
  white-space: nowrap;
}


.right-container {
    display: flex;
    align-items: center;
    margin-right: 20px;
    white-space: nowrap;
}


.search-container {
    position: relative;
    margin-right: 10px;
}



.search-input {
    width: 260px;
    height: 36px;
    border: 1px solid #a0c3ff;
    border-radius: 20px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.2s ease-in-out;
}

.search-input:focus {
    border-color: #007bff;
}

.search-container .dropdown {
    display:none;
    position: absolute;
    top: 105%;
    left: 0;
    border-top: none;
    border-radius: 4px;
    width: 100%;
    line-height: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    background-color:  #f9f9f9;
    padding: 10px 1px;
    max-height: calc(100vh - 130px); 
    overflow-x: hidden;
}

.search-container .dropdown a {
    display:block;
    width: 100%;
    text-align: left;
    padding-left: 22px;
    text-decoration: none;
    color: #333;
    line-height: 2.5;
    font-size: 16px;
}

.search-container .dropdown a img {
    margin-right: 5px;
    height: 20px;
    vertical-align: middle;
}

.search-container .dropdown a span {
    vertical-align: middle;
    font-size: 14px;
}

.search-container .dropdown a:hover {
    font-weight: bold;
}

.privilege {
    margin-left: 10px;
    margin-right: 10px;
    text-decoration: none;
    background-image: url("/img/svg/privilege.svg");
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 25px;
    color: inherit;
}

.language-container {
    border-radius: 4px;
    background-image: url("/img/svg/language.svg");
    background-repeat: no-repeat;
    background-position: left center;
    padding: 4px 4px 4px 25px;
    position: relative;
    margin: 20px 10px;
}

.language-container a {
    color: inherit;
    text-decoration: none;
}

.language-container .dropdown {
    display:none;
    position: absolute;
    top: 100%; left: 0;
    background-color: #f2f2f2;
    border-radius: 4px;
    width: 100%;
    line-height: 2;
}

.language-container .dropdown a {
    display:block;
    width: 100%;
    text-align: center;
}

.language-container .dropdown a:hover {
    font-weight: bold;
}


.login {
    margin-left: 10px;
    color: #fff;
    background-color: blue;
    border-radius: 20px;
    padding: 10px 30px;
    font-weight: bold;
    text-decoration: none;
}

.login-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding-left: 10px;
    padding-right: 5px;
    position: relative;
  }

.login-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

.login-avatar .account-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 230px);
    right: 0;
    transform: translateY(-100%);
    background-color: #f2f2f2;
    border-radius: 8px;
    padding: 15px;
    padding-bottom: 0px;
    z-index: 1;
}

.login-avatar .account-show::before {
    content: "";
    position: absolute;
    top: -20px;
    right: 19px;
    transform: none;
    border: 10px solid transparent;
    border-bottom-color: #f2f2f2;
}

.login-avatar .account-show {
    display: block;
  }

.login-avatar .account-show a {
  color: #000000; 
  text-decoration: none; 
}

.login-avatar .account-show a:hover {
  font-weight: bold;
}

.login-avatar .account-show .renew-vip, .login-avatar .account-show .upgrade-to-vip {
    background-color: #F9A632;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 32px;
}

.login-avatar .account-show .renew-vip a, .login-avatar .account-show .upgrade-to-vip a {
    color: #fff;
}

.login-avatar .account-show .account {
    background-image: url("/img/svg/account.svg");
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 30px;
    margin-left: 5px;
}

.login-avatar .account-show .logout {
    background-image: url("/img/svg/logout.svg");
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 30px;
    margin-left: 5px;
}

.content {
    margin-top: 80px;
    display: flex;
    flex-wrap: nowrap;
    height: calc(100vh - 80px);
}
.left {
    width: 200px;
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 80px;
    bottom: 0;
    overflow-y: auto;
}
.navigation {
    list-style: none;
    padding: 25px;
    margin: 20px 0;
}

.navigation li {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

.navigation li.active {
    background-color: #eee;
}

.navigation li:hover {
    background-color: #eee;
    border-color: #09f;
}

.navigation li a {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
}

.navigation li a img {
    width: 20px;
    height: 20px;
    margin-right: 16px;
}

.navigation li.active a {
    color: #417ff9;
}

.navigation li.active::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 100%;
    margin-right: 10px;
    background-color: #ccc;
    border-radius: 5px 0 0 5px;
}

.navigation li::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 100%;
    margin-right: 10px;
    background-color: transparent;
    border-radius: 0;
}

.right {
    flex-grow: 1;
    background-color: #f9f9f9;
    margin-left: 200px;
    padding: 10px 30px;
    overflow-y: auto;
}

/*account start*/
.account-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.account-container h1 {
    margin-bottom: 20px;
}

.type-selection {
    display: flex;
    margin-bottom: 10px;
}

.type-button {
    background-color: transparent;
    border: none;
    color: black;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    cursor: pointer;
    position: relative;
}

.type-button a {
    color: inherit;
    text-decoration: none;
}

.type-button:hover,
.type-button.active {
    color: #5081f1;
}

.type-button::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 50%;
    height: 2px;
    background-color: #4f81f1;
    transform: translateX(-50%);
    opacity: 0;
}

.type-button:hover::after,
.type-button.active::after {
    opacity: 1;
}

.account-selection {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 25px;
}

.account-buttons-container {
    background-color: #f0f0f0;
    border-radius: 25px;
    display: inline-flex;
    padding: 5px;
}

.account-button {
    background-color: transparent;
    border: none;
    border-radius: 20px;
    color: #333;
    cursor: pointer;
    font-size: 16px;
    margin: 0 8px;
    padding: 8px 36px;
    transition: all 0.3s ease;
}

.account-button:hover,
.account-button.active {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: forestgreen;
}

.account-button:hover::after,
.account-button.active::after {
    opacity: 1;
}

.account-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 78%;
}

.account-options &gt; div {
    display: block;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin: 10px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.account-options a {
    text-decoration: none; /* åŽ»é™¤ä¸‹åˆ’çº¿ */
}

.account-options a:hover {
    text-decoration: underline; /* åœ¨æ‚¬åœæ—¶æ˜¾ç¤ºä¸‹åˆ’çº¿ */
}

.account-options h2 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 23px;
}

.account-options .table {
    display: table;
    width: 100%;
    border-collapse: collapse;
}
.account-options .table-row {
    display: table-row;
}
.account-options .table-cell {
    display: table-cell;
    border: 1px solid #d5d7dd;
    padding: 5px;
    line-height: 36px;
}
.account-options .center-align {
    text-align: center; /* å±…ä¸­å¯¹é½ */
}
.account-options .ellipsis {
    max-width: 398px; /* æ–‡ä»¶åå•å…ƒæ&nbsp;¼æœ€å¤§å®½åº¦ä¸º420px */
    min-width: 188px;
    white-space: nowrap; /* é˜²æ­¢æ–‡æœ¬æ¢è¡Œ */
    overflow: hidden; /* éšè—æº¢å‡ºçš„æ–‡æœ¬ */
    text-overflow: ellipsis; /* æ˜¾ç¤ºçœç•¥å· */
}

#renewal-package a {
    color: #d4a96b;
    font-weight: bold;
    text-decoration: none; /* ç§»é™¤é“¾æŽ¥çš„ä¸‹åˆ’çº¿ */
}

#together-make-money {
    font-size: 19px;
}

#together-make-money:hover {
    cursor: pointer; /* è®¾ç½®é¼&nbsp;æ&nbsp;‡æ‚¬åœæ—¶çš„å…‰æ&nbsp;‡æ&nbsp;·å¼ä¸ºæ‰‹åž‹ */
}

#shared-membership h4 {
    font-size: 17px;
    color: #195af6;
}

#shared-membership p {
    width: 97%;
    color: #195af6;
    border: 1px solid #195af6;
    border-radius: 26px; /* æ·»åŠ&nbsp;åœ†è§’ */
    padding-left: 20px;
    margin-bottom: 26px;
}

#shared-membership p a {
    color: #195af6;
    text-decoration: none; /* ç§»é™¤é“¾æŽ¥çš„ä¸‹åˆ’çº¿ */
}

.adjust-button {
    background-color: transparent; /* èƒŒæ™¯è‰²è®¾ä¸ºé€æ˜Ž */
    border: 1px solid #4CAF50; /* ä½¿ç”¨æŒ‰é’®è¾¹æ¡†çš„é¢œè‰² */
    color: black;
    padding: 8px 23px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 28px;
}

.adjust-button:hover {
    font-weight: bold;
}

.confirm-button {
    background-color: transparent; /* èƒŒæ™¯è‰²è®¾ä¸ºé€æ˜Ž */
    border: 1px solid #fe6057; /* ä½¿ç”¨æŒ‰é’®è¾¹æ¡†çš„é¢œè‰² */
    color: black;
    padding: 8px 23px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 28px;
}

.confirm-button:hover {
    font-weight: bold;
}

.confirmed-button {
    background-color: transparent; /* èƒŒæ™¯è‰²è®¾ä¸ºé€æ˜Ž */
    border: 1px solid #d4a96b; /* ä½¿ç”¨æŒ‰é’®è¾¹æ¡†çš„é¢œè‰² */
    color: black;
    padding: 8px 23px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 28px;
}

.confirmed-button:hover {
    font-weight: bold;
}

.rejected-button {
    background-color: transparent; /* èƒŒæ™¯è‰²è®¾ä¸ºé€æ˜Ž */
    border: 1px solid darkgray; /* ä½¿ç”¨æŒ‰é’®è¾¹æ¡†çš„é¢œè‰² */
    color: gray;
    padding: 8px 23px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 28px;
}

.rejected-button:hover {
    font-weight: bold;
}

.delete-button {
    background-color: transparent; /* èƒŒæ™¯è‰²è®¾ä¸ºé€æ˜Ž */
    border: 1px solid #febc2f; /* ä½¿ç”¨æŒ‰é’®è¾¹æ¡†çš„é¢œè‰² */
    color: black;
    padding: 8px 23px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 28px;
}

.delete-button:hover {
    font-weight: bold;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 50px;
    border: 1px solid #888;
    width: 30%;
    border-radius: 10px;
    position: relative; /* è®©å…³é—­æŒ‰é’®ç›¸å¯¹äºŽæ¨¡æ€æ¡†å®šä½ */
}

.modal-content input[type="number"] {
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.modal-content #quotaInput {
    width: 230px;
}

.modal-content button {
    padding: 8px 25px;
    margin: 5px 0;
    border: 1px solid #eceaea;
    border-radius: 5px;
    font-size: 16px;
}

.modal-content button {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #0056b3;
}

.modal-content input[type="number"]::placeholder {
    color: #aaa;
}

.modal-content input[type="number"]:focus,
.modal-content button:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.confirm-close,
.adjust-close {
    color: #aaa;
    position: absolute;
    top: 3px;
    right: 10px;
    font-size: 23px;
    font-weight: normal;
    cursor: pointer;
}

.confirm-close:hover,
.confirm-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.adjust-close:hover,
.adjust-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

#pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#pagination-controls button {
    padding: 8px 16px;
    font-size: 14px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#pagination-controls button:hover {
    background-color: #0056b3;
}

#pagination-controls button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

#page-info {
    font-size: 14px;
    color: #333;
    margin: 0 10px;
}

/* åˆ†é¡µæŽ§ä»¶å®¹å™¨ */
#recharge-pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* æŽ§åˆ¶æŒ‰é’®ä¹‹é—´çš„é—´è· */
}

/* æŒ‰é’®æ&nbsp;·å¼ */
#recharge-pagination-controls button {
    padding: 8px 16px;
    font-size: 14px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* æŒ‰é’®æ‚¬åœæ•ˆæžœ */
#recharge-pagination-controls button:hover {
    background-color: #0056b3;
}

/* æŒ‰é’®ç¦ç”¨çŠ¶æ€ */
#recharge-pagination-controls button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* é¡µé¢ä¿¡æ¯æ&nbsp;·å¼ */
#recharge-page-info {
    font-size: 14px;
    color: #333;
    margin: 0 10px; /* æŽ§åˆ¶ä¸ŽæŒ‰é’®ä¹‹é—´çš„é—´è· */
}

@media (max-width: 600px) {
  .privilege {
    display: none;
  }
  .language-container {
    display: none;
  }    

  .search-input {
    width: 130px;  
  }
}

@media (max-width: 768px) {
  .search-input {
    width: 130px;  
  }
}

@media (max-width: 1524px) {
  .account-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 92%;
  }
}

@media (max-width: 600px) {
    #pagination-controls {
        flex-direction: column;
        gap: 5px;
    }

    #pagination-controls button {
        width: 100%;
        padding: 10px;
    }

    #page-info {
        margin: 10px 0;
    }
}

/* å“åº”å¼è®¾è®¡ */
@media (max-width: 600px) {
    #recharge-pagination-controls {
        flex-direction: column;
        gap: 5px;
    }

    #recharge-pagination-controls button {
        width: 100%;
        padding: 10px;
    }

    #recharge-page-info {
        margin: 10px 0;
    }
}</pre></body></html>