
.product-container {
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
  width: 84%;
  margin-left: 8%;
  margin-right: 8%;
}

.product-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 100px;
  font-weight: bold;
  color: rgb(223, 140, 45);
}

.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: #e7693f;
  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: #e7693f;
  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: #e7693f;
}

@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: 1300px) {
  .product-title {
    font-size: 32px;
  }
}

@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: #e7693f;
  color: white;
  text-align: center;
  padding-top: .875rem;
  padding-bottom: .875rem;
  font-size: 1rem;
  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: 1rem;
  padding-bottom: 1rem;
  font-size: 1rem;
  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: #ad4500;
  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: 1600px;
  }  

  .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: 15px;
    padding-bottom: 15px;
    font-size: 16px;
  }
  
  .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: 20px;
    padding-bottom: 20px;
    font-size: 16px;
  }
  
  .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;
  margin-bottom: 1rem;
}

.product-pagination > div:not(:last-child) {
  margin-right: .5rem;
}

.product-pagination > div:hover {
  transition: all .3s;
  color: white;
  background-color: #e7693f;
}

.product-pagination-item-active {
  color: white;
  background-color: #e7693f !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: #e7693f;;
}

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


.product-detail-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 5rem;
  padding-bottom: 3rem;
  border-bottom: .125rem solid rgb(233, 233, 233);
}

.product-detail-img {
  width: 48%;
  border: .0625rem solid rgb(233, 233, 233);
}

.product-detail-img-box {
  width: 100%;
  height: 30rem;
}

.product-detail-img-box > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-detail-img-list {
  border-top: .0625rem solid rgb(233, 233, 233);
}

.detailSwiper {
  height: 7.5rem;
}

.product-detail-list-item-img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-right: .0625rem solid rgb(200, 200, 200);
}

.product-detail-list-item-img-active {
  background-color: rgb(97, 171, 228);
}

.product-detail-list-item-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-button-next, .swiper-button-prev {
  color: rgb(253, 115, 32);
}

.product-detail-text {
  width: 48%;
}

.product-detail-title {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "SourceHanSansSC";
  color: #444;
}

.product-detail-line {
  background-color: rgb(253, 115, 32);
  width: 1.625rem;
  height: .25rem;
  margin-bottom: 1.25rem;
  margin-top: 1.75rem;
}

.product-detail-desc {
  font-size: 1rem;
  font-family: "SourceHanSansSC";
  color: rgb(120, 120, 120);
}

.product-detail-content {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 5rem;
  padding-bottom: 3rem;
}

@media screen and (max-width: 1300px) {
  .product-detail-title {
    font-size: 3.5rem;
  }
  
  .product-detail-desc {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 996px) {
  .product-detail-container {
    flex-wrap: wrap;
  }
  
  .product-detail-img {
    width: 100%;
  }

  .product-detail-img-box {
    height: 50rem;
  }

  .detailSwiper {
    height: 12.5rem;
  }

  .product-detail-text {
    width: 100%;
  }
}

