/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* 容器样式 */
.container {
    max-width: 1200px;
	height: auto;
    padding: 0 20px;
	margin: 0 auto;
	z-index: 3;
}
/* 容器样式 */
.foot-container {
    max-width: 1200px;
	height: auto;
    margin: 0 auto;
    padding: 0 20px;
	z-index: 3;
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #b20f24;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.nav-logo{
	margin-top: -20px;
}
.xq{
	display: flex;
	justify-content: end;
}
.xq a{
	color: #fff;
	font-size: 14px;
	margin-right: 20px;
	padding-top: 12px;
}

.navbar.scrolled {
    background-color: rgba(51, 51, 51, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}


/* 导航菜单样式 */
.nav-menu {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.nav-item {
    float: left;
}


.nav-link {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #111;
    transform: translateY(-2px);
}


                /* 下拉菜单样式 */
        .dropdown {
            position: absolute;
            top: 100%; /* 在导航项下方显示 */
            /*left: 0;  */
            background: rgba(255, 255, 255, 0.85);
            min-width: 100px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 5px;
            opacity: 0; /* 初始隐藏 */
            visibility: hidden; /* 防止交互 */
            transform: translateY(-10px); /* 下拉动画起始位置 */
            transition: all 0.3s ease;
        }
        /* 下拉菜单项样式 */
        .dropdown a {
            display: block;
            padding: 12px 20px;
            color: #4a5568;
            text-decoration: none;
            border-bottom: 1px solid #f7fafc;
        }
        
        /* 下拉菜单项悬停效果 */
        .dropdown a:hover {
            background: #e6f4fd;
            color: #667eea;
        }
        
        /* 鼠标悬停时显示下拉菜单 */
        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0); /* 动画结束位置 */
        }




.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.nav-search {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-search:hover {
    color: #667eea;
}

/* 汉堡菜单 */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* 英雄区域样式 */
.hero {
    position: relative;
	width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/logo2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.5));
}
.hreo .fp-tableCell{
	display: flex;
	justify-content: center;
}
.hero-content {
    position: relative;
/*	top:20%;*/
  left: 50%;
  transform: translate(-50%, -50%); /* 宽高的一半 */
	width:1000px;
	height:auto;
	background: rgba(220, 12, 65, 0.6);
    z-index: 2;
    text-align: center;
    color: white;
	
}

.search-card {
	margin:20px auto;
}
.search-title {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
    color: white;
}

 .search-box-3 {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin: 20px auto;
        }
        
        .search-box-3 input {
            width: 100%;
            height: 50px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 10px;
            background: transparent;
            padding: 15px 15px 5px 15px;
            font-size: 18px;
            color: white;
            outline: none;
            transition: all 0.3s ease;
        }
        
        .search-box-3 input:focus {
            border-color: white;
        }
        
        .search-box-3 label {
            position: absolute;
            top: 15px;
            left: 15px;
            color: rgba(255,255,255,0.7);
            font-size: 18px;
            pointer-events: none;
            transition: all 0.3s ease;
        }
        
        .search-box-3 input:focus + label,
        .search-box-3 input:not(:placeholder-shown) + label {
            top: 5px;
            font-size: 12px;
            color: white;
        }
        
        .search-box-3 .search-icon {
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
            color: rgba(255,255,255,0.7);
            font-size: 20px;
            transition: all 0.3s ease;
        }
        
        .search-box-3 input:focus ~ .search-icon {
            color: white;
        }




/* 功能区域样式 */
.features {
	width: 100%;
    padding:0;
    background: #f8f9fa;
	z-index: 2;
	background-image: url('../image/bg2.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.features-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #333;
	padding-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
	margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 8px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
	font-size: 14px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.feature-card-title{
	display: flex;
	align-items: center;
}
.feature-card h3 img{
	margin-right: 8px;
}
.xskb_tt {
    background-color: #b20f24;
    color: #fff;
    padding: 1px 10px;
    border-radius: 3px;
	font-size: 12px;
	margin-right: 8px;
}
.xwfl_list a li {
    padding: 10px;
    border: 1px solid #dddddd;
    margin-bottom: 10px;
}

.xwfl_nr1 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 16px;
}
.xwfl_nr2 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 12px;
    margin-top: 10px;
}
.xwfl_sj {
    text-align: center;
    background-color: #b20f24;
    color: #fff;
    padding: 10px;
    line-height: 10px;
    width: 62px;
    border-radius: 3px;
    border: 1px solid #fff;
}
.xwfl_sj_p1 {
    font-size: 12px;
	color: #fff;
}
.xwfl_sj_p2 {
    font-size: 18px;
	color: #fff;
}
.xwfl_list{
	list-style: none;
}
.xwfl_list a {
    color: #333;
    text-decoration: none;
}
.news {
    list-style: none;
}
.news-con{
	display: flex;
	align-items:center;
	justify-content: space-between;
	width: 100%;
}
.news-left{
	text-align: left;
}
.news-right{
	width: 70px;
}
.newsli {
    overflow: visible;
    padding: 12px 0px;
    margin: 0 auto;
	text-align: left;
        }
		
.newsli a{
    padding: 12px 0px;
    color: #4a5568;
    text-decoration: none;
    border-bottom: 1px solid #f7fafc;
        }

.newsli a:hover {
    color: #667eea;
        }


.feature-card p {
    color: #fff;
    line-height: 1.6;
}

/* 关于区域样式 */
.about {
	width: 100%;
	height: auto;
    padding: 0;
	background-image: url('../image/dzzy.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.about-content {
    display: grid;
    
    gap: 50px;
    align-items: center;
}

.about-text {
    padding-right: 20px;
	padding-top: 60px;
}


/* 图标特效 */
       .icnotitle {
     		color: #333;
			text-align:center;
			font-size: 1.6rem;
			padding:0px;
			background-image: url('../image/titlebg.png');
			background-repeat: no-repeat;
            background-position: center 50px; /* 图像居中 */
			line-height: 2.5;
		}
	   .iconout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 20px;
            padding: 10px;
        }
		
		
        .icon {
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s;
        }
		
		
		.icon p {
            font-size: 0.8rem;
        }
        .icon:hover {
            transform: translateY(-10px);
        }


/* 表格样式 */

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

td a{
    padding: 12px 10px;
    color: #4a5568;
    text-decoration: none;
    border-bottom: 1px solid #f7fafc;

}
td a:hover {
    color: #667eea;
        }


tr:nth-child(even) {
  background-color: #f9f9f9;
}
tr:hover {
  background-color: #f1f1f1;
}

  tr {
    margin-bottom: 10px;
  }



/* 页脚样式 */
.footer {
    background: #b20f24;
    color: white;
    padding: 50px 0 20px;
	overflow: visible;
}
.h-a{
	height: auto !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-bottom {
    
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #aaa;
}

/* 毛玻璃效果卡片 */
.card-backdrop-filter {
    position: relative;
    z-index: 1;
    border-radius: 15px;
    padding: 30px;
    color: white;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-bottom{
	color: #fff;
}
.section4 .fp-tableCell {
    padding-top: 0;
	    height: auto!important;
}

.text-overflow {
	width: 100%;
  white-space: nowrap; /* 防止文本换行 */
  overflow: hidden; /* 隐藏溢出的内容 */
  text-overflow: ellipsis; /* 显示省略符号来代表被修剪的文本 */
}


/* 动画效果 */
@keyframes gradientShift {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        position: absolute;
        background-color: #333;
        width: 100%;
        top: 70px;
/*        left: 0;*/
        display: none;
    }
    
    .nav-item {
        text-align: center;
/*        margin: 10px 0;*/
    float: none;
    width: 100%;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-actions .btn-primary {
        display: none;
    }
}


.nav-r li a span {
    display: inline-block;
    /* margin-right: 0.3rem; */
    width: 0.12rem;
    height: 0.12rem;
    background: rgba(255,255,255,.7);
    border-radius: 50%;
}
