body {
	background-color: #F5F5F7;
	text-align: center;
}

a {
	font-size: 24px; 
	color: #000; 
	text-decoration: none;
}

/* 幻灯片样式 */
.slider-container {
	position: relative;
	max-width: 1920px;
	height: 650px;
	overflow: hidden;
	margin: 0 auto;
}

.slider {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.slide.active {
	opacity: 1;
}

.slide img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -1;
}

/* 模糊滤镜 */
.blur {
	filter: blur(4px);
	-webkit-filter: blur(4px);
}

/* 翻页按钮 */
.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	z-index: 10;
}

.prev, .next {
	width: 60px;
	height: 60px;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s;
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.prev:hover, .next:hover {
	background-color: rgba(0, 0, 0, 0.6);
	transform: scale(1.1);
}

/* 分页指示器 */
.pagination {
	position: absolute;
	background-color: #FFF;
	bottom: 40px;
	height: 3px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.dot {
	width: 144px;
	height: 3px;
	background-color: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.dot::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: #EB6C00;
	transition: right 0.3s;
}

.dot.active::after {
	left: 0;
}

.title {
	margin-top: 96px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1400px;
	font-size: 42px;
	text-align: left;
	padding: 0;
	line-height: 42px;
}

.brand_title_grey {
	color: #727272;
}

.list {
  margin-top: 86px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  height: 405px;
}

.list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  margin: 0;
  height: 100%;
  list-style: none;
}

.list li {
  flex: 1 0 240px;
  max-width: 240px;
  height: 404px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
}

.list li a {
	text-decoration: none;
	color: #000;
}

.list li a:hover {
	text-decoration: none;
	color: #000;
}

.list li a:visited {
	text-decoration: none;
	color: #000;
}

.list li img {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  flex: 1;
}

/* 立即购买链接样式 */
.list li a.buy-link {
  position: absolute;
  top: 0;
  left: 30px;
  text-decoration: none;
  color: #FFF;
  padding: 0;
  background-color: #000;
  font-size: 14px;
  width: 78px;
  height: 32px;
  line-height: 32px;
}

/* 第一个li中的立即购买链接左边距为0 */
.list li:first-child .buy-link {
  left: 0;
}

/* 品名样式 */
.product-name {
  margin-left: 30px;
  margin-bottom: 12px;
  font-size: 32px;
  text-align: left;
}

/* 第一个li中的品名左边距为0 */
.list li:first-child .product-name {
  margin-left: 0;
}

/* 产品名样式 */
.product-title {
  margin-left: 30px;
  margin-bottom: 0;
  font-size: 18px;
  text-align: left;
}

/* 第一个li中的产品名左边距为0 */
.list li:first-child .product-title {
  margin-left: 0;
}

.product-show-q20,
.product-show-q35 {
    max-width: 1920px;
    height: 1080px;
	margin-left: auto;
	margin-right: auto;
    background-color: #FFF;
	overflow: hidden;
}

.product-show-q20 {
    margin-top: 1px;
    display: flex; 		/* 启用 Flexbox 布局 */
}

.product-show-q35 {
    margin-top: 1px;
	display: flex;
}

.product-show-left,
.product-show-right {
	flex: 1;
    justify-content: center;
    padding-top: 180px;
    box-sizing: border-box;
}

.product-show-left img,
.product-show-right img{
	max-width: 978px;
	height: 821px;
	transition: transform 0.3s ease;
	display: block;
}

.product-show-left img:hover,
.product-show-right img:hover {
	 transform: scale(1.05); 	/* 略微放大5% */
}

.product-show-left h1,
.product-show-right h1{
	text-align: left;
	font-size: 52px;
	line-height: 68px;
	font-weight: normal;
	margin: 0;
	padding: 0;
	color: #1a1918;
}

.product-show-right h1,
.product-show-right .intro,
.product-show-right .more{
	margin-left: 156px;
}

.product-show-left h1,
.product-show-left .intro,
.product-show-left .more {
	margin-left: 260px;
}

.product-show-right .intro, 
.product-show-left .intro {
	max-width: 526px;
	text-align: left;
	margin-top: 220px;
}

.intro p{
	font-size: 18px;
	line-height: 32px;
	color: #595957;
	margin-bottom: 10px;
}

.more {
	border: 1px #000 solid;
	height: 54px;
	width: 180px;
	font-size: 24px;
	border-radius: 54px;
	background-color: #FFF;
	margin-top: 55px;
	line-height: 53px;
	cursor: pointer;
}

.more a {
	text-decoration: none;
	color: #000;
}

.more a:hover {
	text-decoration: none;
	color: #000;
}

.more a:visited {
	text-decoration: none;
	color: #000;
}

.product-show-q20 .product-show-right,
.product-show-q35 .product-show-left {
	padding-top: 360px;
}

.product-show-qr {
    max-width: 1200px;
    height: 570px;
    margin-top: 150px;
    margin-bottom: 120px;
    margin-left: auto;
    margin-right: auto;
}

.lang-en .product-show-qr {
	display: none;
}

.show-qr1 {
    max-width: 100%;
    height: 270px;
    background-color: #FFF;
    border-radius: 8px;
    padding-top: 62px;
    text-align: center;
	position: relative;
}

.show-qr1 h1 {
    font-weight: normal;
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 20px;
}

.show-qr1 p {
    font-size: 20px;
    margin-top: 15px;
}

.show-qr1 p:last-child {
    color: #0066CC;
}

.show-qr2 {
    max-width: 100%;
    height: 222px;
    margin-top: 72px;
}

.show-qr2 ul {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.show-qr2 li {
    width: calc((100% - 48px) / 3);
    height: 100%;
    background-color: #FFF;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.show-qr2 li h1 {
    font-weight: normal;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.show-qr2 li p {
    font-size: 20px;
    margin-top: 0;
    color: #0066CC;
}

.show-qr2 .phone {
    font-size: 22px;
	color: #000;
}

.qrcode-popup {
	position: absolute;
	width: 217px;
	height: 217px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.15);
	padding: 0;
	z-index: 1000;
	display: none;
	border: 1px solid #e0e0e0;
	pointer-events: none;
	overflow: hidden;
}

.qrcode-popup img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.clickable-indicator {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.bi-arrow-up-left {
	transition: transform 0.3s;
	font-size: 16px;
}

.show-qr1 p:last-child:hover .bi-arrow-up-left,
.show-qr2 li p:hover .bi-arrow-up-left {
	transform: translate(-2px, -2px);
}

.service-trigger, .app-trigger {
	position: relative;
}

.service-trigger:hover, .app-trigger:hover {
	text-decoration: underline;
}
