@media screen and (max-width: 991px) {
  body {
    width: 991px;
    overflow-x: auto;
  }

  .banner {
    height: 198px;
  }
}

@media screen and (min-width: 991px) {
  .banner {
    height: 281px;
  }
}

.banner {
  width: 100%;
  object-position: center;
  object-fit: cover;
}

.content {
  justify-content: center;
  position: relative;
  padding: 50px 0 0 265px;
}

.sidebar {
  width: 220px;
  padding: 70px 0px 0 0;
  position: absolute;
  top: 0;
  left: 0;
}

.sidebar > .title {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.sidebar > .menu {
  width: 100%;
  /* padding-right: 15px; */
}

.sidebar > .menu > .menu-item {
  width: 100%;
  margin-bottom: 6px;
}


.sidebar > .menu > .menu-item > .title {
  position: relative;
  width: 100%;
  height: 44px;
  background-color: #eee;
  color: #0b60a8;
  font-size: 16px;
  /* font-weight: 500; */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
}
.sidebar > .menu > .menu-item > .title:before{
  position: absolute;
  content: "";
  left: 20px;
  width: 10px;
  height: 10px;
  border-top: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #0b60a8;
}

.sidebar > .menu > .menu-item > .submenu {
  width: 100%;
  overflow: hidden;
}

.submenu > .submenu-item {
  font-size: 12px;
  line-height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
  color: #5f5d5d;
}

.submenu > .submenu-item:hover {
  color: #0b60a8;
}

.main {
  width: 100%;
}

.main > .title {
  width: 100%;
  height: 58px;
  margin-top: 8px;
  font-size: 12px;
  line-height: 40px;
  color: #8b8b8c;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 8px;
  border-bottom: 2px solid #0b60a8;
}

.main > .title > span {
  font-size: 22px;
  color: #0b60a8;
  margin-right: 5px;
}

.main .product-list {
  padding: 20px 0 40px;
}

@media screen and (max-width: 991px) {
  .main .product-list > .item-container > .item > img{
    height: 281px;
  }
}

@media screen and (min-width: 991.5px) {
  .main .product-list > .item-container > .item > img{
    height: 202px;
  }
}

@media screen and (min-width: 1200px) {
  .main .product-list > .item-container > .item > img{
    height: 156px;
  }
}

.main .product-list > .item-container {
  padding: 0 5px;
  margin-bottom: 10px;
}

.main .product-list > .item-container > .item{
  border: 1px solid #ededed;
  cursor: pointer;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-duration: 500ms;
  overflow: hidden;
  height: 216px;
}

.main .product-list > .item-container > .item > img{
  width: 100%;
  object-position: center;
  object-fit: cover;
}

.main .product-list > .item-container > .item:hover {
  box-shadow: 0 0 20px 0 #ccc;
}

.main .product-list > .item-container > .item .name {
  width: 100%;
  padding: 0 28px;
  font-size: 14px;
  line-height: 56px;
  background-color: #fff;
  /* color: #0b60a8; */
  align-items: center;
  justify-content: center;
  display: inline-block;
  white-space: nowrap; 
  width: 100%; 
  overflow: hidden;
  text-overflow:ellipsis;
}
.main .product-list > .item-container > .item .desc {
  width: 100%;
  max-height: 112px;
  padding: 0 28px;
  font-size: 12px;
  line-height: 16px;
  background-color: #fff;
  /* color: #0b60a8; */
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
}
.animation-box{
  position: relative;
  height: 216px;
  z-index: 12;
  background: #fff;
}
.animation-box .more{
  position: absolute;
  bottom:16px;
  padding: 0 28px;
  color: #0b60a8;
  font-size: 14px;
}
.animation-box .icon{
  position: relative;
  display: inline-block;
  width: 14px;
  height: 13px;
  top:2px;
  margin-right: 10px;
  border-top: 3px solid #0b60a8;
  border-bottom: 3px solid #0b60a8;
}
.animation-box .icon:before{
  position: absolute;
  top: 2px;
  left:0;
  width: 100%;
  content: "";
  border-top: 3px solid #0b60a8;
}
.product-list > .item-container > .item:hover .animation-box{
  transform: translateY(-156px);
}

.pagination-bar {
  border-top: 2px solid #0b60a8;
  padding-top: 20px;
  padding-bottom: 50px;
}

.back-top{
  position: relative;
  width: 50px;
  height: 22px;
  padding-left: 18px;
  line-height: 22px;
  color:#6f6f6f;
  background: #e4e4e4;
  font-size: 10px;
  cursor: pointer;
  text-align:center;
  top:30px;
}
.back-top:before {
  position: absolute;
  content: "";
  left: 10px;
  top: 5px;
  width: 6px;
  height: 6px;
  border-top: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #6f6f6f;
}