* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

* a {
    text-decoration: none;
}

/* 全屏布局 */
html,
body {
    height: 100%;
}

.box {
    /* min-height: 100%; */
}

.section {
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
}

.server-wrap {
    flex: 1;
}


.server-box {
    display: flex;
    flex-direction: column;
    width: 85%;
    margin: 60px auto;
	margin-top: 150px;

}

.server-banner img {
    width: 100%;
    display: block;
}

.server-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}


.server-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
}

.crad-img img {
    width: 400px;
    height: 443px;
    object-fit: cover;
}

.card-item {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 30px
}

.card-item .item-Information {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.item-Information .left {
    display: flex;
    flex-direction: column;
}

.item-Information .left .name {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 15px;
}

.name p:first-child {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 16px;
    color: #333333;
}

.name p:last-child {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #3377FF;
    background: rgba(47, 134, 246, 0.1);
    border-radius: 15px;
    padding: 5px 15px;

}

.item-Information .left>p:last-child {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    margin-top: 10px;
}


.item-Information .right {
    cursor: pointer;
}

.item-Information .right i {
    color: #333;
    border-radius: 50%;
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: #F9F9F9;
    border-radius: 50%;
}

.card-item .card-line {
    height: 2px;
    border: 1px solid #F2F2F2;
    content: "";
}

.card-item .item-more {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-more .icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-more .icon i {
    color: #275DBF;
}

.item-more .icon p {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
}

.server-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.server-bottom>p {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

.page-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-wrap span {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #333333;

}

.page-wrap a {
    border: 1px solid #ddd;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    padding: 5px 10px;
}

.page-wrap a:hover {
    background-color: #275DBF;
    color: #FFFFFF;
    border-color: #275DBF;
}

.page-wrap a.active {
    background: #275DBF;
    color: #fff;
    border-color: #275DBF;
}

.page-wrap a.active:hover {
    cursor: default;
}

.page-wrap input {
    width: 51px;
    height: 41px;
    border-radius: 5px;
    border: 1px solid #DDDDDD;
    padding: 5px 15px;
    text-align: center;
    outline: none;
}

/* ===== 个人码弹窗 ===== */
.qrcode-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.qrcode-modal-content {
    background: #fff;
    border-radius: 16px;
    width: 480px;
    max-width: 90vw;
    max-height: 96vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: qrcodeFadeIn 0.25s ease;
}

@keyframes qrcodeFadeIn {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.qrcode-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 0;
}

.qrcode-modal-title {
    font-family: Microsoft YaHei;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.qrcode-modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
    line-height: 1;
}

.qrcode-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.qrcode-modal-body {
    padding: 28px 40px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 第1行：头像居中 */
.qrcode-avatar-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.qrcode-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e8e8e8;
}

/* 第2行：姓名 + 职务居中 */
.qrcode-name-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
}

.qrcode-name {
    font-family: Microsoft YaHei;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.qrcode-tag {
    font-family: Microsoft YaHei;
    font-size: 12px;
    color: #3377FF;
    background: rgba(47, 134, 246, 0.1);
    border-radius: 12px;
    padding: 2px 12px;
    white-space: nowrap;
}

/* 第3行：公司名居中 */
.qrcode-company {
    font-family: Microsoft YaHei;
    font-size: 14px;
    color: #999;
    text-align: center;
    margin: 6px 0 0;
    max-width: 100%;
    word-break: break-word;
    line-height: 1.5;
}

/* 第4行：很淡的横线 */
.qrcode-divider {
    width: 100%;
    height: 1px;
    background: #f0f0f0;
    margin: 20px 0;
}

/* 第5行：电话 + 邮箱 对半居中 */
.qrcode-contact-row {
    display: flex;
    width: 100%;
    justify-content: space-around;
    margin-bottom: 0;
}

.qrcode-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: Microsoft YaHei;
    font-size: 14px;
    color: #555;
}

.qrcode-contact-item i {
    width: 20px;
    text-align: center;
    color: #89B4F8;
    font-size: 16px;
    flex-shrink: 0;
}

.qrcode-contact-item span {
    font-family: Microsoft YaHei;
    font-size: 14px;
    color: #555;
    word-break: break-all;
}

/* 第6行：地址（单独一行，居中） */
.qrcode-contact-address {
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 0;
}

/* 第7行：双层边框包裹个人码 */
.qrcode-image-outer {
    border: 3px solid #275DBF;
    border-radius: 12px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 14px 0 0;
}

.qrcode-image-inner {
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qrcode-image-inner img {
    width: 160px;
    height: 160px;
    display: block;
    object-fit: contain;
}

/* 底部按钮区域 */
.qrcode-modal-footer {
    display: flex;
    justify-content: center;
    padding: 6px 32px 28px;
}

.qrcode-save-btn {
    width: calc(100% - 32px);
    max-width: 448px;
    height: 46px;
    background: #275DBF;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: Microsoft YaHei;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.qrcode-save-btn:hover {
    background: #1a4da8;
}

