:root {
  --theme-font: "PingFang SC", "Microsoft YaHei", "Source Han Sans CN", sans-serif;
  --icon-font: 'Font Awesome 5 Pro';
  --ripple-ani-duration: 5s;
  --theme-color:#2785dd;
  --body-color: #333;
  --title-color:#114984;
}
body {
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image: url(../img/bg1.jpg);
  background-size: cover; 
  background-position: center center; 
  background-repeat: no-repeat; 
 /* background-attachment: fixed; */
}
a {
  color: var(--body-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0;
}
.nopadding{
  padding:0;
}
.padding-lr{
   padding:0px 300px;
}
#logo{
  background-color: #114984;
  background-image: url(../img/bgbg.png);
  background-size: cover; 
  background-position: center center; 
  max-height:154px;
}
.logoimg{
  /*padding:18px 0;*/
}
.logoimg img{
  max-width:90%;
}
.search{
	float:right;
	height:154px;
	display: flex;
}
.search span{
	position:absolute;
	top:20px;
	right:50px
}
.search span a{
    color:#fff
}
.variation-card {
	float:right;
	width:80%;
	background: rgba(255, 255, 255, 0.1);
	/*backdrop-filter: blur(5px);*/
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: transform 0.3s ease;	
    margin: auto;
}

.variation-card:hover {
	transform: translateY(-5px);
}

.variation-title {
	font-size: 1.1rem;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.variation-search {
	display: flex;
	border-radius: 8px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.15);
}

.variation-input {
	flex: 1;
	padding: 5px 15px;
	border: none;
	background: transparent;
	color: white;
	outline: none;
}

.variation-input::placeholder {
	color: rgba(255, 255, 255, 1);
}

.variation-button {
	background: rgba(255, 255, 255, 0);
	border: none;
	color: white;
	padding: 0 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}
input::placeholder,{
    color: #fff;
}
.variation-button:hover {
	background: rgba(255, 255, 255, 0.3);
}
.horizontal-nav {
	background: #fff;
}

.main-menu {
	list-style: none;
	display: flex;
	justify-content: center;
	position: relative;
	padding:0;
	margin:0
}

.main-menu > li {
	position: relative;
}

.main-menu > li > a {
	display: block;
	padding: 16px 55px;
	color: #333;
	text-decoration: none;
	font-weight: 600;
	font-size:18px;

	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
	white-space: nowrap;
}

.main-menu > li > a:hover,.on{
	background: #2785dd;
	color:#fff !important;
	border-bottom: 3px solid var(--theme-color);
}

/* 浜岀骇鑿滃崟鏍峰紡 */
.submenu {
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	width:100%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-radius: 0 0 8px 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 100;
	margin:0;
	padding:0;
	text-align:center
}

.main-menu > li:hover .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.submenu li {
	list-style: none;
}

.submenu a {
	display: block;
	padding: 12px 20px;
	color: #2c3e50;
	text-decoration: none;
	border-left: 3px solid transparent;
	transition: all 0.2s ease;
}

.submenu a:hover {
	background: #f8f9fa;
	border-left: 3px solid var(--theme-color);
	padding-left: 25px;
}
#carousel-img{
	width: 100%;
	flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
}
.carousel-section {
	width: 100%;
}

.carousel-card {
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);

	max-width: 100%;
}

.card-title {
	font-size: 1.5rem;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 400;
}

.card-title i {
	color: #ffcc00;
}

/* 鑷畾涔塀ootstrap 3杞挱鏍峰紡 */
.custom-carousel {
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	position: relative;
}

.carousel-inner > .item {
	height: 500px;
	transition: transform 0.6s ease-in-out;
}

#basicCarouselx > .carousel-inner > .item {
	height: 300px !important;
}

.carousel-inner > .item > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	color: white;
	padding: 20px 25px;
	text-align: left;
	border: none;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.slide-title {
	font-size: 1.8rem;
	margin-bottom: 8px;
	font-weight: 500;
}

.slide-description {
	font-size: 1.1rem;
	opacity: 0.95;
	line-height: 1.5;
}

/* 鑷畾涔夋帶鍒舵寜閽� */
.carousel-control {
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	top: 50%;
	margin-top: -25px;
	opacity: 0.9;
	text-shadow: none;
	transition: all 0.3s ease;
}

.carousel-control:hover {
	background: rgba(0, 0, 0, 0.8);
	opacity: 1;
	transform: scale(1.1);
}

.carousel-control.left {
	left: 20px;
	background-image: none;
}

.carousel-control.right {
	right: 20px;
	background-image: none;
}

.carousel-control .fa {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
	color: white;
}

/* 鑷畾涔夋寚绀哄櫒 */
.carousel-indicators {
	bottom: 20px;
	margin-bottom: 0;
}

.carousel-indicators li {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	margin: 0 6px;
	border: 2px solid transparent;
	background: rgba(255, 255, 255, 0.5);
	transition: all 0.3s ease;
}

.carousel-indicators .active {
	width: 14px;
	height: 14px;
	background: #ffcc00;
	transform: scale(1.2);
	border-color: rgba(255, 255, 255, 0.8);
}

.carousel-indicators li:hover {
	background: rgba(255, 255, 255, 0.8);
}

/* 鑷姩鎾斁鎺у埗 */
.autoplay-control {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

.autoplay-btn {
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
	padding: 10px 20px;
	border-radius: 25px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.autoplay-btn:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
}
.contentleft{
	padding-top:28px;
	background-color: #fff; 
        padding-left: 40px;
        color: white;
        min-height:441px
}
.contentright{
	background-color: #fff; 
        padding: 30px 20px 0 20px;
        color: white;
        min-height:441px;
}
.contentlefttitle,.contentrighttitle{
	font-size:2rem;
	color:var(--body-color);
	border-bottom:1px solid #ccc;
	margin-bottom:10px;
}
.contentlefttitle i,.contentrighttitle i{
	color:var(--theme-color);
	font-size:2.4rem;
}
.contentlefttitle g,.contentrighttitle g{
	color:var(--title-color);
}
.contentleftlist{
	width:100%;
	display:block;
	float:left;
	padding-top:20px;
	border-bottom:1px solid #ccc
}
.contentleftdate{
	display:block;
	float:left;
	width:7rem;
	text-align:center;
}
.contentleftdate span{
	display:block;
	background-color:var(--theme-color);
	color:#fff;
	padding:5px;
	font-weight:800;
	font-size:18px
}

.contentleftdate span:nth-child(2) {
    background-color: #49a6ff;
	font-weight:normal;
	font-size:15px
}
.contentrightlist{
    padding:0;
}
.contentrightlistnews{
	width:95%;
	min-height:350px;
	background-color: #fafafa; 
    border-radius: 6px;
	margin:20px 0 0 0;
	color:var(--body-color);
}
.contentrightlistnews:not(:first-child) {
    margin-left: 10px;
	padding-left:10px;
}
.contentrightimg{
	width:100%;
	overflow:hidden;
	max-height:150px
}
.contentrightimg img{
	max-width:262px;
	transition: transform 0.5s ease;
}
.contentrightdate{
	display:block;
	float:left;
	width:7rem;
	text-align:center;
	position:absolute;
	top:140px;
	left:20px
}
.contentrightdate span{
	display:block;
	background-color:var(--theme-color);
	color:#fff;
	padding:5px;
	font-weight:800;
	font-size:18px
}

.contentrightdate span:nth-child(2) {
    background-color: #49a6ff;
	font-weight:normal;
	font-size:15px
}
.contentrighttitlex{
	padding:8px;
	font-size:16px;
	color:#333;
}
.contentrighttitlex{
	height:160px;
	padding:60px 10px 0px 10px;
	line-height:30px;
	font-weight:bold;
}
.contentdetail{
	position:absolute;
	bottom:0;
	left:0;
	padding:0 0px 4px 10px;
}
.contentdetail a,.contentdetail i{
	font-size:13px;
	color:#999
}
.contenttitle{
	width:80%;
	float:left;
	padding-left:8px;
	line-height:30px;
	display: -webkit-box;
    -webkit-line-clamp:2;  
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

}
.carouselx{
	display:none
}
.underlinename{
	border-bottom:2px solid var(--theme-color);
	line-height:30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	padding-right:8px;
	font-size:24px;
}
#newscontent1{
	min-height:321px;
	padding-bottom:20px;
}
#newscontent1x{
        width:100%;
	display:inline-block;
	background-color:#fff;
	padding-left:30px;
}
.news1list{
	min-height:300px;
	display:block;
	float:left;
	width:31.3%;
	padding:20px 0px 20px 10px;
    margin:20px 0 0 10px;
    padding: 20px 20px 20px 0;
    color: #114984;
}
.news1list:first-child{
	width:33.333%;
}
.news1list ul{
	list-style:none;
	padding:8px 0 0 0;
}
.news1list ul li{
	line-height:40px
}
.news1list ul li span:first-child{
	display:block;
	float:left;
	width:70%;
	overflow:hidden;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news1list ul li span:nth-child(2) {
	float:left;
	width:30%;
	text-align:right;
	padding-right:8px;
	color:var(--theme-color);
	font-size:13px;
}
.more{
	float:right;
	font-size:13px;
	padding-right:5px;
	color:var(--theme-color);
}
.more i{
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--theme-color);
    color: white;
    font-style: normal;
    text-decoration: none;
	font-size:10px;
	padding-left:2px;
}
.footer{
	background-color:#114984;
	color:#fff;
	min-height:210px;
}
.footleft{
	float:left;
	display:flex;
	align-items:center;
	height:210px;
}
.footleft img{
	width:100%;
	max-width:100px
}
.rightlink ul{
	list-style:none;
	padding:10px 0 0 0;
}
.rightlink ul li{
	width:100%;
	height:45px;
    position: relative;
    padding-right: 20px;
    text-decoration: none;
    color: #dc3545;
    display: inline-flex;
    align-items: center;
	background-color:var(--theme-color);
	margin-top:10px;
}
.rightlink ul li::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(310deg);
    margin-left: 8px;
    margin-bottom: -2px;
    transition: transform 0.3s ease;
}

.rightlink ul li a{
	width:100%;
	display:inline-flex;
	color:#fff;
	padding:6px;
}
.rightlink .underlinename{
	font-size:2rem
}
.footright{
	float:left;
	padding:20px 0 20px 20px;
}
.footrightx{
	float:left;
	padding:20px 0 20px 0;
}
.link1,.link2{
	position: absolute;
    top: 0;
    left: 20;
    width: 80%;
    height: 210px;
    z-index: 10;
    display: none;
    padding: 20px;
}
.link1 span,.link2 span{
	position:absolute;
	right:0;
	bottom:0;
	margin:10px;
	
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background-color: #ff0000;
	color:#fff;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom:28px;
}
.link1 span:hover,.link2 span:hover {
    background-color: #fff;
    color:#ff0000;
	transform: translateY(-2px);
}
.link1 ul li,.link2 ul li{
	width:150px;
	float:left;
	padding:10px 5px 10px 0;
}
.link1 ul li a,.link2 ul li a{
	color:#fff
}
.linkinfo {
    position: relative;
    z-index: 1;
    padding: 20px;
	line-height:30px;
    font-family: 'WenQuanYi Micro Hei'
}
.back-to-top {
  width: 50px;
  height: 50px;
  border-radius: 50%; /* 鍏抽敭锛氬渾褰� */
  background-color: #007AFF; /* 钃濊壊鑳屾櫙 */
  color: white;
  border: none;
  cursor: pointer !important;
  font-size: 18px;
  display: block;
  transition: all 0.3s ease;
  position:absolute;
  bottom:0;
  right:16%;
  margin:0px 40px 40px 0;
  z-index:999;
}
.back-to-top:hover{
  background-color: #0056CC !important;
  transform: translateY(-2px);
}
/* 鍝嶅簲寮忚璁� */
@media (max-width: 768px) {
	.header h1 {
		font-size: 2.2rem;
	}
	
	.carousel-inner > .item {
		height: 320px;
	}
	
	.carousel-control {
		width: 44px;
		height: 44px;
		margin-top: -22px;
	}
	
	.carousel-control .glyphicon {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.carousel-inner > .item {
		height: 250px;
	}
	
	.carousel-caption {
		padding: 15px 20px;
	}
	
	.slide-title {
		font-size: 1.3rem;
	}
	
	.slide-description {
		font-size: 0.9rem;
	}
	
	.carousel-control {
		width: 40px;
		height: 40px;
		margin-top: -20px;
	}
	
	.carousel-control .glyphicon {
		font-size: 16px;
	}
}
@media (-webkit-min-device-pixel-ratio: 1.5), 
       (min-resolution: 144dpi) {
		.padding-lr{
		   padding:0px 30px;
		}
		.main-menu > li > a {
			padding: 16px 50px;;
		}
		.back-to-top {
		  right:1.5%;
		}
		.variation-input {
			padding: 5px 8px;
		}
		.contentrighttitlex{
			font-size:14px;
		}
		.contenttitle a,.news1list ul li span a{
			font-size:14px
		}
}
#categorycontent{
	display:flex;
	min-height:300px;
}
.categoryleft{
	padding:28px 0 28px 15px;
	background-color: #fff; 
    color: white;
}
.categoryright{
	background-color: #fff; 
    padding: 30px 20px 0 20px;
    color: white;
}
.categoryright ul li a{
     width:80%;
     height:36px;
     white-space:nowrap; 
     display:inline-block;
     overflow:hidden;
     text-overflow:ellipsis;

}
.category-list{
	display:block;
	background-color:#eaf3fc;
	border-left:2px solid var(--title-color);
}
.category-main{
	display:block;
	text-align:center;
	padding:24px 0;
	background-color:var(--title-color);
	font-size:24px;
	font-weight:bold
}
.category-sub{
	display:block;
	padding:10px;
}
.category-sub ul{
	list-style:none;
	padding:0;
}
.category-sub ul li{
	margin:10px 0;
	padding:15px 0px 15px 10px;
	background-color:#fff;
	color:var(--body-color);
	transition: all 0.3s ease;
}
.category-sub ul li:hover,
.category-sub ul li:hover span {
    color: #fff;
}
.category-sub ul li span {
    color: var(--theme-color);
    transition: color 0.3s ease;
}

.category-sub ul li:hover{
    background-color: var(--theme-color);
	font-weight:bold
}
.categoryactive{
    background-color: var(--theme-color) !important;
	font-weight:bold;
	color:#fff !important
}
.categoryactive span{
	color:#fff !important
}
.category-sub ul li span{
	display:block;
	width:30px;
	float:right;
	line-height:30px;
	color:var(--theme-color);
	transition: all 0.3s ease;
}
.categoryname{
	color:var(--title-color);
	font-weight:bold
}
.categoryguid{
	float:right;
	font-size:13px;
	padding-right:5px;
	color:#ccc;
	font-weight:normal;
}
.categoryguid,.categoryguid a{
	color:#ccc
}
.categoryguid a:not(:last-child)::after {
    content: ">";
    margin-left: 8px;
}
.categoryguid i{
	font-size:13px;
	font-weight:normal;
}
.categoryright ul{
	display:block;
		padding-left:20px;
}
.categoryright ul li{
	list-style:disc;
	color:var(--theme-color);
	font-size:16px;
        border-bottom:1px solid #ccc;
	line-height:55px;
	transition: all 0.3s ease;
}
.categoryright ul li span{
	display:block;
    float:right;
	width:100px;
}
.categoryright ul li:hover{
    border-bottom:1px solid var(--title-color);
}
.contentdate{
	color:var(--title-color);
}
.contenttitlex,.contentdatex,.contentdetailx,.contentpagesx,.contentpnx,.contentdetailxx{
	display:block;
	width:100%;
	padding:0 30px;
	color:var(--body-color);
}
.contenttitlex{
	font-size:22px;
	font-weight:bold;
	color:var(--title-color);
	padding:30px 0 20px 0;
        width:80%;
        margin:0 auto;
        line-height:40px;
}
.contentdatex{
	padding-bottom:10px;
	border-bottom:1px solid #ccc;
}
.contentdetailx{
	padding:30px;
	border-bottom:1px solid #ccc;
	line-height:30px;
}
.contentdatex span:not(:first-child){
	padding-left:30px;
}
.contentpnx {
	padding-bottom:20px;
}
.contentdatex span{
	color:#ccc;
	font-size:14px;
}
.contentpnx span{
	display:block;
	width:100%;
	line-height:30px;;
	font-size:14px;
}
.attc{
	display:block;
	width:100%;
	padding:10px 0 0 0;
	font-size:14px;
}
.contentdetailxx{
	padding:30px;
	line-height:30px;
}
.demo-group {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            padding: 20px 0;
        }     
.btn-gradient {
            display: inline-block;
            padding: 12px 60px;
            font-size: 18px;
            font-weight: 600;
            font-family: inherit;
            color: #ffffff;
            text-decoration: none;
            text-align: center;
            background: linear-gradient(135deg, #2785dd 0%, #1a5fa3 100%);
            border-radius: 0px;
            border: none;
            box-shadow: 0 4px 15px rgba(39, 133, 221, 0.4);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: visible;
        }

        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(39, 133, 221, 0.5);
            background: linear-gradient(135deg, #1a5fa3 0%, #2785dd 100%);
        }

        .btn-gradient:active {
            transform: translateY(0px);
            box-shadow: 0 2px 10px rgba(39, 133, 221, 0.4);
        }

        /* 文字和箭头容器 */
        .btn-content {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            position: relative;
        }

        /* 箭头图标 */
        .arrow-icon {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
        }

        .arrow-icon svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: white;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            position: relative;
            z-index: 2;
        }

        /* 外层圆圈 - 默认自动循环动画 */
        .circle-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 44px;
            height: 44px;
            border: 2px solid rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            opacity: 0.8;
            pointer-events: none;
            z-index: 1;
            /* 默认自动播放动画，无限循环 */
            animation: circleShrink 1.2s ease-in-out infinite;
        }

        @keyframes circleShrink {
            0% {
                width: 44px;
                height: 44px;
                opacity: 0.8;
                border-width: 2px;
                border-color: rgba(255, 255, 255, 0.9);
            }
            50% {
                width: 24px;
                height: 24px;
                opacity: 0.5;
                border-width: 1.5px;
                border-color: rgba(255, 255, 255, 0.6);
            }
            100% {
                width: 44px;
                height: 44px;
                opacity: 0.8;
                border-width: 2px;
                border-color: rgba(255, 255, 255, 0.9);
            }
        }

        /* 可选：悬停时箭头轻微移动 */
        .btn-gradient:hover .arrow-icon svg {
            transform: translateX(3px);
            transition: transform 0.3s ease;
        }
        .effect-info {
            margin-top: 20px;
            font-size: 13px;
            color: #888;
            background: rgba(255,255,255,0.8);
            padding: 10px 20px;
            border-radius: 8px;
            display: inline-block;
        }