.talent-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.talent-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.talent-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.talent-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 200;
}

.talent-logo img {
    width: 200px;
    height: auto;
    transition: all 0.3s ease;
}

.talent-container {
    position: relative;
    z-index: 2;
    min-height: calc(100vh);
    flex-direction: column;
    display: flex; justify-content: center; align-items: center;
}

.talent-header {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    text-align: center;
}

.talent-header-img {
    max-width: 100%;
    height: auto;
}

.talent-buttons-container {
    display: flex;
    
    margin-bottom: 20px;
}

.talent-btn {
    width: 200px;
    padding: 12px 20px;
    background: #2181b1;
    color: #fff;
    border: none;
    margin: 0 10px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.talent-btn:hover {
    background: #1a6a94;
    transform: translateY(-2px);
}

.talent-btn.secondary {
    background: #f5f5f5;
    color: #333;
}

.talent-btn.secondary:hover {
    background: #e8e8e8;
}

.talent-lists-container {
    display: flex;
    
    width: 100%;
    max-width: 1200px;
    padding: 65px 20px 0px 20px;
}

.talent-list-wrapper {
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0 15px 15px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 20px;
}

.talent-title {
    font-size: 20px;
    color: #fff;
    
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.talent-list {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 195px;
    overflow: hidden;
}

.talent-list li {
    margin-bottom: 8px;
}

.talent-list a {
    display: flex;
    
    padding: 5px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.talent-list a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.talent-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 5px;
}

.talent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.talent-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.talent-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    
}

.talent-desc {
    font-size: 13px;
    color: #fff;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

footer1 {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 0;
    margin-top: auto;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    margin: 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* 响应式样式 */
@media (max-width: 1400px) {
    .talent-logo img {
        width: 180px;
    }
}

@media (max-width: 1200px) {
    .talent-logo img {
        width: 160px;
    }
    
    .talent-lists-container {
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .talent-logo img {
        width: 140px;
    }
    
    .talent-lists-container {
        flex-direction: column;
        max-width: 700px;
        display: none;
    }
    
    .talent-list-wrapper {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .talent-logo {
        top: 20px;
        left: 20px;
    }
    
    .talent-logo img {
        width: 120px;
    }
    
    .talent-container {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .talent-logo {
        top: 15px;
        left: 15px;
    }
    
    .talent-logo img {
        width: 100px;
    }
    
    .talent-container {
        padding: 40px 0;
    }
    
    .talent-header {
        margin-bottom: 30px;
    }
    
    .talent-buttons-container {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .talent-lists-container {
        padding: 0 15px;
        display: none;
    }
    
    .talent-list-wrapper {
        padding: 20px;
    }
    
    .talent-list {
        height: 300px;
    }
    
    .talent-list a {
        flex-direction: column;
        text-align: center;
    }
    
    .talent-image {
        width: 100%;
        height: 120px;
        margin-bottom: 10px;
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

/* 手机容器样式 */
.phone-container {
    width: 400px;
    height: 820px;
    background-color: #fff;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

/* 手机顶部状态栏 */
.phone-header {
    height: 50px;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 25px;
    background-color: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.phone-time {
    font-size: 16px;
}

.phone-battery {
    font-size: 16px;
}

/* 手机内容区域 */
.phone-content {
    position: relative;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
    display: flex;
    flex-direction: column;
    
    height: calc(100% - 110px);
}

.h5-header {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
    flex-shrink: 0;
}

.h5-header h2 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.h5-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: grid;
  justify-content: center; /* 水平居中 */
  align-items: center; /* 垂直居中 */
}

.h5-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.h5-content p {
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
}

.h5-link {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    border: 1px solid #007bff;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.h5-link:hover {
    background-color: #007bff;
    color: #fff;
}

/* 手机底部 */
.phone-footer {
    height: 60px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    flex-shrink: 0;
    z-index: 1;
}

.close-modal {
    padding: 10px 25px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.close-modal:hover {
    background-color: #0056b3;
}

/* 遮罩层内容容器 */
.modal-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* 二维码容器样式 */
.qrcode-container {
    text-align: center;
    background: #fff;
    
    
}

.qrcode-container img {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
}

.qrcode-container p {
    color: #333;
    font-size: 16px;
    margin: 0;
}
