.active_t {
    cursor: pointer;
}

.active_t:active {
    position: relative;
    top: 1px;
    opacity: 0.8;
}

#topUp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    z-index: 999;
}

#topUp .modal {
    width: 400px;
    background: #222;
    border-radius: 12px;
    color: #fff;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}


#topUp .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

#topUp .close-btn {
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

#topUp .balance {
    margin-top: 10px;
    color: #f3c532;
    font-size: 14px;
}

#topUp .options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

#topUp .option {
    flex: 1 1 calc(33.33% - 10px);
    background: #333;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    text-align: center;
}

#topUp .option.active {
    border: 1px solid #f3c532;
}

#topUp .qr-section {
    text-align: center;
    margin-top: 20px;
    background: #333;
    padding: 10px;
    border-radius: 8px;
}

#topUp .qr-section img {
    width: 100px;
    height: 100px;
    margin: 10px 0;
}

#topUp .amount {
    color: #f00;
    font-size: 18px;
    font-weight: bold;
}

#topUp .footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

#topUp .footer-links a {
    color: #999;
    text-decoration: none;
}

#topUp .footer-links a:hover {
    text-decoration: underline;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.popup-content {
    background: #1a1a2e;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-content h2 {
    margin: 10px 0;
    color: #fff;
}

.popup-content p {
    margin: 5px 0;
    font-size: 16px;
    color: #ccc;
}

.popup-content button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #ff4d4f;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.popup-content button:hover {
    background: #d9363e;
}

#modalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    z-index: 99;
}

#modalOverlay .modal {
    width: 400px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    position: relative;
}

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

#modalOverlay .icons {
    display: flex;
    justify-content: space-around;
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

#modalOverlay .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

#modalOverlay .tabs {
    display: flex;
    margin-top: 15px;
    border-bottom: 1px solid #ddd;
}

#modalOverlay .tab {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    color: #666;
    font-weight: bold;
}

#modalOverlay .tab.active {
    color: #e75a7c;
    border-bottom: 2px solid #e75a7c;
}

#modalOverlay .input-group {
    margin-top: 15px;
    text-align: left;
    display: none;
}
#modalOverlay .getCodeBtn {
    margin-left: 10px;
    padding: 10px;
    background: transparent;
    border: none;
    color: #fe2c55;
}
#modalOverlay .getCodeBtn_active {
    margin-left: 10px;
    padding: 10px;
    background: transparent;
    border: none;
    color: #999;
}

#modalOverlay .input-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-top: 5px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
}

#modalOverlay .input-group a {
    color: #e75a7c;
    font-size: 12px;
    text-decoration: none;
    float: right;
    margin-top: 5px;
}

#modalOverlay .login-btn,
#modalOverlay .login-btn1 {
    background: #fe2c55;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: bold;
}

#modalOverlay .modal-footer {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

#modalOverlay #passwordTab {
    display: block;
}

.hide {
    display: none !important;
}

#clearpop {
    position: fixed;
    left: 10%;
    right: 10%;
    top: 100px;
    z-index: 999;
    text-align: center;
}

.clearpop_p {
    display: inline-block;
    min-width: 100px;
    max-width: 90%;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

@media screen and (max-height: 600px) {
    #clearpop {
        top: 60px;
    }
    .clearpop_p {
        padding: 6px 12px;
        font-size: 15px;
        font-weight: normal;
        border-radius: 3px;
    }
}

#my_confirm_pop {
    position: fixed;
    z-index: 999;
    left: 50%;
    top: 30vh;
    margin-left: -125px;
    width: 250px;
    border-radius: 5px;
    background: #fff;
    font-size: 16px;
    color: #999;
    text-align: center;
}

#my_confirm p {
    padding: 20px;
    text-align: left;
    line-height: 26px;
    color: #666;
}

#my_confirm_btn {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
}

#my_confirm_btn em {
    flex: 1;
    padding: 10px 0;
}

#my_confirm_btn em:first-child {
    border-right: 1px solid #eee;
}

.mokylin-footer {
    width: 100%;
    background: #000;
}

.footer-main {
    max-width: 1000px;
    margin: 0 auto;
    font: 12px/20px 'Microsoft Yahei', 'SongTi';
    padding: 50px 0;
    overflow: hidden;
    display: flex;
    flex-flow: wrap;
    justify-content: space-around;
}

.footer-logos {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-logos img {
    display: block;
    height: 100%;
    width: auto;
}

.logo-mokylin,
.logo-age {
    display: inline-block;
    height: 40px;
    margin: 10px 0 0 10px;
    font-size: 0;
}

.footer-content {
    float: right;
    padding: 0;
    margin: 0;
    max-width: 990px;
    line-height: 20px;
    font-size: 12px;
    color: #494949;
}

.footer-content a {
    color: #494949;
    padding: 0 4px;
    border-right: 0.5px solid #494949;
    text-decoration: none;
}

.footer-content .copy-link {
    margin-right: 10px;
    border: none;
}

.footer-content p {
    padding: 0;
    margin: 0;
}

.footer-content p a:last-of-type {
    border: none;
}

.footer-content .copy-en {
    padding-left: 4px;
}
