.product-category-container {
  box-shadow: 0 0 1.875rem 0 rgba(0,0,0,.05);
  border: .0625rem solid #eee;
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.product-category-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

.product-category-list-item {
  width: 21%;
  margin-bottom: 2rem;
}

.product-category-list-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: rgb(0, 114, 184);
  padding-left: .75rem;
  padding-right: .75rem;
  color: white;
  font-size: .75rem;
  padding-top: .25rem;
  padding-bottom: .25rem;
  margin-bottom: 1.5rem;
}

.product-category-list-title-square {
  width: .5rem;
  height: .5rem;
  background-color: white;
  margin-right: .5rem;
}

.product-category-list-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: .6875rem;
  color: rgb(0, 114, 184);
  margin-bottom: 1rem;
  cursor: pointer;
}

.product-category-list-text-arrow {
  width: .25rem;
  height: .25rem;
  border-top: .0625rem solid rgb(0, 114, 184);
  border-right: .0625rem solid rgb(0, 114, 184);
  margin-right: .5rem;
  transform: rotate(45deg);
}

.product-category-list-text:hover {
  transition: all .2s;
  color: rgb(80, 80, 80);
}

.product-category-list-text:hover > .product-category-list-text-arrow {
  transition: all .2s;
  border-top: .0625rem solid rgb(80, 80, 80);
  border-right: .0625rem solid rgb(80, 80, 80);
}

@media screen and (max-width: 1920px) { 
  .product-category-container {
    margin-top: 50px;
    margin-bottom: 50px;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-category-list-item {
    margin-bottom: 50px;
  }
  
  .product-category-list-title {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 13px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 24px;
  }
  
  .product-category-list-title-square {
    width: 8px;
    height: 8px;
    margin-right: 8px;
  }
  
  .product-category-list-text {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .product-category-list-text-arrow {
    width: 4px;
    height: 4px;
    border-top: 1px solid rgb(0, 114, 184);
    border-right: 1px solid rgb(0, 114, 184);
    margin-right: 8px;
  }
  
  .product-category-list-text:hover > .product-category-list-text-arrow {
    border-top: 1px solid rgb(80, 80, 80);
    border-right: 1px solid rgb(80, 80, 80);
  }
}

@media screen and (max-width: 1400px) { 
  .product-category-list-item {
    width: 30%;
  }
}

@media screen and (max-width: 767px) { 
  .product-category-list-item {
    width: 47%;
  }
}

@media screen and (max-width: 600px) { 
  .product-category-list-item {
    width: 100%;
  }
}

.product-container {
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}

.product-param-container {
  width: 100%;
  overflow-y: auto !important;
  overflow-x: auto !important;
  overflow: hidden;
  white-space: nowrap;
  height: 10rem;
  border-bottom: .0625rem solid rgb(233, 233, 233);
  border-top: .0625rem solid rgb(233, 233, 233);
}

.product-param-list {
  min-width: 50rem;
}

.product-param-list-item {
  display: flex;
  flex-direction: row;
}

.product-param-list-name {
  color: white;
  text-align: center;
  font-size: .75rem;
  width: 8.75rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: .5rem;
  padding-right: .5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(6, 114, 182);
  border-bottom: .125rem solid rgb(200, 200, 200);
  white-space: normal !important;
}

.product-param-list-name > div {
  width: 100%;
}

.product-param-list-params {
  width: 100%;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  border-bottom: .0625rem solid rgb(233, 233, 233);
}

.product-param-list-params-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.product-param-list-param {
  font-size: .75rem;
  cursor: pointer;
  width: 5.5rem;
  line-height: 1.75;
  color: rgb(20, 20, 20);
}

.product-param-list-param:hover {
  color: rgb(0, 114, 184);
}

.product-param-list-param > input {
  margin-right: .3125rem;
  width: .6875rem;
  height: .6875rem;
}

.product-param-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.product-param-btn > span {
  background-color: rgb(6, 114, 182);
  border-radius: 3rem;
  color: white;
  font-size: .875rem;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
  padding-top: .25rem;
  padding-bottom: .25rem;
  cursor: pointer;
}

.product-param-btn > span:hover {
  transition: all .3s;
  background-color: rgb(18, 128, 197);
}

@media screen and (max-width: 1920px) { 
  .product-container {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  
  .product-param-container {
    height: 200px;
    border-bottom: 1px solid rgb(233, 233, 233);
    border-top: 1px solid rgb(233, 233, 233);
  }
  
  .product-param-list {
    min-width: 1000px;
  }

  .product-param-list-name {
    font-size: 12px;
    width: 150px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 2px solid rgb(200, 200, 200);
  }
  
  .product-param-list-params {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    border-bottom: 1px solid rgb(233, 233, 233);
  }
  
  .product-param-list-param {
    font-size: 13px;
    width: 100px;
  }
  
  .product-param-list-param > input {
    margin-right: 6px;
    width: 13px;
    height: 13px;
  }
  
  .product-param-btn {
    margin-bottom: 40px;
    margin-top: 20px;
  }
  
  .product-param-btn > span {
    border-radius: 50px;
    font-size: 16px;
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 6px;
    padding-bottom: 6px;
    cursor: pointer;
  }
}

@media screen and (max-width: 767px) {
  .product-param-container {
    height: 450px;
  }
  
  .product-param-list {
    min-width: 800px;
  }
} 

.product-list-container {
  width: 100%;
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}

.product-list {
  width: 100%;
  border: .0625rem solid rgb(200, 200, 200);
}

.product-list-item-title {
  display: flex;
  flex-direction: row;
}

.product-list-item-title > div {
  flex: 1;
  background-color: rgb(5, 114, 182);
  color: white;
  text-align: center;
  padding-top: .5rem;
  padding-bottom: .75rem;
  font-size: .6875rem;
  overflow: hidden;
  word-wrap:break-word;
  word-break:break-all;
}

.product-list-item-title > div:not(:last-child) {
  border-right: .125rem solid rgb(200, 200, 200);
}

.product-list-item {
  display: flex;
  flex-direction: row;
}

.product-list-item:nth-child(odd) {
  background-color: rgb(231, 231, 231);
}

.product-list-item > div {
  flex: 1;
  text-align: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .6875rem;
  overflow: hidden;
  word-wrap:break-word;
  word-break:break-all;
}

.product-list-item > div:not(:last-child) {
  border-right: .125rem solid rgb(200, 200, 200);
}

.product-list-item-name {
  color: rgb(0, 114, 184);
  font-weight: bold;
  cursor: pointer;
}

.product-list-item-name:hover {
  text-decoration: underline;
}

.product-list-item-file > img {
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
}

@media screen and (max-width: 1920px) { 
  .product-list-container {
    overflow-x: auto !important;
    overflow-y: auto !important;
  }
  
  .product-list {
    width: 1400px;
  }  

  .product-list-container {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  
  .product-list {
    border: 1px solid rgb(200, 200, 200);
  }
  
  .product-list-item-title > div {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 13px;
  }
  
  .product-list-item-title > div:not(:last-child) {
    border-right: 2px solid rgb(200, 200, 200);
  }
  
  .product-list-item > div {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 13px;
  }
  
  .product-list-item > div:not(:last-child) {
    border-right: 2px solid rgb(200, 200, 200);
  }
  
  .product-list-item-file > img {
    width: 20px;
    height: 20px;
  }
}

.product-pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 3rem;
}

.product-pagination > div {
  font-size: .75rem;
  padding-left: .75rem;
  padding-right: .75rem;
  padding-top: .375rem;
  padding-bottom: .375rem;
  background-color: rgb(231, 231, 231);
  cursor: pointer;
}

.product-pagination > div:not(:last-child) {
  margin-right: .5rem;
}

.product-pagination > div:hover {
  transition: all .3s;
  color: white;
  background-color: #0072b8;
}

.product-pagination-item-active {
  color: white;
  background-color: #0072b8 !important;
}

.product-pagination-selector {
  padding: 0 !important;
}

.product-pagination-selector > select {
  width: auto;
  border: .0625rem solid #e5e5e5;
  outline: none;
  padding: .75rem 2rem .75rem 1.25rem;
  font-size: .875rem;
  background-color: rgb(231, 231, 231);
  height: 100%;
}

.product-pagination-selector > select > option {
  color: #0072b8;
  font-size: .875rem;
}

.product-pagination-selector > select > option:hover {
  background-color: #0072b8;
}

.product-pagination-selector > select > option:checked {
  color: #fff;
  background-color: #0072b8;
}

.product-sum {
  font-size: .6875rem;
  margin-left: .5rem;
  margin-top: .5rem;
}

.product-sum > span {
  color: #0072b8;
  font-weight: bold;
  margin-left: .5rem;
  margin-right: .5rem;
}

.product-sum > a {
  margin-right: 2.25rem;
}

@media screen and (max-width: 1920px) {
  .product-pagination {
    margin-top: 50px;
  }
  
  .product-pagination > div {
    font-size: 14px;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  
  .product-pagination > div:not(:last-child) {
    margin-right: 10px;
  }

  .product-pagination-selector {
    padding: 0 !important;
  }

  .product-pagination-selector > select {
    border: 1px solid #e5e5e5;
    padding: 4px 16px 4px 10px;
    font-size: 16px;
  }

  .product-pagination-selector > select > option {
    font-size: 16px;
  }

  .product-sum {
    font-size: 12px;
    margin-left: 10px;
    margin-top: 10px;
  }

  .product-sum > span {
    margin-left: 10px;
    margin-right: 10px;
  }

  .product-sum > a {
    margin-right: 40px;
  }
}


@media screen and (max-width: 888px) {
  .product-pagination {
    justify-content: center;
    align-items: center;
  }
}

.search-root {
  width: 100%;
}

.search-layout-container {
  padding-bottom: 0 !important;
}