/***********************************************************************/
.detail {
  margin-top: 90px;
}
.detail .thumb-params {
  width: 100%;
  display: flex;
  margin: 15px 0;
  justify-content: space-between;
}
.detail .thumb-params .thumb {
  width: 56%;
}
.detail .thumb-params .thumb img {
  width: 100%;
}
.detail .thumb-params .params {
  width: calc(40% - 60px);
  margin-right: 15px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  overflow-y: scroll;
  flex-direction: column;
}
.detail .thumb-params .params::-webkit-scrollbar {
  width: 8px;
}
.detail .thumb-params .params::-webkit-scrollbar-thumb {
  border-style: dashed;
  background-color: rgb(12, 161, 253);
  border-color: rgba(226, 36, 36, 0);
  border-width: 1.5px;
  border-radius: 10px;
}
.detail .thumb-params .params::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #EDEDED;
}
.detail .thumb-params .params .bt1 {
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
}
.detail .thumb-params .params .bt1::first-letter {
  text-transform: uppercase;
}
.detail .thumb-params .params .thumb {
  display: none;
}
.detail .thumb-params .params .line {
  width: 100%;
  height: 1px;
  margin: 25px 0;
  background: rgba(0, 0, 0, 0.3);
}
.detail .thumb-params .params .txt {
  font-size: 16px;
  line-height: 26px;
  margin-top: 15px;
}
.detail .thumb-params .params .scene {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.detail .thumb-params .params .scene dt {
  width: 100%;
  margin-top: 20px;
}
.detail .thumb-params .params .scene dd {
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
}
.detail .thumb-params .params .scene dd img {
  width: 56px;
  height: 56px;
}
.detail .thumb-params .params .scene dd span {
  font-size: 13px;
  text-align: center;
}
.detail .thumb-params .params .params-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.detail .thumb-params .params .params-list li {
  display: flex;
  margin-top: 25px;
  justify-content: space-between;
  align-items: center;
}
.detail .thumb-params .params .params-list li .label {
  width: 48%;
}
.detail .thumb-params .params .params-list li .value {
  width: 48%;
  display: flex;
  flex-direction: column;
}
.detail .product-menu {
  display: flex;
  justify-content: space-around;
  padding: 100px 0;
}
.detail .product-menu .item {
  width: 17%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.detail .product-menu .item:hover .thumb {
  box-shadow: 0 0 15px 0 rgba(12, 161, 253, 0.4);
}
.detail .product-menu .item:hover p {
  color: #0CA1FD;
}
.detail .product-menu .item .thumb {
  width: calc(100% - 60px);
  text-align: center;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 30px;
  display: flex;
  justify-content: center;
  font-size: 18px;
}
.detail .product-menu .item .thumb img {
  height: 206px;
}
.detail .product-menu .item p {
  margin-top: 30px;
  text-align: center;
}

/***********************************************************************/
.form-box {
  width: 100%;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.3);
}
.form-box .body {
  display: flex;
  justify-content: space-between;
  padding: 70px 0;
}
.form-box .body .info {
  width: 50%;
}
.form-box .body .info p {
  font-size: 24px;
  font-weight: 400;
}
.form-box .body .form {
  width: 40%;
  display: flex;
  flex-direction: column;
}
.form-box .body .form .item {
  height: 60px;
}
.form-box .body .form .item .form-input {
  height: 58px;
  border: 1px solid #000;
  border-radius: 10px;
  width: calc(100% - 22px);
  font-size: 18px;
  padding: 0 10px;
  line-height: 58px;
}
.form-box .body .form .item .form-button {
  height: 100%;
  padding: 0 50px;
  background: #fff;
  border: 1px solid #0CA1FD;
  border-radius: 10px;
  font-size: 18px;
  color: #0CA1FD;
}
.form-box .body .form .item.checked svg {
  display: block !important;
}
.form-box .body .form .item.form-agree {
  display: flex;
  align-items: center;
  position: relative;
}
.form-box .body .form .item.form-agree input {
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 5px;
  margin-right: 5px;
}
.form-box .body .form .item.form-agree svg {
  display: none;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 2px;
}
.form-box .body .form .item.form-agree svg path {
  fill: #0CA1FD;
}
.form-box .body .form .item.form-agree label span {
  color: red;
}
.form-box .body .form .item:first-child {
  margin-bottom: 20px;
}

/***********************************************************************/
footer {
  margin-top: 0;
}

/***********************************************************************/
@media screen and (max-width: 900px) {
  .detail {
    margin-top: 20px;
  }
  .detail .thumb-params {
    flex-direction: column;
  }
  .detail .thumb-params .thumb {
    display: none;
  }
  .detail .thumb-params .params {
    width: 100%;
    box-shadow: none;
    padding: 0;
    overflow: hidden;
  }
  .detail .thumb-params .params .bt1 {
    font-size: 16px;
  }
  .detail .thumb-params .params .thumb {
    margin-top: 15px;
    display: block;
    width: 100%;
  }
  .detail .thumb-params .params .txt {
    font-size: 14px;
  }
  .detail .thumb-params .params .scene dt {
    font-size: 14px;
  }
  .detail .thumb-params .params .params-list li {
    font-size: 13px;
  }
  .detail .thumb-params .params .params-list li .label br {
    content: "";
    display: inline;
    padding-right: 10px;
  }
  .detail .product-menu {
    flex-wrap: wrap;
    padding: 30px 0;
    justify-content: flex-start;
  }
  .detail .product-menu .item {
    width: 30%;
    margin-bottom: 2.5%;
    margin-left: 2.5%;
  }
  .detail .product-menu .item .thumb {
    width: calc(100% - 30px);
    padding: 15px;
    height: 58px;
  }
  .detail .product-menu .item .thumb img {
    height: 58px;
  }
  .detail .product-menu .item p {
    margin-top: 5px;
    font-size: 12px;
  }
  .form-box .body {
    padding: 20px 0;
    flex-direction: column;
  }
  .form-box .body .info {
    width: 100%;
  }
  .form-box .body .info p {
    font-size: 12px;
  }
  .form-box .body .form {
    width: 100%;
    margin-top: 20px;
  }
  .form-box .body .form .item {
    height: 37px;
  }
  .form-box .body .form .item .form-input {
    height: 35px;
    font-size: 12px;
  }
  .form-box .body .form .item .form-button {
    font-size: 12px;
  }
  .form-box .body .form .item.form-agree {
    margin: 10px 0;
  }
  .form-box .body .form .item.form-agree label {
    font-size: 12px;
  }
  .form-box .body .form .item.form-agree input {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    flex-shrink: 0;
  }
  .form-box .body .form .item.form-agree svg {
    width: 11px;
    height: 11px;
  }
}
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/
/***********************************************************************/

/*# sourceMappingURL=detail.css.map */
