:root {
	--blue: #087cc2;
	--deep: #075f9c;
	--ink: #333;
	--muted: #777;
	--line: #e7e7e7;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	color: var(--ink);
	background: #fff;
	font-size: 14px;
	line-height: 1.75;
}
img{
    width: 100%;
    object-fit: contain;
}
a {
	color:#999;
	text-decoration: none;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.wrap {
	width: 1200px;
    margin: 20px auto;
}
.topline {
	height: 35px;
	background: #f4f4f4;
	color: #777;
	font-size: 12px;
}
.topline .wrap {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
}
.header {
	height: 105px;
	background: #fff;
}
.header .wrap {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo {
	width: 230px;
	height: 50px;
	object-fit: contain;
}
.hotline {
	padding-left: 38px;
	position: relative;
	color: #555;
	line-height: 1.25;
}
.hotline:before {
	content: "☎";
	position: absolute;
	left: 0;
	top: 1px;
	border: 2px solid var(--blue);
	border-radius: 50%;
	color: var(--blue);
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 24px;
	font-size: 17px;
}
.hotline b {
	display: block;
	font-size: 23px;
	color: var(--blue);
	font-weight: 600;
}
.nav {
	height: 56px;
	background: var(--blue);
	color: #fff;
}
.nav .wrap {
	display: flex;
	height: 100%;
	justify-content: center;
	
}
.nav a {
	width: 150px;
	display: grid;
	place-items: center;
	font-size: 16px;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	transition: 0.2s;
	    color: #fff;
}
.nav a:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.nav a:hover,
.nav a.active {
	background: #fff;
	color: var(--blue);
}
.hero {
	height: 400px;
	background: #e9f7fe;
	overflow: hidden;
	position: relative;
}
.hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.45;
	filter: saturate(0.7);
}
.hero-copy {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	text-align: center;
	color: #0b73b5;
}
.hero-copy h1 {
	font-size: 48px;
	margin: 0;
	font-weight: 400;
	letter-spacing: 4px;
}
.hero-copy p {
	margin: 7px 0 0;
	font-size: 20px;
	letter-spacing: 1px;
}
.badges {
	height: 90px;
	background: #fff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
	position: relative;
	z-index: 2;
}
.badges .wrap {
	height: 100%;
	display: flex;
	justify-content: center;
	padding: 10px 0px;
}
.badges a {
	width: 30%;
    display: flex;
    place-items: center;
    border-right: 1px solid #eee;
    font-size: 18px;
    color: #444;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 0px;
        gap: 5px;
}
.badges a img{
    width: 25px;
}
.badges a:first-child {
	border-left: 1px solid #eee;
}

.section {
	padding: 70px 0;
}
.section.gray {
background: #fff7fb;
}
.title {
	text-align: center;
	margin-bottom: 40px;
}
.title h2 {
	font-size: 28px;
	font-weight: 400;
	color: #1477bc;
	margin: 0;
}
.title p {
	margin: 2px 0 0;
	color: #999;
	font-size: 15px;
}
.title:after {
	content: "";
	display: block;
	margin: 14px auto 0;
	width: 48px;
	border-bottom: 3px solid #0ea5df;
}
.features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}
.feature {
	text-align: center;
	background: #fff;
	padding-bottom: 22px;
	border: 1px solid #eee;
}
.feature img {
	width: 100%;
	height: 130px;
	object-fit: cover;
}
.feature h3 {
	font-size: 19px;
	font-weight: 400;
	margin: 16px 0 4px;
	color: #1477bc;
}
.feature p {
	color: #777;

	font-size: 13px;
	line-height: 1.7;
	 overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
}
.stats {
	background: #087cc2;
	color: #fff;
}
.stats .wrap {
	height: 150px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	align-items: center;
	text-align: center;
	margin: 0 auto;
}
.stats b {
	font-size: 32px;
	display: block;
	font-weight: 400;
}
.stats span {
	font-size: 14px;
}
.tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 34px;
}
.tabs a {
	padding: 9px 38px;
	border: 1px solid #ddd;
	border-right: 0;
	color: #666;
}
	.about-copy {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 50px;
	align-items: center;
}
.about-copy img {
	width: 100%;
	height: 310px;
	object-fit: cover;
}
.about-copy p {
	color: #666;
	font-size: 15px;
}
		    .about-nr .about-copy {
    display: flex;
    gap: 24px;
    align-items: center;
}
.about-nr .about-copy img {
    flex-shrink: 0;
        width: 50%;
}
/* 第2、4、6...偶数li 左文右图 */
.about-nr .about-copy:nth-child(even) {
    flex-direction: row-reverse;
}
.tabs a:last-child {
	border-right: 1px solid #ddd;
}
.tabs a.active,
.tabs a:hover {
	background: var(--blue);
	color: #fff;
	border-color: var(--blue);
}
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.product {
	border: 1px solid #ececec;
	background: #fff;
	transition: 0.25s;
	text-align: center;
}
.product:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
	border-color: #7bc4e6;
}
.product img {
	width: 100%;
	height: 210px;
	object-fit: cover;
}
.product h3 {
	font-size: 15px;
	font-weight: 400;
	margin: 14px 8px 16px;
}
.process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	text-align: center;
	gap: 1px;
	background: #e7e7e7;
}
.process div {
	background: #fff;
	padding: 27px 20px;
}
.process b {
	width: 45px;
	height: 45px;
	line-height: 45px;
	background: #0d92d4;
	color: #fff;
	border-radius: 50%;
	display: inline-block;
	font-size: 20px;
	font-weight: 400;
}
.process h3 {
	font-weight: 400;
	margin: 9px 0 2px;
	font-size: 17px;
}
.process p {
	margin: 0;
	color: #777;
	font-size: 13px;
}
.brands {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border-top: 1px solid #eee;
	border-left: 1px solid #eee;
}
.brands img {
	width: 100%;
	height: 84px;
	object-fit: contain;
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
	padding: 10px;
}
.topnr{
       display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  
}
.lbt{
        width: 100%;
}
.zhenshangyin-prev, 
.zhenshangyin-next {
  
    background-color: #ff9ec2 !important;
   
}
.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.news-card {
	border: 1px solid #e7e7e7;
	padding: 20px;
	transition: all 0.4s;
}
.news-card:hover{
        transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(255, 158, 194, 0.24);
    border-color: #ff9ec2;
}
.news-card h3 {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 400;
	 overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      line-clamp: 1;
      -webkit-box-orient: vertical;
}
.news-card time {
	font-size: 12px;
	color: #aaa;
}
.news-card p {
	color: #777;
	font-size: 13px;
	 overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
}
.more {
	display: inline-block;
	color: var(--blue);
	border: 1px solid var(--blue);
	padding: 5px 24px;
	font-size: 12px;
	transition: all 0.3s;
}
.more:hover{
   color: #fff;
    background-color:var(--blue); 
    
}
.page-banner {
	height: 250px;
	background: #edf8fd;
	position: relative;
	text-align: center;
	overflow: hidden;
}
.page-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.38;
}
.page-banner div {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
}
.page-banner h1 {
	font-size: 34px;
	font-weight: 400;
	color: #087cc2;
	margin: 0;
}
.swiper-button-next, 
.swiper-button-prev {
    
    color: #fff !important;
}
.swiper-pagination-bullet-active {
   
    background: rgba(255, 255, 255, .94) !important;
}
.page-banner p {
	margin: 3px 0;
	color: #777;
	font-size: 15px;
}
.breadcrumb {
padding: 10px 0px;
	border-bottom: 1px solid #eee;
	color: #999;
	display: flex;
	align-items: center;
}
.about-nr{
     padding: 36px 0px 67px;   
}
.breadcrumb .wrap{
    
    margin: 0px auto;

}
.subnav {
	display: flex;
	justify-content: center;
	gap: 0;
	padding: 35px 0px;
}
.subnav a {
	padding: 7px 23px;
	border: 1px solid #ddd;
	margin-left: -1px;
}
.subnav a:hover,
.subnav .active {
	background: var(--blue);
	color: #fff;
	border-color: var(--blue);
	position: relative;
}
.article {
	max-width: 940px;
	margin: auto;
	padding: 25px 0 75px;
}
.article h2 {
	text-align: center;
	font-size: 24px;
	font-weight: 400;
	margin: 14px 0 7px;
}
.meta {
	text-align: center;
	color: #999;
	border-bottom: 1px solid #eee;
	padding-bottom: 18px;
}
.article p {
	font-size: 15px;
	color: #555;

	margin: 22px 0;
}
.article strong {
	color: #087cc2;
}
.list-page {
	padding: 10px 0 70px;
}
.news-list {
	border-top: 1px solid #eee;
}
.news-list li {
	display: grid;
	grid-template-columns: 105px 1fr;
	gap: 22px;
	padding: 25px 8px;
	border-bottom: 1px solid #eee;
}
.date {
	display: flex;
    background: #0f8dce;
    color: #fff;
    text-align: center;
    height: 75px;
    padding: 9px;
    align-items: center;
    justify-content: center;
}
.date b {
	font-size: 24px;
	display: block;
	line-height: 1;
}
.news-list h3 {
	margin: 0;
	font-size: 17px;
	font-weight: 400;
	 overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      line-clamp: 1;
      -webkit-box-orient: vertical;
}
.news-list p {
	color: #888;
	margin: 6px 0 0;
	font-size: 13px;
	overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
}
.pager {
	text-align: center;
	padding-top: 36px;
}
.pager a {
	display: inline-block;
	padding: 5px 12px;
	border: 1px solid #ddd;
	margin: 0 3px;
}
.pager .active {
	background: var(--blue);
	color: #fff;
}
.about-copy {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 50px;
	align-items: center;
}
.about-copy img {
	width: 100%;
	height: 310px;
	object-fit: cover;
}
.about-copy p {
	color: #666;
	font-size: 15px;
}
.contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	padding: 20px 0 70px;
}
.contact h2 {
	font-size: 22px;
	font-weight: 400;
	color: #087cc2;
}
.contact p {
	color: #666;
}
.map {
	
	background: #eef7fb;
	display: grid;
	place-items: center;
	color: #4b93c4;
	border: 1px solid #d8ecf8;
	font-size: 20px;
}
.form {
	background: #f7f7f7;
	padding: 28px;
}
.form label {
	display: block;
	margin-bottom: 13px;
	color: #666;
}
.form input,
.form textarea {
	width: 100%;
	border: 1px solid #ddd;
	padding: 10px;
	background: #fff;
	outline: none;
}
.form textarea {
	height: 110px;
	resize: vertical;
}
.form button {
	border: 0;
	background: var(--blue);
	color: #fff;
	padding: 10px 45px;
	font-size: 15px;
	cursor: pointer;
}
.form .hint {
	font-size: 12px;
	color: #999;
}
.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	padding-bottom: 70px;
}
.gallery img {
	width: 100%;

	object-fit: contain;
	border: 1px solid #eee;
	padding: 10px;
}
.detail {
	padding: 30px 0 70px;
	text-align: center;
}
.detail h2 {
	font-weight: 400;
}
.detail-main {
	max-width: 520px;
	width: 100%;
	height: 410px;
	object-fit: contain;
	border: 1px solid #eee;
}
 .contact {
display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 20px 0 70px;
    justify-items: center;
    align-items: center;
}
.contact .tuwennr .nr{
      display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.contact .tuwennr .nr .img1{
   display: flex;
    width: 35px;
    height: 35px;
    background-color: #ff9ec2;
    padding: 9px;
    border-radius: 100%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}
.contact h2 {
	font-size: 22px;
	font-weight: 400;
	color: #ff9ec2;
}
.contact p {
	color: #666;
}
.map {

	background: #eef7fb;
	display: grid;
	place-items: center;
	color: #4b93c4;
	border: 1px solid #d8ecf8;
	font-size: 20px;
}
.thumbs {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 14px;
}
.thumbs img {
	width: 75px;
	height: 75px;
	object-fit: cover;
	border: 1px solid #ddd;
	padding: 2px;
	cursor: pointer;
}
.thumbs img.active {
	border-color: #087cc2;
}
.footer {
	background: #2d2d2d;
	color: #fff;
}
.footer a{
   color: #ffffffbd;
}

.footer .wrap {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 30px;
	padding: 42px 0;
}
.footer .logo {
	background: #fff;
	padding: 2px;
	width: 190px;
	height: 42px;
}
.footer h3 {
	margin: 0 0 13px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}
.footer p,
.footer li {
	margin: 4px 0;
	font-size: 13px;
}
.footer a:hover {
	color: #55c0ed;
}
.copyright {
	text-align: center;
    border-top: 1px solid #fff;
    padding: 14px;
    font-size: 12px;
    color: #fff;
}
.backtop {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 38px;
	height: 38px;
	background: #087cc2;
	color: #fff;
	border: 0;
	cursor: pointer;
	opacity: 0;
	transition: 0.2s;
	font-size: 20px;
}
.backtop.show {
	opacity: 1;
}
.pagination.page {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	/* 按钮之间的间距 */
	list-style: none;
	padding: 0;
	margin: 0;
	font-family: sans-serif;
}

/* 所有按钮/页码通用样式 */
.pagination.page>* {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	    padding: 4px 12px;
	border: 2px solid #ddd;
	border-radius: 8px;
	background-color: #fff;
	color: #333;
	font-size: var(--ft16);
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

/* 数字页码单独调整宽度 */
.pagination.page .page-number {
    padding: 4px 12px;
}

/* 当前激活页（蓝色背景、白色文字） */
.pagination.page .active.page-number {
    background-color: #ff9ec2;
    border-color: #ff9ec2;
    color: #fff;
}

/* 隐藏 SVG 箭头图标，替换为文字 */
.pagination.page .prev-page svg,
.pagination.page .next-page svg {
	display: none;
}

/* 给上一页/下一页加上文字 */
.pagination.page .prev-page::before {
	content: "上一页";
}

.pagination.page .next-page::after {
	content: "下一页";
}

/* 省略号样式（如果后续要加） */
.pagination.page .ellipsis {
	border: none;
	background: transparent;
	cursor: default;
}

/*  hover 交互效果 */
.pagination.page>*:hover:not(.active.page-number):not(.ellipsis) {
	    border-color: #ff9ec2;
    color: #ff9ec2;
}
@media (max-width: 1220px) {
	.wrap {
		width: 92%;
	}
	.nav a {
		width: 14.285%;
	}
	.topnr {
  
    grid-template-columns: 1fr;
   
}
}
@media (max-width: 768px) {
	.header {
		height: 90px;
	}
	.header .wrap {
		justify-content: center;
	}
	.hotline {
		display: none;
	}
	.nav {
		height: auto;
	}
	.nav .wrap {
	    margin: 0px auto ;
		width: 100%;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
	.nav a {
		width: auto;
		height: 46px;
		font-size: 14px;
	}
	.hero {
		height: 280px;
	}
	.hero-copy h1 {
		font-size: 31px;
	}
	.hero-copy p {
		font-size: 15px;
	}
	.badges {
		height: auto;
	}
	.badges .wrap {
		display: grid;
		grid-template-columns: 1fr;
	}
	.badges a {
		width: 100%;
	
	}
	.section {
		padding: 8px 0;
	}
	.features,
	.product-grid,
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
	.feature img {
		height: 100px;
	}
	.feature h3 {
		font-size: 16px;
	}
	.stats .wrap {
	        height: auto;
        display: flex;
        grid-template-columns: repeat(2, 1fr);
        padding: 22px 0;
        gap: 33px;
        flex-wrap: wrap;
        justify-content: space-around;
	}
	.process {
		grid-template-columns: repeat(2, 1fr);
	}
	.brands {
		grid-template-columns: repeat(3, 1fr);
	}
	.tabs {
		flex-wrap: wrap;
	}
	.tabs a {
		padding: 7px 14px;
	}
	.page-banner {
		height: 190px;
	}
	.subnav {
		flex-wrap: wrap;
		padding-top: 22px;
		        gap: 16px;
	}
	.about-copy,
	.contact {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	.about-copy img {
		height: 220px;
	}
	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer .wrap {
		grid-template-columns: 1fr 1fr;
	}
	.footer .wrap > div:first-child {
		grid-column: 1/-1;
	}
	.detail-main {
		height: 290px;
	}
	.news-list li {
		grid-template-columns: 90px 1fr;
		gap: 14px;
	}
	.date {
		
	}
	.date b {
		font-size: 20px;
	}
}
/* Homepage alignment and sizing refinements. */
.header .logo {

	max-height: 70px !important;
}
.hotline:before {
	top: 50% !important;
	transform: translateY(-50%);
}
.feature img {
	width: 280px !important;
	height: 150px !important;
	max-width: 100%;
	object-fit: cover;
}
.stats span {
	font-size: 16px !important;
	color: #eeeeee !important;
}
.tabs {
	gap: 14px !important;
}
.tabs a {
	border: 1px solid #ddd !important;
	border-radius: 5px !important;
}

/* Global pink theme. */
:root {
	--blue: #ff9ec2;
	--deep: #e67fa7;
}
.hero {
	background: #fff2f7;
}
.hero-copy {
	color: #ff9ec2;
}

.title h2,
.feature h3,
.page-banner h1,
.article strong,
.contact h2 {
	color: #ff9ec2;
}
.title:after {
	border-color: #ff9ec2;
}
.stats,
.date,
.process b,
.backtop {
	background: #ff9ec2;
}
.product:hover {
	border-color: #ff9ec2;
	box-shadow: 0 10px 22px rgba(255, 158, 194, 0.22);
}
.page-banner {
	background: #fff2f7;
}
.map {
	background: #fff4f8;
	border-color: #ffd6e5;
	color: #e67fa7;
}
.thumbs img.active {
	border-color: #ff9ec2;
}
.footer a:hover {
	color: #ff9ec2;
}

/* GlassIcons-inspired advantage controls. */
.feature {
	padding: 24px 14px 22px;
	min-height: 270px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
.feature .glass-icon {
	width: 78px;
	height: 78px;
	margin: 0 auto 18px;
	position: relative;
	perspective: 24em;
	transform-style: preserve-3d;
}
.glass-icon__back,
.glass-icon__front {
	position: absolute;
	inset: 0;
	border-radius: 20px;
	transition:
		transform 0.3s cubic-bezier(0.83, 0, 0.17, 1),
		opacity 0.3s ease;
}
.glass-icon__back {
	background: linear-gradient(145deg, #ff9ec2, #b69eff);
	transform: rotate(15deg);
	box-shadow: 10px -10px 18px rgba(182, 158, 255, 0.22);
}
.glass-icon__front {
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	font-size: 30px;
	color: #fff;
	transform-origin: 80% 50%;
}
.glass-icon__label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -25px;
	color: #555;
	font-size: 12px;
	opacity: 0;
	transform: translateY(0);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}
.feature:hover .glass-icon__back,
.feature:focus-within .glass-icon__back {
	transform: rotate(25deg) translate3d(-8px, -8px, 8px);
}
.feature:hover .glass-icon__front,
.feature:focus-within .glass-icon__front {
	transform: translate3d(0, 0, 22px);
}
.feature:hover .glass-icon__label,
.feature:focus-within .glass-icon__label {
	opacity: 1;
	transform: translateY(8px);
}
.feature h3 {
	margin-top: 10px;
}
/* Six-panel AccordionGallery-inspired product showcase. */
.product-accordion {
	display: flex;
	gap: 10px;
	width: 100%;
	height: 390px;
	perspective: 1400px;
}
.product-accordion__panel {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	overflow: hidden;
	border-radius: 16px;
	background: #241522;
	cursor: pointer;
	outline: none;
	transition:
		flex-grow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	box-shadow: 0 14px 30px -18px rgba(60, 20, 50, 0.45);
}
.product-accordion__panel.is-active {
	flex-grow: 3.8;
	transform: translateZ(0) rotateY(0);
}
.product-accordion__panel:not(.is-active) {
	transform: rotateY(5deg);
}
.product-accordion__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.product-accordion__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(1) brightness(0.58);
	transform: scale(1.08);
	transition:
		filter 0.6s ease,
		transform 0.8s ease;
}
.product-accordion__panel.is-active img {
	filter: grayscale(0) brightness(0.94);
	transform: scale(1);
}
.product-accordion__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		transparent 35%,
		rgba(20, 8, 18, 0.86) 100%
	);
	pointer-events: none;
}
.product-accordion__label {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	opacity: 0;
	transform: translateY(14px);
	transition:
		opacity 0.4s ease,
		transform 0.4s ease;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.product-accordion__panel.is-active .product-accordion__label {
	opacity: 1;
	transform: translateY(0);
}
.product-accordion__bar {
	display: inline-block;
	width: 3px;
	height: 24px;
	background: #ff9ec2;
	vertical-align: middle;
	margin-right: 10px;
	border-radius: 3px;
}
.stats {
	background: linear-gradient(90deg, #ffe4ee 0%, #ffe4f9 100%);
	color: #000;
}
.stats b {
	font-size: 46px;
	color: #000;
	line-height: 1.15;
}
.stats span {
	color: #000 !important;
}



.flowing-brands {
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #ffe4f9;
    padding: 10px 0;
}
.flowing-brands.three-flow {
    height: 300px;
    padding: 10px 0;
    gap: 10px;
}
.flowing-brands.three-flow .flowing-row {
    height: calc((100% - 20px) / 3);
}
.flowing-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    min-width: max-content;
    animation: brand-flow-seamless 90s linear infinite;
}
.flowing-row.flow-reverse {
    animation: brand-flow-seamless-rev 90s linear infinite;
}
.flowing-row:hover {
    animation-play-state: paused;
}
.flowing-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 82px;
    flex: 0 0 220px;
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    padding: 10px 28px;
    transition: transform 0.25s ease, background 0.25s ease;
}
.flowing-row a:hover {
    transform: scale(1.05);
    background: #fff;
}
.flowing-row img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 正向无缝 */
@keyframes brand-flow-seamless {
    0% {transform: translateX(0);}
    100% {transform: translateX(-50%);}
}
/* 反向无缝，起点‑50% 回到0 */
@keyframes brand-flow-seamless-rev {
    0% {transform: translateX(-50%);}
    100% {transform: translateX(0);}
}






.news-card {
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.news-card > img {
	width: 100%;
	height: 170px;
	object-fit: cover;
	display: block;
}
.news-card > div {
	padding: 20px;
}
.footer {
	background: #7d1139;
}
.footer .logo {
	
	background: #fff;
	width: 240px !important;
	height: 80px !important;
	object-fit: contain;
	padding: 2px;
}
@media (max-width: 768px) {
    .news-card > div {
    padding: 10px;
}
	.features {
		grid-template-columns: repeat(2, 1fr);
	}
	.product-accordion {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 636px;
        gap: 12px;
	}
	.product-accordion__panel.is-active {
		flex-grow: 5;
	}
	.product-accordion__label {
		left: 10px;
		right: 10px;
		font-size: 13px;
	}
	.stats b {
		font-size: 34px;
	}
}

/* Homepage stats and inactive product panels. */
.stats b {
	color: #7d1139 !important;
	font-weight: 700 !important;
	line-height: 1.26 !important;
}
.product-accordion__media img {
	filter: grayscale(0.18) brightness(0.96) !important;
	opacity: 1;
	transition:
		filter 0.6s ease,
		opacity 0.6s ease,
		transform 0.8s ease;
}

/* Header and navigation refinements. */
.header .logo {

}

.hero {
	height: 550px;
}

.hero-copy {
	color: #861c42;
}
.hero-copy h1 {
	font-weight: 500;
	color: #861c42;
}
@media (max-width: 768px) {
    .footer .logo {
   
          max-height: 50px !important;
    
  
}
    .about-nr {
    padding: 16px 0px 19px;
}
    .badges a:first-child{
       border-left:unset; 
    }
    .badges a {
     border-right:unset;
    
}
    .contact {

    grid-template-columns:  1fr;
    
}
	.hero {
		height: 360px;
	}
}
.nav {
	background: linear-gradient(90deg, #ff9ec2 0%, #b69eff 100%);
}
.nav a {
	border-color: rgba(255, 255, 255, 0.22);
}
.nav a:hover,
.nav a.active {
	background: rgba(255, 255, 255, 0.94);
	color: #b66ba8;
}
.nav-label {
	display: inline-block;
	white-space: nowrap;
}
.nav-letter {
	display: inline-block;
	font-weight: 500;
	transform: translateY(0) scale(1);
	opacity: 0.86;
	transition:
		font-weight 0.12s ease-out,
		transform 0.12s ease-out,
		opacity 0.12s ease-out;
	text-shadow: 0 0 0 rgba(255, 255, 255, 0);
}
.nav-letter.is-near {
	opacity: 1;
	transform: translateY(-1px) scale(1.06);
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.42);
}

/* Inner-page banner and content refinements. */
.page-banner {
	height: 430px;
	background: #e9f7fe;
}

.page-banner div {
	color: #000;
}
.page-banner h1 {
	font-size: 48px;
	font-weight: 500;
	color: #861c42;
	letter-spacing: 4px;
	margin: 0;
}
.page-banner p {
	margin: 7px 0 0;
	color: #861c42;
	font-size: 20px;
	letter-spacing: 1px;
}
.section-title {
	text-align: center;
	margin: 54px auto 34px;
}
.section-title h2 {
	font-size: 28px;
	font-weight: 400;
	color: #ff9ec2;
	margin: 0;
}
.section-title p {
	margin: 2px 0 0;
	color: #999;
	font-size: 15px;
}
.section-title:after {
	content: "";
	display: block;
	margin: 14px auto 0;
	width: 48px;
	border-bottom: 3px solid #ff9ec2;
}
.about-page {
	padding-bottom: 130px;
}
.about-page .about-copy {
	margin-top: 20px;
}
.about-page .about-copy > img {
	width: 600px;
	height: 400px;
	max-width: 100%;
	object-fit: cover;
}
.about-content-no-side-title {
	grid-template-columns: 600px minmax(0, 1fr);
	gap: 70px;
	align-items: start;
}
.about-content-no-side-title > div {
	padding-top: 20px;
}
.about-page .subnav,
.list-page .subnav {
	gap: 14px;
	padding: 0 0 34px;
}
.about-page .subnav a,
.list-page .subnav a {
	border: 1px solid #ddd !important;
	border-radius: 5px;
	margin: 0;
	padding: 9px 24px;
}
.about-page .subnav a.active,
.list-page .subnav a.active {
	background: var(--blue);
	border-color: var(--blue) !important;
	color: #fff;
}
.detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 54px;
	align-items: start;
	text-align: left;
}
.detail-layout {
	grid-template-columns: minmax(0, 1.22fr) minmax(260px, 0.78fr);
	gap: 42px;
}
.detail-gallery {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 16px;
}
.detail-gallery .thumbs {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 10px;
	margin: 0;
}
.detail-gallery .detail-main {
	grid-column: 2;
	grid-row: 1;
	width: 580px;
	max-width: 100%;
	height: 320px;
	object-fit: cover;
}
.detail-gallery .thumbs {
	grid-column: 1;
	grid-row: 1;
}
.detail-specs {
	padding: 8px 0;
}
.detail-specs h3,
.detail-extra h3,
.recommendations h3 {
	font-size: 20px;
	font-weight: 400;
	color: #7d1139;
	margin: 0 0 18px;
}
.spec-list {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid #eee;
}
.spec-list li {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 13px 0;
	border-bottom: 1px solid #eee;
	color: #666;
}
.detail-extra {
	margin-top: 56px;
	padding-top: 30px;
	border-top: 1px solid #eee;
}
.detail-extra p {
	color: #666;
	line-height: 1.9;
}
.detail-extra {
	text-align: left;
}
.recommendations {
	margin-top: 50px;
}
.recommendations .product-grid {
	grid-template-columns: repeat(4, 1fr);
}
.detail .recommendations .product-grid {
	grid-template-columns: repeat(2, minmax(0, 580px));
	justify-content: space-between;
	gap: 28px;
}
.detail .recommendations .product {

	height: auto;
}
.detail .recommendations .product img {
	height: auto;
	object-fit: cover;
}
.detail .recommendations .product:nth-child(1) img {
	object-position: center 42%;
}
.detail .recommendations .product:nth-child(2) img {
	object-position: center 34%;
}
.detail .recommendations .product:nth-child(3) img {
	object-position: center 68%;
}
.detail .recommendations .product:nth-child(4) img {
	object-position: center 74%;
}
.detail .recommendations .product h3 {
    padding: 10px 5px;
  
    margin: 0;
    display: grid;
    place-items: center;
    transform: translateY(-4px);
}
.detail .recommendations .product:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(255, 158, 194, 0.24);
	border-color: #ff9ec2;
}
.detail .recommendations .product:hover img {
	transform: none;
	filter: none;
}
.detail .recommendations .product:hover h3 {
	color: #ff9ec2;
	font-weight: 700;
}
@media (max-width: 768px) {
    .page-banner h1 {
    font-size: 30px;
   
}
    .detail {
        padding: 30px 0px;
    }
    .detail .recommendations .product-grid {
	
	gap: 10px;
}
    .about-nr .about-copy {
  
    flex-direction: column;
}
	.page-banner {
		height: 246px;
	}
	.detail-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.detail-gallery .detail-main {
		height: 330px;
	}
	.recommendations .product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.about-page {
		padding-bottom: 80px;
	}
}

/* News list/detail, cooperative brands and sample form pages. */
.news-tabs {
	padding-top: 0 !important;
	margin-bottom: 4px;
}
.news-list-grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 8px;
}
.news-list-grid .news-card {
	min-height: 100%;
	background: #fff;
}
.news-list-grid .news-card > div {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.news-list-grid .news-card > img {
	height: 190px;
}
.news-list-grid .news-card .more {
	align-self: flex-start;
	margin-top: auto;
}

.article {
	max-width: 1080px;
	padding: 46px 0 100px;
}
.article-body {
    padding: 30px;
}
.article-body > img {
	width: 100%;
	object-fit: cover;
}
.article-body >br{
    display: none;
}
.article-body p {
	margin: 0 0 20px;
	
}
.article-actions {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 36px;
	padding-top: 24px;
	border-top: 1px solid #eee;
}
.article-actions .more {
	padding: 9px 26px;
}
.news-recommendations {
	margin-top: 58px;
	border-top: 1px solid #eee;
	padding-top: 30px;
}
.news-recommendations > h3 {
	text-align: center;
}
.news-recommendations .news-card > div {
	text-align: left;
}
.news-recommendations .news-grid {
	grid-template-columns: repeat(3, 1fr);
}
.news-recommendations .news-card > img {
	height: 190px;
}
.news-recommendations .news-card {
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}
.news-recommendations .news-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 28px rgba(125, 17, 57, 0.14);
	border-color: #ff9ec2;
}
.brand-gallery {
	margin-top: 4px;
}
.brand-gallery img {
	filter: grayscale(1);
	transition:
		filter 0.3s ease,
		transform 0.3s ease;
}
.brand-gallery img {
	filter: none !important;
}
.brand-gallery img:hover {
	filter: grayscale(0);
	transform: translateY(-3px);
}
.brand-gallery .brand-extra {
	display: none;
}
.brand-gallery.is-expanded .brand-extra {
	display: block;
}
.brand-more {
	display: block;
	margin: 0 auto 74px;
	background: #fff;
	cursor: pointer;
	font-size: 14px;
}
.samples-page {
	margin-top: 80px;
	padding-bottom: 110px;
	align-items: stretch;
}
.samples-page > div {
	display: flex;
	flex-direction: column;
}
.samples-page .sample-visual {
	width: 100% !important;
	max-width: none;
	height: auto !important;
	flex: 1;
	min-height: 330px;
	object-fit: cover !important;
	margin-top: auto;
}
.samples-page .form {
    width: 100%
    ;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
@media (max-width: 768px) {
     .about-nr .about-copy{
             margin-bottom: 27px;
     }
    .about-nr .about-copy:nth-child(even) {
   
    flex-direction: column;
}
	.news-list-grid,
	.news-recommendations .news-grid {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}
	.article {
		padding: 30px 4% 70px;
	}
	.article-body {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.article-body > img {
		height: 240px;
	}
	.article-actions {
		flex-direction: column;
	}
	.article-actions .more {
		text-align: center;
	}
	.brand-more {
		margin-bottom: 48px;
	}
	.samples-page {
		margin-top: 60px;
	}
	.samples-page .sample-visual {
		min-height: 220px;
	}
}
@media (max-width: 480px) {
	.news-list-grid,
	.news-recommendations .news-grid {
		grid-template-columns: 1fr;
	}
}

/* Latest visual updates. */
.section.gray:has(.flowing-brands) {
	background: #fff4fd;
}
.flowing-brands {
	background: transparent !important;
}
.section.gray:has(.flowing-brands) {
	background: #fff8fd;
}
.news-more-wrap {
	text-align: center;
	margin-top: 30px;
}
.news-more-wrap .more {
	padding: 9px 30px;
	background: var(--blue);
	color: #fff;
	border-color: var(--blue);
	border-radius: 5px;
}
.product-showcase {
	position: relative;
	isolation: isolate;
	overflow: hidden;
}
.product-showcase:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background: #fff7fb;
}
.product-showcase:after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.42;
	background-image:
		linear-gradient(
			30deg,
			rgba(255, 158, 194, 0.22) 12%,
			transparent 12.5%,
			transparent 87%,
			rgba(182, 158, 255, 0.18) 87.5%,
			rgba(182, 158, 255, 0.18)
		),
		linear-gradient(
			150deg,
			rgba(182, 158, 255, 0.15) 12%,
			transparent 12.5%,
			transparent 87%,
			rgba(255, 158, 194, 0.2) 87.5%,
			rgba(255, 158, 194, 0.2)
		);
	background-size: 72px 124px;
	background-position:
		0 0,
		36px 62px;
	pointer-events: none;
}
.cubes-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}
.cubes-bg i {
	position: absolute;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 158, 194, 0.28);
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(30deg) skewY(-30deg) scale(0.8);
	animation: cube-drift calc(8s + var(--i) * 0.7s) ease-in-out infinite
		alternate;
	left: calc((var(--i) * 17%) - 8%);
	top: calc((var(--i) * 23%) - 12%);
}
@keyframes cube-drift {
	to {
		transform: rotate(30deg) skewY(-30deg) translate(28px, -24px)
			scale(1.35);
		opacity: 0.15;
	}
}
.product-showcase .wrap {
	position: relative;
	z-index: 1;
}
.news-showcase {
	position: relative;
	isolation: isolate;
	overflow: hidden;
}
.news-showcase:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(
			ellipse at 20% 20%,
			rgba(255, 158, 194, 0.25),
			transparent 48%
		),
		radial-gradient(
			ellipse at 80% 60%,
			rgba(182, 158, 255, 0.2),
			transparent 50%
		),
		linear-gradient(135deg, #fff 0%, #fff7fc 45%, #fff 100%);
	background-size: 150% 150%;
	animation: gradient-wave 14s ease-in-out infinite alternate;
}
@keyframes gradient-wave {
	from {
		background-position: 0% 0%;
	}
	to {
		background-position: 100% 100%;
	}
}
.footer {
	background: #590222 !important;
}
.product-list-page .product-grid {
	grid-template-columns: repeat(2, minmax(0, 580px));
	justify-content: space-between;
	gap: 28px 34px;
}
.product-list-page .product-grid .product:nth-child(n + 7) {
	display: none;
}
.product-list-page .product img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	background: #fff;
	transform: none;
	transition: filter 0.3s ease;
}
.product-list-page .product:nth-child(1) img {
	object-position: center 34%;
}
.product-list-page .product:nth-child(2) img {
	object-position: center 68%;
}
.product-list-page .product:nth-child(3) img {
	object-position: center 42%;
}
.product-list-page .product:nth-child(4) img {
	object-position: center 74%;
}
.product-list-page .product:nth-child(5) img {
	object-position: center 38%;
}
.product-list-page .product:nth-child(6) img {
	object-position: center 76%;
}
.product-list-page .product h3 {
padding: 5px;
	    margin: 0;
    display: flex;
  
    place-items: center;
    transform: translateY(-4px);
    align-items: center;
    justify-content: center;
     overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      line-clamp: 1;
      -webkit-box-orient: vertical;
}
.product-list-page .product:hover img {
	transform: none;
}
.product-list-page .product:hover h3 {
	color: #ff9ec2;
	font-weight: 700;
}
.product-list-page .product {
	width: 580px;

	border-radius: 4px;
}
.product-list-page .product:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(255, 158, 194, 0.24);
	border-color: #ff9ec2;
}
.news-list-grid .news-card {
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}
.news-list-grid .news-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 28px rgba(125, 17, 57, 0.14);
	border-color: #ff9ec2;
}
.news-list-grid .news-card:hover h3 a {
	color: #7d1139;
	font-weight: 700;
}
.news-list-grid .news-card .more {
	transition:
		background 0.2s ease,
		color 0.2s ease;
}
.news-list-grid .news-card:hover .more {
	background: #ff9ec2;
	color: #fff;
	border-color: #ff9ec2;
}
.news-list-grid .news-card,
.news-recommendations .news-card {
	cursor: pointer;
}
.news-recommendations .news-card:hover h3 a {
	color: #7d1139;
	font-weight: 700;
}
.recommendations .product {
	position: relative;
	overflow: hidden;
}
.recommendations .product img {
	transition:
		transform 0.35s ease,
		filter 0.35s ease;
}
.recommendations .product:hover img {
	transform: scale(1.06);
	filter: saturate(1.08);
}
.recommendations .product h3 {
	position: relative;
	z-index: 1;
}
.article-flow {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 32px;
}
.article-flow p {
	margin: 0;
	text-indent: 2em;
}
.article-flow img {
	width: 82%;
	max-width: 760px;
	height: 300px;
	object-fit: cover;
	align-self: center;
}
.article-flow {
	text-align: left;
}
.factory-page {
	display: block;
}
.factory-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin: 0 0 42px;
	text-align: left;
}
.factory-row.reverse {
	direction: rtl;
}
.factory-row.reverse > div {
	direction: ltr;
}
.factory-row img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}
.factory-row p {
	font-size: 16px;
	color: #666;
	line-height: 2;
	margin: 0;
}
.contact-info p {
	position: relative;
	padding-left: 34px;
}
.contact-info p:before {
	content: attr(data-icon);
	position: absolute;
	left: 0;
	top: 2px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #ff9ec2;
	color: #fff;
	font-size: 14px;
	line-height: 1;
}
@media (max-width: 768px) {
	.product-list-page .product-grid {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}
	.product-list-page .product {
		width: 100%;
		height: auto;
	}
	.product-list-page .product img {
		height: 144px;
	}
	.article-flow img {
		width: 100%;
		height: 220px;
	}
	.factory-row,
	.factory-row.reverse {
		grid-template-columns: 1fr;
		direction: ltr;
		gap: 16px;
		margin-bottom: 28px;
	}
	.factory-row img {
		height: 220px;
	}
	.factory-row p {
		font-size: 14px;
	}
	.detail .recommendations .product {
		width: 100%;
	}
}

/* Homepage card and service interactions. */
.news-showcase .news-card {
	background: #fff;
	border: 1px solid rgba(125, 17, 57, 0.12);
	box-shadow: 0 8px 20px rgba(125, 17, 57, 0.08);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}
.news-showcase .news-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 30px rgba(125, 17, 57, 0.16);
	border-color: #ff9ec2;
}
.news-showcase .news-card .more {
	transition:
		background 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease;
}
.news-showcase .news-card:hover .more {
	background: #ff9ec2;
	color: #fff;
	border-color: #ff9ec2;
}
.process div {
	position: relative;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
}
.process div:hover {
	transform: translateY(-8px);
	background: #fff;
	box-shadow: 0 14px 28px rgba(125, 17, 57, 0.14);
	z-index: 1;
}
.process div:hover b {
	transform: scale(1.12) rotate(8deg);
	box-shadow: 0 6px 14px rgba(255, 158, 194, 0.35);
}
.process b {
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}
.footer .logo {

	background: transparent !important;
	padding: 0;
}
