.hk-identity-solution {
    padding: 80px 0;
    background-color: #f8f9fa;
    background-image: url('https://www.ymin580.com/image/shouye/ditu55.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hk-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 20px;
}

.hk-top-tabs {
    display: flex;
    flex-wrap: nowrap;
    background-color: #ffffff;
    border-bottom: 2px solid #2e057b;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
}

.hk-tab-btn {
    flex: 0 0 auto;
    min-width: 150px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: none;
    position: relative;
}

.hk-tab-btn:hover {
    background-color: #f8f9fa;
}

.hk-tab-btn.active {
    background-color: #2e057b;
    color: white;
}

.hk-tab-btn i {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
    color: #2e057b;
}

.hk-tab-btn.active i {
    color: white;
}

.hk-tab-btn h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2e057b;
}

.hk-tab-btn.active h3 {
    color: white;
}

.hk-content-area {
    padding: 30px;
    background-color: #ffffff;
    color: #2e057b;
}

.hk-tab-content {
    display: none;
}

.hk-tab-content.active {
    display: block;
}

.hk-content-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.hk-content-left {
    flex: 1;
    min-width: 300px;
}

.hk-content-right {
    flex: 1;
    min-width: 300px;
}

.hk-content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hk-content-left h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2e057b;
}

.hk-content-left p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333333;
}

.hk-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.hk-feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #333333;
}

.hk-feature-list li i {
    position: absolute;
    left: 0;
    top: 10px;
    color: #2e057b;
}

.hk-project-meta {
    margin-bottom: 20px;
}

.meta-item {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
    padding: 5px 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    color: #2e057b;
}

.meta-item i {
    margin-right: 5px;
    color: #2e057b;
}

.hk-btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2e057b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hk-btn-primary:hover {
    background-color: #1e035a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hk-top-tabs {
        flex-direction: row;
    }
    
    .hk-tab-btn {
        width: auto;
        text-align: center;
        padding: 15px 10px;
    }
    
    .hk-tab-btn i {
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
        color: #2e057b;
    }
    
    .hk-tab-btn.active i {
        color: white;
    }
    
    .hk-tab-btn h3 {
        display: block;
        font-size: 16px;
    }
    
    .hk-content-left h3 {
        font-size: 16px;
    }
    
    .hk-content-inner {
        flex-direction: column;
    }
    
    .hk-content-left,
    .hk-content-right {
        width: 100%;
    }
}