@charset "gb2312";
/* CSS Document */
/* 全局样式重置 */
body {
  min-width: 320px;
  max-width: 630px;
  margin: 0 auto;
  font-family: Microsoft YaHei, Arial, Helvetica, sans-serif
}
.container {
  min-width: 320px;
  max-width: 630px;
  margin: 0 auto;
  background-color: #fff;
}
/* 顶部导航 */
.header {
  background-color: #fde976;
  padding: 12px 12px 12px 12px;
  position: relative;
}
.header-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #0f141a;
  max-width: 70%;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.back-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #000;
  text-decoration: none;
}
.icon-group {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
}
/* CSS搜索图标a标签 */
.search-icon {
  display: block;
  border-radius: 2px 0 0 2px;
  position: relative;
  text-decoration: none;
  color: #000000;
}
/* CSS首页房子图标a标签 */
.home-icon {
  display: block;
  /* width: 24px;
            height: 24px;*/
  border-radius: 0 2px 2px 0;
  position: relative;
  text-decoration: none;
  color: #000000;
}
/* 副标题栏 */
.sub-header {
  background-color: #fde976;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  color: #353327;
}
.sub-header-item {
  display: flex;
  align-items: center;
  gap: 2px;
}
.icon-check-circle {
  width: 16px;
  height: 16px;
  border: 1px solid #666;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.icon-check-circle::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #666;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.icon-thumb-up {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}
.icon-thumb-up::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 3px;
  width: 10px;
  height: 12px;
  border: 1px solid #666;
  border-radius: 3px 3px 2px 2px;
  border-bottom-left-radius: 6px;
}
.icon-thumb-up::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 6px;
  width: 5px;
  height: 7px;
  border: 1px solid #666;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
}
.icon-refund {
  width: 16px;
  height: 16px;
  position: relative;
  border: 1px solid #666;
  border-radius: 50%;
  flex-shrink: 0;
}
.icon-refund::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 2px;
  width: 8px;
  height: 6px;
  border-top: 1px solid #666;
  border-left: 1px solid #666;
  transform: rotate(-45deg);
}
.icon-refund::after {
  content: '';
  position: absolute;
  bottom: 3px;
  right: 2px;
  width: 8px;
  height: 6px;
  border-bottom: 1px solid #666;
  border-right: 1px solid #666;
  transform: rotate(-45deg);
}
.main-wrap {
  background: linear-gradient(to bottom, #fde976, #ffffff);
  padding: 10px;
}
.main {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
.area-bar {
  margin-bottom: 16px;
}
.area-title {
  font-size: 18px;
  font-weight: 400;
  color: #0f141a;
  margin-bottom: 8px;
}
.area-title a {
  color: #0f141a;
}
.area-desc {
  font-size: 14px;
  color: #999;
}
/* 可点击区域鼠标手型 */
.city-click {
  cursor: pointer;
}

.city-click a:active {
    background-color: #ddd;
    transform: scale(0.97);
}
/* 网格容器 只过渡max-height */
.tag-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  overflow: hidden;
  max-height: 96px;
  transition: max-height 0.3s ease;
}
.tag-container .tag {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 8px;
  text-align: center;
  background-color: #f7f8fa;
  border-radius: 8px;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tag-container .hover {
  background-color: #fde976;
}
.tag-container .more-tag {
  display: block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #f7f8fa;
  border-radius: 8px;
  font-size: 16px;
  color: #ff5532;
  font-weight: bold;
  text-decoration: none;
}


.tag-container .tag:active {
    background-color: #e2e2e2;
    transform: scale(0.97);
}

.tag-container .more-tag:active {
    background-color: #e2e2e2;
    transform: scale(0.97);
}
/* 展开状态：按钮通栏占整行 */
.tag-container.open .more-tag {
  grid-column: 1 / -1;
}
/*style.css冲突*/
.porductlistitem .porduct_img_con .tag {
  background: linear-gradient(116deg, transparent 11px, #ffc10a 0);
}
.porductlistitem .porductinfocon .price {
  float: none;
  color: #ff5532;
  font-size: 16px;
  margin-top: 5px;
}
.listnr .tag {
  display: inline-block;
  border-radius: 6px;
  font-size: 14px;
  color: #7e5541;
  background-color: #ffefe0;
  border: #ff861b solid 0px;
  padding: 5px 5px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
  margin-right: 5px;
}
/*.listnr .tag {
  display: inline-block;
  border-radius: 3px;
  font-size: 14px;
  color: #ff861b;
  border: #ff861b solid 1px;
  
  padding: 4px 4px;
  line-height: 1;
 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
  margin-right: 5px;
}*/
.porductlistitem .listtitle {
  font-size: 19px;
}

.porductlistitem .porduct_img_con img {
	
	border-radius: 8px;
	
}
.porductlistbox {
	
	padding: 0 12px;
}
.porductlistitem {
	
	padding: 12px 0 12px 0;
}