.full-size-wrapper {
  position: relative;
  width: 100%;
  min-width: 1200px;
  max-width: 1500px;
  margin: 0 auto 0 auto;
  height: 550px;
  background-color: black;
  background-image: url(/images/wheelplist_top_baner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.tire-brand-select-box {
  position: absolute;
  width: 1100px;
  min-height: 50px;
  bottom: 50px;
  left: 50%;
  margin-left: -550px;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  font-size: 1.1rem;
  padding: 0 30px 0 30px;
}
.tire-brand-select-box > .left-box {
  width: 180px;
  padding: 20px 0 0 0;
  text-align: center;
}
.tire-brand-select-box > .right-box {
  width: 920px;
  min-height: 50px;
  padding: 10px 50px 10px 50px;
}
.tire-brand-select-box > .right-box > .right-box-top {
  width: 100%;
  min-height: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(213,213,213,1);
}
.tire-brand-select-box > .right-box > .right-box-top .search-brand-radio {
  min-width: 153px;
  padding-right: 10px;
  height: 40px;
  display: flex;
  align-items: center;
}
.tire-brand-select-box > .right-box > .right-box-bottom {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.wheel-search-box {
  width: 1100px;
  height: auto;
}
.wheel-search-box > .wheel-search-box-top {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wheel-search-box > .wheel-search-box-bottom {
  width: 100%;
  height: 40px;
}
.wheel-search-box > .wheel-search-box-bottom > ul {
  display: flex;
  margin: 0; padding: 0;
  align-items: stretch;
  justify-content: flex-start;
  height: 100%;
}
.wheel-search-box > .wheel-search-box-bottom > ul > li {
  cursor: pointer;
  text-decoration: none;
  list-style: none;
  border-top: 1px solid rgba(213,213,213,1);
  border-right: 1px solid rgba(213,213,213,1);
  border-bottom: 1px solid rgba(213,213,213,1);
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% / 8);
  height: 100%;
}
/* .wheel-search-box > .wheel-search-box-bottom > ul > li:first-child {
  width: 135px;
} */
.wheel-search-box > .wheel-search-box-bottom > ul > li.active {
  color: white;
  background: #f15050;
  border-top: 1px solid rgba(213,213,213,1);
  border-right: 1px solid rgba(213,213,213,1);
  border-bottom: 1px solid rgba(213,213,213,1);
}
.wheel-search-box > .wheel-search-box-bottom > ul > li:last-child {
  border-right: 0;
}

.wheel-product-list {
  width: 1100px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
}
.wheel-product-list .wheel-product-box {
  width: 20%;
  height: auto;
  padding: 0 10px 0 10px;
  margin-bottom: 40px;
  cursor: pointer;
}
.wheel-product-list .wheel-product-box > div {
  width: 100%;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}
.wheel-product-list .wheel-product-box > div.wheel-product-box-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(213,213,213,1);
}
.wheel-product-list .wheel-product-box > div.wheel-product-box-image > img {
  height: 100%;
  width: auto;
}

.wheel-product-list .wheel-product-box > div.wheel-product-box-name {
  font-size: 1em;
  font-weight: bold;
  text-align: left;
}
.wheel-product-list .wheel-product-box > div.wheel-product-box-comment {
  font-size: 0.8em;
  text-align: left;
}
.wheel-product-list .wheel-product-box > div.wheel-product-box-options {
  font-size: 0.8em;
  text-align: left;
}
.wheel-product-list .wheel-product-box > div.wheel-product-box-price {
  font-size: 1.1em;
  text-align: right;
  padding-right: 10px;
}