@charset "utf-8";

.hdp {
	padding: 0px;
	height: 520px;
	width: 1200px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	overflow: hidden;
}
.slide{width:100%;overflow:hidden;display:block}.slide .swiper-button-next{background-image:url(/images/pcswiper-button-next.png)}.slide .swiper-button-prev{background-image:url(/images/pcswiper-button-prev.png)}.slide .swiper-pagination-bullet-active{background:#09f}


/* 电脑首页最新*/
.market-container {
	font-size:13px;
	color:#333333;
	font-family:"宋体";
	margin:0 auto;
	background-color: #fafafa;
	width: 1200px; /* 固定宽度1200px */
	padding: 0 10px; /* 防止边缘超出 */
	box-sizing: border-box;
}

/* 仅作用于容器内的元素 */
.market-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.market-container a {
	color:#333333;
	text-decoration:none;
}

.market-container a:hover {
	color:#d93e72;
	text-decoration:underline;
}

.market-new-title {
	width: 100%; /* 改为100%适配容器 */
	max-width: 1140px;
	margin: 38px auto 20px;
	background-image: url(/images/pcrod.png);
	background-repeat: no-repeat;
	background-position: left 2px center;
	line-height: 25px;
	font-size: 25px;
	padding: 10px 0 10px 28px;
	font-weight: bold;
	color: #222;
}

.market-albums {
	display: flex;
	justify-content: flex-start; /* 左对齐 */
	flex-wrap: wrap;
	width: 100%; /* 改为100%适配容器 */
	margin: 0 auto 50px;
	gap: 20px; /* 使用gap控制间距 */
}

/* 一行四个商品 - 固定宽度计算 */
.market-albums .market-album {
	width: calc(25% - 15px); /* 四列布局，精确计算宽度 */
	height: auto;
	min-height: 680px;
	padding: 15px;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
	transition: all 0.3s;
	position: relative;
	flex-shrink: 0; /* 防止缩小 */
}

.market-albums .market-album:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

/* 图片容器 */
.market-album-img-wrap {
	position: relative;
	width: 100%;
	height: 480px;
	overflow: hidden;
	border-radius: 8px;
	background-color: #f5f5f5;
	margin-bottom: 15px;
}

.market-album-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.market-album:hover .market-album-img-wrap img {
	transform: scale(1.02);
}

/* 新品标签 */
.market-tag-new {
	position: absolute;
	top: 15px;
	left: 15px;
	background-color: #d93e72;
	color: white;
	font-size: 11px;
	padding: 4px 10px;
	border-radius: 20px;
	z-index: 2;
}

/* 价格标签 */
.market-price-tag {
	position: absolute;
	top: 15px;
	right: 15px;
	background-color: #ff4444;
	color: white;
	font-size: 16px;
	font-weight: bold;
	padding: 6px 12px;
	border-radius: 6px;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(255,68,68,0.3);
}

.market-price-tag span {
	font-size: 12px;
	font-weight: normal;
}

/* 商品标题 */
.market-zhuanjitxt {
	font-size: 14px;
	height: 40px;
	overflow: hidden;
	margin-bottom: 10px;
	color: #222;
	line-height: 20px;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 价格展示 */
.market-price-display {
	font-size: 22px;
	color: #ff4444;
	font-weight: bold;
	margin-bottom: 12px;
}

/* 商品信息标签 - 优化清晰度 */
.market-item-info {
	font-size: 12px;
	color: #333;
	margin-bottom: 6px;
	line-height: 18px;
	font-weight: 500;
}

.market-item-info::before {
	content: "✓";
	color: #d93e72;
	font-size: 12px;
	margin-right: 6px;
}

/* 成色外观 */
.market-condition::before {
	content: "★";
	color: #ff9900;
	font-size: 12px;
}

/* 所在位置 */
.market-location::before {
	content: "📍";
	color: #4a89dc;
	font-size: 12px;
}

/* 发布者信息 - 可点击链接 */
.market-user-info {
	margin-top: 15px;
	padding-top: 10px;
	border-top: 1px solid #f5f5f5;
}

.market-user-link {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.market-user-link:hover .market-username {
	color: #d93e72;
	text-decoration: underline;
}

.market-avatar-wrapper {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #f0f0f0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	flex-shrink: 0;
}

.market-avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.market-avatar-placeholder {
	color: #999;
	font-size: 14px;
	text-align: center;
	line-height: 30px;
}

.market-username {
	font-size: 12px;
	color: #666;
	transition: color 0.3s;
}

/* 电脑首页最新*/

/* 电脑首页频道*/
.mapindao-container {
	font-size:13px;
	color:#333333;
	font-family:"宋体";
	margin:0 auto;
	background-color: #fafafa;
	width: 1200px; /* 固定宽度1200px */
	padding: 0 10px; /* 防止边缘超出 */
	box-sizing: border-box;
}

/* 仅作用于容器内的元素 */
.mapindao-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mapindao-container a {
	color:#333333;
	text-decoration:none;
}

.mapindao-container a:hover {
	color:#d93e72;
	text-decoration:underline;
}

.mapindao-new-title {
	width: 100%; /* 改为100%适配容器 */
	max-width: 1140px;
	margin: 38px auto 20px;
	background-image: url(/images/pcrod.png);
	background-repeat: no-repeat;
	background-position: left 2px center;
	line-height: 25px;
	font-size: 25px;
	padding: 10px 0 10px 28px;
	font-weight: bold;
	color: #222;
}

.mapindao-albums {
	display: flex;
	justify-content: flex-start; /* 左对齐 */
	flex-wrap: wrap;
	width: 100%; /* 改为100%适配容器 */
	margin: 0 auto 50px;
	gap: 20px; /* 使用gap控制间距 */
}

/* 一行四个商品 - 固定宽度计算 */
.mapindao-albums .mapindao-album {
	width: calc(25% - 15px); /* 四列布局，精确计算宽度 */
	height: auto;
	min-height: 680px;
	padding: 15px;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
	transition: all 0.3s;
	position: relative;
	flex-shrink: 0; /* 防止缩小 */
}

.mapindao-albums .mapindao-album:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

/* 图片容器 */
.mapindao-album-img-wrap {
	position: relative;
	width: 100%;
	height: 480px;
	overflow: hidden;
	border-radius: 8px;
	background-color: #f5f5f5;
	margin-bottom: 15px;
}

.mapindao-album-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.mapindao-album:hover .mapindao-album-img-wrap img {
	transform: scale(1.02);
}


/* 价格标签 */
.mapindao-price-tag {
	position: absolute;
	top: 15px;
	right: 15px;
	background-color: #ff4444;
	color: white;
	font-size: 16px;
	font-weight: bold;
	padding: 6px 12px;
	border-radius: 6px;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(255,68,68,0.3);
}

.mapindao-price-tag span {
	font-size: 12px;
	font-weight: normal;
}

/* 商品标题 */
.mapindao-zhuanjitxt {
	font-size: 14px;
	height: 40px;
	overflow: hidden;
	margin-bottom: 10px;
	color: #222;
	line-height: 20px;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 价格展示 */
.mapindao-price-display {
	font-size: 22px;
	color: #ff4444;
	font-weight: bold;
	margin-bottom: 12px;
}

/* 商品信息标签 - 优化清晰度 */
.mapindao-item-info {
	font-size: 12px;
	color: #333;
	margin-bottom: 6px;
	line-height: 18px;
	font-weight: 500;
}

.mapindao-item-info::before {
	content: "✓";
	color: #d93e72;
	font-size: 12px;
	margin-right: 6px;
}

/* 成色外观 */
.mapindao-condition::before {
	content: "★";
	color: #ff9900;
	font-size: 12px;
}

/* 所在位置 */
.mapindao-location::before {
	content: "📍";
	color: #4a89dc;
	font-size: 12px;
}

/* 发布者信息 - 可点击链接 */
.mapindao-user-info {
	margin-top: 15px;
	padding-top: 10px;
	border-top: 1px solid #f5f5f5;
}

.mapindao-user-link {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.mapindao-user-link:hover .mapindao-username {
	color: #d93e72;
	text-decoration: underline;
}

.mapindao-avatar-wrapper {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #f0f0f0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	flex-shrink: 0;
}

.mapindao-avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mapindao-avatar-placeholder {
	color: #999;
	font-size: 14px;
	text-align: center;
	line-height: 30px;
}

.mapindao-username {
	font-size: 12px;
	color: #666;
	transition: color 0.3s;
}

/* 电脑首页频道*/

/* 友情链接*/
.flink{
	width: 1200px;
	background-color: #fff;
	padding: 3%;
	margin-top: 3px;
	margin-right: auto;
	margin-bottom: 3px;
	margin-left: auto;
}
	.flink ul {
	margin: 0px;
	padding: 0px;
}
    .flink li{
	float: left;
	margin-right: 10px;
	color: ##fff;
	line-height: 26px;
	list-style-type: none;
}
.flink li a{color: #666;font-size: 13px;}
/* 友情链接*/