* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #f7f7f7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            
        }
        
        .container {
            width: 100%;
            max-width: 750px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin: 0 auto;
        }
        
        /* 通用标题样式 */
        .section-title {
            text-align: center;
            margin: 0px 0 30px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .section-title h2 {
            font-size: 28px;
            color: #333;
            font-weight: 700;
            padding: 0 20px;
            position: relative;
        }
        
        .section-title img {
            height: 36px;
        }
        
        .section-title::before,
        .section-title::after {
            content: "";
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff7108);
        }
        
        .section-title::after {
            background: linear-gradient(90deg, #ff7108, transparent);
        }
        
        /* Banner区域 */
        .banner {
            width: 100%;
            overflow: hidden;
        }
        
        .banner img {
            width: 100%;
            display: block;
        }
        
        /* 表单样式 */
        .form-container {
            background-color: #fff7f0;
            padding: 30px 20px;
            margin-top: -50px;
            position: relative;
            z-index: 1;
        }
        
        .form-box {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(255, 113, 8, 0.2);
            padding: 30px;
            max-width: 800px;
			    margin-top: -100px;
           /* margin: 0 auto; */
        }
        
        .form-box h3 {
            font-size: 24px;
            color: #333;
            text-align: center;
            margin-bottom: 25px;
        }
        
        .form-box h3 em {
            color: #ff4c4c;
        }
        
        .form-content {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .form-group {
            flex: 1;
            min-width: 300px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 16px;
            color: #666;
            font-weight: 500;
        }
        
        .form-group select,
        .form-group input {
            width: 100%;
            padding: 14px 20px;
            border: 1px solid #e0e0e0;
            border-radius: 30px;
            font-size: 16px;
            background: #f9f9f9;
            transition: all 0.3s;
        }
        
        .form-group select:focus,
        .form-group input:focus {
            border-color: #ff7108;
            box-shadow: 0 0 0 3px rgba(255, 113, 8, 0.2);
            outline: none;
        }
        
        .submit-btn {
            background: #ff7108;
            color: white;
            border: none;
            border-radius: 30px;
            padding: 14px 30px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: block;
            width: 100%;
            max-width: 300px;
            margin: 25px auto 0;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(255, 113, 8, 0.4);
        }
        
        .submit-btn:hover {
            background: #e65c00;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 113, 8, 0.5);
        }
        
        /* 优势部分 */
        .advantages-section {
            padding: 40px 20px;
            background: white;
        }
        
        .advantages-grid {
            display: grid;
            /* grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); */
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .advantage-card {
            display: flex;
            background: #fff0e5;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .advantage-img {
            width: 150px;
            flex-shrink: 0;
        }
        
        .advantage-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .advantage-content {
            padding: 20px;
            flex: 1;
        }
        
        .advantage-content p {
            font-size: 18px;
            font-weight: 700;
            color: #ff7108;
            margin-bottom: 10px;
        }
        
        .advantage-content span {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }
        
        .advantage-card:nth-child(2) {
            background: #e5f1ff;
        }
        
        .advantage-card:nth-child(2) p {
            color: #127fff;
        }
        
        .advantage-card:nth-child(3) {
            background: #ffe5e5;
        }
        
        .advantage-card:nth-child(3) p {
            color: #ff2525;
        }
        
        .cta-button {
            display: block;
            background: #ff7108;
            color: white;
            text-align: center;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 30px;
            max-width: 300px;
            margin: 40px auto 0;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(255, 113, 8, 0.4);
        }
        
        .cta-button:hover {
            background: #e65c00;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 113, 8, 0.5);
        }
        
        /* 机构轮播 */
        .institutions-section {
            padding: 40px 20px;
            background: white;
        }
        
        .swiper-container {
            padding: 20px 0 0px;
        }
        
        .institution-slide {
            background: #ffecdb;
            border-radius: 10px;
            overflow: hidden;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            height: auto;
        }
        
        .institution-slide:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .institution-logo {
            height: 100px;
            margin: 0 auto 15px;
        }
        
        .institution-logo img {
            height: 100%;
            width: auto;
            display: block;
            margin: 0 auto;
        }
        
        .institution-name {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }
        
        .institution-details span {
            display: block;
            font-size: 14px;
            color: #666;
            margin-bottom: 8px;
            line-height: 1.5;
        }
        
        .institution-btn {
            display: inline-block;
            background: #ff7108;
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 14px;
            margin-top: 15px;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .institution-btn:hover {
            background: #e65c00;
            transform: translateY(-2px);
        }
        
        .swiper-pagination-bullet-active {
            background: #ff7108 !important;
        }
        
        /* 设备部分 */
        .devices-section {
            padding: 40px 20px;
            background: white;
        }
        
        .devices-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .devices-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 30px 0;
        }
        
        .device-item {
            flex: 1;
            max-width: 180px;
        }
        
        .device-item img {
            width: 100%;
            height: auto;
        }
        
        .devices-description {
            font-size: 16px;
            color: #333;
            max-width: 800px;
            margin: 0 auto 20px;
            line-height: 1.7;
            padding: 20px;
            border: 1px dashed #606060;
            border-radius: 10px;
        }
        
        .devices-tip {
            font-size: 15px;
            color: #ff7108;
            font-style: italic;
        }
        
        /* 流程部分 */
        .process-section {
            padding: 40px 20px;
            background: #fff7f1;
        }
        
        .process-grid {
            display: grid;
           /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .process-card {
            display: flex;
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .process-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .process-img {
            width: 100px;
            flex-shrink: 0;
            margin-right: 20px;
        }
        
        .process-img img {
            width: 100%;
            border-radius: 50%;
        }
        
        .process-content h3 {
            font-size: 18px;
            color: #333;
            margin-bottom: 10px;
        }
        
        .process-content p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }
        
        /* 底部表单 */
        .bottom-form-section {
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="200" viewBox="0 0 1200 200"><rect fill="%23ff7108" width="1200" height="200" rx="10"/></svg>') no-repeat center center;
            background-size: cover;
            padding: 50px 20px;
            border-radius: 10px;
            margin: 40px 20px;
            color: white;
            text-align: center;
        }
        
        .bottom-form-section .title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.4;
        }
        
        .bottom-form {
            background: white;
            border-radius: 10px;
            padding: 30px;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
        
        .bottom-form h3 {
            font-size: 22px;
            color: #333;
            margin-bottom: 25px;
        }
        
        .bottom-form h3 em {
            color: #ff4c4c;
        }
        
        .bottom-form input {
            width: 100%;
            padding: 14px 20px;
            border: 1px solid #e0e0e0;
            border-radius: 30px;
            font-size: 16px;
            margin-bottom: 20px;
            background: #f9f9f9;
        }
        
        /* 页脚 */
        .footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 30px 20px;
            margin-top: 50px;
			margin-bottom: 100px;
        }
        
        .footer p {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 20px;
        }
        
        .footer p::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: white;
            border-radius: 2px;
        }
        
        .footer a {
            color: white;
            font-size: 18px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer a img {
            width: 24px;
        }
        
        
		.float_lb {
		       position: fixed;
		       /* left: 0; */
		       bottom: 0;
		       display: block;
		       width: 100%;
		       z-index: 999;}
			   .float_lb img {
			       display: block;
			       
			   }
			  /* 计算学费弹窗 - PC 版本 */
			  .active {
			      display: block;
			  }
			  
			  .public_mask {
			      width: 100%;
			      height: 100%;
			      background: rgba(0, 0, 0, .6);
			      position: fixed;
			      top: 0;
			      left: 0;
			      z-index: 99999;
			      display: none;
			  }
			  
			  .yuyue_box {
			      width: 500px; /* 固定宽度更合适 PC 端 */
			      max-width: 90%; /* 保证在小屏下也能适应 */
			      background-color: #fff;
			      position: fixed;
			      top: 50%;
			      left: 50%;
			      transform: translate(-50%, -50%);
			      z-index: 999999;
			      border-radius: 8px;
			      padding-bottom: 20px;
			  }
			  
			  .yuyue_box > .tit {
			      height: 50px;
			      line-height: 50px;
			      text-align: center;
			      font-size: 18px;
			      color: #fff;
			      position: relative;
			   
			      border-top-left-radius: 8px;
			      border-top-right-radius: 8px;
			  }
			  
			  .xfjsq-box .yuyue_box > .tit span {
			      color: #000000;
			      font-weight: bold;
			      font-size: 18px;
			  }
			  
			  .xfjsq-box .yuyue_box > .tit i {
			      color: #ccc;
			  }
			  
			  .yuyue_box > .tit > i {
			      display: block;
			      width: 30px;
			      height: 30px;
			      line-height: 30px;
			      position: absolute;
			      right: 10px;
			      top: 10px;
			      cursor: pointer;
			      font-style: normal;
			      font-size: 16px;
			  }
			  
			  .xfjsq-form {
			      padding: 20px;
			      border-top: 1px solid #f4f4f4;
			  }
			  
			  .xfjsq-form .xfjsq-form-item {
			      display: flex;
			      align-items: center;
			      margin-bottom: 16px;
			  }
			  
			  .xfjsq-form .xfjsq-form-item .item-label {
			      color: #888888;
			      font-size: 14px;
			      width: 35%;
			      flex-shrink: 0;
			      font-weight: bold;
			      text-align: right;
			      padding-right: 10px;
			  }
			  
			  .xfjsq-form .xfjsq-form-item .course-select-wrapper {
			      position: relative;
			      flex: 1;
			  }
			  
			  .xfjsq-form .xfjsq-form-item .input-item {
			      width: 100%;
			      flex: 1;
			  }
			  
			  .xfjsq-form .xfjsq-form-item .input-item input {
			      outline: none;
			      border: 0;
			      border-radius: 4px;
			      padding: 8px 12px;
			      font-size: 14px;
			      color: #888888;
			      width: 100%;
			      background-color: #f5f5f5;
			      height: 40px;
			  }
			  
			  .xfjsq-form .xfjsq-form-item .xfjsq-submit {
			      background: #ff7108;
			      border: 0;
			      color: #ffffff;
			      width: 100%;
			      height: 44px;
			      border-radius: 22px;
			      font-size: 16px;
			      margin-top: 10px;
			      cursor: pointer;
			  }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .container {
                border-radius: 0;
            }
            
            .form-content {
                flex-direction: column;
            }
            
            .advantages-grid,
            .process-grid {
                grid-template-columns: 1fr;
            }
            
            .devices-grid {
                flex-wrap: wrap;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
			.float_lb img{
			width: 100%;}
			/* 计算学费弹窗 */
			.active {
			    display: block;
			}
			.public_mask {width: 100%;height: 100%;background: rgba(0, 0, 0, .6);position: fixed;top: 0;z-index: 99999;display: none;}
			.yuyue_box {width: 90%;background-color: #fff;top: 10%;z-index: 999999;border-radius: 5px;padding-bottom: 5px;margin: 60% 0;}
			
			.yuyue_box>.tit {height: 40px;line-height: 40px;text-align: center;font-size: 16px;color: #fff;position: relative;background-size: 100% 100%;}
			.xfjsq-box .yuyue_box>.tit span {color: #000000;font-weight: bold;    font-size: 4.5vw;}
			.xfjsq-box .yuyue_box>.tit>i {color: #999999;}
			.yuyue_box>.tit>i {display: block;width: 30px;height: 30px;line-height: 30px;position: absolute;right: 0;top: 0;cursor: pointer;}
			.xfjsq-form {padding: 20px;border-top: 1px solid #f4f4f4;}
			.xfjsq-form .xfjsq-form-item {display: flex;align-items: center;margin-bottom: 12px;}
			.xfjsq-form .xfjsq-form-item .item-label {color: #888888;font-size: 14px;width: 31%;flex-shrink: 0;font-weight: bold;}
			.xfjsq-form .xfjsq-form-item .course-select-wrapper {position: relative;flex: 1;}
			.xfjsq-form .xfjsq-form-item .input-item {width: 93%;}
			.date-insert {background-color: #068bf2;}
			.xfjsq-form .xfjsq-form-item .input-item input {outline: none;border: 0;border-radius: 4px;padding: 4px 10px;font-size: 14px;color: #888888;width: 100%;background-color: #f5f5f5;height: 34px;}
			.xfjsq-form .xfjsq-form-item .xfjsq-submit {background: #ff7108;border: 0;color: #ffffff;width: 100%;height: 40px;border-radius: 20px;font-size: 16px;margin-top: 10px;}
			
        }