/* Simplified CSS for 武汉云贝网络科技有限公司 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.Header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.HeaderMain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.navs ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navs a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navs a:hover,
.navs a.active {
    color: #1179E5;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login.act a {
    background: #1179E5;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.login.act a:hover {
    background: #0d6efd;
}

.contact-info span {
    color: #666;
    font-size: 14px;
}

/* Main Content */
.page-content {
    margin-top: 80px;
}

/* Banner Section */
.banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #1179E5;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

/* Business Scenarios */
.section1 {
    background: #f8f9fa;
}

.cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.scenario-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.scenario-item:hover {
    transform: translateY(-5px);
}

.scenario-icon {
    margin-bottom: 20px;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.scenario-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.scenario-content p {
    color: #666;
    line-height: 1.6;
}

/* Advantages */
.advantage {
    background: white;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.advantage-item:hover {
    background: #f8f9fa;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1179E5 0%, #0d6efd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(17, 121, 229, 0.3);
}

.advantage-icon .icon-placeholder {
    width: 40px;
    height: 40px;
    background: none;
    box-shadow: none;
    font-size: 1.8rem;
    margin: 0;
}

.advantage-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.advantage-content p {
    color: #666;
}

/* Solutions */
.fangan {
    background: #f8f9fa;
}

.solution-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-button {
    background: white;
    border: 2px solid #1179E5;
    color: #1179E5;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-button.active,
.tab-button:hover {
    background: #1179E5;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.solution-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.solution-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1179E5 0%, #0d6efd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 2px 8px rgba(17, 121, 229, 0.3);
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: #1179E5;
}

.placeholder-content {
    text-align: center;
    color: #6c757d;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.placeholder-content p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Business Roles */
.yewu {
    background: white;
}

.business-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.role-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.role-item:hover {
    transform: translateY(-5px);
}

.role-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.role-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.role-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature .feature-icon {
    width: 25px;
    height: 25px;
    font-size: 1rem;
}

.role-image .image-placeholder {
    width: 200px;
    height: 150px;
    margin: 0 auto;
}

.role-image .placeholder-icon {
    font-size: 3rem;
}

/* Why Choose Us */
.why {
    background: #f8f9fa;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.why-icon .icon-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.why-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.why-content p {
    color: #666;
    line-height: 1.6;
}

/* Customer Cases */
.indcsase {
    background: white;
}

.case-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
}

.case-image .image-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 10px;
}

.case-image .placeholder-icon {
    font-size: 3rem;
}

.case-name {
    font-weight: 600;
    color: #333;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1179E5;
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

/* Contact Section */
.zixun {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.zixun h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.more {
    display: inline-block;
    background: white;
    color: #1179E5;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close-btn:hover {
    color: #000;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-text {
    flex: 1;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1179E5 0%, #0d6efd 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(17, 121, 229, 0.3);
}

.contact-text h3 {
    margin-bottom: 15px;
    color: #333;
}

.contact-details {
    margin-top: 20px;
}

.contact-details a {
    color: #1179E5;
    text-decoration: none;
}

.qr-code {
    text-align: center;
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    margin: 0 auto;
}

.qr-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.7;
}

.qr-placeholder p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    text-align: center;
}

/* Floating Contact */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-item {
    background: #1179E5;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.floating-item:hover {
    background: #0d6efd;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #1179E5;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1179E5;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

.footer-bottom a {
    color: #1179E5;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .HeaderMain {
        flex-direction: column;
        gap: 20px;
    }
    
    .navs ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .solution-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .role-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-contact {
        right: 10px;
        bottom: 10px;
    }
    
    .icon-placeholder {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .advantage-icon .icon-placeholder {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .why-icon .icon-placeholder {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .image-placeholder {
        height: 200px;
    }
    
    .placeholder-icon {
        font-size: 3rem;
    }
    
    .role-image .image-placeholder {
        width: 150px;
        height: 120px;
    }
    
    .case-image .image-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .case-image .placeholder-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 1.5rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .business-roles {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .icon-placeholder {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .advantage-icon .icon-placeholder {
        width: 30px;
        height: 30px;
        font-size: 1.3rem;
    }
    
    .why-icon .icon-placeholder {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
    
    .image-placeholder {
        height: 150px;
    }
    
    .placeholder-icon {
        font-size: 2.5rem;
    }
    
    .role-image .image-placeholder {
        width: 120px;
        height: 100px;
    }
    
    .case-image .image-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .case-image .placeholder-icon {
        font-size: 2rem;
    }
}

/* Utility Classes */
.clear {
    clear: both;
}

.fix_header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}
