* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
	color: #000;
	background: url(../images/abbg.jpg) center top repeat #fff;
}
a {
	text-decoration: none;
	color: #000;
}
ul,  ol {
	list-style: none;
}
img {
	display: block;
	max-width: 100%;
}
/* ===== 容器 ===== */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.container-full {
	width: 100%;
}
/* ===== 公用 ===== */
.yellow-line-title {
	position: relative;
	display: inline-block;
	font-size: 28px;
	font-weight: 500;
	color: #494949;
	padding: 0 20px;
	background: #fff;
	z-index: 1;
}
.yellow-line-title::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 4px;
	background: #FFD700;
	z-index: -1;
}
.yellow-line-title01 {
	position: relative;
	display: inline-block;
	font-size: 28px;
	line-height: 40px;
	font-weight: 500;
	color: #494949;
	padding: 0 84px;
	background: #fff;
	z-index: 1;
	letter-spacing: -1px
}
.yellow-line-title01::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 40%;
	height: 14px;
	background: #FFD700;
	z-index: -1;
}
.section-title-wrap {
	text-align: center;
	padding: 30px 0 50px;
}
.top-bar {
	padding: 40px 0;
	border-top: 10px solid #fcbb01;
	background: #efefef
}
.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo img {
	height: 83px;
	width: auto;
}
.top-phone {
	text-align: right;
	line-height: 1.2;
}
.top-phone .phone-number {
	font-size: 41px;
	font-weight: 500;
	color: #fcbb00;
	letter-spacing: 1px;
}
.top-phone .phone-label {
	font-size: 20px;
	color: #fec00b;
	letter-spacing: 0px;
	display: block;
	margin-top: 2px;
}
.main-nav {
	background: #fcbb01;
	width: 100%;
	padding: 0 20px;
}
.main-nav .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 65px;
}
.nav-left {
	display: flex;
	align-items: center;
}
.nav-left .brand-tag {
	background: #cf9800;
	color: #443202;
	font-size: 24px;
	font-weight: 500;
	padding: 6px 30px;
	border-radius: 26px;
	letter-spacing: 1px;
}
.nav-right {
	display: flex;
	align-items: center;
	gap: 75px;
}
.nav-right a {
	font-size: 24px;
	font-weight: 400;
	color: #785906;
	padding: 4px 0;
	position: relative;
	letter-spacing: 2px;
	transition: color 0.2s;
}
.nav-right a:hover {
	color: #fff;
}
.nav-right a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background: #fff;
	transition: width 0.3s;
}
.nav-right a:hover::after {
	width: 100%;
}
.carousel-wrap {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: #f5f5f5;
}
.carousel-track {
	display: flex;
	transition: transform 0.6s ease;
}
.carousel-slide {
	min-width: 100%;
	height: 587px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	background-size: cover;
	background-position: center;
	background-blend-mode: overlay;
}
.carousel-slide .slide-content {
	text-align: center;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
.carousel-slide .slide-content h2 {
	font-size: 42px;
	margin-bottom: 12px;
	letter-spacing: 4px;
}
.carousel-slide .slide-content p {
	font-size: 18px;
	opacity: 0.95;
	letter-spacing: 2px;
}
.carousel-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}
.carousel-dots .dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
	border: 2px solid rgba(255, 255, 255, 0.6);
}
.carousel-dots .dot.active {
	background: #FFD700;
	border-color: #FFD700;
	transform: scale(1.2);
}
.carousel-dots .dot:hover {
	background: rgba(255, 215, 0, 0.7);
}
.four-icons {
	padding: 20px 0 20px;
	background: url(../images/xbg.jpg) center top repeat-x #fafafa;
}
.four-icons ul {
	display: flex;
	justify-content: space-between;
	gap: 0px;
}
.four-icons ul li {
	flex: 1;
	text-align: center;
	padding: 20px 0px;
	transition: transform 0.2s, box-shadow 0.2s;
}
.four-icons ul li .icon-cn {
	font-size: 23px;
	font-weight: 500;
	color: #737373;
	display: block;
	margin-bottom: 6px;
}
.four-icons ul li .icon-en {
	font-size: 20px;
	color: #737373;
	font-weight: normal;
	letter-spacing: 0px;
	text-transform: uppercase;
}
.four-icons ul li .icon-img {
	font-size: 36px;
	margin-bottom: 8px;
	display: block;
}
.brand-intro {
	padding: 50px 0 40px;
}
.brand-intro .container {
	display: flex;
	gap: 50px;
	align-items: flex-start;
}
.brand-intro .brand-img {
	flex: 0 0 440px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.brand-intro .brand-img img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block;
}
.brand-intro .brand-text {
	flex: 1;
}
.brand-intro .brand-text .title-wrap {
	margin-bottom: 18px;
}
.brand-intro .brand-text .title-wrap .yellow-line-title {
	font-size: 30px;
}
.brand-intro .brand-text .desc {
	font-size: 15px;
	line-height: 28px;
	color: #333;
	text-align: justify;
}
.six-show {
	padding: 40px 0 50px;
	background: #fff;
	width: 100%;
}
.six-show ul {
	display: flex;
	justify-content: space-between;
	gap: 90px;
}
.six-show ul li {
	flex: 1;
	background: #fff;
	border-radius: 96px;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
	text-align: center;
	padding-bottom: 16px;
	border: 3px #f9c416 solid;
}
.six-show ul li .show-img {
	width: 110px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #888;
	overflow: hidden;
	margin: 0 auto
}
.six-show ul li .show-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.six-show ul li .show-label {
	font-size: 16px;
	font-weight: 600;
	color: #838383;
	padding: 2px 8px 4px;
	line-height: 1.6;
}
.two-parts {
	padding: 50px 0 40px;
	background: url(../images/2ba.jpg);
}
.two-parts .container ul {
	display: flex;
	gap: 40px;
}
.two-parts .container ul li {
	flex: 1;
	padding: 30px 8px 34px;
}
.two-parts .part-title {
	text-align: left;
	position: relative;
	margin-bottom: 24px;
}
.two-parts .part-title .yellow-line-title {
	padding-right: 24px;
	position: relative;
	z-index: 1;
	display: inline-block;
	font-size: 26px;
	font-weight: 500;
	color: #494846;
	letter-spacing: 1px;
}
.two-parts .part-body {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}
.two-parts .part-body .part-img {
	flex: 0 0 180px;
	border-radius: 14px;
	overflow: hidden;
	height: 180px;
	background: #e0e0e0;
	border-radius: 50%
}
.two-parts .part-body .part-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.two-parts .part-body .part-info {
	flex: 1;
	margin-top: 30px;
}
.two-parts .part-body .part-info .sub-title {
	font-size: 20px;
	font-weight: 500;
	color: #f0cf20;
	margin-bottom: 10px;
}
.two-parts .part-body .part-info .sub-desc {
	font-size: 16px;
	line-height: 28px;
	color: #838280;
}
.ad-banner {
	width: 100%;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 6px;
	position: relative;
}
.ad-banner .ad-text {
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.ad-banner .ad-sub {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 3px;
	opacity: 0.8;
	margin-top: 8px;
}
.case-show {
	padding: 20px 0 10px;
	width: 100%;
}
.case-show .section-title-wrap .yellow-line-title {
	font-size: 30px;
}
.case-scroll {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.scroll-track {
	display: flex;
	gap: 12px;
	width: max-content;
	animation: scroll-left 28s linear infinite;
	padding: 10px 0 20px;
}
.scroll-track:hover {
	animation-play-state: paused;
}
.scroll-track li {
	height: 210px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	background: #ddd;
	transition: transform 0.2s;
	flex: 0 0 auto; /* 宽度由内容决定，不伸缩 */
}

.scroll-track li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
 @keyframes scroll-left {
 0% {
 transform: translateX(0);
}
 100% {
 transform: translateX(-30%);
}
}
.dynamic-section {
	padding: 0px 0 40px;
}
.dynamic-section .section-title-wrap .yellow-line-title {
	font-size: 30px;
}
.dynamic-wrap {
	display: flex;
	gap: 40px;
	margin-top: 10px;
}
.dynamic-wrap .dynamic-col {
	flex: 1;
}
.dynamic-wrap .dynamic-col:first-child {
  position: relative;
}

.dynamic-wrap .dynamic-col:first-child::after {
  content: '';
  position: absolute;
  right: -30px; /* gap 的一半，让竖线居中在间隙中 */
  top: 0%;
  width: 14px;
  height: 100%;
  background: url(../images/line.png);
}

.dynamic-wrap .dynamic-col .col-title {
	font-size: 18px;
	font-weight: 700;
	color: #000;
	margin-bottom: 16px;
	padding-left: 6px;
	border-left: 4px solid #FFD700;
	padding-left: 14px;
}
.dynamic-wrap .dynamic-col ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 0 0px 18px;
	font-size: 18px;
	line-height: 40px;
	transition: background 0.15s;
	position: relative;
}
.dynamic-wrap .dynamic-col ul li::before {
	content: '•';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	color: #828282;
	font-weight: 700;
}
.dynamic-wrap .dynamic-col ul li:hover {
}
.dynamic-wrap .dynamic-col ul li .dyn-title a {
	color: #828282;
}
.dynamic-wrap .dynamic-col ul li .dyn-title a:hover {
	color: #333;
}
.dynamic-wrap .dynamic-col ul li .dyn-date {
	color: #999;
	font-size: 13px;
	white-space: nowrap;
	margin-left: 16px;
}
/* ===== 11. 底部 ===== */
.footer {
	background: url(../images/footbg.jpg) center top repeat-x;
	width: 100%;
	padding: 32px 0 28px;
	color: #000;
}
.footer .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 20px;
}
.footer .footer-left .footer-logo img {
	height: 68px;
	width: auto;
}
.footer .footer-right {
	text-align: right;
	flex: 1;
}
.footer .footer-right .footer-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 6px 40px;
	margin-bottom: 15px;
}
.footer .footer-right .footer-nav a {
	font-size: 18px;
	color: #b57b00;
	font-weight: 500;
	transition: color 0.2s;
}
.footer .footer-right .footer-nav a:hover {
	color: #333;
}
.footer .footer-right .footer-contact {
	font-size: 18px;
	line-height: 1.8;
	color: #7d5500;
	margin-top: 4px;
}
.footer .footer-right .footer-contact .ft-phone {
	font-size: 18px;
}
.footer .footer-right .footer-address-en {
	font-size: 16px;
	color: #7d5500;
	margin-top: 2px;
	letter-spacing: 0.5px;
}
.footer .footer-right .footer-core {
	font-size: 19px;
	font-weight: 400;
	margin-bottom: 10px;
	color:#7d5500
}
.footer .footer-right .footer-core span {

	padding: 2px 0px;
	
	margin-right: 0px;
}

        /* ===== 响应式微调 ===== */
        @media (max-width: 992px) {
.brand-intro .container {
	flex-direction: column;
}
.brand-intro .brand-img {
	flex: 0 0 auto;
	width: 100%;
}
.brand-intro .brand-img img {
	height: 220px;
}
.two-parts .container ul {
	flex-direction: column;
}
.two-parts .part-body {
	flex-direction: column;
}
.two-parts .part-body .part-img {
	flex: 0 0 auto;
	width: 100%;
	height: 160px;
}
.dynamic-wrap {
	flex-direction: column;
}
.footer .container {
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.footer .footer-right {
	text-align: center;
}
.footer .footer-right .footer-nav {
	justify-content: center;
}
.top-bar .container {
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}
.top-phone {
	text-align: center;
}
}
 @media (max-width: 768px) {
.main-nav .container {
	flex-direction: column;
	height: auto;
	padding: 12px 0;
	gap: 8px;
}
.nav-right {
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}
.nav-right a {
	font-size: 14px;
}
.four-icons ul {
	flex-wrap: wrap;
}
.four-icons ul li {
	flex: 0 0 calc(50% - 10px);
}
.six-show ul {
	flex-wrap: wrap;
}
.six-show ul li {
	flex: 0 0 calc(33.33% - 14px);
}
.carousel-slide {
	height: 260px;
}
.carousel-slide .slide-content h2 {
	font-size: 24px;
}
.carousel-slide .slide-content p {
	font-size: 14px;
}
.top-phone .phone-number {
	font-size: 20px;
}
.scroll-track li {
	flex: 0 0 90px;
	height: 90px;
}
}
 @media (max-width: 480px) {
.six-show ul li {
	flex: 0 0 calc(50% - 10px);
}
.four-icons ul li {
	flex: 0 0 100%;
}
.container {
	padding: 0 12px;
}
.nav-left .brand-tag {
	font-size: 13px;
	padding: 4px 12px;
}
.yellow-line-title {
	font-size: 20px;
	padding: 0 12px;
}
.brand-intro .brand-text .title-wrap .yellow-line-title {
	font-size: 22px;
}
.two-parts .part-title .yellow-line-title {
	font-size: 20px;
	padding-right: 16px;
}
.dynamic-wrap .dynamic-col ul li {
	font-size: 13px;
	padding: 8px 0 8px 16px;
	flex-wrap: wrap;
}
.dynamic-wrap .dynamic-col ul li .dyn-date {
	margin-left: 0;
	width: 100%;
	text-align: left;
	margin-top: 2px;
	font-size: 12px;
}
.footer .footer-right .footer-nav {
	gap: 4px 12px;
}
.footer .footer-right .footer-nav a {
	font-size: 12px;
}
.scroll-track li {
	flex: 0 0 70px;
	height: 70px;
}
}

.n-page {
            width: 1200px;
            margin: 0 auto;
        
            padding: 40px 50px 50px 50px;
           
        }

       
        .n-inner-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 18px;
            margin-bottom: 18px;
        }
        .n-inner-header .n-title {
            font-size: 26px;
            font-weight: 500;
            color: #4a484d;
            display: inline-block;
            padding: 0 520px 0 30px;

            background: linear-gradient(transparent 40%, #ffdf2a 42%, #ffdf2a 58%, transparent 58%);
            background-size: 100% 100%;
            background-repeat: no-repeat;
            line-height: 1.4;
            letter-spacing: 0px;
        }

        .n-inner-header .n-back-link {
            font-size: 16px;
            color: #ffdf2a;
			font-weight:600;
            text-decoration: none;
            padding: 6px 0px;
     
            border-radius: 20px;
            transition: background 0.25s, color 0.25s, border-color 0.25s;
            flex-shrink: 0;
        }

        .n-inner-header .n-back-link:hover {
         
            color: #000;
            border-color: #f5c842;
        }


        .n-section {
            margin-bottom: 60px;
        }
        .n-section:last-child {
            margin-bottom: 0;
        }


        .n-about-text {
            font-size: 16px;
            line-height: 28px;
            color: #444;
            padding: 6px 0 2px 0;
        }
        .n-about-text p {
            margin-bottom: 18px;
        }
        .n-about-text p:last-child {
            margin-bottom: 0;
        }


        .n-case-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px 24px;
            padding: 0;
            margin: 0 0 30px 0;
        }

        .n-case-item {
            background: #fafafa;
            border-radius: 6px;
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }
        .n-case-item:hover {
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
        }

        /* 图片容器 16:9 */
        .n-case-img-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #eaeaea;
            display: block;
            text-decoration: none;
        }
        .n-case-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        .n-case-img-wrap:hover img {
            transform: scale(1.04);
        }

        .n-case-title {
            display: block;
            padding: 14px 16px 16px 16px;
            font-size: 16px;
            font-weight: 600;
            color: #222;
            text-decoration: none;
            text-align: center;
            transition: color 0.2s;
            border-top: 1px solid #f0f0f0;
            background: #fff;
        }
        .n-case-title:hover {
            color: #c49b2c;
        }


        .n-pagination {
            display: flex;
            justify-content:right;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            padding-top: 12px;
      
            margin-top: 6px;
        }
        .n-pagination a {
            display: inline-block;
            font-size: 24px;
            line-height: 1;
            color: #ffdf2a;
            text-decoration: none;
            padding: 4px;
            min-width: 20px;
            text-align: center;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s, transform 0.15s;
            font-weight: 500;
        }
        .n-pagination a:hover {
           
            color: #333;
            transform: scale(1);
        }
        .n-pagination a.n-active {
        
            color: #333;
            font-weight: 700;
       
            padding: 4px;
			
        }


        .n-detail-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            text-align: left;
            padding: 0 0 6px 30px;
            margin-bottom: 4px;
            letter-spacing: 1px;
        }

        .n-detail-meta {
            font-size: 14px;
            color: #888;
            padding-bottom: 10px;
            margin-bottom: 10px;
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
			padding-left:30px;
        }
        .n-detail-meta span {
            display: inline-block;
        }

        .n-detail-body {
            font-size: 16px;
            line-height: 28px;
            color: #444;
        }
        .n-detail-body p {
            margin-bottom: 18px;
            text-indent: 2em;
        }
        .n-detail-body p:last-child {
            margin-bottom: 0;
        }

        .n-detail-body img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 18px auto 22px auto;
            border-radius: 6px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
        }


        .n-news-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 32px;
            padding: 0;
            margin: 0 0 30px 0;
        }

        .n-news-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0 10px 0;
             transition: background 0.15s;
            padding-left: 4px;
        }
        .n-news-item:hover {
           
        }

        .n-news-item .n-news-link {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            color: #2a2a2a;
            text-decoration: none;
            transition: color 0.2s;
            flex: 1;
            min-width: 0;
            /* 防止溢出 */;
        }
        .n-news-item .n-news-link::before {
            content: "·";
            font-size: 12px;
            font-weight: 700;
            color: #666;
            line-height: 1;
            flex-shrink: 0;
            margin-right: 2px;
        }
        .n-news-item .n-news-link:hover {
            color: #c49b2c;
        }
        .n-news-item .n-news-link .n-news-text {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .n-news-item .n-news-time {
            font-size: 13px;
            color: #999;
            flex-shrink: 0;
            margin-left: 16px;
            white-space: nowrap;
        }


        .n-news-pagination {
            composes: n-pagination;
        }

  
        .n-img-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background: #e0e0e0;
            color: #aaa;
            font-size: 14px;
            font-weight: 400;
        }
