/* 补充样式以匹配设计图 */

.logo img {
	height: 50px;
}

.nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav li {
	margin: 0 15px;
}

.nav a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.nav a:hover {
	color: #caaa79;
}

.right {
	display: flex;
	align-items: center;
}

.search {
	color: #fff;
	font-size: 20px;
	margin-right: 20px;
	cursor: pointer;
}

.lang-box {
	color: #fff;
	font-weight: bold;
}

.banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.market-info {
	position: absolute;
	top: 50%;
	left: 20%;
	transform: translateY(-50%);
	color: #fff;
	max-width: 500px;
}

.market-info h2 {
	font-size: 42px;
	margin-bottom: 20px;
}

.city-distribution {
	padding: 80px 0;
}

.city-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 40px;
}

.city-card {
	background-color: #f8f8f8;
	border-radius: 8px;
	padding: 30px;
	width: 280px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.city-card:hover {
	transform: translateY(-5px);
}

.city-card h3 {
	color: #333;
	margin-bottom: 20px;
	font-size: 20px;
}

.city-card ul {
	list-style: none;
	padding: 0;
}

.city-card li {
	margin-bottom: 10px;
	color: #666;
}

.city-card li:before {
	content: "→";
	color: #caaa79;
	margin-right: 8px;
}

.more-cities {
	text-align: center;
	margin-top: 40px;
	color: #666;
	font-style: italic;
}

.store-search {
	background-color: #f5f5f5;
	padding: 40px 0;
}

.search-form {
	display: flex;
	justify-content: center;
	gap: 15px;
	max-width: 1000px;
	margin: 0 auto;
}

.search-form select,
.search-form input {
	padding: 12px 20px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}

.search-form button {
	background-color: #caaa79;
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.search-form button:hover {
	background-color: #b89668;
}

.store-map {
	padding: 60px 0;
}

.map-container {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.store-list {
	flex: 1;
	max-width: 350px;
}

.store-item {
	background-color: #fff;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 15px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	transition: all 0.3s;
}

.store-item:hover {
	border-left: 4px solid #caaa79;
}

.store-item h4 {
	margin-top: 0;
	color: #333;
}

.store-item p {
	color: #666;
	margin-bottom: 0;
	font-size: 14px;
}

.map-display {
	flex: 2;
	height: 500px;
	background-color: #e9e9e9;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.map-display img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.store-gallery {
	padding: 80px 0;
}

.gallery-container {
	position: relative;
}

.gallery-main {
	height: 700px;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 20px;
	position: relative;
}

.gallery-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	z-index: 10;
}

.gallery-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	margin: 0 10px;
}

.gallery-btn:hover {
	background-color: rgba(202, 170, 121, 0.8);
	transform: scale(1.1);
}

.gallery-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.5s ease;
}

.gallery-thumbs {
	display: flex;
	gap: 15px;
	overflow-x: auto;
	padding-bottom: 10px;
}

.gallery-thumb {
	width: 150px;
	height: 100px;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.8;
	transition: all 0.3s;
}

.gallery-thumb:hover,
.gallery-thumb.active {
	opacity: 1;
	transform: scale(1.05);
}

.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.franchise-form {
	background-color: #f9f9f9;
	padding: 60px 0;
}

.form-container {
	max-width: 600px;
	margin: 0 auto;
	background-color: #fff;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
	margin-bottom: 20px;
}

.form-group input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}

.form-row {
	display: flex;
	gap: 20px;
}

.form-row .form-group {
	flex: 1;
}

.submit-btn {
	width: 100%;
	background-color: #caaa79;
	color: white;
	border: none;
	padding: 15px;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.submit-btn:hover {
	background-color: #b89668;
}


.contact-box {
	color: #fff;
}

.contact-content {
	display: flex;
	gap: 40px;
}

.left-section,
.right-section {
	flex: 1;
}

.contact-info p {
	margin: 8px 0;
}

.social-icon img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
}

.consult-form {
	background-color: rgba(255, 255, 255, 0.1);
	padding: 20px;
	border-radius: 8px;
}

.consult-form .form-group input,
.consult-form .form-group textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #444;
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-radius: 4px;
}

.consult-form .btn-submit {
	width: 100%;
	background-color: #caaa79;
	color: white;
	border: none;
	padding: 10px;
	border-radius: 4px;
	cursor: pointer;
}


/* 响应式调整 */
@media (max-width: 992px) {
	.map-container {
		flex-direction: column;
	}

	.store-list {
		max-width: 100%;
	}

	.contact-content {
		/* flex-direction: column; */
	}
}

@media (max-width: 768px) {
	.nav ul {
		display: none;
	}

	.mobile-btn {
		display: block !important;
	}

	.market-info h2 {
		font-size: 28px;
	}

	.city-cards {
		flex-direction: column;
		align-items: center;
	}

	.city-card {
		width: 90%;
	}

	.search-form {
		flex-direction: column;
	}

	.form-row {
		flex-direction: column;
		gap: 0;
	}

	.gallery-btn {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
}

.ctn1 {
	padding: 90px 0 80px;
	position: relative;
	overflow: hidden;
}

.ctn1 .ctn-list {
	margin-top: 20px;
}

.ctn1 .ctn-list ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.ctn1 .ctn-list ul li {
	width: 24%;
	margin-top: 20px;
	border: 1px solid #dcdcdc;
	background: #f8f8f8;
	padding: 40px;
}

.ctn1 .ctn-list ul li .text h2 {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-family: HarmonyOS_Sans_Medium;
	position: relative;
	padding-bottom: 14px;
	border-bottom: 1px solid #d2d2d2;
}

.ctn1 .ctn-list ul li .text h2:after {
	content: '';
	width: 41%;
	height: 2px;
	background: #cfa972;
	position: absolute;
	left: 0;
	bottom: -1px;
}

.ctn1 .ctn-list ul li .text dl {
	margin-top: 24px;
}

.ctn1 .ctn-list ul li .text dl dd {
	display: flex;
	padding-left: 34px;
	position: relative;
	margin-top: 10px;
	color: #666;
}

.ctn1 .ctn-list ul li .text dl dd a {
	color: #666;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
}

.ctn1 .ctn-list ul li .text dl dd a:hover {
	color: var(--yellow);
}

.ctn1 .ctn-list ul li .text dl dd:before {
	content: '';
	width: 17px;
	height: 17px;
	background: url(../image/sign.png) no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 2px;
}

.ctn1 .ctn-list ul li .text dl dd:nth-child(2):before {
	width: 16px;
	height: 16px;
	background: url(../image/sign.png) no-repeat;
	background-size: contain;
	top: 3px;
	left: 1px;
}

.ctn1 .ctn-list ul li:not(:nth-child(4n)) {
	margin-right: 1.333%;
}

@media screen and (max-width: 1600px) {
	.ctn1 {
		padding: 4.5vw 0 4vw;
	}

	.ctn1 .ctn-list {
		margin-top: 1vw;
	}

	.ctn1 .ctn-list ul li {
		padding: 2vw;
	}

	.ctn1 .ctn-list ul li .text dl dd {
		padding-left: 30px;
	}

	.ctn1 .ctn-list ul li .text dl dd:before {
		width: 15px;
		height: 15px;
	}

	.ctn1 .ctn-list ul li .text dl dd:nth-child(2):before {
		width: 14px;
		height: 14px;
	}
}

@media screen and (max-width: 1440px) {
	.ctn1 .ctn-list ul li .text h2 .span2 {
		font-size: 12px;
	}
}

@media screen and (max-width: 768px) {
	.ctn1 {
		padding: 60px 0 40px;
	}

	.ctn1 .ctn-list {
		margin-top: 0;
	}

	.ctn1 .ctn-list ul li {
		width: 100%;
		margin-top: 20px;
		padding: 14px 14px 20px;
	}

	.ctn1 .ctn-list ul li .text h2 {
		padding-bottom: 10px;
	}

	.ctn1 .ctn-list ul li .text dl {
		margin-top: 20px;
	}

	.ctn1 .ctn-list ul li:not(:nth-child(4n)) {
		margin-right: 0;
	}
}