/* styles.css - 网络检测模块样式 */

/* 断网提示框样式 */
.network-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.network-modal-content {
    background-color: white;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.network-modal-header {
    background-color: #FFA500;
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

.network-modal-body {
    padding: 20px;
    text-align: center;
}

.network-refresh-btn {
    background-color: #FFA500;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
}

.network-refresh-btn:hover {
    background-color: #FF8C00;
}