/* 主容器样式 */
.container333 {
  max-width: 1500px; /* 设置容器最大宽度 */
  margin: 0 auto; /* 容器水平居中 */
  padding: 20px; /* 内边距 */
  background-color: transparent;
  border-radius: 10px; /* 圆角 */
  display: flex; /* 使用flex布局 */
  flex-direction: column; /* 子项垂直排列 */
  align-items: center; /* 内容水平居中 */
  justify-content: center; /* 内容垂直居中 */
  margin-bottom: 60px;
}

.alert-info {
    color: #ccc;
    background-color: transparent;
    font-size: 23px;
    border: none;
    margin-top: 60px !important;
    margin-bottom: 0px;
}

.alert-info a {
    color: #0adbff;
}

    @media (min-width: 992px) {
        .col-md-8 {
            width: 100%;          
        }
    }
.leak-safe, .leak-alert {
    margin-bottom: 30px;
}  
  
main.container.mt-4 {
    max-width: 1350px;
}

    .ip-card, #user-ipv4, #user-ipv4-2, #user-ipv6, user-ipv6-test {
    padding: 15px 5px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #2b2b2b;
    background-color: #0b1116;
    color: #ffffff;
        /*       font-family: Arial, sans-serif; */
            }
    
    #user-ipv4, #user-ipv4-2, #user-ipv6, span#user-ipv6-test, span#user-ipv6-new, span#cn1, span#cn2, span#us1, span#us2 {
        border: none;
        margin-bottom: 0;
        padding: 0 5px;
    }

.border-danger {
    border-color: #2b2b2b !important;
}
 
        .leak-safe {
            color: #28a745;
            font-weight: bold;
            font-size: 19px;
        }
    
        .leak-alert {
            color: #dc3545;
            font-weight: bold;
            font-size: 19px;
        }
    
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
    
            .ip-card {
                padding: 10px;
            }
        }
    .page .panel p {
        margin-bottom: 0;
    }
    
.text-danger, #user-ipv4, #user-ipv4-2, #user-ipv6, span#user-ipv6-test, span#user-ipv6-new, span#cn1, span#cn2, span#us1, span#us2 {
    color: #c96922 !important;
}




    /* 容器样式 */
    .ip-info-container {
        width: 100%;
        max-width: 700px;
        margin: auto;
        padding: 20px;
        /* background-color: #ffffff; */
        border-radius: 10px;
    }
    
    /* 标题样式 */
    .ip-info-container h1 {
        text-align: center;
        font-size: 28px;
        color: #444;
        margin-bottom: 20px;
    }
    
    /* IP 结果样式 */
    .ip-result {
        display: flex;
        flex-direction: column;
        gap: 15px; /* 增加每行之间的间距 */
    }
    
    /* IP 项样式 */
    .ip-item {
        display: flex;
    /*    justify-content: space-between; */
        align-items: center;
        padding: 10px 15px;
    }
    
    /* 标签样式 */
    .ip-label {
        font-size: 17px;
        font-weight: bold;
        color: #555;
    }
    
    /* 数据样式 */
    .ip-item span {
        font-size: 17px;
        color: #aaaaaa;
        font-weight: bold;
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        .ip-info-container h1 {
            font-size: 22px; /* 标题缩小 */
        }
    
        .ip-item {
            flex-direction: column; /* 在小屏幕上垂直显示 */
            align-items: flex-start;
        }
    
        .ip-label {
            margin-bottom: 5px;
        }
    }
