body{
	display: flex;
    margin: 0px; /* 移除默认的margin */
	padding:0px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	flex-direction:column;
	
}
body a{
		text-decoration:none;
		color:black;
}
/*顶部样式*/
.top{
	height:40px;
	background-color:#f76120;
	border-bottom:1px solid rgb(229, 231, 235);
	display:flex;
    justify-content: center;
	align-items: center;
	gap: 600px;
	font-size:14px;
	color:#ffffff;
}
.top_name{
	width:300px;
}
.top-tell{
	float:right;
	color:#ffffff;
	font-size:14px;
}
/*导航栏样式*/
.nav{
	display:flex;
	justify-content: center; 
	align-items: center;
}
.nav .nav-list ul{
	display:flex;
	gap: 50px;
}
.nav .nav-list ul li {
	list-style-type:none;
	
}
.nav .nav-list ul li a:hover{
	color:#f76120;
	text-decoration: underline;
}
 /* Banner样式 */
.ban{
	display:flex;
	justify-content: center; 
	margin: 0px; /* 移除默认的margin */
	padding:0px;
	
}

.banner-container {
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 600px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

        }
        
.banner {
	display: flex;
	width: 400%;
	height: 100%;
	transition: transform 0.6s ease-in-out;
}

.banner-slide {
	width: 25%;
	height: 100%;
	position: relative;
	
}

.banner-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 40px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: white;
}

.banner-content h2 {
	font-size: 32px;
	margin-bottom: 15px;
	font-weight: 700;
}

.banner-content p {
	font-size: 18px;
	max-width: 600px;
	margin-bottom: 20px;
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	background: #3498db;
	color: white;
	text-decoration: none;
	border-radius: 30px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn:hover {
	background: #2980b9;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 导航控制 */
.banner-controls {
	position: absolute;
	top: 50%;
	width: 97%;
	display: flex;
	justify-content:space-between;
	padding: 0 20px;
	margin:0;
	transform: translateY(-50%);
	z-index: 10;
}

.control-btn {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.control-btn:hover {
	background: white;
	transform: scale(1.1);
}

.control-btn i {
	font-size: 24px;
	color: #2c3e50;
}

/* 指示器 */
.banner-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	z-index: 10;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	margin: 0 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background: white;
	transform: scale(1.2);
}
/* 响应式设计 */
@media (max-width: 768px) {
	.banner-container {
		height: 400px;
	}
	
	.banner-content h2 {
		font-size: 24px;
	}
	
	.banner-content p {
		font-size: 16px;
	}
	
	.nav-links {
		display: none;
	}
}

@media (max-width: 480px) {
	.banner-container {
		height: 300px;
	}
	
	.banner-content {
		padding: 20px;
	}
	
	.banner-content h2 {
		font-size: 20px;
	}
	
	.control-btn {
		width: 40px;
		height: 40px;
	}
	
	.control-btn svg {
		width: 20px;
		height: 20px;
	}
}
/*能做什么样式*/
.wedo{
	margin: 0; /* 移除默认的margin */
	padding:20px;
	font-size:20px;
}
.wedo h2,p{
	margin: 0; /* 移除默认的margin */
	padding:0px;
	display:flex;
	align-items: center;
	justify-content: center;

}
.wedo_hr{
	margin: 0; /* 移除默认的margin */
	padding:20px;
	display:flex;
	align-items: center;
	justify-content: center;
}
.wedo_ul{
	margin: 0 auto;
    overflow: hidden;
    padding: 25px 0 0 0;
	display:flex;
	align-items: center;
	justify-content: center;
}

.wedo_ul li{
	width: 212px;
    float: left;
    border: 1px #e9e9e9 solid;
    padding: 35px;
    margin-left: 21px;
    position: relative;
	list-style-type:none;
	border-radius:10px;
}
.wedo_ul li:hover{
	
	box-shadow:0 0 15px #cfcfcf;
}
.wedo_ul_img{
	width: 63px;
    float: left;
    height: 63px;
    margin-left: 68px;
    border-radius: 50%;
    border: 5px #f1f1f1 solid;
    z-index: 1;
    position: relative;
}
.wedo_ul_tt{
	width: 212px;
    float: left;
    color: #f76120;
    font-size: 22px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    margin-top: 5px;
    font-weight: 700;
    z-index: 1;
    position: relative;
}
.wedo_ul_ds{
	width: 212px;
    float: left;
    color: #333;
    font-size: 14px;
    line-height: 30px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    z-index: 1;
    position: relative;
	
}
/*关于公司样式*/
.aboutus{
	/*background:url(../image/ab_bg.jpg);*/
	height:420px;
	overflow:hidden;
	display:flex;
	align-items: center;
	justify-content: center;
	padding-bottom:10px;
	background-color:#f6f8fa;

}
.aboutus_left{
	width:600px;

}
.aboutus_left ul li{
	list-style-type:none;
	margin:0;
	padding:0;
	
}
.aboutus_left ul li h5{
	border-bottom: #ccc 1px solid;
    height: 112px;
	padding-bottom:20px;

}
.aboutus_left ul li h5 i{
	display: block;
    font-size: 36px;
    color: #000;
    font-weight: bold;
	margin:0;
    padding: 20px 0 5px;
    font-family: Arial, Helvetica, sans-serif;
}
.aboutus_left ul li h5 a{
	font-size: 18px;
    color: #333;
    font-weight: bold;
}
.aboutus_left ul li p{
	 font-size: 14px;
    color: #555;
    height: 90px;
    line-height: 30px;
    overflow: hidden;
}
.aboutus_left ul li b{
	display: block;
    font-size: 18px;
    color: #b91c22;
    height: 30px;
    line-height: 30px;
    padding: 20px 0;
}
.aboutlink{
	background: url(../image/ab_btn01.png) no-repeat;
    display: flex;
    width: 310px;
    height: 42px;

}
.aboutlink01{
	display: block;
    font-size: 14px;
    color: #fff;
    float: left;
    width: 155px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    overflow: hidden;
	background: url(../image/ab_btn02.png) no-repeat;
}
.aboutlink02{
	display: block;
    font-size: 14px;
    color: #fff;
    float: left;
    width: 155px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    overflow: hidden;
}
.aboutlink02:hover{
	background: url(../image/ab_btn02.png) no-repeat;
}
.aboutusimg{
	display:flex;
}
.aboutusimg img{
	display:flex;	
	height:420px;
}
/*案例展示样式*/
.anlishow{
	display: block;
    unicode-bidi: isolate;
	margin-top:20px;
}
.anlishow_title{
	margin: 0;
    overflow: hidden;
	padding:0px;
}
.anlishow_title h3{
	margin:0px;
	padding:0px;
	font-size: 36px;
    font-weight: bold;
    text-shadow: 1px 1px 1px #d8d8d8;
    text-align: center;
}
.anlishow_title p{
	margin:0px;
	padding:0px;
	background: url(../image/pro_tt.png) no-repeat center;
    height: 30px;
    line-height: 30px;
    letter-spacing: 10px;
    text-align: center;
    font-size: 16px;
	color: #333;
}
.anlishow_contain{
	display: flex;
	justify-content: center;
	margin-top:10px;
}
.anlishow_contain ul{
	padding:0px;
	margin:0px;
}
.anlishow_contain ul li{
	width: 290px;
    float: left;
	margin:5px;
    border: 1px solid #fff;
	box-shadow:0px 12px 36px -12px rgba(50, 62, 93, 0.24), 0px 8px 16px -8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
	border-radius:10px;
}
.anlishow_contain ul li img{
	width: 280px;
    height: 210px;
    display: block;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
    margin: 0 auto;
	transition: transform 0.3s ease;
	border-radius:10px 10px 0 0;
}
.anlishow_contain ul li img:hover{
	transform: scale(1.1);
}
.anlishow_contain ul li h2{
	display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
	font-size:16px;
	color: #f76120;
}
/*工厂实力样式*/
.aboutgc{
	margin:0;
	padding:0;
	align-items: center;
	justify-content: center;
	/*background-color:#11253E;*/
	background: url(../image/bg.png) center center no-repeat #ffffff;
}
.aboutgc_title{
	color:#1d2129;
	font-size:36px;
	line-height:1.4;
	white-space:pre-wrap;
	display:flex;
	align-items: center;
	justify-content: center;
}

.aboutgcci{
	margin:0px;
	padding:0px;
	width:1350px;
	height:250px;
	display:flex;
	border:1px solid #ff0000;
}

.aboutgc_contain{
	margin:0px;
	padding:0px;
	align-items: center;
	justify-content: center;

}
.aboutgc_contain ul{
	display:flex;
	align-items: center;
	justify-content: center;
	padding:20px;
}
.aboutgc_contain ul li{
	margin:10px;
	padding:20px;
	align-items: center;
	justify-content: center;
	list-style-type:none;
	width:364px;
	height:228px;
	border:4px solid #ffffff;
	box-shadow:0px 12px 36px -12px rgba(50, 62, 93, 0.24), 0px 8px 16px -8px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	text-align:left;
}
.aboutgc_contain ul li div{
	margin:20px;
}
/*资讯新闻样式*/
.newtitle h3{
	font-size:36px;
	display:flex;
	align-items: center;
	justify-content: center;
}
.newaction{
	display:flex;
	align-items: center;
	justify-content: center;

}
.newaction a{
	text-align:center;
	align-items: center;
	width:113px;
	height:30px;
	border-radius: 20px;
	padding-top:5px;
	color:#1D2129;
	border:1px solid #f2f3f5;
}
.newaction a:hover{
	background-color:#DDD;
}
.new{
    height:430px;
	display:flex;
	align-items: center;
	justify-content: center;
    flex-wrap: nowrap;
	background-color: #fff; /* 设置背景颜色 */
	overflow: hidden; /*隐藏溢出内容*/
	white-space: nowrap; /* 防止内容换行 */
	position: relative; /* 设置相对定位 */
	/*animation:scrollLeft 20s infinite linear;*/
	gap:20px;
	margin-top:50px;
	/*-ms-overflow-style: none;  /* IE and Edge */
    /*scrollbar-width: none;     /* Firefox 64+ */
}
/*::-webkit-scrollbar{
	display: none;
}
.new:hover{
		animation-play-state:paused;
}*/
.newinfo{
	width:323px;
    height: 360px; /* 设置高度 */
	padding:0px;
	margin:0px;
	box-shadow:0px 12px 36px -12px rgba(50, 62, 93, 0.24), 0px 8px 16px -8px rgba(0, 0, 0, 0.1);
	border:4px solid #ffffff;
	border-radius:10px;
	flex-shrink:0px;
		
}
/*
@keyframes scrollLeft {
0% {
    transform: translateX(20%);
  }

  100% {
    transform: translateX(-20%);
  }

}
*/
.newimg img{
	height:187px;
	width:323px;
	border-radius:10px 10px 0 0;
	padding:0px;
	margin:0px;
}
.newcontain{
	height:140px;
	width:auto;
	display:flex;
	padding:0px;
	margin:0px;
	padding-left:10px;
	
}
.newcontain ol {
	padding:0px;
	margin:0;
	margin-top:10px;
	list-style-type:decimal;
	list-style-position: inside;
	
}
.newcontain ol li{
	padding:8px;
	font-size:16px;
}
.newcontain ol li a{
	padding:0;
	margin:0;
}
.newcontain ol li a:hover{
	color:#f76120;
	text-decoration: underline;
}
/*联系我们but*/
.contact_contain{
	height:300px;
	background-color:#e8f3ff;
	background-image:url(../image/joinMask.png);
	background-position: 50%;
    background-repeat: no-repeat;
    background-size: auto 100%;
    position: relative;

}
.contact_info{
	font-size:36px;
	align-items: center;
	justify-content: center;
	display:flex;
	font-weight:100;
	
}
.contact_but{
	justify-content: center;
	display:flex;
}
.contact_but a{
	width:144px;
	height:48px;
	background-color:#0E59F0;
	border-radius: 50px;
	font-size:26px;
	align-items: center;
	justify-content: center;
	display:flex;
	color:#fff;
	margin:0;
	padding:0;
}

.contact_but a:hover{
	background-color:#f76120;

}
/*底部样式*/
footer{
	align-items: center;
	justify-content: center;
	display:flex;
}
.footer-container{
	margin:0 auto;
	padding:1px 0;

}
.footer-nav{
	align-items:flex-start;
	display:flex;
}
.footer_logo{
	width:200px;
}
.footer_logo img{
	width:auto;
}
.footer-nav .nav-list {
	width:600px;
    display: flex;
    gap:100px;
	padding:0 10 0 10;
	margin-left:50px;

	
}
.footer-nav .nav-list a{
	text-decoration:none;
	color:#1d2129;
}
.nav-list a:hover{
	
	color:#f76120;
	text-decoration: underline;
}
.footer-nav .nav-list dl dt {
    font-weight:bold;
    line-height: 22px;
	margin-bottom: 16px;
	font-size:16px;

}
.footer-nav .nav-list dl dd {
    line-height: 24px;
	margin:0px;
    margin-top: 8px;
	font-size:14px;
}


.footer-about {
	margin:0;

}
.footer-about a:hover{
	
	color:#f76120;
	text-decoration: underline;
}

.footer-about dl dt {
    font-weight:bold;
    line-height: 22px;
	margin-bottom: 16px;
	font-size:16px;

}
.footer-about dl dd {
    line-height: 24px;
	margin:0px;
    margin-top: 8px;
	font-size:14px;
}

/* 产品页面风格 */
.product-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 20px;
}
.page-banner {
    background: #ffffff;
    border-radius: 18px;
    padding: 50px 30px;
    margin-bottom: 35px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.page-banner-content h1 {
    font-size: 38px;
    line-height: 1.1;
    margin: 0 0 12px;
    color: #1d2129;
}
.page-banner-content p {
    color: #5f6b7a;
    font-size: 16px;
    margin: 0;
}
.product-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 10px;
}
.product-sidebar {
    width: 260px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    padding: 24px;
}
.product-sidebar h3 {
    font-size: 20px;
    color: #f76120;
    margin-bottom: 18px;
}
.product-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-cat-list li {
    margin-bottom: 12px;
}
.product-cat-list a {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    color: #333;
    transition: all 0.2s ease;
}
.product-cat-list a:hover,
.product-cat-list a:focus {
    color: #f76120;
    background: rgba(247,97,32,0.08);
}



.product-content {
    flex: 1;
}
.category-section {
    margin-bottom: 40px;
}
.category-title {
    font-size: 22px;
    color: #f76120;
    margin-bottom: 18px;
}
.category-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.product-card {
    width: 100%;
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.product-card a {
    color: inherit;
}
.product-card-image,
.product-detail-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.product-card-content {
    padding: 20px;
}
.product-card-content h3,
.product-card-content h2 {
    margin: 0 0 14px;
    font-size: 18px;
    color: #1d2129;
}
.product-card-content p {
    margin: 0;
    font-size: 14px;
    color: #5f6b7a;
    line-height: 1.75;
}
.recommended-articles {
    margin-top: 50px;
}
.recommended-articles h2 {
    color: #f76120;
    margin-bottom: 18px;
    font-size: 22px;
}
.recommended-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.recommended-item {
    display: flex;
    gap: 14px;
    background: #ffffff;
    padding: 18px;
    border-radius: 18px;
    align-items: flex-start;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.recommended-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}
.recommended-thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}
.recommended-body h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #1d2129;
}
.recommended-body p {
    margin: 0;
    font-size: 14px;
    color: #5f6b7a;
    line-height: 1.75;
}

.no-products {
    width: 100%;
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    padding: 50px 0;
}
.product-detail {
    max-width: 1160px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}
.product-detail-inner {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.product-detail-image {
    flex: 1 1 420px;
    min-width: 320px;
}
.product-detail-summary {
    flex: 1 1 520px;
    min-width: 320px;
}
.product-detail-summary h1 {
    font-size: 34px;
    margin: 0 0 18px;
    color: #1f2937;
}
.product-meta {
    color: #f76120;
    font-weight: 600;
    margin-bottom: 18px;
}
.product-excerpt {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.8;
}
.product-detail-content {
    margin-top: 40px;
    color: #374151;
    line-height: 1.85;
}
.related-products {
    margin-top: 60px;
}
.related-products h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 24px;
    color: #1f2937;
}
.pagination-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
@media (max-width: 960px) {
    .product-detail-inner {
        flex-direction: column;
    }
}
@media (max-width: 600px) {
    .product-card,
    .product-detail-image,
    .product-detail-summary {
        width: 100%;
    }
    .page-banner {
        padding: 30px 18px;
    }
    .page-banner-content h1 {
        font-size: 30px;
    }
}


.footer-nav .footer-about .sms {
	width:160px;
	height:160px;
	padding:0px;
	margin:0px;
	display:flex;
}

.friend-links {
    margin-bottom: 16px;
}
.friend-links-hd {
    display: flex;
    font-size: 12px;
    gap: 16px;
}
.friend-links-bd {
    -moz-column-gap: 8px;
    column-gap: 8px;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    margin-top: 8px;
    row-gap: 4px;
}
.friend-links-bd {
    -moz-column-gap: 8px;
    column-gap: 8px;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    margin-top: 8px;
    row-gap: 4px;
}
.friend-links-bd a {
    color:#86909c;
	text-decoration:none;
}
.friend-links-hd a.active {
    border-bottom: 2px solid #0e59f0;
}
.friend-links-hd a.active, .friend-links-hd a:hover {
    color: #4e5969;
	text-decoration:none;
}

.footer-copyright, .footer-copyright a {
    color:#86909c;
	text-decoration:none;
}

.gap-16 {
    display: flex;
    gap: 16px;
}
.footer-copyright {
    border-top: 1px solid #f2f3f5;
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    line-height: 20px;
    padding: 16px 0;
}
.footer-copyright, .footer-copyright a {
    color:#86909c;
}
/*列表页样式*/
.main{
	margin:0;
	padding:0;
	display:flex;
	justify-content: center;
}
.main_local{
	margin:0;
	padding:0;
}
.local_nav{
	padding:20px 0 0 10px;
	height:40px;
	font-size:14px;
	color:#333;
}
.local_nav a{
		color:#333;
}
.local_nav a:hover{
	color:#f76120;
	text-decoration: underline;
}
.main_left{
	margin:0;
	padding:0px;
	background-color:#fff;
	width:200px;
}
.left_list{
	padding-left:50px;
}
.left_list ul {
	margin:0;
	padding:0;
	justify-content: center;

}
.left_list ul li{
	list-style-type:none;
	margin:0;
	padding:0;
	height:40px;
}
.left_list ul li img{
	margin:0;
	padding-bottom:5px;
	transform: rotate(-90deg);
	
}
.left_list ul li a{
	margin:0;
	padding:0;
	text-align:center;
}
.left_list ul li a:hover{
color:#f76120;
	text-decoration: underline;
}
.main_right{
	margin:0;
	padding:0;
	padding-left:20px;
	width:900px;
	background-color:#fff;
	
}
.main_right ul{
	margin:0;
	padding:0;
	text-align:center;
	display: grid;
	grid-template-columns: repeat(3,1fr); /* 三列，每列宽度相等 */
	gap: 10px; /* 可选，设置网格之间的间隙 */
}
.main_right ul li{
	margin:0;
	padding:0;
	padding-bottom:10px;
	list-style-type:none;
}
.main_right ul li img{
	margin:0;
	padding:0;
	width: 280px;
    height: 210px;
	border-radius:10px;
}
.main_right ul li a{}
.main_right ul li a:hover{}
.left_tags{
	padding:30px;
	display: flex;
	flex-wrap: wrap;
}
.left_tags h3{
	padding-left:12px;
}
.left_tags a{
	margin: 5px; /* 元素之间的间隙 */
	color: var(--link-color); /* 使用CSS变量 */
	transition: font-size 0.3s ease; 
}
.left_tags a:hover{
	
	font-size:20px;
	
}
.product-sidebar-block{
	margin: 0;
	padding: 0;
}
.product-sidebar-block ul li{
	margin: 0;
	padding: 0;
	height: 30px;
	list-style-type:none;
}
.product-post-list{
	margin: 0;
	padding: 0;
	list-style: none;
}
.product-post-list li{
	margin: 0;
	padding: 0;
	list-style: none;
}

/* ===== 文章列表卡样式 ===== */
.article-list-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	list-style: none;
	list-style-type: none;
	padding: 0;
	margin: 0;
	
}
.article-list-wrap li{
	list-style-type: none;
	height: auto;
}
.article-card {
	background: #ffffff;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 12px 26px rgba(0,0,0,0.08);
	transition: transform .2s ease, box-shadow .2s ease;
	list-style: none;
}

.article-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

.article-card a {
	text-decoration: none;
	color: inherit;
	display: block;
}

.article-card a:hover {
	text-decoration: none;
}

.article-card img {
	width: 280px;
	height: 210px;
	object-fit: cover;
	display: block;
	border-radius: var(--radius) var(--radius) 0 0;
	transition: transform 0.3s ease;
}

.article-card:hover img {
	transform: scale(1.05);
}

.article-card h3 {
	margin: 0;
	padding: 14px 16px 0;
	font-size: 16px;
	color: #111827;
	line-height: 1.4;
}

.article-card h3 a {
	text-decoration: none;
	color: #111827;
}

.article-card h3 a:hover {
	color: var(--primary);
	text-decoration: underline;
}

.article-card p {
	margin: 0;
	padding: 0 16px 16px;
	font-size: 13px;
	color: #57606a;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ===== 分页样式 ===== */
.pagination {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 6px;
}

.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 38px;
	padding: 0 12px;
	background: #ffffff;
	color: #333;
	font-size: 14px;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	transition: all 0.2s ease;
	text-decoration: none;
}

.pagination a:hover,
.pagination .current {
	background: var(--primary);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(247,97,32,0.3);
	text-decoration: none;
}

.pagination .dots {
	background: none;
	box-shadow: none;
	cursor: default;
	color: #999;
}

.pagination .prev,
.pagination .next {
	min-width: 80px;
}