@charset "utf-8";
/* CSS Document */


        * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Arial', sans-serif;
        }

        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            padding: 1rem 5%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }



 .nav-right .btn {
    background: #6832b5;   
    color: #fff;
    padding: 12px 35px; /* 调整按钮内边距 */
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background 0.3s ease;
}

 .nav-right .btn:hover {
    background: #3c1281;
}





        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #2c3e50;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #34495e;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #3498db;
        }

        .section {
            padding: 5rem 10%;
        }
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: #2c3e50;
        }

        .banner {
        /*     height: 100vh;

			background-image:url(../images/banner1.jpg)
            display: flex;
            align-items: center;
            padding: 0 10%;
            color: white;*/
			
			      position: relative;
            height: 700px; /* 根据图片比例调整 */
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), 
                        url('../images/banner.jpg') no-repeat center center;
            background-size: cover;
           display: flex;
            align-items: center;
            padding: 0 10%;
            color: white;*/
			
			
        }
        .banner-content {
           color: white;
            max-width: 800px;
            z-index: 1;
        }
        .banner h1 {
	font-size: 3.2rem;
	margin-bottom: 1rem;
        }
        .banner p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        .cta-button {
			 font-size: 1rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
            color: blacs;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .cta-button:hover {
            background: #4c39ff;
			   color: white;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
		/
        }
		      .feature2-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
			 grid-template-columns: repeat(4, 1fr); /* 大屏强制四列 */
        }
        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
			
        }
        .feature-card:hover {
            transform: translateY(-5px);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: #3498db;
            margin-bottom: 1rem;
        }

        .difficulty-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
			   grid-template-columns: repeat(3, 1fr); /* 大屏强制3列 */
        }
        .difficulty-card {
	padding: 2rem;
	border-left: 4px solid #2196F3;
	position: relative;
	background-color: #f8f9fa;
	background-image: url(../images/tongdian1.jpg);
        }
        .difficulty-card::before {
            content: "!";
            position: absolute;
            left: -1.2rem;
            top: 1rem;
         background: linear-gradient(30deg, #F8F9FA 0%, #2196F3 100%);
            color: white;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .deployment-cards {
            display: flex;
			
            gap: 2rem;
            justify-content: center;
        }
        .deployment-card {
			 left: 6rem;
	flex: 1;
	max-width: 400px;
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 3px 15px rgba(0,0,0,0.1);

        }
        .deployment-card h3 {
             background: linear-gradient(30deg, #2196F3  0%,#F8F9FA 100%);
            margin-bottom: 1rem;
        }

        .rfid-section {
            background: #2c3e50;
            color: white;
        }
        .rfid-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        .rfid-image {
            max-width: 500px;
            border-radius: 10px;
        }
		
		/* 保持与现有样式一致 */
.feature-icon {
  font-size: 2.5rem; /* 对应40px尺寸 */
  color: #3498db;    /* 保持品牌色一致 */
}

        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
				 grid-template-columns: repeat(3, 1fr); /* 大屏强制四列 */
		
        }
        .case-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);

        }
        .case-logo {
            height: 40px;
            margin-bottom: 1rem;
        }
		 .case-img {
            height: 160px;
            margin-bottom: 1rem;
        }

        /* 新增联系板块样式 */
        .contact-section {
            background: #f8f9fa;
            padding: 4rem 10%;
            text-align: center;
        }
        .contact-content {
            max-width: 800px;
            margin: 0 auto;
        }
        .contact-phone {
            font-size: 2.5rem;
            color: #6832b5;
            margin: 2rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }
        .contact-phone i {
            font-size: 1.8rem;
        }
        .consult-button {
            padding: 1.2rem 3rem;
            background: #6832b5;    
            color: white;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            transition: transform 0.3s;
            font-size: 1.1rem;
        }
        .consult-button:hover {
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .rfid-grid {
                grid-template-columns: 1fr;
            }
            .deployment-cards {
                flex-direction: column;
            }
            .contact-phone {
                font-size: 2rem;
            }
        }
		
		
		/* 核心样式 */
.icon-circle {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%; /* 圆形轮廓 */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);

  
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  border: 2px solid #e8f4ff; /* 浅色轮廓线 */
}

.custom-icon {
  width: 48px;  /* 控制图标实际显示尺寸 */
  height: 48px;
  object-fit: contain; /* 保持图片比例 */
}

/* 卡片布局增强 */
.icon-card {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s;
}

.icon-card:hover {
  transform: translateY(-5px);
}

/* 响应式适配 */
@media (max-width: 768px) {
  .icon-circle {
    width: 60px;
    height: 60px;
	
	
  }
  .custom-icon {
    width: 36px;
    height: 36px;

  }
}




.pain-points-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.pain-point-item {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* 背景图处理 */
.pain-point-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  transition: transform 0.3s ease;
}

/* 动态遮罩层 */
.pain-point-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(67, 24, 140, 0.8) 0%, 
    rgba(98, 0, 234, 0.6) 100%);
}

/* 文字内容容器 */
.pain-point-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pain-point-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pain-point-desc {
  line-height: 1.6;
  opacity: 0.9;
}

/* 悬停动效 */
.pain-point-item:hover .pain-point-bg {
  transform: scale(1.05);
}





.solution-section {
  background: #f8fbff;
  padding: 4rem 2rem;
}

.solution-header {
  text-align: center;
  margin-bottom: 3rem;
}

.solution-header h2 {
  font-size: 2.2rem;
  color: #1a237e;
  margin-bottom: 0.5rem;
}

.solution-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card:hover {
  transform: translateY(-10px);
}

/* 特色图标设计 */
.solution-icon {
  font-size: 2.5rem;
  color: #1976d2;
  margin-bottom: 1rem;
  display: block;
}

.solution-card h3 {
  color: #1a237e;
  margin-bottom: 1.2rem;
}

.solution-features li {
  line-height: 1.8;
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
  color: #424242;
}

/* 特色边框动画 */
.solution-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    #1976d2 0%, 
    #2196f3 50%, 
    #e3f2fd 100%);
  transition: height 0.3s ease;
}

.solution-card:hover::after {
  height: 6px;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .solution-container {
    grid-template-columns: 1fr;
  }
  
  .solution-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
}








.system-modules {
  padding: 2rem;
  background: #f5f7fa;
}

.module-title {
  text-align: center;
  color: #1a237e;
  margin-bottom: 2rem;
}

.module-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.module-nav {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-header {
  padding: 1rem;
  background: #1a237e;
  color: white;
  border-radius: 8px 8px 0 0;
}

.nav-list {
  list-style: none;
  padding: 1rem 0;
}

.nav-item {
  padding: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.nav-item:hover {
  background: #e8f0fe;
}

.nav-item.active {
  background: #1976d2;
  color: white;
}

.nav-item i {
  width: 24px;
  margin-right: 8px;
}

.sub-modules {
  display: none;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sub-modules.active {
  display: block;
}

.sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.sub-card {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
  text-align: center;
  transition: transform 0.2s;
}

.sub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 6px rgba(25, 118, 210, 0.2);
}




.deployment-section {
  background: #f8fbff;
  padding: 4rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #1a237e;
  margin-bottom: 0.8rem;
}

.deployment-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.deployment-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.deployment-card:hover {
  transform: translateY(-5px);
}

.deployment-icon {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1976d2;
}

.advantage-list {
  margin: 1.5rem 0;
}

.advantage-list li {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.advantage-list i {
  margin-right: 0.8rem;
  width: 20px;
  color: #1976d2;
}

.price-tag {
  text-align: center;
  font-size: 1.5rem;
  color: #1a237e;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #eee;
}

.price-tag span {
  font-size: 0.9rem;
  color: #666;
}

/* 私有化方案特色标识 */
.on-premise::after {
  content: '推荐金融/央企';
  position: absolute;
  top: 15px;
  right: -30px;
  background: #d32f2f;
  color: white;
  padding: 0.3rem 2rem;
  transform: rotate(45deg);
  font-size: 0.8rem;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .deployment-container {
    grid-template-columns: 1fr;
  }
  
  .on-premise::after {
    right: -35px;
  }
}



   .foot-content {
	font-size: 0.9rem;
	color: #999999;


	gap: 1rem;
        }






