﻿.mod_copyright {
    border-top: 1px solid #EEEEEE;
}

.grid-top {
    margin-top: 20px;
    text-align: center;
}

    .grid-top span {
        margin: 0 10px;
        color: #ccc;
    }

.mod_copyright > p {
    margin-top: 10px;
    color: #666;
    text-align: center;
}

.mod_copyright_auth_ico {
    overflow: hidden;
    display: inline-block;
    margin: 0 3px;
    width: 103px;
    height: 32px;
    background-image: url(/Resource/images/Shop/ico_footer.png);
    line-height: 1000px;
}

.mod_copyright_auth_ico_1 {
    background-position: 0 -151px;
}

.mod_copyright_auth_ico_2 {
    background-position: -104px -151px;
}

.mod_copyright_auth_ico_3 {
    background-position: 0 -184px;
}

.mod_copyright_auth_ico_4 {
    background-position: -104px -184px;
}

.mod_copyright_auth_ico_5 {
    background-position: 0 -217px;
}




.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-container {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modal-header {
    padding: 16px;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.modal-body {
    padding: 24px;
    min-height: 120px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

    .radio-item input[type="radio"] {
        width: 16px;
        height: 16px;
        cursor: pointer;
    }

    .radio-item label {
        font-size: 14px;
        color: #333;
        cursor: pointer;
    }

.modal-footer {
    padding: 16px;
    border-top: 1px solid #e8e8e8;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #d9d9d9;
    transition: all 0.3s;
}

.btn-cancel {
    background-color: white;
    color: #333;
}

    .btn-cancel:hover {
        border-color: #40a9ff;
        color: #40a9ff;
    }

.btn-confirm {
    background-color: #1890ff;
    color: white;
    border-color: #1890ff;
}

    .btn-confirm:hover {
        background-color: #40a9ff;
        border-color: #40a9ff;
    }

.btn:active {
    transform: translateY(1px);
}

.result-area {
    margin-top: 20px;
    padding: 16px;
    background-color: #f5f5f5;
    border-radius: 8px;
    text-align: center;
}