@charset "utf-8";
/* CSS Document */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
             /*color: #333;*/
            line-height: 1.6;
           /* padding: 20px; */
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        h1 {
            color: #2c3e50;
            margin-bottom: 10px;
            border-bottom: 2px solid #3498db;
            padding-bottom: 15px;
        }
        
        .intro {
            color: #555;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-box {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 25px;
            border-radius: 12px;
            border-left: 5px solid #3498db;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        
        .feature-box h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .feature-box h3 i {
            color: #3498db;
        }
        
        /* 浮动按钮样式 */
        .float-button {
            position: fixed;
            right: 30px;
            bottom: 30px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.5);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            overflow: hidden;
        }
        
        .float-button:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.7);
            background: linear-gradient(135deg, #2c3e50, #3498db);
        }
        
        .float-button::after {
            content: "联系我们";
            position: absolute;
            white-space: nowrap;
            right: 80px;
            background-color: #2c3e50;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 16px;
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            transform: translateX(10px);
            pointer-events: none;
        }
        
        .float-button:hover::after {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* 弹窗样式 */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 999;
        }
        
        .popup-container {
            background-color: white;
            width: 90%;
            max-width: 450px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            animation: popupSlide 0.4s ease-out;
            transform-origin: bottom right;
            position: relative;
        }
        
        @keyframes popupSlide {
            0% { opacity: 0; transform: translateY(30px) scale(0.9); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }
        
        .popup-header {
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .popup-header h2 {
            font-size: 1.8rem;
            font-weight: 600;
        }
        
        .close-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        
        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .popup-tabs {
            display: flex;
            background-color: #f8f9fa;
            border-bottom: 1px solid #eaeaea;
        }
        
        .tab-btn {
            flex: 1;
            padding: 18px 0;
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }
        
        .tab-btn:hover {
            color: #3498db;
            background-color: rgba(52, 152, 219, 0.05);
        }
        
        .tab-btn.active {
            color: #3498db;
        }
        
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #3498db;
        }
        
        .popup-content {
            padding: 60px;
            min-height: 400px;
            text-align: center;
        }
        
        .tab-content {
            display: none;
            animation: fadeIn 0.5s;
        }
        
        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        
        .tab-content.active {
            display: block;
        }
        
        .qrcode-container {
            text-align: center;
            padding: 20px 0;
        }
        
        .qrcode {
            width: 200px;
            height: 200px;
            margin: 0 auto 20px;
            background-color: #f5f5f5;
            border-radius: 10px;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .qrcode img {
            max-width: 100%;
            border-radius: 5px;
        }
        
        .qrcode-text {
            color: #666;
            font-size: 15px;
            margin-top: 15px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #444;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(to right, #3498db, #2c3e50);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
        }
        
        .submit-btn:hover {
            background: linear-gradient(to right, #2980b9, #1a252f);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }
        
        .phone-container {
            text-align: center;
            padding: 40px 0;
        }
        
        .phone-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 40px;
            color: white;
            box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
        }
        
        .phone-number {
            font-size: 32px;
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        
        .phone-text {
            color: #666;
            font-size: 16px;
            margin-bottom: 25px;
        }
        
        .call-btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: #2ecc71;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
        }
        
        .call-btn:hover {
            background-color: #27ae60;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
        }
        
        .footer {

            border-top: 1px solid #eee;
            color: #777;
            font-size: 0.9rem;
        }
        input, textarea{
            border: 1px solid rgb(186, 181, 181);
            border-radius: 4px;
        }
        input:focus, textarea:focus {
            box-shadow: 0 0 5px rgba(0,0,0,0.2);
            border-radius: 10px;
            resize: vertical; 
            min-height: 50px;
            outline: none;
        }
        .wpcf7-submit{

        }

/*------------------------------------------*/
.list li, .list a{
              
    display: inline;
    font-size: 14px;
    color: #C9C9C9;
    line-height: 38px;
    margin: 0 5px;
}
h3{
   float: left;
   font-size: 16px;
   margin-top: 8px;
}
.contact_,.link_{
   margin: 30px 0;
}

@media (min-width: 991px) {
  .link_, .contact_ {
          display: block;
      }

  .la, .lb {
          display: none;
      }
 }
@media (max-width: 990px) {
  .link_, .contact_ {
          display: none;
      }
  .la, .lb {
          display: block;
      }

 }

        /* ********** */
        @media (max-width: 768px) {
            .content {
                grid-template-columns: 1fr;
            }
            
            .popup-container {
                width: 95%;
            }
            
            .phone-number {
                font-size: 26px;
            }
            
            .float-button {
                width: 60px;
                height: 60px;
                right: 20px;
                bottom: 20px;
                font-size: 24px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 20px 15px;
            }
            
            .popup-content {
                padding: 20px;
            }
            
            .popup-header {
                padding: 20px;
            }
            
            .popup-header h2 {
                font-size: 1.5rem;
            }
            
            .phone-number {
                font-size: 22px;
            }
        }

