   .contact-section {
            padding: 60px 0;
        }
         
       
        
       
        
        /* 卡片通用样式 */
        .card_pp {
            background: white;
            border-radius: 12px;
            /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
            padding: 0 30px;
            /* margin-bottom: 30px; */
            transition: all 0.3s ease;
        }
        
        .card_pp:hover {
           
        }
        
        /* 联系信息样式 */
        .contact-info_pp h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e53e3e;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
        }
        
        .contact-info_pp h3 i {
            margin-right: 10px;
        }
        
        .info-item {
            display: flex;
            margin-bottom: 25px;
            /* width: 22%; */
            justify-content: center;
        }
        
        .info-item i {
            color: #e53e3e;
            font-size: 1.6rem;
            min-width: 24px;
            margin-top: 8px;
            margin-right: 0px;
        }
        
        .info-content {
            margin-left: 15px;
        }
        
        .info-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #1f2937;
            margin-top: 0px;
        }
        
        .info-content p {
            color: #34495e;
            margin: 5px;
            font-size: 1.2rem;
        }
        
        /* 社交媒体样式 */
        .social-links {
            margin-top: 40px;
        }
        
        .social-links h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .social-links h4 i {
            color: #e53e3e;
            margin-right: 10px;
        }
        
        .social-icons {
            display: flex;
            gap: 20px;
        }
        
        .social-icons a {
            color: #e53e3e;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            color: #c53030;
            transform: translateY(-3px);
        }
        
        /* 表单样式 */
        .contact-form_pp h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e53e3e;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
        }
        
        .contact-form_pp h3 i {
            margin-right: 10px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-col {
            flex: 1;
            min-width: 250px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #4b5563;
        }
        
        input, textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        input:focus, textarea:focus {
            outline: none;
            border-color: #e53e3e;
            box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
       
        
        button i {
            margin-right: 8px;
        }
        
       
               .info-items{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-container33{
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
    padding: 30px 0px;
    margin-bottom: 60px;
}
  .contact-container33:hover{
     
     box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}      
        /* 响应式调整 */
        @media (max-width: 768px) {
            .contact-section {
                padding: 40px 0;
            }
            
            .section-title {
                margin-bottom: 10px;
            }
            
            .card_pp {
                padding: 20px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
             .search-container {
            position: relative;
            width: 100%;
            /* max-width: 600px; */
            margin: 0 auto;
        }
        
        .search-box {
            display: flex;
            /* width: 100%; */
            float: right;
        }
        
        .search-input {
            flex: 1;
            padding: 14px 20px;
            padding-left: 50px;
            border: 1px solid #d1d5db;
            border-right: none;
            border-radius: 0px;
            font-size: 1.6rem;
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            outline: none;
            border-color: #e53e3e;
            box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
        }
        
        .search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            transition: color 0.3s ease;
        }
        
        .search-input:focus + .search-icon {
            color: #e53e3e;
        }
        
        .search-button {
            background-color: #e53e3e;
            color: white;
            border: none;
            border-radius: 0;
            padding: 0 24px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
        }
        
        .search-button i {
            margin-right: 8px;
        }
        
        .search-button:hover {
            background-color: #c53030;
        }
        
        /* 搜索建议样式 */
        .search-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #d1d5db;
            border-top: none;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            margin-top: -1px;
            z-index: 10;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .search-suggestions.active {
            max-height: 300px;
        }
        
        .suggestion-item {
            padding: 12px 20px;
            padding-left: 50px;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }
        
        .suggestion-item:hover {
            background-color: #f3f4f6;
        }
        
        .suggestion-item.active {
            background-color: #fee2e2;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .search-button span {
                display: none;
            }
            
            .search-button i {
                margin-right: 0;
            }
            
            .search-button {
                padding: 0 16px;
            }
          .section-subtitle {
 
    margin-bottom: 1rem;
 
}  
            
  .contact-container33 {
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.05);
    padding: 10px 0px;
    margin-bottom: 20px;
}          
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
        }