/* 顶部导航模块css */
.headerBox {
  height: 120px;
  width: 90%;
  margin: 0 auto;
  position: absolute;
  /* background-color: pink; */
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
}
.headerBox-right-menus li .a:hover {
  color: #fff;
  cursor: pointer;
  border-bottom: none;
  background-color: #9b141a;
}
.headerBox-right-menus li .a{
  display: block;
  color: #000;
  font-size: 15px;
  font-weight: 700;
}
.headerBox-left {
  width: 100px;
  height: 100px;
}
.headerBox-right {
  display: flex;
  justify-content: space-between;
}
.headerBox-right-menus {
  display: flex;
  height: 30px;
  align-items: center;
}
.headerBox-right-menus li {
  margin-right: 30px;
  color: #000;
  font-size: 15px;

  width: 60px;
  text-align: center;
  font-weight: 700;
  border-bottom: 2px solid #9b141a;

  padding: 3px;
}
.headerBox-right-menus li:hover {
  color: #fff;
  cursor: pointer;
  border-bottom: none;
  background-color: #9b141a;
}
.li-posit {
  position: absolute;
  display: none;
  top: 24px;
  background-color: #abb59d;
  left: 0;
  z-index: 999;
  right: 0;
  opacity: 0.7;
}

.li-posit-box {
  justify-content: space-between;
  padding: 5px;

  display: flex;
}

.li-posit-box a {
  font-size: 12px;
  width: 22px;
  color: #ede7ac;
  min-height: 200px;
}
.li-posit-box a:focus {
  color: #fff;
}

.headerBox-right-btn {
  font-size: 15px;

  border-radius: 15px 0 15px 0;
  width: 80px;
  text-align: center;
  height: 30px;
  color: #fff;
  font-weight: 700;
  line-height: 30px;
  background-color: #9b141a;
}

/* 轮播图模块css */
.carousel {
  position: relative;
  width: 100%;
  height: 650px;
  margin: auto;
}
.carousel-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: transform 0.5s ease-in-out;
}
.carousel-image {
  width: 100%;
  height: 100%;
  display: none;
}
.carousel-image.active {
  display: block;
}
.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.carousel-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
}
.carousel-dot.active {
  background-color: #000;
}








/*中间内容模块*/



 * {
            margin: 0;
            padding: 0;
            /* box-sizing: border-box; */
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
       
        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            color: #333;
            line-height: 1.6;
            padding: 20px;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            /* border-radius: 15px; */
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
            overflow: hidden;
           /* border: 1px solid #eaeaea; */
        }
        

        
        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 10px;
        }
        
        .logo i {
            font-size: 2.8rem;
            color: #ffffff;
        }
/*        
        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #ffffff;
        }
        */
        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-top: 8px;
            color: #ffffff;
        }
        
        .tabs-container {
            background: #ffffff;
            padding: 0 30px;
        }
        
        .tabs {
            display: flex;
            list-style: none;
            max-width: 1200px;
            margin: 0 auto;
            justify-content: center;
            border-bottom: 1px solid #e0e6ed;
        }
        
        .tab {
            padding: 18px 30px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            color: #4a5568;
            background: transparent;
            position: relative;
        }
        
        .tab:hover {
            color: #8c278f;
        }
        
        .tab.active {
            color: #8c278f;
            font-weight: 700;
        }
        
        .tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #8c278f, #8c278f);
            border-radius: 3px 3px 0 0;
        }
        
        .tab-content {
            display: none;
            padding: 30px;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .tab-content.active {
            display: block;
        }
        
        .section-title {
            font-size: 1.8rem;
            color: #1a5fb4;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2d7bc6;
            display: inline-block;
        }
        
        /* 通用样式 */
        .img-placeholder {
           /* background: linear-gradient(45deg, #e9f2ff, #d6e4ff); */
           /* color: #1a5fb4; */
            display: flex;
            /* align-items: center; *//*展示照片的位置为居中*/
            /* justify-content: center; */
            font-weight: bold;
            font-size: 1.2rem;
            border-radius: 8px;
            overflow: hidden;
           /* border: 1px solid #d1e0ff; */
           /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .img-placeholder:hover {
            transform: translateY(-3px);
            /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); */
        }
        
        .text-block {
            background:#ACADB1;;
			gap: 30px;
            padding: 25px;
            border-radius: 8px;
            color: #ffffff;
            /* border: 1px solid #e2e8f0; */
           /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
        }
        
        .text-block h3 {
            color: #1a5fb4;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .grid-container {
            display: grid;
            gap: 20px;
            margin: 25px 0;
        }
        
        /* 标签页1样式 */
        .tab1 .full-width-img {
            height: 300px;
            margin-bottom: 50px;
        }
        
        .tab1 .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        /* 新增四列布局 */
        .tab1 .four-column {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .tab1 .text-left {
            height: 250px;
        }
        
        .tab1 .img-right {
            height: 250px;
        }
        
        /* 标签页2样式 */
        .tab2 .text-block {
            margin-bottom: 20px;
        }
        
        .tab2 .wide-img {
            height: 300px;
        }
        
        /* 标签页3样式 */
        .tab3 .wide-img {
            height: 300px;
            margin-bottom: 20px;
        }
        
        .tab3 .text-block {
            margin-bottom: 20px;
        }
        
        .tab3 .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .tab3 .text-left {
            height: 250px;
        }
        
        .tab3 .img-right {
            height: 250px;
        }
        
        /* 调整布局 */
        .tab3 .three-column {
           /* display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px; */
			display: flex;
			flex-wrap: wrap;
			gap: 20px;
			margin-bottom: 40px;
        }
        
        .tab3 .left-img {
            /* height: 300px; */
			flex: 1;
			min-width: 300px;
			height: 500px;
			
			overflow: hidden;
			
			position: relative;
        }
		
		.tab3 .left-img  img{
	     width: 100%;
	    height: 100%;
	    object-fit: contain;
	    transition: transform 0.5s ease;
		}
        
        .tab3 .right-imgs {
          /*  display: grid;
            grid-template-rows: 1fr 1fr;
            gap: 20px;
            height: 100%; */
			flex: 0 0 300px;
			display: flex;
			flex-direction: column;
			gap: 20px;
        }
        
        .tab3 .right-img {
           /* height: auto;
            flex: 1; */
			height: 240px;
			overflow: hidden;
			position: relative;
        }
		
        .tab3 .right-img img {
           width: 100%;
           height: 100%;
           object-fit: contain;
           transition: transform 0.5s ease;
        }

        .tab3 .bottom-text {
            margin-bottom: 20px;
        }
        
        .tab3 .two-imgs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
			margin-top: 20px;
        }
        
        .tab3 .square-img {
            height: 200px;
        }
        
        /* 调整第三项最后两张图高度 */
        .tab3 .left-short {
           /* height: 180px; */
		   flex: 1;
        }
        
        .tab3 .right-tall {
            /* height: 220px; */
			flex: 0 0 300px;
        }
        
        /* 标签页4样式 */
        .tab4 .profile {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .tab4 .profile-img {
            height: 400px;
        }
        
        .tab4 .profile-text {
            height: 400px;
            overflow-y: auto;
            padding: 20px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .tabs {
                flex-wrap: wrap;
            }
            
            .tab {
                padding: 12px 15px;
                font-size: 0.95rem;
            }
            
            .tab1 .two-column,
            .tab1 .four-column,
            .tab3 .two-column,
            .tab3 .three-column,
            .tab3 .two-imgs,
            .tab4 .profile {
                grid-template-columns: 1fr;
            }
            
            .tab3 .right-imgs {
                grid-template-rows: auto;
            }
            
            .tab-content {
                padding: 20px;
            }
            
            .img-placeholder {
                height: auto !important;
                min-height: 200px;
            }
        }
        
        footer {
            text-align: center;
            padding: 20px;
            background: #1a5fb4;
            color: #e6f0ff;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .content {
            padding: 20px;
			display: flex;
			  flex-direction: column; /* 垂直排列 */
			
			  
			gap: 30px;
        }
        
        p {
            margin-bottom: 10px;
            line-height: 1.8;
        }
        
        .highlight {
            color: #1a5fb4;
            font-weight: 600;
        }
        
        /* 新添加的样式 */
        .text-section {
            padding: 15px;
            background: #f8fafc;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 25px 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 15px;
            background: #f1f8ff;
            border-radius: 10px;
            min-width: 150px;
            margin: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a5fb4;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #4a5568;
        }
		
		
		
		
		/*第四页的css*/
		.profile-container {
		    display: flex;
		    gap: 30px;
		    /* border-radius: 15px; */
		    overflow: hidden;
		    min-height: 500px;
		    background: white;
		    animation: slideUp 0.8s ease;
		}
		
		       
		.bio-section {
		    flex: 1;
		    background: #ACADB1;
		    color: white;
		    padding: 30px 20px;
		    display: flex;
		    flex-direction: column;
		    justify-content: center;
			
		}
		
		.bio-content {
		    max-width: 1000px;
		    margin: 0 auto;
			
		}

		.bio-text {
		    font-size: 1rem;
		    line-height: 1;
		    margin-bottom: 30px;
		    font-weight: 80;
			font-family: "SimSun", "宋体", serif;
		}
		
		
		/* 底部模块 */
		.footerBox {
		  margin-top: 100px;
		  padding-top: 50px;
		  position: relative;
		  background-image: url("../images/all/bottom.png");
		  width: 100%;
		  height: 320px;
		  background-size: cover;
		}
		.footerBox-container {
		  width: 980px;
		  display: flex;
		  justify-content: space-between;
		  margin: 0 auto;
		}
		.footerBox-item {
		}
		.footerBox-right-topBox-imgBox-img {
		  width: 80px;
		  height: 80px;
		}
		.footerBox-right-topBox-imgBox-title {
		  font-size: 14px;
		  color: #ddd;
		  margin-top: 5px;
		}
		.footerBox-item-title {
		  font-size: 14px;
		  font-weight: 700;
		  color: #fff;
		  line-height: 40px;
		    opacity: 0; /* 设置为1透明度 */
		}
		.footerBox-item-info {
		  font-size: 12px;
		  color: #ddd;
		  line-height: 30px;
		    opacity: 0; /* 设置为1透明度 */
		}
		
		.footerBox-right-topBox {
		  display: flex;
		  justify-content: space-between;
		  margin-bottom: 50px;
		}
		.footerBox-right-topBox-imgBox {
		  margin-right: 30px;
		  display: flex;
		  flex-direction: column;
		  justify-content: center;
		  align-items: center;
		}
		.footerBox-right-footer-one {
		  font-size: 16px;
		  color: #ddd;
		  line-height: 35px;
		}
		
		.footerBox-right-footer-two {
		  font-size: 12px;
		  color: #ddd;
		  line-height: 35px;
		}
		.footerBox-right-footer-three {
		  font-size: 12px;
		  color: #ddd;
		  line-height: 35px;
		}
		
		/* 回到顶部 */
		.backTop {
		  width: 50px;
		  height: 50px;
		  text-align: center;
		  line-height: 50px;
		  background-color: #abbf47;
		  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
		  position: absolute;
		  bottom: 60px;
		  cursor: pointer;
		  right: 150px;
		}