.search {
  height: 250px;
  padding-top: 50px;
  background-color: cornflowerblue;
}
.search .search-content {
  width: 900px;
  height: 150px;
  margin: 0 auto;
}
.search .search-content .title .big-text {
  font-size: 34px;
  font-weight: bold;
  color: yellow;
}

.search .search-content .title .small-text {
  margin-left: 30px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.search .input {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.search .input input {
  width: 600px;
  height: 50px;
  outline: none;
  border: none;
}
.search .input .button {
  text-align: center;
  width: 100px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  background-color: turquoise;
}

.container {
  width: 80%;
  margin: 0 auto;
}
.container .buy-content {
  padding: 30px 20px 20px 20px;
  display: flex;
  height: 300px;
  transform: translateY(-100px);
  box-shadow: 2px 2px 10px #909090;
  background-color: #fff;
  border-radius: 5px;
}
.container .buy-content .left {
  flex: 1;
}
.container .buy-content .left .title {
  font-size: 22px;
  color: #181818;
  font-weight: bold;
}
.buy-content .left .sort {
  font-size: 14px;
  color: #181818;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: space-around;
}
.buy-content .left .small-title {
  color: #181818;
  font-size: 14px;
  margin: 30px;
}
.container .buy-content .right {
  width: 500px;
}
.buy-content .right .title {
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buy-content .right .title .left {
  font-size: 22px;
  color: #181818;
  font-weight: bold;
}

.buy-content .right .input-phone {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-around;
}
.buy-content .input-phone .input {
  display: flex;
  justify-content: space-between;
}
.input-phone .input input {
  flex: 1;
  box-sizing: border-box;
  font-size: 16px;
  height: 55px;
  padding: 0 10px 0 20px;
  color: #495056;
  background: #f5f5f7;
  border-radius: 8px;
  border: 1px solid #f5f5f7;
  border-radius: 4px;
  margin-right: 10px;
}
.input-phone .input .input-button {
  font-size: 16px;
  width: 114px;
  height: 54px;
  text-align: center;
  line-height: 54px;
  color: #fff;
  background: #3cb46d;
  border-radius: 4px;
  border: none;
}
.buy-content .input-phone .text {
  font-size: 14px;
  color: #8f96a0;
  line-height: 14px;
}

.buy-content .input-phone .button {
  height: 57px;
  line-height: 57px;
  text-align: center;
  font-size: 16px;
  color: #3cb46d;
  box-sizing: border-box;
  background: #f0fff6;
  border: 1px solid #3cb46d;
  border-radius: 4px;
}

.container .container-title {
  color: #000;
  font-size: 28px;
  line-height: 28px;
  font-weight: 500;
}
.container .container-bar {
  margin-top: 20px;
}
.container .container-bar span {
  margin-right: 20px;
  color: #999;
}

.container .container-content {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.container-content .content-card {
  margin-bottom: 10px;
  display: flex;
  border-radius: 5px;
  flex-direction: column;
  width: 290px;
  height: 300px;
  cursor: pointer;
}

.container-content .content-card:hover {
  box-shadow: 2px 2px 10px #909090;
}
.container-content .content-card .img {
  width: 290px;
  height: 200px;
}

.container-content .content-card .card-title {
  padding-left: 4px;
  margin: 5px 0 6px;
  font-size: 17px;
  color: #495056;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.content-card .card-year {
  font-size: 14px;
  color: #666;
}
.content-card .card-price {
  color: red;
}
