.container {
  width: 1200px;
  margin: 0 auto;
}
.container .breadcrumb {
  margin: 20px 0;
  color: #666;
  display: flex;
  justify-content: space-between;
}
.container .line {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 50px;
  border: 1px solid #666;
}
.container .line .line-title {
  text-align: center;
  width: 80px;
  height: 100%;
  line-height: 50px;
  background-color: #7a838d;
}
.container .line .line-text {
  flex: 1;
}
.container .line .line-text span {
  padding: 0 10px;
  margin: 0 20px;
}
.container .desc {
  font-size: 14px;
  color: #666;
  margin: 10px 0;
}
.container .nav {
  height: 40px;
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #666;
}
.container .nav .left {
  font-size: 20px;
}
.container .nav span {
  margin: 0 10px;
}

.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;
}
