.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.outer-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.4);
}

.card {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 6px;
    width: 270px;
    display: flex;
    flex-direction: column;
}

h3 {
    font-size: 16px;
    margin: 0 0 8px;
}

p {
    margin: 0;
    font-size: 14px;
    color: #424242;
}

/* 进度条样式 */
.progress-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-top: 8px;
    width: 100%;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 4px;
    background-color: #4caf50;
    position: absolute;
    left: 0;
    top: 0;
}

.copy-btn {
    position: absolute;
    top: 75px;
    right: 25px;
    color: #007bff;
    padding: 5px 5px;
    border: none;
    border-radius: 5px;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    background-color: transparent;
}
.copy-btn::after {
    content: "点击复制";
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 14px;
    z-index: 1;
    top: -18px;
    left: -18px;
    width: 80px;
    color: black;
}

.copy-btn:hover::after {
    opacity: 1;
}


/* 印章样式 */
.status-stamp {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: transparent; /* 设置背景透明 */
    color: #007bff;
    padding: 5px 5px;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.status-stamp::before {
    content: "\f002"; /* Font Awesome 查询图标代码 */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 5px;
    font-size: 18px; /* 增大图标字体大小 */
}
.status-stamp::after {
    content: "搜索跳转";
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 14px;
    z-index: 1;
    top: 7px;
    left: -60px;
    width: 80px;
    color: black;
}

.status-stamp:hover::after {
    opacity: 1;
}

/* 搜索框样式 */
.search-box {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 5px;
}

/* 修改搜索按钮为图标 */
.search-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-left: 10px;
}

.search-button i {
    color: #007bff;
    font-size: 18px;
}

/* 悬浮弹窗样式 */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 998;
}

.popup p {
    border-bottom: 1px solid #ddd;
    padding-bottom: 3px;
}

.mydiv {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.confirm-button {
    display: block;
    margin: 10px auto;
    padding: 10px 7px;
    background-color: #adadad;
    color: #fff;
    border: none;
    border-radius: 30px;
    text-align: center;
    box-shadow:0 3px 3px rgba(0, 0, 0, 0.5), 0 6px 5px rgba(0, 0, 0, 0.5);
}

/* 中国联通 */
.orange-red-button {
    display: block;
    margin: 10px auto;
    padding: 10px 7px;
    background-color: #FF4500;
    color: #fff;
    border: none;
    border-radius: 30px;
    text-align: center;
    box-shadow:0 3px 3px rgba(0, 0, 0, 0.5), 0 6px 5px rgba(0, 0, 0, 0.5);
}
/* 中国电信 */
.telecom-color-button {
    display: block;
    margin: 10px auto;
    padding: 10px 7px;
    background-color: #004B97;
    color: #fff;
    border: none;
    border-radius: 30px;
    text-align: center;
    box-shadow:0 3px 3px rgba(0, 0, 0, 0.5), 0 6px 5px rgba(0, 0, 0, 0.5);
}
/* 中国移动 */
.mobile-gradient-button {
    display: block;
    margin: 10px auto;
    padding: 10px 7px;
    background-color: rgba(9, 191, 102);
    color: #fff;
    border: none;
    border-radius: 30px;
    text-align: center;
    box-shadow:0 3px 3px rgba(0, 0, 0, 0.5), 0 6px 5px rgba(0, 0, 0, 0.5);
}

/* 底部链接样式 */
.footer-links {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
    /* 确保在底层，不遮挡其他元素 */
    margin-top: 40px;
    /* 增加与上方内容的距离，可以根据需要调整这个值 */
}

/* 确保卡片容器不会被底部链接遮挡 */
.card-container {
    margin-bottom: 40px;
    /* 与底部链接的距离保持一致 */
}

.footer-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}
/* 为卡片添加白色线条分隔 */
.card {
    border-bottom: 1px solid white;
    padding-bottom: 10px;
}

.mobile-gradient {
    background-image: linear-gradient(to right, rgba(0, 180, 229, 0.3), rgba(9, 191, 102, 0.3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mobile-gradient1 {
    background-image: linear-gradient(to right, rgba(255, 69, 0, 0.3), rgba(255, 0, 0, 0.5));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mobile-gradient2 {
    background-image: linear-gradient(to right, rgba(0, 75, 151, 0.3), rgba(0, 0, 255, 0.5));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.fa-eye-btn {
    position: absolute;
    top: 119px;
    right: 22px;
    background-color: transparent; /* 设置背景透明 */
    color: #858484;
    padding: 5px 5px;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    display: flex;
    align-items: center;
}