.w1200 {
  width: 1200px;
  margin: 0 auto;
}

.sec1 .sec1_top {
  padding: 160px 0 280px;
  background: #023C3A;
}
.sec1 .sec1_top .title {
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
}
.sec1 .sec1_top .des {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}
.sec1 .flex {
  margin-top: -157px;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
}
.sec1 .flex .item {
  width: 590px;
  height: 340px;
  position: relative;
  border-radius: 16px;
  background: var(--color);
  padding: 40px 54px 0 32px;
  display: block;
}
.sec1 .flex .item .icon {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  position: relative;
  z-index: 3;
}
.sec1 .flex .item .icon img {
  display: block;
  width: 48px;
}
.sec1 .flex .item .item_title {
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 11px;
  position: relative;
  z-index: 3;
}
.sec1 .flex .item .item_des {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
}
.sec1 .flex .item .item_more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 11px 20px;
  color: var(--color);
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  background: #FFF;
  position: relative;
  z-index: 3;
  transition: 0.6s;
}
.sec1 .flex .item .item_more:hover {
  background: #C8A96A;
  color: #FFFFFF;
}
.sec1 .flex .item .common_bg {
  z-index: 2;
}
.sec1 .flex .item:nth-last-child(1) {
  background: #C8A96A;
}
.sec1 .flex .item:nth-last-child(1) .icon img {
  width: 32px;
}
.sec1 .flex .item:nth-last-child(1) .item_more {
  color: #C8A96A;
}
.sec1 .flex .item:nth-last-child(1) .item_more:hover {
  background: var(--color);
  color: #FFFFFF;
}

.sec2 {
  padding: 129px 0 60px 0;
  position: relative;
  z-index: 3;
}
.sec2 .wrap .title {
  color: #333;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 3px;
}
.sec2 .wrap .des {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 24px;
}
.sec2 .wrap .select_box {
  padding: 16px 20px 20px;
  border-radius: 10px;
  border: 1px solid #ECEEEE;
  background: #FFF;
  margin-bottom: 22px;
}
.sec2 .wrap .select_box .select_title {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.sec2 .wrap .select_box .flex {
  display: flex;
  gap: 20px;
}
.sec2 .wrap .select_box .flex input {
  background: #F4F5F5;
  border-radius: 4px;
  border: 1px solid #ECEEEE;
  background: #F4F5F5;
}
.sec2 .wrap .select_box .flex select {
  width: 150px;
  height: 44px;
}
.sec2 .wrap .selected-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 0 20px;
}
.sec2 .wrap .selected-area .l {
  display: flex;
  align-content: space-between;
}
.sec2 .wrap .selected-area .l .selected-label {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}
.sec2 .wrap .selected-area .l .selected-tags {
  display: flex;
  gap: 33px;
}
.sec2 .wrap .selected-area .l .selected-tags .tag {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}
.sec2 .wrap .selected-area .l .selected-tags .tag:not(:last-child):after {
  content: "";
  width: 1px;
  height: 16px;
  background: #E4E7E7;
  position: absolute;
  top: 50%;
  right: -17px;
  transform: translateY(-50%);
}
.sec2 .wrap .selected-area .l .selected-tags .tag .tag-text {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}
.sec2 .wrap .selected-area .l .selected-tags .tag .tag-close {
  display: block;
  cursor: pointer;
}
.sec2 .wrap .selected-area .l .selected-tags .tag .tag-close img {
  display: block;
  width: 8px;
  transition: 0.6s;
}
.sec2 .wrap .selected-area .l .selected-tags .tag .tag-close:hover img {
  filter: brightness(0);
}
.sec2 .wrap .selected-area .l .selected-tags .no-selection {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}
.sec2 .wrap .selected-area .r button {
  border-radius: 4px;
  border: 1px solid #ECEEEE;
  background: #FFF;
  padding: 0 8px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.6s;
}
.sec2 .wrap .selected-area .r button:hover {
  background: var(--color);
  border: 1px solid var(--color);
  color: #FFFFFF;
}
.sec2 .wrap .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 21px;
  margin: 0 0 60px;
}
.sec2 .wrap .list .item {
  display: block;
  min-width: 0;
  border-radius: 10px;
  background: #FFF;
}
.sec2 .wrap .list .item .img {
  height: 220px;
  display: block;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  margin-bottom: 7px;
}
.sec2 .wrap .list .item .img img {
  display: block;
  width: 100%;
  height: 100%;
  transition: 3s;
}
.sec2 .wrap .list .item .item_title {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  padding: 0 18px;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.6s;
}
.sec2 .wrap .list .item .labels {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 0 18px;
  margin-bottom: 17px;
}
.sec2 .wrap .list .item .labels .label {
  color: #999;
  font-size: 12px;
  font-weight: 400;
}
.sec2 .wrap .list .item .item_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px 14px;
  border-top: 1px solid #F4F5F5;
}
.sec2 .wrap .list .item .item_bottom .company {
  color: #333;
  font-size: 12px;
  font-weight: 500;
  width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sec2 .wrap .list .item .item_bottom .address {
  color: #999;
  font-size: 12px;
  font-weight: 400;
}
.sec2 .wrap .list .item .item_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  margin-bottom: 24px;
}
.sec2 .wrap .list .item .item_flex .price {
  color: #FF3737;
  font-size: 18px;
  font-weight: 600;
}
.sec2 .wrap .list .item .item_flex .price span {
  color: #FF3737;
  font-size: 12px;
}
.sec2 .wrap .list .item .item_flex .status {
  height: 24px;
  border-radius: 4px;
  background: #C8A96A;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
}
.sec2 .wrap .list .item:hover .img img {
  transform: scale(1.1);
}
.sec2 .wrap .list .item:hover .item_title {
  color: var(--color);
}
.sec2 .wrap .list_more {
  margin: 40px auto 0;
  width: fit-content;
  padding: 0 32px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #5D6970;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.6s;
}
.sec2 .wrap .list_more:hover {
  background: var(--color);
  border: 1px solid var(--color);
  color: #FFFFFF;
}
