﻿/* 头部样式 */
.top{ background-color:#A02862; color:#fff; padding:15px 0; line-height:30px; height:60px;}
.top a{color:#fff;}
.top a:hover{ font-weight: 700; }
.header {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to right, #8b41a2, #421dbb);
    transition: all 0.3s ease;
}
.header.scrolled{top:0;}
.header .container {
   
 
    height: 90px;
}
/* PC端导航样式 */
.nav-pc {
    display: flex; float: left;
}
.nav-item {
    position: relative;
    margin: 0 48px 0 0;
}
.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    display: block;
    height: 100%;
}
.nav-pc {
    height: 90px;
    line-height: 90px;
}
.nav-link:hover, .nav-link.cur {
    color: #fff;
}
.nav-link::after, .nav-link.cur::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #fff;
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.cur::after {
    width: 100%;
}
/* 子菜单样式 */
.sub-menu {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -60px;
    min-width: 120px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    line-height: 30px; 
    border-radius: 4px;
    padding: 15px 0; display: none;
}

/* 新增：三角形箭头样式 */
.sub-menu::before {
    content: '';
    /* 绝对定位，放在下拉菜单顶部 */
    position: absolute;
    top: -8px; /* 向上偏移，刚好和菜单顶部衔接 */
    left: 50%; /* 水平居中 */
    transform: translateX(-50%);
    /* 用border绘制三角形（核心） */
    border-width: 0 8px 8px 8px; /* 上边框0，左右8px，下边框8px */
    border-style: solid;
    /* 颜色匹配：边框透明，下边框白色（和菜单背景一致） */
    border-color: transparent transparent #fff transparent;
    /* 防止被遮挡 */
    z-index: 1; 
}

.nav-item:hover .sub-menu { display:block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sub-menu-item {
    list-style: none;
}
.sub-menu-link {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 5px;
    transition: all 0.3s ease;
    text-align: center;
  
}
.sub-menu-link:hover {
    
}
/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1001; float: right; margin-top: 18px;
}
.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
.menu-toggle span:nth-child(1) {
    top: 0px;
}
.menu-toggle span:nth-child(2), .menu-toggle span:nth-child(3) {
    top: 7px;
}
.menu-toggle span:nth-child(4) {
    top: 14px;
}
/* 移动端导航样式 */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 70px 0 30px;
}
.nav-mobile.active {
    right: 0;
}
.nav-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}
.nav-mobile-list {
    list-style: none;
}
.nav-mobile-item {
    border-bottom: 1px solid #eee;
}
.nav-mobile-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    padding-right: 50px;
    position: relative;
}
.nav-mobile-link.has-children::after {
    content: "";
}
.nav-mobile-link.active.has-children::after {
    content: "";
}
.nav-mobile-sublist {
    display: none;
    list-style: none;
    background-color: #f9f9f9;
}
.nav-mobile-sublist.active {
    display: block;
}
.nav-mobile-subitem {
    border-top: 1px solid #eee;
}
.nav-mobile-sublink {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #666;
    text-decoration: none;
}
/* 遮罩层 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}
.submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    margin-left: auto;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.language-switch {
    display: flex;
    align-items: center; float: right; margin-top: 30px; margin-right: 100px;
}
.language-switch span {
    font-size: 18px;
    color: #fff;
    margin-right: 5px;
    font-weight: bold;
}
.language-switch a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
    margin-left: 10px;
}
.language-switch a.hover {
    color: #fff;
}
.topbtn{float: right; margin-top: 24px; }
.topbtn a{ display:inline-block; background-color:#A02862; color:#fff; padding:8px 20px;}
@media only screen and (max-width: 1200px) {
    .top{ display:none;}
    .language-switch{float:left; margin-top:15px; margin-right:0; }
     .topbtn{float:left; margin-top:10px; margin-right:50px; }
     .header{ top:0;}
.nav-pc {
    margin-left: 0px;
}
.nav-item {
    position: relative;
    margin: 0 10px;
}
.language-switch a {
    font-size: 14px;
}
.nav-link {
    font-size: 14px;
}
.sub-menu-link {
    padding: 5px 10px;
    font-size: 12px;
}
.nav-pc {
    display: none;
}
.menu-toggle {
    display: block;
}
}

@media only screen and (max-width: 750px) {
.header-container {
    padding: 0px 15px;
}
.header .container {
    height: 60px;
}
}
.banner {
    margin-top: 90px;
}
.banner_index .swiper-slide {
    position: relative;
}
.banner_index .swiper-button-next {
    right: 5%;
    height: 25px;
}
.banner_index .swiper-button-prev {
    left: 5%;
    height: 25px;
}
.banner_index img {
    display: block;
    width: 100%;
}

@media only screen and (max-width: 750px) {
.banner {
    margin-top: 60px;
}
}
.index_box_one_container {
    padding-top: 70px;
    padding-bottom: 70px;
}
.index_box_one {
   
    display: flex;
          justify-content: space-evenly;
    border: none; 
    box-sizing: border-box;      width: 70%;
    margin: 0 auto;
}
.index_box_one__item {
    display: flex;
   
    align-items: center; align-content: center;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease; 
    
    border: 1px solid #A02862;  
    padding:20px 50px;
    text-align: center;       justify-content: space-evenly;
}
.index_box_one__item:hover {
   background:#A02862 ; color: #fff;
} 
.index_box_one__text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: capitalize;
}
.index_box_one__item .index_box_one__text {
    color: #333;
    font-family: Helvetica Neue;
    font-weight: bold;
  
    color: #000000;
   
   
    margin-bottom:0;
}
.index_box_one__item:hover .index_box_one__text {
    color: #fff;
}
.index_box_one__icon { padding-left: 20px;
   
}
.index_box_one__icon img {
    width: 24px;
}
.index_box_one__icon2{ display:none}
.index_box_one__item:hover .index_box_one__icon1 {
display:none
}
.index_box_one__item:hover .index_box_one__icon2 {
display:block
}
@media only screen and (max-width: 750px) {
.index_box_one_container {
    padding-top: 30px;
    padding-bottom: 20px;
}
.index_box_one {
    flex-wrap: wrap;
    padding-bottom:0; width: 100%;
}
.index_box_one__item {
        padding: 10px 20px; margin-bottom: 10px;         width: 48%;
}

.index_box_one__icon {
  
}

	.index_box_one__item .index_box_one__text{ font-size: 18px; height: auto; margin-bottom: 0;}
}
.index_box_two {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
}
.index_box_two__img-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
}
.index_box_two__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.index_box_two__bg-wrap {
    flex: 1;
    background-color: #a02963;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    color: #fff;
    text-align: left;
}
.index_box_two__text-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.index_box_two__title {
    font-family: Helvetica Neue;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 20px;
}
.index_box_two__content {
    margin-bottom: 20px;
}
.index_box_two__more {
    text-align: right;
}
.index_box_two__more a {
    color: #fff;
    line-height: 24px;
    display: inline-table;
    border-bottom: #fff 1px solid;
    transition: color 0.3s ease;
}
.index_box_two__more a.index_box_one__item:hover,.index_box_two__more a:hover,.you__more a:hover {
    border-bottom: none;
}

@media (min-width: 768px) {
.index_box_two__text-container {
    max-width: 375px;
}
}

@media (min-width: 992px) {
.index_box_two__text-container {
    max-width: 485px;
}
}

@media (min-width: 1200px) {
.index_box_two__text-container {
    max-width: 600px;
}
}

@media (min-width: 1400px) {
.index_box_two__text-container {
    max-width: 700px;
}
}

@media (min-width: 1600px) {
.index_box_two__text-container {
    max-width: 800px;
}
}

@media (max-width: 750px) {
.index_box_two {
    flex-direction: column;
}
.index_box_two__img-wrap {
    height: 300px;
    flex: none;
    width: 100%;
}
.index_box_two__bg-wrap {
    flex: none;
    width: 100%;
    padding: 10px 20px 30px 20px;
}
.index_box_two__text-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.index_box_two__title {
    font-size: 20px;
}
}
.title2 {
    border-bottom: #EBEBEB 1px solid;
    line-height: 40px;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.title2 .left {
    float: left;
}
.title2 .left h3 {
    font-weight: 500;
    font-size: 36px;
    color: #000000;
    margin: 0;
}
.title2 a {
    float: right;
    line-height: 34px;
    display: inline-table;
    border-bottom: #CCCCCC 2px solid;
    transition: color 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    color: #CCCCCC;
}
.title2 a:hover {
    border-bottom: none;
}
.new_box {
    padding: 70px 0;
}
.zuo {
    padding-left: 0;
}
.you {
    padding-right: 0;
}
.news-list {
    list-style: none;
    padding:0;
    margin: 0;
}
.news-list li {
    margin-bottom: 20px; margin-top:10px;
}
.new-title {
    font-weight: bold;
    font-size: 20px;
    margin-top: 0; display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.new-txt {
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.newbanner{ position:relative; overflow: hidden;}
.newbanner .swiper-slide a{display:block; position:relative;}

 .newbanner .swiper-container {
        width: 100%;
        height: 100%; 
    }
   .newbanner .swiper-slide {
        

        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

  .newbanner .swiper-slide p{ text-align: center;
        
        background:url(../images/tou.png); color:#fff; padding:10px;}
        
        .newbanner .swiper-slide a img{ width:100%;}
.new-data {
    color: #666666
}
.Key_Dates {
    padding: 70px 0;
}
.Key_Dates_box {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05); padding: 10px 40px;
    display: flex;
    align-items: flex-start;
    border: none;
    box-sizing: border-box;  margin: 0;
}
.Key_Dates_box_zuo{border-right:#EBEBEB 1px  solid;  margin: 0; padding: 10px 50px ; position: relative;}
.Key_Dates_date{ background: url("../images/time.png") no-repeat left center; padding-left: 25px;   background-size: 20px; width:45%;display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden; }
 .Key_Dates_box_zuo li a, .Key_Dates_box_you li a{ display:block; width: 100%;  display:flex;}
.Key_Dates_box_zuo li { 
background-size: 20px;   margin: 15px 0 15px 0;  height: 24px; line-height: 24px; overflow: hidden;
}
.Key_Dates_box_you{ margin: 0 0 0 20px; padding: 10px 0; }
.Key_Dates_item{ background: url("../images/txt.png") no-repeat left center; padding-left: 25px;  background-size: 20px; width:55%;display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden; }
.Key_Dates_box_you li{ 

    overflow: hidden;margin: 15px 10px 15px 0;  height: 24px; line-height: 24px; overflow: hidden;
}



 
.gain { margin: 40px 0;
  background-color: #f4f4f4;
 
  border-left: 6px solid #a02862;  
  padding: 20px 30px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

/* 标题样式 */
.gain-title {
 font-size: 36px; font-weight: 500;
	background: url("../images/rw.png") no-repeat left center; background-size: 30px; padding-left: 50px; margin-bottom: 10px;
}

.gain-title .icon {
  color: #a82460;
}

/* 列表样式 */
.gain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gain-list li {
 
 
  border-bottom: 1px solid #DFDFDF;
  position: relative;
  padding-left: 15px; line-height: 60px;  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden; overflow: hidden;
}

 
.gain-list li::before {
  content: "•";
  color: #A02862;
  font-weight: bold; font-size: 20px;
  position: absolute;
  left: 0;
  top: 0; line-height: 58px;
}

 
.gain-list li:last-child {
  border-bottom: none;
}

 
.gain-list li strong {
 
}
.Partners{ }


 
.Partners-box {
  display: flex;
  gap: 40px;
 
}

 
.partner-column {
  flex: 1; padding-bottom: 20px;
 
}

 
.partner-column h3 {
  font-weight: 400;
font-size: 30px;
	margin-bottom:20px;
}

 
.partner-logos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
 
 
}

 
.partner-logos img {
  height: 55px;  
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.partner-logos img:hover {
  opacity: 0.8;
}
.borderleft{ border-left:#EBEBEB 1px solid; padding-left:40px;}

.borderright{  border-right:#EBEBEB 1px solid; padding-right:40px;}
.picbox{ background: #F4F4F4; padding: 70px 0; }
.picbox .container{ position: relative;}
  .picswiper {
        width: 100%;
        height: 100%; overflow:hidden; 
    }
 .picswiper .swiper-slide {
        text-align: center;
       
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

.picswiper .swiper-slide img{ width: 100%;}
 

.picbox .swiper-button-next {
    background-image: url("../images/right.png"); background-size:12px auto;
    right:-50px;
    left: auto;
}
.picbox .swiper-button-prev {
    background-image: url("../images/left.png"); background-size:12px auto;
    left:-50px;
     
}
.logobox{ padding: 70px 0; text-align: center}
.logobox a{ display: inline-block; padding: 0 20px;}
.logobox a img{ width:100%}
.img_txt_box { box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    border: none;
    box-sizing: border-box; margin: 40px 0;}
.img_txt_box .zuo {
	padding-left: 0;
}

.img_txt_box .you {
 
	padding: 70px 40px; 
	 
	 
}

.img_txt_box .you h3 {
	font-weight: 500;
font-size: 36px;
 
	margin-bottom: 30px;
}

.img_txt_box .you p {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden; overflow: hidden;
}
 
.img_txt_box .you dl dt {
 
 
   ;
  position: relative;
  padding-left: 20px; line-height: 30px;  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden; overflow: hidden;
}

 
.img_txt_box .you dl dt::before {
  content: "•";
  color: #A02862;
  font-weight: bold; font-size: 20px;
  position: absolute;
  left: 0;
  top: 0; line-height: 28px;
}
.img_txt_box .you dl dd{padding-left: 20px;  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden; overflow: hidden; margin-bottom: 20px;}
.you__more{  padding-left: 20px;}
.you__more a{ color: #A02862; display:inline-block; line-height: 24px; border-bottom:#A02862 2px solid; font-weight: bold;}
/* 底部响应式适配 */
@media only screen and (max-width: 1200px) {
	 
	 

	.img_txt_box .you h3 {
		font-size: 22px;
		color: #000206;
		margin-bottom: 10px;
	}

	 
	}


@media only screen and (max-width: 750px) {
	 .img_txt_box .you {
    padding: 10px 20px 30px 20px;
}
	.img_txt_box .you p {
		font-size: 14px;
		color: #595959;
		line-height: 1.6;
	}

	.img_txt_box {
	 margin: 40px 0;
	}

	.Key_Dates_box,.Partners-box,.img_txt_box{ flex-wrap: wrap;}.partner-column {
    flex: auto;
 
    width: 100%;
	}
	.partner-column h3{ font-size: 20px;}
	.borderright,.borderleft{ border:none;padding:0;}
	
	
	
	.Partners-box {
    
    gap: 10px;
}
	
	.gain{ padding: 20px 10px;}
	.gain-title,.title2 .left h3 {
    font-size: 24px;}
	
	
	.picbox .swiper-button-next {
    background-image: url("../images/right.png"); background-size:12px auto;
    right:15px;
    left: auto;
}
.picbox .swiper-button-prev {
    background-image: url("../images/left.png"); background-size:12px auto;
    left:15px;
     
}
	
	
	.new_box,.picbox {
    padding: 40px 0;
  
}
	.logobox{ padding: 30px 0; }
	.zuo,.you{width: 100%;}
	
	.title2 {
    
    padding-bottom: 10px;
    margin-bottom: 20px;
}
	
	.new-title{    margin-bottom: 5px; }
	
	.zuo{ padding-right: 0;}
	
	.you{ padding-left: 0; }
	.Key_Dates {
    padding:  0;
}
	.Key_Dates_box{ padding: 10px 20px;}
	.Key_Dates_box_zuo{     padding: 0 0 20px 0; border-right:none;}
	
	.Key_Dates_box_zuo:before{ bottom: 0; top:auto; width:100%;}
	.Key_Dates_box_you{ margin:0;}
	.logobox a{     padding: 10px;}
}






/* 新闻详情页 */
.show_box {
	background: #fff;
	padding: 60px 0;
}
.show_box .container{ box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);  }
.news_detail {
	margin: 0 auto;padding: 40px;
}

.detail_title {
	font-weight: 500;
font-size: 28px;
	color: #000;
 
	line-height: 1.5;
	margin: 0 0 25px 0;
	text-align: center; border-bottom: 1px solid #EBEBEB;  padding-bottom: 25px;
}

.detail_meta {
	display: flex;
	justify-content: center;
	gap: 30px;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #e5e5e5;
}

.meta_item {
	font-size: 14px;
	color: #999;
	display: flex;
	align-items: center;
	gap: 5px;
}

.detail_content {
	font-size: 16px;
	color: #333;
	line-height: 2; min-height: 400px;
}

.detail_content p {
	margin: 0 0 20px 0;
	text-align: justify;
}

.detail_content ol {
	margin: 20px 0;
	padding-left: 25px;
}

.detail_content li {
	margin-bottom: 12px;
	line-height: 1.8;
}

.detail_image {
	margin: 40px 0;
	text-align: center;
}

.detail_image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.image_caption {
	font-size: 14px;
	color: #666;
	margin: 15px 0 0 0;
	text-align: center;
}
 
/* 响应式 - 1400px */
@media (max-width: 1400px) {
	.news_detail {
		max-width: 850px;
	}

	.detail_title {
		font-size: 30px;
	}

	.detail_content {
		font-size: 15px;
	}
}

/* 响应式 - 1200px */
@media (max-width: 1200px) { .show_box .container {
 
    margin: 0 10px;
}
	.dd_box_2 {
		padding: 50px 0 70px;
	}

	.news_detail {
		max-width: 800px;
	}

	.detail_title {
		font-size: 28px;
		margin: 0 0 20px 0;
	}

	 
	.detail_content {
		font-size: 15px;
		line-height: 1.9;
	}

	.detail_content p {
		margin: 0 0 18px 0;
	}
}

/* 响应式 - 手机端 750px */
@media (max-width: 750px) {
	.show_box{     padding: 30px 0;}
	.dd_box_2 {
		padding: 30px 0 50px;
	}

	.news_detail {
		max-width: 100%; padding: 20px;
	}

	.detail_title {
		font-size: 24px;
		margin: 0 0 18px 0;
		text-align: left; 
	}

	 

	.detail_content {
		font-size: 14px;
		line-height: 1.8;
	}

	.detail_content p {
		margin: 0 0 15px 0;
	}

	.detail_content ol {
		padding-left: 20px;
	}

	.detail_content li {
		margin-bottom: 10px;
		font-size: 14px;
	}

	.detail_image {
		margin: 30px 0;
	}

	.image_caption {
		font-size: 13px;
	}

	 
}
.position{ padding: 20px 0;}


/* 产品分类导航 */
.nav_two {
	background: #fff;
	padding: 0;
	transition: all 0.3s;
	z-index: 99;
 
}

.nav_two.sticky {
	position: fixed;
	top: 90px;
	left: 0;
	right: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav_two .container {
	display: flex;
	gap: 0;
	overflow: hidden;
	justify-content: center; border-bottom:#A02862 4px solid;
}

.nav_two_item {
	margin: 18px 30px; padding: 0 0 8px 0;
	color: #A02862;
	font-size: 16px;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: all 0.3s;
	white-space: nowrap;
}

.nav_two_item:hover,
.nav_two_item.active {
 
	border-bottom-color: #A02862;
}

/* 响应式 - 1400px */
@media (max-width: 1400px) {
	.nav_two_item {
		font-size: 15px;
		padding: 16px 25px;
	}
}

/* 响应式 - 1200px */
@media (max-width: 1200px) {
	.nav_two_item {
		font-size: 14px;
		padding: 15px 20px;
	}
}

/* 响应式 - 手机端 750px */
@media (max-width: 750px) {
	.nav_two {
		position: relative !important;
		top: auto !important;
	}

	.nav_two.sticky {
		position: relative !important;
		top: auto !important;
		box-shadow: none;
	}

	.nav_two .container {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.nav_two_item {
		flex: 0 0 auto;
		font-size: 14px;
		padding: 5px 0; margin: 10px 10px;
		 
	}
	.nav_two .container{ flex-wrap: wrap;}
	
	 
}




.pagelist{ text-align:center;  
    display: block;
    width: 100%; margin-bottom:40px;}
 .pagelist a{ display:inline-block; border:#f9f9f9 1px solid; padding:5px 15px;}
  .pagelist .active{background-color: #891D57;  border:#f9f9f9 1px solid; color:#fff; }


.fyleibiao li {
    background: #fff;
    position: relative;
    margin-bottom: 30px; box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.fyleibiao li a {
    display: block;
    padding: 30px 90px 30px 137px;
}
.fylbsj {
    position: absolute;
    top: 0;
    left: 30px;
    color: #891D57;
    padding-top: 30px;
}
.fylbsj:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #891D57;
}
.fylbbt {
    margin-bottom: 10px; 	font-size: 16px; font-weight: bold; white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fyleibiao li:hover {
    background: #891D57;
}
.fyleibiao li:hover p, .fyjslb li:hover p {
    color: #fff;
}


.overhidetwo {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.title-bar{     font-weight:bold; margin-bottom: 20px;
    font-size: 36px;
    color: #000000;
   }
   .person-card{ margin-bottom: 40px; text-align:center; }
   .person-card a{ padding:10px; display:inline-block}
   
   
   
   
   
   
   @media (max-width: 750px) {
 
	
	.title-bar{  font-size: 20px;}
	.fyleibiao li a{padding:20px 10px 20px 110px}
	.fylbsj{    left: 15px; }
	.fylbbt{    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; white-space:normal;         -webkit-box-orient: vertical;}
}








  
        .search-container .container {
            
            display: flex; justify-content: center;
            align-items: center; align-content: center;
            gap: 20px;
          
            padding: 50px  0 0 0;
         
         
            z-index: 9999;
        }

        #search-input {
            border: none;
            outline: none;
            padding: 4px 8px;
            border: #7D3EA7 1px solid ;
            width: 200px;
        }

         

        .search-btn {
            border: none;
            background: #7D3EA7; color: #fff;
           
            padding: 5px 14px;
            cursor: pointer; margin: 0 15px;
         
        }

        .search-btn:hover {
            background: #A02862;
        }

       

        /* 高亮样式 */
        .highlight {
            background-color: #c488c4;
            color: #000;
            padding: 0 2px;
        }

        /* 当前选中的高亮项 */
        .highlight.active {
            background-color: #ff9900;
        }

       














