@charset "UTF-8";
html {
  font-size: calc(100vw / 1920 * 16);
}

p {
  margin: 0;
  padding: 0;
}

.uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin,
* + .uk-grid-margin {
  margin-top: 15px;
}

input,
textarea,
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  border: none;
  border-radius: 0;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
button::-webkit-input-placeholder {
  color: #999;
  font-family: inherit;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
button:-ms-input-placeholder {
  color: #999;
  font-family: inherit;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder,
button::-ms-input-placeholder {
  color: #999;
  font-family: inherit;
}
input::placeholder,
textarea::placeholder,
button::placeholder {
  color: #999;
  font-family: inherit;
}
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: none;
}

.number-box {
  border: solid 1px #e0e0e0;
  height: 44px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.number-box .number-btn {
  width: 44px;
  height: 100%;
  cursor: pointer;
}
.number-box .number-btn:active {
  color: #0052d9;
}
.number-box .number-btn.right {
  border-left: 1px solid #e0e0e0;
}
.number-box .number-btn.left {
  border-right: 1px solid #e0e0e0;
}
.number-box input {
  width: 50px;
  text-align: center;
  font-size: 15px;
}
.number-box input:focus-within {
  border-color: #0052d9;
}

.layui-form-checkbox[lay-skin="primary"] > div {
  color: inherit;
}

.line-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

body {
  background-color: #eef0f9;
  color: #000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
body img {
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  -o-object-position: center;
     object-position: center;
}
body a {
  color: inherit;
}
body a:hover {
  text-decoration: none;
  color: inherit;
}
body a:active {
  text-decoration: none;
}
body ul,
body ol {
  margin: 0;
  padding: 0;
}
body p {
  margin: 0;
  padding: 0;
}
body input,
body textarea,
body button {
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  border: none;
  border-radius: 0;
}
body input::-webkit-input-placeholder,
body textarea::-webkit-input-placeholder,
body button::-webkit-input-placeholder {
  color: #d2d2d2;
  font-family: inherit;
}
body input:-ms-input-placeholder,
body textarea:-ms-input-placeholder,
body button:-ms-input-placeholder {
  color: #d2d2d2;
  font-family: inherit;
}
body input::-ms-input-placeholder,
body textarea::-ms-input-placeholder,
body button::-ms-input-placeholder {
  color: #d2d2d2;
  font-family: inherit;
}
body input::placeholder,
body textarea::placeholder,
body button::placeholder {
  color: #d2d2d2;
  font-family: inherit;
}
body input:focus-visible,
body textarea:focus-visible,
body button:focus-visible {
  outline: none;
}
body .uk-container {
  max-width: 1230px;
}

.footer {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.footer .footer-top {
  border-top: 1px solid #daddea;
  padding: 40px 0 16px;
  color: #585858;
  font-size: 14px;
}
.footer .footer-top .f-title {
  font-size: 18px;
}
.footer .footer-top .f-nav {
  display: block;
  padding-top: 12px;
  display: block;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.footer .footer-top .f-nav:hover {
  color: #0052d9;
}
@media (max-width: 959px) {
  .footer .footer-top .f-nav-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer .footer-top .f-nav-box .f-nav {
    width: 50%;
  }
}
.footer .footer-top .uk-grid > * {
  margin-bottom: 30px;
}
.footer .footer-bottom {
  padding: 28px 0;
  background-color: #daddea;
  color: #585858;
  font-size: 14px;
}
.footer .footer-bottom .inner {
  gap: 5px 10px;
}

.red {
  color: #ff0f23;
}

.blue {
  color: #0052d9;
}

.green {
  color: #22ac38;
}

.gray {
  color: #999;
}

.uk-pagination {
  gap: 10px;
  color: #999999;
}
.uk-pagination input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border: 1px solid #dcdcdc;
  width: clamp(36px, 2.25rem, 36px);
  border-radius: 8px;
  height: clamp(36px, 2.25rem, 36px);
}

.uk-pagination > * > a {
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: clamp(36px, 2.25rem, 36px);
  min-width: clamp(36px, 2.25rem, 36px);
  border: 1px solid #dcdcdc;
  color: #929292;
  text-align: center;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #fff;
}
.uk-pagination > * > a.uk-active {
  background-color: #0052d9;
  color: #fff;
  border-color: #0052d9;
}
.uk-pagination > * > a:hover {
  color: #0052d9;
  border-color: #0052d9;
}

.content .mine {
  padding: clamp(40px, 3.125rem, 50px) 0;
}
.content .mine .inner {
  gap: 10px 20px;
}
.content .mine .inner .left-box {
  margin-bottom: 20px;
  background-color: #fff;
  padding-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 240px;
  color: #929292;
  font-size: 14px;
}
.content .mine .inner .left-box .side-top {
  color: #fff;
  background: #0052d9;
  font-size: 20px;
  gap: 15px;
  padding: 20px 0;
}
.content .mine .inner .left-box .side-inner-top {
  font-size: 16px;
  background-color: #0052d9;
  color: #fff;
  padding: 15px;
  gap: 10px;
}
.content .mine .inner .left-box .slide-inner-bottom {
  font-size: 14px;
  color: #7d7d7d;
  padding: 15px clamp(15px, 2.5rem, 40px) 15px;
}
.content .mine .inner .left-box .slide-inner-bottom:last-child {
  padding-bottom: 0;
}
@media (max-width: 959px) {
  .content .mine .inner .left-box .slide-inner-bottom .slide-inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content .mine .inner .left-box .slide-inner-bottom .slide-inner-box > * {
    width: 50%;
  }
}
.content .mine .inner .left-box .slide-inner-bottom .slide-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.content .mine .inner .left-box .slide-inner-bottom .slide-nav:hover {
  color: #0052d9;
}
.content .mine .inner .left-box .slide-inner-bottom .slide-nav.uk-active {
  color: #0052d9;
}
.content .mine .inner .left-box .slide-inner-bottom .slide-nav:last-child {
  margin-bottom: 0;
}
.content .mine .inner .left-box .side-bottom {
  padding: 0 clamp(15px, 1.25rem, 20px);
}
.content .mine .inner .left-box .side-bottom li {
  margin: 20px 0 8px;
}
.content .mine .inner .left-box .side-li-top {
  font-size: 16px;
  color: #434343;
  padding: 12px 16px;
  border-radius: 100px;
  background-color: #f7fcf8;
  gap: 8px;
}
.content .mine .inner .left-box .side-li-bottom .nav-item {
  display: block;
  margin-top: 13px;
  padding-left: 39px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .mine .inner .left-box .side-li-bottom .nav-item:hover {
  color: #0052d9;
}
.content .mine .inner .left-box .side-li-bottom .nav-item.uk-active {
  color: #0052d9;
}
@media (max-width: 959px) {
  .content .mine .inner .left-box {
    width: 100%;
    margin-bottom: 0;
  }
  .content .mine .inner .left-box .side-li-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
    padding-top: 15px;
    padding: 0 40px;
  }
  .content .mine .inner .left-box .side-li-bottom .nav-item {
    padding-left: 0;
    margin-top: 0;
  }
}
.content .mine .inner .right-box {
  margin-bottom: 20px;
  background-color: #fff;
  padding: 0 clamp(15px, 2.5rem, 40px) clamp(15px, 2.5rem, 40px);
}
.content .mine .inner .right-box .top-inner {
  border-bottom: 1px solid #dcdcdc;
  padding: clamp(20px, 2.5rem, 40px) 0 15px;
  gap: 15px;
}
.content .mine .inner .right-box .top-inner .box-title {
  font-size: clamp(20px, 1.5rem, 24px);
  color: #434343;
}
.content .mine .inner .right-box .top-inner .search-bar {
  max-width: 190px;
  height: 36px;
  background-color: #f9f9f9;
  border-radius: 17px;
  border: 1px solid #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 15px;
}
.content .mine .inner .right-box .top-inner .search-bar input {
  width: 100%;
  font-size: 14px;
}
.content .mine .inner .right-box .top-inner .search-bar:focus-within {
  border-color: #0052d9;
}
.content .mine .inner .right-box .order-content .order-table {
  margin-top: clamp(20px, 1.875rem, 30px);
  color: #4b4b4b;
  font-size: 12px;
  overflow-x: auto;
}
.content .mine .inner .right-box .order-content .order-table .table-box {
  width: 100%;
  border-color: #dcdcdc;
  margin-bottom: 20px;
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-btn-inner {
  padding: clamp(15px, 1.25rem, 20px);
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-btn-inner .order-btn {
  width: 73px;
  height: 28px;
  border: solid 1px #dcdcdc;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  margin: 12px auto;
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-btn-inner .order-btn:hover {
  background-color: #0052d9;
  color: #fff;
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-btn-inner .order-btn.order-blue-line {
  border-color: #0052d9;
  color: #0052d9;
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-btn-inner .order-btn.order-blue-line:hover {
  color: #fff;
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-time {
  padding: clamp(15px, 1.25rem, 20px);
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-time span {
  margin-right: 15px;
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-detail {
  padding: clamp(15px, 1.25rem, 20px);
  gap: clamp(15px, 1.25rem, 20px);
  border-bottom: 1px solid #dcdcdc;
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-detail:last-child {
  border: none;
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-detail .item-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-detail .order-name {
  width: 200px;
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-price {
  text-wrap: nowrap;
  padding: clamp(15px, 1.25rem, 20px);
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-price .uk-text-bold {
  font-size: 14px;
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-link-inner {
  padding: clamp(15px, 1.25rem, 20px);
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-link-inner .order-link {
  display: block;
  text-align: center;
  text-wrap: nowrap;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-link-inner .order-link:hover {
  color: #0052d9;
}
.content .mine .inner .right-box .order-content .order-table .table-box .order-link-inner .order-link.op7 {
  opacity: 0.7;
}
.content .mine .inner .right-box .order-content .order-table .table-box td {
  text-align: center;
}
.content .mine .inner .right-box .order-content .order-table .bom-table {
  text-align: left;
  width: 100%;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 20px;
  font-size: 12px;
}
.content .mine .inner .right-box .order-content .order-table .bom-table:not(:first-child) {
  display: none;
}
.content .mine .inner .right-box .order-content .order-table .bom-table .table-gap {
  gap: 15px;
}
.content .mine .inner .right-box .order-content .order-table .bom-table tr > td {
  padding: clamp(15px, 1.25rem, 20px);
  border-top: 1px solid #dcdcdc;
}
.content .mine .inner .right-box .order-content .order-table .bom-table tr > td .bom-name {
  min-width: 200px;
}
.content .mine .inner .right-box .order-content .order-table .bom-table tr > td .bom-date {
  text-wrap: nowrap;
}
.content .mine .inner .right-box .order-content .order-table .bom-table tr > td .table-btn {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .mine .inner .right-box .order-content .order-table .bom-table tr > td .table-btn:hover {
  color: #0052d9;
}
.content .mine .inner .right-box .order-content .order-table .bom-table th {
  font-weight: normal;
  text-align: left;
  text-wrap: nowrap;
  padding: clamp(15px, 1.25rem, 20px);
  background-color: #fafafa;
  border-top: 1px solid #dcdcdc;
}
.content .mine .inner .right-box .order-content .order-filter {
  margin-left: -15px;
  color: #434343;
  margin-top: clamp(20px, 1.625rem, 26px);
}
.content .mine .inner .right-box .order-content .order-filter .order-filter-item {
  padding-left: 15px;
}
.content .mine .inner .right-box .order-content .order-filter .layui-form-select dl {
  top: 30px;
}
.content .mine .inner .right-box .order-content .order-filter .form-btn {
  width: 77px;
  height: 30px;
  background-color: #0052d9;
  color: #fff;
  font-size: 12px;
  margin-left: 15px;
}
.content .mine .inner .right-box .order-content .order-filter .layui-form-mid {
  padding: 0 !important;
  margin: 0 10px;
}
.content .mine .inner .right-box .order-content .order-filter input {
  height: 30px;
  border: solid 1px #dcdcdc;
  font-size: 12px;
  width: 100%;
  padding-left: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .mine .inner .right-box .order-content .order-filter input:focus-within {
  border-color: #0052d9;
}
.content .mine .inner .right-box .order-content .order-filter .input-box span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.content .mine .inner .right-box .order-content .order-filter .input-box-left {
  gap: 15px;
}
.content .mine .inner .right-box .order-content .order-yue-box {
  margin-top: 40px;
  font-size: 14px;
  color: #434343;
}
.content .mine .inner .right-box .order-content .order-yue-box .top-box {
  gap: 15px;
}
.content .mine .inner .right-box .order-content .order-yue-box .yue-title {
  font-size: 18px;
  gap: 10px 15px;
}
.content .mine .inner .right-box .order-content .order-yue-box .yue-btn {
  gap: 10px;
}
.content .mine .inner .right-box .order-content .order-yue-box .yue-btn .btn {
  padding: 8px 20px;
  border: solid 1px #dcdcdc;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .mine .inner .right-box .order-content .order-yue-box .yue-btn .btn.blue-bg {
  background-color: #0052d9;
  border-color: #0052d9;
  color: #fff;
}
.content .mine .inner .right-box .order-content .order-yue-box .yue-btn .btn:hover {
  opacity: 0.8;
}
.content .mine .inner .right-box .order-content .order-yue-box .yue-filter {
  margin-top: clamp(20px, 2.1875rem, 35px);
  gap: 10px;
}
.content .mine .inner .right-box .order-content .order-yue-box .yue-filter .yue-f-btn {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 14px;
  border: solid 1px #dcdcdc;
  padding: 8px 20px;
  line-height: 1;
}
.content .mine .inner .right-box .order-content .order-yue-box .yue-filter .yue-f-btn:hover {
  opacity: 0.8;
}
.content .mine .inner .right-box .order-content .order-yue-box .yue-filter .yue-f-btn.uk-active {
  background-color: #0052d9;
  border-color: #0052d9;
  color: #fff;
}
.content .mine .inner .right-box .order-content .conpon-ul {
  margin-top: 40px;
  margin-left: -20px;
}
.content .mine .inner .right-box .order-content .conpon-ul > * {
  padding-left: 20px;
  font-size: 13px;
}
@media (max-width: 959px) {
  .content .mine .inner .right-box .order-content .conpon-ul {
    margin-left: -10px;
  }
  .content .mine .inner .right-box .order-content .conpon-ul > * {
    padding-left: 10px;
    font-size: 13px;
  }
}
.content .mine .inner .right-box .order-content .conpon-ul .item {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  background-color: #eef0f9;
}
.content .mine .inner .right-box .order-content .conpon-ul .item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.content .mine .inner .right-box .order-content .conpon-ul .item .item-top {
  padding: clamp(20px, 2.5rem, 40px) 20px;
}
.content .mine .inner .right-box .order-content .conpon-ul .item .item-top .item-price {
  font-size: clamp(30px, 3.125rem, 50px);
}
.content .mine .inner .right-box .order-content .conpon-ul .item .item-top .item-date {
  margin-top: clamp(15px, 1.25rem, 20px);
}
.content .mine .inner .right-box .order-content .conpon-ul .item.blue-bg .item-top {
  color: #fff;
  background-color: #0052d9;
  position: relative;
}
.content .mine .inner .right-box .order-content .conpon-ul .item.blue-bg .item-top::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  width: 100%;
  height: 10px;
  -webkit-transform: scale(-180deg);
          transform: scale(-180deg);
  background: radial-gradient(circle, #0052d9, #0052d9 4px, transparent 5px);
  background-size: 10px 10px;
}
.content .mine .inner .right-box .order-content .conpon-ul .item.red-bg .item-top {
  background-color: #ff0f23;
  color: #fff;
  position: relative;
}
.content .mine .inner .right-box .order-content .conpon-ul .item.red-bg .item-top::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  width: 100%;
  height: 10px;
  -webkit-transform: scale(-180deg);
          transform: scale(-180deg);
  background: radial-gradient(circle, #ff0f23, #ff0f23 4px, transparent 5px);
  background-size: 10px 10px;
}

.content .mine .inner .right-box .order-content .conpon-ul .item.gray-bg .item-top {
  background-color: #ccc;
  color: #fff;
  position: relative;
}
.content .mine .inner .right-box .order-content .conpon-ul .item.gray-bg .item-top::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  width: 100%;
  height: 10px;
  -webkit-transform: scale(-180deg);
          transform: scale(-180deg);
  background: radial-gradient(circle, #ccc, #ccc 4px, transparent 5px);
  background-size: 10px 10px;
}

.content .mine .inner .right-box .order-content .conpon-ul .item .item-bottom {
  padding: 20px;
}
.content .mine .inner .right-box .order-content .conpon-ul .item .item-bottom .item-btn {
  padding: 12px 20px;
  background-color: #ffffff;
  border-radius: 5px;
  border: solid 1px #a6abc0;
  line-height: 1;
  margin-top: clamp(15px, 1.5625rem, 25px);
}
.content .mine .inner .right-box .order-content .order-form {
  max-width: 400px;
  padding: clamp(40px, 3.125rem, 50px) 0;
  color: #4b4b4b;
  font-size: 14px;
}
.content .mine .inner .right-box .order-content .order-form .input-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: clamp(15px, 1.6875rem, 27px);
}
.content .mine .inner .right-box .order-content .order-form .input-box .name {
  width: 135px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.content .mine .inner .right-box .order-content .order-form .input-box .value {
  height: clamp(40px, 3.125rem, 50px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content .mine .inner .right-box .order-content .order-form .input-box .value input {
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 24px;
}
.content .mine .inner .right-box .order-content .order-form .input-box .value .form-btn {
  width: 100%;
  height: 100%;
  background-color: #0052d9;
  border-radius: 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
  font-size: 18px;
}
.content .mine .inner .right-box .order-content .order-form .input-box .value .form-btn:hover {
  opacity: 0.8;
}
.content .mine .inner .right-box .order-content .order-address {
  padding: 40px 0;
  margin-left: -20px;
}
.content .mine .inner .right-box .order-content .order-address > * {
  padding-left: 20px;
  margin-bottom: 20px;
  margin-top: 0;
}
.content .mine .inner .right-box .order-content .order-address .add-item {
  min-height: 180px;
  color: #7d7d7d;
  font-size: 14px;
  border: solid 1px #d2d2d2;
  padding: clamp(15px, 1.5625rem, 25px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .mine .inner .right-box .order-content .order-address .add-item .add-name {
  color: #313131;
  font-size: 16px;
}
.content .mine .inner .right-box .order-content .order-address .add-item .add-num {
  margin-top: clamp(10px, 1.0625rem, 17px);
}
.content .mine .inner .right-box .order-content .order-address .add-item .add-desc {
  margin-top: clamp(10px, 1.0625rem, 17px);
}
.content .mine .inner .right-box .order-content .order-address .add-item .add-bottom {
  margin-top: clamp(10px, 1.0625rem, 17px);
}
.content .mine .inner .right-box .order-content .order-address .add-item .add-bottom .add-btn {
  gap: 15px;
}
.content .mine .inner .right-box .order-content .order-address .add-item .add-bottom .add-btn span {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.content .mine .inner .right-box .order-content .order-address .add-item .add-bottom .add-btn span:hover {
  color: #0052d9;
}
.content .mine .inner .right-box .order-content .order-address .add-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-color: #0052d9;
}
@media (max-width: 959px) {
  .content .mine .inner .right-box .order-content .order-address {
    margin-left: -10px;
  }
  .content .mine .inner .right-box .order-content .order-address > * {
    padding-left: 10px;
    margin-bottom: 10px;
    margin-top: 0;
  }
}
.content .mine .inner .right-box .order-content .password-form {
  padding: 40px 0;
}
.content .mine .inner .right-box .order-content .password-form .password-btn {
  font-size: 14px;
  color: #434343;
  gap: 30px;
  line-height: 1;
}
.content .mine .inner .right-box .order-content .password-form .password-btn li {
  position: relative;
}
.content .mine .inner .right-box .order-content .password-form .password-btn li.uk-active {
  color: #0052d9;
}
.content .mine .inner .right-box .order-content .password-form .password-btn li a {
  display: block;
}
.content .mine .inner .right-box .order-content .password-form .password-btn li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  width: 1px;
  height: 100%;
  top: 0;
  background-color: #d2d2d2;
}
.content .mine .inner .right-box .order-content .password-form .uk-switcher {
  padding: clamp(30px, 3.125rem, 50px) 0;
  font-size: 14px;
  color: #4b4b4b;
}
.content .mine .inner .right-box .order-content .password-form .uk-switcher .switch-form {
  max-width: 364px;
  margin: 0 auto;
}
.content .mine .inner .right-box .order-content .password-form .uk-switcher .switch-form.pay-form {
  max-width: 600px;
  margin: 0 auto;
}
.content .mine .inner .right-box .order-content .password-form .uk-switcher .switch-form.pay-form .orderBox{
	padding:0
}
.content .mine .inner .right-box .order-content .password-form .uk-switcher .switch-form.pay-form .orderBox .order-pay{
	padding:0;
	margin:0;
}
.content .mine .inner .right-box .order-content .password-form .uk-switcher .switch-form.pay-form .orderBox .pay-style{
	margin:0;
	padding:0;
	border:none;
}
.content .mine .inner .right-box .order-content .password-form .uk-switcher .switch-form.pay-form .orderBox .pay-style img{
	height:25px;
	width:auto
}
.content .mine .inner .right-box .order-content .password-form .uk-switcher .switch-form .input-box {
  margin-bottom: clamp(15px, 1.875rem, 30px);
}
.content .mine .inner .right-box .order-content .password-form .uk-switcher .switch-form .input-box>span {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  text-align: right;
}
.content .mine .inner .right-box .order-content .password-form .uk-switcher .switch-form .input-box input[type=text] {
  width: 100%;
  height: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #eef0f9;
  border-radius: 6px;
  padding: 0 15px;
  font-size: 14px;
}
.content .mine .inner .right-box .order-content .password-form .uk-switcher .switch-form .input-box input:disabled {
  background-color: #fff;
  cursor: not-allowed;
}
.content .mine .inner .right-box .order-content .password-form .uk-switcher .switch-form .form-btn {
  width: 100%;
  height: 50px;
  background-color: #0052d9;
  border-radius: 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  color: #fff;
  margin-top: 10px;
}
.content .mine .inner .right-box .order-content .password-form .uk-switcher .switch-form .form-btn:hover {
  opacity: 0.8;
}
.content .mine .inner .right-box .order-content .password-form .uk-switcher .switch-form .input-inner {
  background-color: #eef0f9;
  border-radius: 6px;
  padding-right: 15px;
}
.content .mine .inner .right-box .order-content .password-form .uk-switcher .switch-form .input-inner .code-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-wrap: nowrap;
}
.content .mine .inner .right-box .order-content .bind-ul {
  padding: 40px 0;
}
.content .mine .inner .right-box .order-content .bind-ul li {
  padding: clamp(20px, 3.75rem, 60px);
  background-color: #eef0f9;
  margin-bottom: 20px;
  gap: clamp(15px, 1.6875rem, 27px);
  color: #434343;
}
.content .mine .inner .right-box .order-content .bind-ul li .uk-text-bold {
  font-size: 16px;
  margin-bottom: clamp(5px, 0.625rem, 10px);
}
.content .mine .inner .right-box .order-content .bind-ul li .item-img {
  height: 100%;
  width: clamp(40px, 3.75rem, 60px);
}
.content .mine .inner .right-box .order-content .bind-ul li .item-btn {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 103px;
  height: 40px;
  background-color: #0052d9;
  color: #fff;
}
@media (max-width: 639px) {
  .content .mine .inner .right-box .order-content .bind-ul li .item-btn {
    width: 100%;
  }
}
.content .mine .inner .right-box .order-content .bind-ul li .item-btn.binder {
  background-color: #fff;
  color: #434343;
}
.content .mine .inner .right-box .order-content .bind-ul li .item-btn:hover {
  opacity: 0.8;
}
.content .mine .inner .right-box .order-content .closeaccount-box {
  padding: 40px 0;
  font-size: 14px;
  line-height: 22px;
  color: #434343;
}
.content .mine .inner .right-box .order-content .closeaccount-box .btn-box {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 160px;
  height: 40px;
  color: #fff;
  background-color: #0052d9;
}
.content .mine .inner .right-box .order-content .closeaccount-box .btn-box:hover {
  opacity: 0.8;
}
.content .mine .inner .right-box .order-content .info-page-box {
  color: #434343;
  padding: 40px 0;
  line-height: 24px;
  font-size: 14px;
}
.content .mine .inner .right-box .order-content .info-page-box .item-title {
  font-size: 18px;
}
.content .mine .inner .right-box .order-content .info-page-box li {
  padding-bottom: clamp(15px, 1.875rem, 30px);
}
.content .account {
  background-image: url("../images/account-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: clamp(40px, 6.25rem, 100px) 0;
}
.content .account .account-container .uk-container {
  max-width: 1400px;
}
.content .account .account-form {
  border-radius: 15px;
  margin: 0 auto;
  background-color: #ffffff;
  max-width: 600px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: clamp(14px, 0.875rem, 16px);
  padding: clamp(30px, 4.375rem, 70px) clamp(20px, 3.125rem, 50px);
}
.content .account .account-form .form-title {
  font-size: clamp(20px, 1.875rem, 30px);
  padding-bottom: clamp(30px, 3.125rem, 50px);
}
.content .account .account-form .input-box {
  padding-bottom: clamp(20px, 1.875rem, 30px);
}
.content .account .account-form .input-box .name {
  color: #000;
  font-size: clamp(16px, 1.125rem, 18px);
}
.content .account .account-form .input-box a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .account .account-form .input-box a:hover {
  color: #ff0f23;
  text-decoration: underline;
}
.content .account .account-form .input-box .form-btn {
  width: 180px;
  height: 50px;
  background-color: #0052d9;
  max-width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 100px;
  margin-top: clamp(15px, 1.875rem, 30px);
  color: #fff;
  font-size: 16px, 1.125rem, 18px;
}
.content .account .account-form .input-box .form-btn:hover {
  opacity: 0.8;
}
.content .account .account-form .input-box .input-inner {
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 1px #dcdcdc;
  padding: clamp(15px, 1.125rem, 18px);
  margin-top: clamp(10px, 1.25rem, 20px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content .account .account-form .input-box .input-inner:focus-within {
  border-color: #0052d9;
}
.content .account .account-form .input-box .input-inner input {
  font-size: clamp(16px, 1.125rem, 18px);
  display: block;
  width: 100%;
}
.content .account .account-form .input-box .input-inner .code-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #0052d9;
  color: #fff;
  font-size: clamp(16px, 1.125rem, 18px);
  margin: clamp(-15px, -1.125rem, -18px);
  padding: clamp(17px, 1.25rem, 20px);
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .account .account-form .input-box .input-inner .code-btn:hover {
  opacity: 0.8;
}
.content .account .account-form .input-box .input-inner .code-btn:disabled {
  background-color: #9ec3ff;
}
.content .account .account-form .form-line {
  text-align: center;
  color: #666666;
  margin-top: 10px;
}
.content .account .account-form .form-line .form-line-inner {
  position: relative;
}
.content .account .account-form .form-line .form-line-inner span {
  background-color: #fff;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}
.content .account .account-form .form-line .form-line-inner::after {
  width: 100%;
  height: 1px;
  background-color: #dcdcdc;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) scaleY(1);
          transform: translateY(-50%) scaleY(1);
  content: "";
  z-index: 0;
}
.content .account .account-form .form-oth {
  padding: clamp(30px, 3.75rem, 60px) 0 0;
  color: #7d7d7d;
}
.content .account .account-form .form-oth .item-desc {
  margin-top: clamp(15px, 1.5625rem, 25px);
}
.content .account .account-form .form-oth .uk-flex-center {
  cursor: pointer;
  background-color: #f2f5f8;
  width: clamp(50px, 4.375rem, 70px);
  height: clamp(50px, 4.375rem, 70px);
  margin: 0 auto;
  border-radius: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .account .account-form .form-oth .uk-flex-center:hover {
  background-color: #0052d9;
}
.content .account .account-form .form-oth .uk-flex-center:hover img {
  -webkit-filter: grayscale(100%) brightness(0) invert(1);
          filter: grayscale(100%) brightness(0) invert(1);
}
.content .account .account-form .form-oth .uk-flex-center img {
  max-width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 50%;
}
.content .account .account-form .form-are {
  margin-top: clamp(30px, 4.0625rem, 65px);
  color: #7d7d7d;
  font-size: clamp(14px, 0.875rem, 16px);
}
.content .account .account-form .form-are .blue {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .account .account-form .form-are .blue:hover {
  color: #0052d9;
  text-decoration: underline;
}
.content .account .account-form .wechat-box {
  padding-bottom: clamp(40px, 6.25rem, 100px);
}
.content .account .account-form .wechat-box .item-img {
  width: clamp(80px, 7.5rem, 120px);
  cursor: pointer;
}
.content .account .account-form .wechat-box .item-tips {
  margin-top: clamp(15px, 1.875rem, 30px);
  font-size: clamp(15px, 1.125rem, 18px);
}
.content .account .register-form {
  max-width: 1400px;
  margin: clamp(0, 2.5rem, 40px) auto;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.content .account .register-form .register-img {
  width: 590px;
  max-width: 40%;
}
.content .account .register-form .register-img img {
  width: 100%;
  height: 100%;
}
.content .account .register-form .register-box {
  padding: 0 clamp(15px, 3.125rem, 50px);
}
.content .account .register-form .register-box .register-title {
  padding: clamp(20px, 2.1875rem, 35px) 0 clamp(15px, 1.875rem, 30px);
  border-bottom: 1px solid #e5e5e5;
}
.content .account .register-form .register-box .register-title .form-title {
  font-size: clamp(18px, 1.5rem, 24px);
}
.content .account .register-form .register-box .register-title .register-nav {
  color: #3d5b81;
  font-size: clamp(14px, 1.125rem, 18px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.content .account .register-form .register-box .register-title .register-nav:hover {
  color: #0052d9;
}
.content .account .register-form .register-box .register-inner {
  padding: clamp(20px, 2.5rem, 40px) 0;
}
.content .account .register-form .register-box .register-inner .input-box {
  margin-bottom: 10px;
}
.content .account .register-form .register-box .register-inner .input-box .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: clamp(15px, 1.5625rem, 25px);
  font-size: 16px;
}
.content .account .register-form .register-box .register-inner .input-box input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 1px #eeeeee;
  padding: 15px;
  width: 100%;
  font-size: clamp(14px, 1.125rem, 18px);
}
.content .account .register-form .register-box .register-inner .input-box input:hover {
  border-color: #0052d9;
}
.content .account .register-form .register-box .register-inner .input-box .code {
  background-color: #0052d9;
  color: #fff;
  font-size: clamp(16px, 1.125rem, 18px);
  border-radius: 0 10px 10px 0px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: -10px;
  padding: 0 18px;
}
@media (max-width: 639px) {
  .content .account .register-form .register-box .register-inner .input-box {
    margin-bottom: 15px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content .account .register-form .register-box .register-inner .input-box .name {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 10px;
  }
}
.content .account .register-form .register-box .register-inner .form-bottom {
  margin-top: clamp(15px, 1.875rem, 30px);
  color: #666666;
}
.content .account .register-form .register-box .register-inner .form-bottom .red {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .account .register-form .register-box .register-inner .form-bottom .red:hover {
  color: #ff0f23;
  text-decoration: underline;
}
.content .account .register-form .register-box .register-inner .form-bottom .blue {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #3d5b81;
  text-decoration: underline;
}
.content .account .register-form .register-box .register-inner .form-bottom .blue:hover {
  color: #3d5b81;
  color: #0052d9;
}
.content .account .register-form .register-box .register-inner .form-bottom .form-btn {
  font-size: clamp(15px, 1.125rem, 18px);
  border-radius: 10px;
  width: 180px;
  height: clamp(50px, 3.75rem, 60px);
  background-color: #0052d9;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .account .register-form .register-box .register-inner .form-bottom .form-btn:hover {
  opacity: 0.8;
}
@media (max-width: 639px) {
  .content .account .register-form .register-box .register-inner .form-bottom .form-btn {
    width: 100%;
    margin-bottom: 30px;
  }
}
.content .account .register-form .register-box .register-inner .wechat-box {
  padding: clamp(60px, 9.375rem, 150px) 0;
  color: #010101;
  font-size: clamp(16px, 1.125rem, 18px);
}
.content .account .register-form .register-box .register-inner .wechat-box img {
  width: clamp(80px, 7.5rem, 120px);
}
.content .account .register-form .register-box .register-inner .wechat-box .wechat-desc {
  margin-top: clamp(20px, 2.5rem, 40px);
}
.content .shopBox {
  padding: clamp(40px, 6.875rem, 110px) 0;
  max-width: 1226px;
  margin: 0 auto;
}
.content .shopBox .shop-top {
  padding: 20px clamp(20px, 1.875rem, 30px);
  background-color: #fff;
  color: #434343;
  font-size: 14px;
}
.content .shopBox .shop-top .shop-title {
  font-size: clamp(18px, 1.5rem, 24px);
}
.content .shopBox .shop-top .car-text {
  cursor: pointer;
  gap: 10px;
}
.content .shopBox .shop-top .car-text:hover {
  opacity: 0.8;
}
.content .shopBox .shop-table {
  margin-top: 20px;
  overflow-x: auto;
  font-size: clamp(15px, 1rem, 16px);
}
@media (max-width: 639px) {
  .content .shopBox .shop-table {
    margin-top: 10px;
  }
}
.content .shopBox .shop-table .table-box {
  color: #434343;
  background-color: #fff;
  min-width: 100%;
}
.content .shopBox .shop-table .table-box tr {
  position: relative;
}
.content .shopBox .shop-table .table-box tr::after {
  content: "";
  height: 1px;
  width: calc(100% - clamp(40px, 3.75rem, 60px));
  left: clamp(20px, 1.875rem, 30px);
  position: absolute;
  bottom: 0;
  background-color: #dcdcdc;
}
.content .shopBox .shop-table .table-box tr th {
  text-wrap: nowrap;
  font-weight: normal;
  padding: clamp(15px, 1.5625rem, 25px) clamp(20px, 1.875rem, 30px);
}
.content .shopBox .shop-table .table-box tr td {
  color: inherit;
  font-weight: normal;
  padding: clamp(15px, 1.5625rem, 25px) clamp(20px, 1.875rem, 30px);
}
.content .shopBox .shop-table .table-box tr td .order-item {
  gap: 25px;
  line-height: 24px;
}
.content .shopBox .shop-table .table-box tr td .order-item .item-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
}
.content .shopBox .shop-table .table-box tr td .order-item .order-text {
  min-width: 200px;
}
.content .shopBox .order-bottom {
  padding: clamp(20px, 1.875rem, 30px) clamp(20px, 1.875rem, 30px);
  background-color: #fff;
  width: 100%;
  color: #434343;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 20px;
}
.content .shopBox .order-bottom .order-left {
  gap: 10px;
}
.content .shopBox .order-bottom .order-right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: clamp(10px, 3.75rem, 60px);
}
.content .shopBox .order-bottom .order-right .form-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 44px;
  background-color: #0052d9;
  color: #fff;
  width: 180px;
  max-width: 100%;
  font-size: clamp(15px, 1.125rem, 18px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.content .shopBox .order-bottom .order-right .form-btn:hover {
  opacity: 0.8;
}
@media (max-width: 959px) {
  .content .shopBox .order-bottom .order-right {
    width: 100%;
  }
}
.content .orderBox {
  padding: clamp(40px, 5rem, 80px) 0;
}
.content .orderBox .shop-top {
  padding: 20px clamp(20px, 1.875rem, 30px);
  background-color: #fff;
  color: #434343;
  font-size: 14px;
  margin-bottom: 20px;
}
@media (max-width: 639px) {
  .content .orderBox .shop-top {
    margin-bottom: 10px;
  }
}
.content .orderBox .shop-top .shop-title {
  font-size: clamp(18px, 1.5rem, 24px);
}
.content .orderBox .shop-top .car-text {
  cursor: pointer;
  gap: 10px;
}
.content .orderBox .shop-top .car-text:hover {
  opacity: 0.8;
}
.content .orderBox .order-common-address {
  background-color: #fff;
  color: #434343;
  font-size: 14px;
  margin-bottom: 20px;
  padding: clamp(15px, 1.875rem, 30px);
}
@media (max-width: 639px) {
  .content .orderBox .order-common-address {
    margin-bottom: 10px;
  }
}
.content .orderBox .order-common-address .order-title {
  font-size: 18px;
}
.content .orderBox .order-common-address .order-address {
  padding: clamp(15px, 1.875rem, 30px) 0 0;
  margin-left: -15px;
}
.content .orderBox .order-common-address .order-address > * {
  padding-left: 15px;
  margin-bottom: 15px;
  margin-top: 0;
}
.content .orderBox .order-common-address .order-address .add-item {
  min-height: 180px;
  color: #7d7d7d;
  font-size: 14px;
  border: solid 1px #d2d2d2;
  padding: clamp(15px, 1.5625rem, 25px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .orderBox .order-common-address .order-address .add-item .add-name {
  color: #313131;
  font-size: 16px;
}
.content .orderBox .order-common-address .order-address .add-item .add-num {
  margin-top: clamp(10px, 1.0625rem, 17px);
}
.content .orderBox .order-common-address .order-address .add-item .add-desc {
  margin-top: clamp(10px, 1.0625rem, 17px);
}
.content .orderBox .order-common-address .order-address .add-item .add-bottom {
  margin-top: clamp(10px, 1.0625rem, 17px);
}
.content .orderBox .order-common-address .order-address .add-item .add-bottom .add-btn {
  gap: 15px;
}
.content .orderBox .order-common-address .order-address .add-item .add-bottom .add-btn span {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.content .orderBox .order-common-address .order-address .add-item .add-bottom .add-btn span:hover {
  color: #0052d9;
}
.content .orderBox .order-common-address .order-address .add-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-color: #ff0f23;
}
.content .orderBox .order-common-address .order-address .add-item.uk-active {
  border-color: #ff0f23;
}
@media (max-width: 959px) {
  .content .orderBox .order-common-address .order-address {
    margin-left: -10px;
  }
  .content .orderBox .order-common-address .order-address > * {
    padding-left: 10px;
    margin-bottom: 10px;
    margin-top: 0;
  }
}
.content .orderBox .order-orderConfirm {
  background-color: #fff;
  color: #434343;
  font-size: 14px;
  margin-bottom: 20px;
  font-size: 16px;
  padding: clamp(15px, 1.875rem, 30px);
}
@media (max-width: 639px) {
  .content .orderBox .order-orderConfirm {
    margin-bottom: 10px;
  }
}
.content .orderBox .order-orderConfirm .order-title {
  font-size: 18px;
  padding-bottom: clamp(15px, 1.875rem, 30px);
  border-bottom: 1px solid #dcdcdc;
}
.content .orderBox .order-orderConfirm .table-box {
  overflow-x: auto;
}
.content .orderBox .order-orderConfirm .table-box .table-inner {
  min-width: 100%;
}
.content .orderBox .order-orderConfirm .table-box .table-inner td {
  padding: 15px 0;
  border-bottom: 1px solid #dcdcdc;
}
.content .orderBox .order-orderConfirm .table-box .table-inner td .uk-text-nowrap {
  padding: 0 15px;
}
.content .orderBox .order-orderConfirm .table-box .table-inner td .order-table-item {
  gap: clamp(15px, 1.25rem, 20px);
  font-size: clamp(14px, 1rem, 16px);
}
.content .orderBox .order-orderConfirm .table-box .table-inner td .order-table-item .item-text {
  min-width: 150px;
}
.content .orderBox .order-orderConfirm .table-box .table-inner td .order-table-item .item-img {
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.content .orderBox .order-pay {
  background-color: #fff;
  color: #434343;
  font-size: 14px;
  margin-bottom: 20px;
  font-size: 16px;
  padding: 0 clamp(15px, 1.875rem, 30px) clamp(15px, 1.875rem, 30px);
}
@media (max-width: 639px) {
  .content .orderBox .order-pay {
    margin-bottom: 10px;
  }
}
.content .orderBox .order-pay .order-title {
  font-size: 18px;
  padding-top: clamp(20px, 1.875rem, 30px);
}
.content .orderBox .order-pay .order-title-inner {
  color: #5a5a5a;
  margin: clamp(15px, 1.875rem, 30px) 0 0;
  padding: clamp(15px, 1.875rem, 30px) 0;
  border-top: 1px solid #dcdcdc;
}
.content .orderBox .order-pay .order-title-inner .number {
  font-size: clamp(16px, 1.125rem, 18px);
}
.content .orderBox .order-pay .order-title-inner .item-li {
  margin-bottom: 15px;
}
.content .orderBox .order-pay .order-title-inner .item-li:last-child {
  margin-bottom: 0;
}
.content .orderBox .order-pay .pay-style {
  gap: 12px;
  margin-top: clamp(10px, 1.875rem, 30px);
  padding-bottom: clamp(15px, 1.875rem, 30px);
  border-bottom: 1px solid #dcdcdc;
}
.content .orderBox .order-pay .pay-style .layui-form-radio {
  border-color: #ff0f23;
  position: relative;
  border: solid 1px #cccccc;
  width: 180px;
  gap: 12px;
  padding: 10px clamp(10px, 2.5rem, 40px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: clamp(14px, 1.125rem, 18px);
  max-width: 100%;
  color: #434343;
  box-sizing: border-box;
}
.content .orderBox .order-pay .pay-style .layui-form-radio img {
  width: clamp(25px, 2.25rem, 36px);
}
.content .orderBox .order-pay .pay-style .layui-form-radio .pay-item {
  gap: 12px;
}
.content .orderBox .order-pay .pay-style .layui-form-radio.layui-form-radioed {
  border-color: #ff0f23;
}
.content .orderBox .order-pay .pay-style .layui-form-radio.layui-form-radioed::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -1px;
  width: 18px;
  height: 18px;
  background-image: url("../images/order-check.png");
  background-position: center;
  background-size: cover;
}
@media (max-width: 639px) {
  .content .orderBox .order-pay .pay-style .layui-form-radio {
    width: calc(50% - 6px);
  }
}
.content .orderBox .order-pay .order-inner-box {
  line-height: 1;
  padding: clamp(15px, 1.875rem, 30px) 0;
  border-bottom: 1px solid #dcdcdc;
}
.content .orderBox .order-pay .order-inner-box .order-desc {
  color: #7d7d7d;
  font-size: 14px;
}
.content .orderBox .order-pay .order-inner-box .order-j {
  margin-top: clamp(15px, 1.5625rem, 25px);
}
.content .orderBox .order-pay .order-coupon {
  padding: clamp(15px, 1.875rem, 30px) 0;
  gap: 12px;
}
.content .orderBox .order-pay .order-coupon .coupon-item {
  background-color: #ff0f23;
  position: relative;
  color: #fff;
  font-size: clamp(13px, 1rem, 16px);
  gap: 10px;
  padding: clamp(20px, 2.5rem, 40px) clamp(15px, 1.25rem, 20px);
}
.content .orderBox .order-pay .order-coupon .coupon-item .number {
  font-size: clamp(40px, 3.375rem, 54px);
}
.content .orderBox .order-pay .order-coupon .coupon-item .coupon-title {
  font-size: clamp(15px, 1.25rem, 20px);
}
.content .orderBox .order-pay .order-coupon .coupon-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0px;
  width: 100%;
  height: 10px;
  -webkit-transform: scale(-180deg);
          transform: scale(-180deg);
  background: radial-gradient(circle, #ff0f23, #ff0f23 4px, transparent 5px);
  background-size: 10px 10px;
}
.content .orderBox .order-pay .order-coupon .coupon-item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  width: 100%;
  height: 10px;
  -webkit-transform: scale(-180deg);
          transform: scale(-180deg);
  background: radial-gradient(circle, #ff0f23, #ff0f23 4px, transparent 5px);
  background-size: 10px 10px;
}
.content .orderBox .order-pay .btn-box {
  padding: clamp(20px, 1.875rem, 30px) 0;
}
.content .orderBox .order-pay .btn-box .form-btn {
  width: 160px;
  height: 50px;
  max-width: 100%;
  background-color: #0052d9;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.content .orderBox .order-pay .btn-box .form-btn:hover {
  opacity: 0.8;
}
.content .orderBox .order-info {
  background-color: #fff;
  color: #434343;
  font-size: 14px;
  margin-bottom: 20px;
  font-size: 16px;
  padding: 0 clamp(15px, 1.875rem, 30px) clamp(30px, 3.75rem, 60px);
}
@media (max-width: 639px) {
  .content .orderBox .order-info {
    margin-bottom: 10px;
  }
}
.content .orderBox .order-info .order-title {
  font-size: 18px;
  padding-top: clamp(20px, 1.875rem, 30px);
}
.content .orderBox .order-info .order-info-inner {
  color: #4b4b4b;
  font-size: 14px;
  padding: clamp(20px, 2.1875rem, 35px) 0;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  margin-top: clamp(15px, 1.875rem, 30px);
}
.content .orderBox .order-info .order-info-inner .inner-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: right;
  line-height: 2;
}
.content .orderBox .order-info .order-info-inner .inner-item .name {
  width: 120px;
}
.content .orderBox .order-info .order-info-inner .inner-item .value {
  width: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: right;
}
.content .orderBox .order-info .form-mark {
  margin-top: clamp(15px, 1.25rem, 20px);
  gap: 15px;
  color: #4b4b4b;
  font-size: 14px;
}
.content .orderBox .order-info .form-mark textarea {
  margin-top: 12px;
  height: 50px;
  padding: 15px;
  border: 1px solid #dcdcdc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  max-width: 360px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  resize: none;
  display: block;
}
.content .orderBox .order-info .form-mark textarea:focus {
  border-color: #ff0f23;
}
.content .orderBox .order-info .form-mark .form-right {
  line-height: 1;
  font-size: clamp(14px, 1.125rem, 18px);
}
.content .orderBox .order-info .form-mark .form-right .price {
  font-size: clamp(20px, 1.875rem, 30px);
}
@media (max-width: 639px) {
  .content .orderBox .order-info .form-mark .form-right {
    width: 100%;
  }
}
.content .orderBox .order-info .form-mark .form-right .form-btn {
  background-color: #0052d9;
  color: #fff;
  padding: 17px clamp(20px, 2.5rem, 40px);
  width: 160px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-left: 20px;
}
.content .orderBox .order-info .form-mark .form-right .form-btn:hover {
  opacity: 0.8;
}
@media (max-width: 639px) {
  .content .orderBox .order-info .form-mark .form-right .form-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}
.content .orderBox .order-info-box {
  padding: clamp(40px, 3.5rem, 56px) clamp(15px, 3.5rem, 56px);
  background-color: #fff;
  color: #434343;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (max-width: 639px) {
  .content .orderBox .order-info-box {
    margin-bottom: 10px;
  }
}
.content .orderBox .order-info-box .success-item {
  color: #434343;
  font-size: 14px;
  gap: clamp(15px, 1.5625rem, 25px);
}
.content .orderBox .order-info-box .success-item .item-img {
  width: clamp(60px, 6.25rem, 100px);
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.content .orderBox .order-info-box .success-item .item-top {
  font-size: clamp(18px, 1.5rem, 24px);
}
.content .orderBox .order-info-box .success-item .item-bottom {
  margin-top: 10px;
}
@media (max-width: 639px) {
  .content .orderBox .order-info-box .success-item {
    display: block;
    text-align: center;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content .orderBox .order-info-box .success-item .item-img {
    margin: 0 auto;
  }
  .content .orderBox .order-info-box .success-item .item-img-text {
    width: 100%;
    margin-top: 15px;
  }
}
.content .orderBox .order-info-box .order-info-top {
  gap: 15px;
  color: #434343;
  padding-bottom: 15px;
}
.content .orderBox .order-info-box .order-info-top .item-price {
  color: #434343;
  font-size: 14px;
}
.content .orderBox .order-info-box .order-info-top .item-price .number {
  font-size: clamp(20px, 1.875rem, 30px);
}
@media (max-width: 639px) {
  .content .orderBox .order-info-box .order-info-top .item-price {
    text-align: center;
    width: 100%;
  }
}
.content .orderBox .order-info-box .order-tips-bottom {
  border-top: 1px solid #dcdcdc;
  padding: clamp(20px, 2.5rem, 40px) 0 10px;
  margin-left: clamp(75px, 7.8125rem, 125px);
  font-size: clamp(14px, 1rem, 16px);
  line-height: 24px;
}
.content .orderBox .order-info-box .order-tips-bottom .order-tips-item {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content .orderBox .order-info-box .order-tips-bottom .order-tips-item .name {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 90px;
  display: block;
}
.content .orderBox .order-info-box .order-tips-bottom .order-tips-item:first-child {
  margin-top: 0;
}
@media (max-width: 639px) {
  .content .orderBox .order-info-box .order-tips-bottom {
    margin-left: 0;
  }
}
.content .orderBox .order-success-box {
  padding: clamp(40px, 3.5rem, 56px) 15px;
  background-color: #fff;
  padding: clamp(40px, 5rem, 80px);
  color: #434343;
  line-height: 1.5;
}
.content .orderBox .order-success-box .item-img {
  width: clamp(60px, 7.8125rem, 100px);
}
.content .orderBox .order-success-box .success-title {
  font-size: clamp(18px, 1.5rem, 24px);
  margin-top: clamp(20px, 1.875rem, 30px);
}
.content .orderBox .order-success-box .success-desc {
  font-size: 14px;
  color: #434343;
  margin-top: 10px;
}
.content .orderBox .order-success-box .order-bottom-desc {
  border-top: 1px solid #dcdcdc;
  font-size: 16px;
  margin-top: clamp(20px, 2.5rem, 40px);
  padding: clamp(15px, 1.875rem, 30px) 0;
  gap: 20px;
}
.content .orderBox .order-success-box .order-bottom-desc a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.content .orderBox .order-success-box .order-bottom-desc a:hover {
  color: #ff0f23;
}
.content .content-body {
  /**头部筛选*/
  /**产品*/
}
.content .content-body .uk-container {
  max-width: 1600px;
}
.content .content-body .filter-box-top .product-search-bar {
  margin-top: clamp(20px, 3.125rem, 50px);
}
.content .content-body .filter-box-top .product-search-bar .product-search-top {
  gap: 12px;
}
.content .content-body .filter-box-top .product-search-bar .search-keyword {
  margin-top: 10px;
  font-size: 14px;
  gap: 5px clamp(10px, 1.25rem, 20px);
}
.content .content-body .filter-box-top .product-search-bar .search-keyword a {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .content-body .filter-box-top .product-search-bar .search-keyword a:hover {
  text-decoration: underline;
}
.content .content-body .filter-box-top .product-search-bar .logo {
  width: clamp(150px, 14.375rem, 230px);
}
.content .content-body .filter-box-top .product-search-bar .logo-text {
  color: #585858;
  font-size: clamp(14px, 0.9375rem, 15px);
}
.content .content-body .filter-box-top .product-search-bar .header-inner {
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 2px rgba(0, 82, 217, 0.5);
  padding: 4px;
}
.content .content-body .filter-box-top .product-search-bar .header-inner input {
  width: 100%;
}
.content .content-body .filter-box-top .product-search-bar .header-inner .search-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 36px;
  background-color: #0052d9;
  border-radius: 6px;
  padding: 0 12px;
  cursor: pointer;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .content-body .filter-box-top .product-search-bar .header-inner .search-btn:hover {
  opacity: 0.8;
}
.content .content-body .filter-box-top .product-search-bar .header-inner .layui-input {
  border: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.content .content-body .filter-box-top .product-search-bar .header-inner .layui-form-select dl {
  border-radius: 10px;
}
.content .content-body .filter-box-top .product-search-bar .pro-search-btn {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #0052d9;
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 1px #0052d9;
  font-size: clamp(14px, 1rem, 16px);
  padding: 14px clamp(10px, 0.9375rem, 15px);
  line-height: 1;
  gap: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-wrap: nowrap;
}
.content .content-body .filter-box-top .product-search-bar .pro-search-btn:hover {
  opacity: 0.85;
}
.content .content-body .filter-box-top .product-search-bar .pro-search-btn img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 959px) {
  .content .content-body .filter-box-top .product-search-bar .header-inner {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .content .content-body .filter-box-top .product-search-bar .pro-search-btn {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .product-search-bar .header-inner {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .content .content-body .filter-box-top .product-search-bar .pro-search-btn {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .product-inner-box {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.content .content-body .filter-box-top .product-categories {
  margin-top: clamp(15px, 1.25rem, 20px);
  background-color: #ffffff;
  border-radius: 14px;
  color: #727375;
  line-height: 1.5;
  font-size: clamp(14px, 1rem, 16px);
  padding: 16px;
}
.content .content-body .filter-box-top .product-categories .top-inner-box {
  position: relative;
  background-color: #f7f8fc;
  border-radius: 8px;
  gap: 15px;
  gap: 20px clamp(20px, 6.25rem, 100px);
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .product-categories .top-inner-box {
    gap: 15px;
    border-radius: 0 0 8px 8px;
    padding: 10px;
  }
}
.content .content-body .filter-box-top .product-categories .top-inner-box .title-box {
  color: #fff;
  width: 248px;
  height: 44px;
  background-color: #0052d9;
  border-radius: 8px;
  font-size: 18px;
  max-width: 100%;
  position: relative;
  cursor: pointer;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 3;
}
.content .content-body .filter-box-top .product-categories .top-inner-box .title-box:hover {
  background-color: #0565ff;
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .product-categories .top-inner-box .title-box {
    width: 100%;
  }
}
.content .content-body .filter-box-top .product-categories .top-inner-box .inner-tag {
  gap: 6px;
  font-size: clamp(15px, 1rem, 16px);
  text-wrap: nowrap;
  color: #000000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .content-body .filter-box-top .product-categories .top-inner-box .inner-tag:hover {
  color: #0052d9;
}
.content .content-body .filter-box-top .product-categories .top-inner-box .inner-tag .tag {
  background-color: #ff0f23;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  display: block;
  padding: 5px 7px;
  text-wrap: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
  font-weight: normal;
}
.content .content-body .filter-box-top .product-categories .bottom-inner-box {
  position: relative;
  margin-top: clamp(15px, 1.875rem, 30px);
  gap: 5px;
}
.content .content-body .filter-box-top .product-categories .bottom-inner-box a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.content .content-body .filter-box-top .product-categories .bottom-inner-box a:hover {
  color: #0052d9;
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .product-categories .bottom-inner-box .bottom-inner-search {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    margin-top: 10px;
  }
}
.content .content-body .filter-box-top .product-categories .bottom-inner-box .search-bar {
  padding: 10px;
  background-color: #ffffff;
  border-radius: 8px;
  border: solid 1px #d2d2d2;
  width: 100%;
  max-width: 360px;
}
.content .content-body .filter-box-top .product-categories .bottom-inner-box .search-bar input {
  font-size: clamp(14px, 1rem, 16px);
}
.content .content-body .filter-box-top .product-categories .top-inner-drop {
  z-index: 2;
  width: 100%;
  left: 0 !important;
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .product-categories .top-inner-drop {
    display: none !important;
  }
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container {
  gap: 15px;
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-left {
  width: 248px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #f7f8fc;
  -webkit-box-shadow: 3px 4px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 4px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 8px 8px;
  border: solid 1px #d0d3e2;
  padding: 15px clamp(15px, 1.25rem, 20px);
  position: relative;
  color: #585858;
  font-size: 14px;
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-left {
    width: 100%;
  }
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-left::after {
  width: 100%;
  height: 20px;
  top: -10px;
  background-color: #f7f8fc;
  content: "";
  position: absolute;
  left: -1px;
  border: solid 1px #d0d3e2;
  border-bottom: none;
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-left .left-top {
  gap: 10px;
  color: #000;
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-left .left-bottom-inner {
  margin: clamp(5px, 0.625rem, 10px) 0 clamp(15px, 1.25rem, 20px);
  max-height: 600px;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-left .left-bottom-inner .inner-item {
  cursor: pointer;
  padding: 8px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-left .left-bottom-inner .inner-item a {
  display: block;
  cursor: pointer;
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-left .left-bottom-inner .inner-item a:hover {
  color: #0052d9;
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-left .left-bottom-inner .inner-item:last-child {
  padding-bottom: 0;
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-right {
  background-color: #f7f8fc;
  -webkit-box-shadow: 3px 4px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 4px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  border: solid 1px #d0d3e2;
  padding: clamp(15px, 2.1875rem, 35px) clamp(15px, 2.5rem, 40px);
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-right .right-bottom-inner {
  text-wrap: nowrap;
  max-height: 480px;
  overflow-y: auto;
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-right .right-bottom-inner .item-list-inner .item-title {
  color: #000;
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-right .right-bottom-inner .item-list-inner .item-title .layui-icon {
  width: 16px;
  height: 16px;
  border-radius: 100px;
  background-color: #eef0f9;
  margin-left: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  font-size: 14px;
  font-weight: normal;
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item {
  margin-bottom: clamp(20px, 2.5rem, 40px);
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item .item-bottom-box {
  margin-top: clamp(10px, 1.25rem, 20px);
  gap: 12px;
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item .item-bottom-box .item-a {
  display: block;
  width: calc(100% / 6 - 12px);
  font-size: 13px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item .item-bottom-box .item-a:hover {
  color: #0052d9;
}
@media (max-width: 1199px) {
  .content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item .item-bottom-box .item-a {
    width: calc(100% / 4 - 12px);
  }
}
@media (max-width: 959px) {
  .content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item .item-bottom-box .item-a {
    width: calc(100% / 3 - 12px);
  }
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item .item-bottom-box .item-a {
    width: calc(100% / 2 - 12px);
  }
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item:last-child {
  margin-bottom: 0;
}
.content .content-body .filter-box-top .product-categories .top-inner-drop .inner-container .inner-right .right-bottom-inner:not(:last-child) {
  display: none;
}
.content .content-body .filter-box-top .filter-box-bottom {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-top: clamp(10px, 0.9375rem, 15px);
  gap: 10px;
}
.content .content-body .filter-box-top .filter-box-bottom .filter-box-right {
  gap: 10px;
}
.content .content-body .filter-box-top .filter-box-bottom .box-item {
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 1px #c6cadc;
  padding: clamp(10px, 9.375rem, 15px) clamp(14.3px, 0.9375rem, 15px);
  text-wrap: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(14px, 1rem, 16px);
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 1;
  color: #585858;
  gap: clamp(10px, 0.9375rem, 15px);
}
.content .content-body .filter-box-top .filter-box-bottom .box-item.uk-active {
  border-color: #0052d9;
  color: #0052d9;
}
.content .content-body .filter-box-top .filter-box-bottom .box-item:hover {
  opacity: 0.8;
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .filter-box-bottom {
    margin-top: 10px;
  }
  .content .content-body .filter-box-top .filter-box-bottom .box-item {
    width: 100%;
  }
  .content .content-body .filter-box-top .filter-box-bottom .filter-box-right .box-item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.content .content-body .filter-box-top .filter-box-tab {
  margin-top: 15px;
  padding: 0 15px;
  gap: 15px;
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .filter-box-tab {
    margin-top: 10px;
    padding: 0 10px;
    gap: 10px;
  }
}
.content .content-body .filter-box-top .filter-box-tab .item-tab {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 15px;
  background-color: #ced2e0;
  border-radius: 8px;
  padding: clamp(10px, 0.9375rem, 15px) 0;
  font-size: clamp(14px, 1rem, 16px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
  width: calc(100% / 6 - 12.5px);
  cursor: pointer;
}
@media (max-width: 1199px) {
  .content .content-body .filter-box-top .filter-box-tab .item-tab {
    width: calc(100% / 4 - 11.5px);
  }
}
@media (max-width: 959px) {
  .content .content-body .filter-box-top .filter-box-tab .item-tab {
    width: calc(100% / 3 - 11.5px);
  }
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .filter-box-tab .item-tab {
    width: calc(100% / 2 - 5px);
  }
}
.content .content-body .filter-box-top .filter-box-tab .item-tab:hover {
  opacity: 0.85;
}
.content .content-body .filter-box-top .filter-box-tab .item-tab.uk-active {
  background-color: #0052d9;
  color: #fff;
}
.content .content-body .filter-box-top .filter-box-switch {
  margin-top: 15px;
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .filter-box-switch {
    margin-top: 10px;
  }
}
.content .content-body .filter-box-top .filter-box-switch .switcher-ul {
  margin: 0 clamp(10px, 0.9375rem, 15px);
  gap: clamp(10px, 0.9375rem, 15px);
  overflow-x: auto;
}
.content .content-body .filter-box-top .filter-box-switch .switcher-ul li > a {
  padding: clamp(10px, 0.9375rem, 15px);
  background-color: #ced2e0;
  border-radius: 8px 8px 0 0;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-wrap: nowrap;
}
.content .content-body .filter-box-top .filter-box-switch .switcher-ul li > a:hover {
  opacity: 0.5s;
}
.content .content-body .filter-box-top .filter-box-switch .switcher-ul li.uk-active a {
  background-color: #0052d9;
  color: #fff;
}
.content .content-body .filter-box-top .filter-box-switch .switcher-box {
  background-color: #ffffff;
  border-radius: 0 0 14px 14px;
  color: #585858;
  font-size: 13px;
  padding: clamp(5px, 1.25rem, 20px) clamp(15px, 2.5rem, 40px) clamp(15px, 1.875rem, 30px);
}
.content .content-body .filter-box-top .filter-box-switch .switcher-box .switcher-grid-item {
  margin-top: 10px;
  display: block;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .content-body .filter-box-top .filter-box-switch .switcher-box .switcher-grid-item:hover {
  color: #0052d9;
}
.content .content-body .filter-box-top .product-search-bottom {
  background-color: #fff;
  padding: 15px;
  border-radius: 14px;
  margin-top: clamp(15px, 1.25rem, 20px);
}
.content .content-body .filter-box-top .product-search-bottom .top-btn {
  position: relative;
  gap: 20px clamp(20px, 6.25rem, 100px);
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .product-search-bottom .top-btn {
    gap: 15px;
    border-radius: 0 0 8px 8px;
    padding: 10px;
  }
}
.content .content-body .filter-box-top .product-search-bottom .top-btn .title-box {
  color: #fff;
  width: 248px;
  height: 44px;
  background-color: #0052d9;
  border-radius: 8px;
  font-size: 18px;
  max-width: 100%;
  position: relative;
  cursor: pointer;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 3;
}
.content .content-body .filter-box-top .product-search-bottom .top-btn .title-box:hover {
  background-color: #0565ff;
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .product-search-bottom .top-btn .title-box {
    width: 100%;
  }
}
.content .content-body .filter-box-top .product-search-bottom .top-btn .inner-tag {
  gap: 6px;
  font-size: clamp(15px, 1rem, 16px);
  text-wrap: nowrap;
  color: #000000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .content-body .filter-box-top .product-search-bottom .top-btn .inner-tag:hover {
  color: #0052d9;
}
.content .content-body .filter-box-top .product-search-bottom .top-btn .inner-tag .tag {
  background-color: #ff0f23;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  display: block;
  padding: 5px 7px;
  text-wrap: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
  font-weight: normal;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom {
  position: relative;
  margin-top: clamp(15px, 1.25rem, 20px);
  gap: clamp(10px, 0.9375rem, 15px);
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box {
  padding: 10px 10px;
  border-radius: 10px;
  background-color: #f7f8fc;
  border-radius: 8px;
  position: relative;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .title-box {
  color: #fff;
  height: 44px;
  background-color: #0052d9;
  border-radius: 8px;
  font-size: 18px;
  max-width: 100%;
  position: relative;
  cursor: pointer;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 3;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .title-box:hover {
  background-color: #0565ff;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop {
  z-index: 2;
  width: 100%;
  left: 0 !important;
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop {
    display: none !important;
  }
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container {
  gap: 10px;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-left {
  width: 248px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  color: #585858;
  font-size: 14px;
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-left {
    width: 100%;
  }
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-left .left-top {
  gap: 10px;
  color: #000;
  padding: 10px;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-left .left-bottom-inner {
  max-height: 600px;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-left .left-bottom-inner .inner-item {
  cursor: pointer;
  padding: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-left .left-bottom-inner .inner-item a {
  display: block;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-left .left-bottom-inner .inner-item:hover {
  background-color: #fff;
  color: #0052d9;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-right {
  z-index: 2;
  top: 0 !important;
  width: 66vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #f7f8fc;
  -webkit-box-shadow: 3px 4px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 4px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  border: solid 1px #d0d3e2;
  padding: clamp(15px, 2.1875rem, 35px) clamp(15px, 2.5rem, 40px);
}
@media (max-width: 959px) {
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-right {
    width: 58vw;
  }
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-right .right-bottom-inner {
  text-wrap: nowrap;
  max-height: 480px;
  overflow-y: auto;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-right .right-bottom-inner .item-list-inner .item-title {
  color: #000;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-right .right-bottom-inner .item-list-inner .item-title .layui-icon {
  width: 16px;
  height: 16px;
  border-radius: 100px;
  background-color: #eef0f9;
  margin-left: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  font-size: 14px;
  font-weight: normal;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item {
  margin-bottom: clamp(20px, 2.5rem, 40px);
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item .item-bottom-box {
  margin-top: clamp(10px, 1.25rem, 20px);
  gap: 12px;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item .item-bottom-box .item-a {
  display: block;
  width: calc(100% / 6 - 12px);
  font-size: 13px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item .item-bottom-box .item-a:hover {
  color: #0052d9;
}
@media (max-width: 1199px) {
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item .item-bottom-box .item-a {
    width: calc(100% / 4 - 12px);
  }
}
@media (max-width: 959px) {
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item .item-bottom-box .item-a {
    width: calc(100% / 3 - 12px);
  }
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item .item-bottom-box .item-a {
    width: calc(100% / 2 - 12px);
  }
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-right .right-bottom-inner .inner-item:last-child {
  margin-bottom: 0;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box .top-inner-drop .inner-container .inner-right .right-bottom-inner:not(:last-child) {
  display: none;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom #swiperHome {
  width: 30%;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom #swiperHome .swiper-slide {
  cursor: pointer;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom #swiperHome .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom #swiperHome .swiper-pagination {
  left: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom #swiperHome .swiper-pagination span {
  width: clamp(10px, 1rem, 16px);
  height: clamp(8px, 0.875rem, 14px);
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 100px;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom #swiperHome .swiper-pagination span.swiper-pagination-bullet-active {
  width: clamp(15px, 1.3125rem, 21px);
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-ad {
  width: 30%;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-ad a {
  display: block;
  cursor: pointer;
  height: calc(50% - calc(clamp(10px, 0.9375rem, 15px) / 2));
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-ad a img {
  width: 100%;
  border-radius: 10px;
  height: 100%;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-ad a:not(:first-child) {
  margin-top: clamp(10px, 0.9375rem, 15px);
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user {
  line-height: 1.5;
  color: #585858;
  width: 20%;
  background-color: #f7f8fc;
  border-radius: 8px;
  padding: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .avatar {
  width: clamp(50px, 4.25rem, 68px);
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .item-desc {
  color: #585858;
  font-size: 14px;
  line-height: 1;
  margin-top: clamp(15px, 1.25rem, 20px);
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .user-btn {
  margin-top: clamp(15px, 1.25rem, 20px);
  font-size: 16px;
  height: 40px;
  background-color: #0052d9;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  cursor: pointer;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .user-nav-box {
  gap: 12px;
  margin-top: 10px;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .user-nav-box .item {
  display: block;
  cursor: pointer;
  font-size: 12px;
  position: relative;
  padding: 13px;
  border-radius: 6px;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .user-nav-box .item.red-bg {
  background-image: linear-gradient(-42deg, #ffc3c2 0%, #fdd5d7 39%, #fae6eb 79%, #ffddde 100%), linear-gradient(#ffdbdb, #ffdbdb);
  background-blend-mode: normal, normal;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .user-nav-box .item.orange-bg {
  background-image: linear-gradient(-42deg, #ffdd86 0%, #fffcdb 79%, #fdeec3 100%), linear-gradient(#ffe294, #ffe294);
  background-blend-mode: normal, normal;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .user-nav-box .item .bg {
  position: absolute;
  width: 36px;
  top: 5px;
  right: 5px;
  z-index: 0;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .user-nav-box .item .item-t-desc {
  z-index: 1;
  position: relative;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .user-nav-box .item .item-t-tips {
  margin-top: 5px;
  z-index: 1;
  position: relative;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .user-nav-box .item .item-line {
  margin-top: 15px;
  z-index: 1;
  position: relative;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .user-nav-inner {
  margin-top: 15px;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .user-nav-inner .nav-title {
  color: #000;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .user-nav-inner .user-nav-ul li {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-top: 13px;
  cursor: pointer;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .user-nav-inner .user-nav-ul li img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 25px;
  height: 25px;
  margin: 0 auto;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .user-nav-inner .user-nav-ul li .item-desc-b {
  margin-top: 5px;
}
.content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user .user-nav-inner .user-nav-ul li:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media (max-width: 1200px) {
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom #swiperHome,
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-ad {
    width: calc(50% - calc(clamp(30px, 2.8125rem, 45px) / 3));
  }
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user {
    width: 100%;
  }
}
@media (max-width: 959px) {
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .left-box {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom #swiperHome,
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-ad {
    width: calc(50% - calc(clamp(30px, 2.8125rem, 45px) / 3));
  }
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user {
    width: 100%;
  }
}
@media (max-width: 639px) {
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom #swiperHome {
    width: 100%;
  }
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom #swiperHome,
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-ad,
  .content .content-body .filter-box-top .product-search-bottom .search-bar-bottom .home-user {
    width: 100%;
  }
}
.content .content-body .product-box {
  margin-top: clamp(10px, 0.9375rem, 15px);
  margin-bottom: clamp(50px, 6.25rem, 100px);
  background-color: #fff;
  border-radius: 14px;
  padding-bottom: clamp(20px, 2.5rem, 40px);
  overflow: hidden;
}
.content .content-body .product-box .product-ul {
  padding: 8px;
  border-radius: 12px;
  background-color: #fff;
  overflow: hidden;
}
.content .content-body .product-box .product-ul .product-item {
  padding: 8px;
  cursor: pointer;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 12px;
}
.content .content-body .product-box .product-ul .product-item .item-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.content .content-body .product-box .product-ul .product-item .item-desc {
  color: #585858;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 10px;
}
.content .content-body .product-box .product-ul .product-item .item-line {
  margin-top: 10px;
}
.content .content-body .product-box .product-ul .product-item .item-bottom {
  gap: 10px clamp(10px, 1.25rem, 20px);
  color: #585858;
  margin-top: clamp(20px, 2.5rem, 40px);
}
.content .content-body .product-box .product-ul .product-item .item-bottom .number {
  font-size: clamp(20px, 1.5rem, 24px);
}
.content .content-body .product-box .product-ul .product-item .item-bottom .item-btn {
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 1px #024ffd;
  line-height: 1;
  padding: 8px 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #0052d9;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 639px) {
  .content .content-body .product-box .product-ul .product-item .item-bottom .item-btn {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
  }
}
.content .content-body .product-box .product-ul .product-item:hover {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.content .content-body .product-box .product-ul .product-item:hover .item-btn {
  background-color: #0052d9;
  color: #fff;
}
.content .content-body .product-box .product-pagination {
  margin-top: clamp(20px, 2.5rem, 40px);
}
.content .content-body .product-details {
  margin-top: 15px;
  gap: 15px;
  margin-bottom: clamp(40px, 5rem, 80px);
}
.content .content-body .product-details .pro-right {
  font-size: clamp(14px, 1.125rem, 18px);
  max-width: 528px;
  width: 33.33%;
  background-color: #ffffff;
  border-radius: 12px;
  padding: clamp(15px, 2.1875rem, 35px);
}
.content .content-body .product-details .pro-right .pro-name {
  font-size: clamp(18px, 1.5rem, 24px);
}
.content .content-body .product-details .pro-right .pro-manjian {
  font-size: 15px;
  gap: 15px;
  background-color: #ff0f23;
  border-radius: 12px;
  color: #fff;
  margin-top: clamp(15px, 1.875rem, 30px);
  padding: clamp(15px, 1.5625rem, 25px);
}
.content .content-body .product-details .pro-right .pro-manjian .pro-m-l {
  font-size: clamp(24px, 1.875rem, 30px);
}
.content .content-body .product-details .pro-right .pro-det {
  margin-top: clamp(15px, 2.1875rem, 35px);
}
.content .content-body .product-details .pro-right .pro-det .name {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #000;
  width: 110px;
}
.content .content-body .product-details .pro-right .pro-det .value {
  color: #727375;
}
.content .content-body .product-details .pro-right .pro-det .pro-det-item {
  padding-bottom: 12px;
}
.content .content-body .product-details .pro-right .pro-det .pro-det-item:last-child {
  padding-bottom: 0;
}
.content .content-body .product-details .pro-right .pro-down {
  margin-top: clamp(15px, 1.875rem, 30px);
  background-color: #ffffff;
  border-radius: 12px;
  border: solid 1px #e4e7f5;
  padding: 15px 20px;
  font-size: clamp(16px, 1.25rem, 20px);
  gap: clamp(15px, 1.25rem, 20px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.content .content-body .product-details .pro-right .pro-down .file-btn {
  margin-left: auto;
}
.content .content-body .product-details .pro-right .pro-down:hover {
  border-color: #ff0f23;
}
.content .content-body .product-details .pro-right .pro-line {
  border-top: solid 1px #e4e7f5;
  height: 1px;
  margin: clamp(20px, 2.1875rem, 35px) 0 0;
}
.content .content-body .product-details .pro-right .pro-fenlei {
  margin: clamp(20px, 2.1875rem, 35px) 0 0;
}
.content .content-body .product-details .pro-right .pro-fenlei .fenlei-sku {
  padding-top: clamp(15px, 1.875rem, 30px);
  font-size: clamp(14px, 1.125rem, 18px);
}
.content .content-body .product-details .pro-right .pro-fenlei .fenlei-sku .sku-li {
  padding: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #ffffff;
  border-radius: 12px;
  border: solid 1px #e4e7f5;
  cursor: pointer;
  margin-bottom: 10px;
  gap: clamp(15px, 1.25rem, 20px);
}
.content .content-body .product-details .pro-right .pro-fenlei .fenlei-sku .sku-li:last-child {
  margin-bottom: 0;
}
.content .content-body .product-details .pro-right .pro-fenlei .fenlei-sku .sku-li .item-img {
  width: clamp(40px, 3.125rem, 50px);
}
.content .content-body .product-details .pro-right .pro-fenlei .fenlei-sku .sku-li:hover {
  border-color: #ff0f23;
}
.content .content-body .product-details .pro-right .pro-fenlei .fenlei-sku .sku-li.uk-active {
  border-color: #ff0f23;
}
.content .content-body .product-details .pro-right .pro-number {
  margin: clamp(20px, 2.1875rem, 35px) 0 0;
}
.content .content-body .product-details .pro-right .pro-number .number-box {
  margin-top: 10px;
  border-radius: 10px;
}
.content .content-body .product-details .pro-right .pro-number .pro-btn {
  margin-top: clamp(15px, 1.875rem, 30px);
  gap: 15px;
}
.content .content-body .product-details .pro-right .pro-number .pro-btn .btn {
  background-color: #0052d9;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 50%;
  padding: clamp(15px, 1.5rem, 24px) 0;
  line-height: 1;
  text-align: center;
  font-size: clamp(15px, 1.375rem, 22px);
}
.content .content-body .product-details .pro-right .pro-number .pro-btn .btn.red-bg {
  background-color: #ff0f23;
}
.content .content-body .product-details .pro-right .pro-number .pro-btn .btn:hover {
  opacity: 0.8;
}
@media (max-width: 959px) {
  .content .content-body .product-details .pro-right {
    width: 100%;
    max-width: 100%;
  }
}
.content .content-body .product-details .pro-left .pro-left-img {
  gap: clamp(15px, 1.75rem, 28px);
  font-size: clamp(14px, 1.125rem, 18px);
  background-color: #ffffff;
  border-radius: 12px;
  padding: clamp(15px, 2.1875rem, 35px);
}
.content .content-body .product-details .pro-left .pro-left-img .pro-left-btn {
  width: clamp(50px, 6.25rem, 100px);
}
.content .content-body .product-details .pro-left .pro-left-img .pro-left-btn a {
  display: block;
  height: clamp(50px, 6.25rem, 100px);
  border-radius: 8px;
  padding: clamp(4px, 0.5rem, 8px);
  width: 100%;
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
}
.content .content-body .product-details .pro-left .pro-left-img .pro-left-btn a:hover {
  border-color: #ff0f23;
}
.content .content-body .product-details .pro-left .pro-left-img .pro-left-btn a.uk-active {
  border-color: #ff0f23;
}
.content .content-body .product-details .pro-left .pro-left-img .pro-left-btn a img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
.content .content-body .product-details .pro-left .pro-left-img .pro-left-content img,
.content .content-body .product-details .pro-left .pro-left-img .pro-left-content video {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  background-color: #000;
}
@media (max-width: 639px) {
  .content .content-body .product-details .pro-left .pro-left-img .pro-left-btn {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
  }
  .content .content-body .product-details .pro-left .pro-left-img .pro-left-btn a {
    width: 20%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.content .content-body .product-details .pro-left .pro-left-detail {
  margin-top: 15px;
  font-size: clamp(14px, 1.125rem, 18px);
  background-color: #ffffff;
  border-radius: 12px;
  padding: clamp(15px, 2.1875rem, 35px);
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-left-nav {
  border-bottom: 1px solid #dcdcdc;
  gap: 15px clamp(30px, 2.5rem, 40px);
  font-size: clamp(16px, 1.375rem, 22px);
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-left-nav a {
  padding-bottom: clamp(15px, 1.5625rem, 25px);
  display: block;
  cursor: pointer;
  position: relative;
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-left-nav a:hover {
  color: #0052d9;
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-left-nav a.uk-active {
  color: #0052d9;
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-left-nav a.uk-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: #0052d9;
}
.content .content-body .product-details .pro-left .pro-left-detail .info-title {
  font-size: clamp(18px, 1.5rem, 24px);
  margin-top: clamp(25px, 3.125rem, 50px);
}
.content .content-body .product-details .pro-left .pro-left-detail .params-info {
  font-size: clamp(16px, 1.125rem, 18px);
}
.content .content-body .product-details .pro-left .pro-left-detail .params-info .info-det {
  font-size: clamp(14px, 1.125rem, 18px);
  margin-top: 10px;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: clamp(25px, 3.125rem, 50px);
}
.content .content-body .product-details .pro-left .pro-left-detail .params-info .info-det .info-det-item {
  padding-top: 10px;
}
.content .content-body .product-details .pro-left .pro-left-detail .params-info .info-det .info-det-item .name {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 130px;
  max-width: 50%;
  text-wrap: nowrap;
}
.content .content-body .product-details .pro-left .pro-left-detail .params-info .info-det .info-det-item .value {
  color: #727375;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-detail {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: clamp(25px, 3.125rem, 50px);
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-detail .pro-details-box {
  margin-top: clamp(20px, 2.5rem, 40px);
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-detail .pro-details-box img {
  width: 100%;
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-recommend .product-ul {
  margin-top: clamp(15px, 2.1875rem, 35px);
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-recommend .product-ul .product-item {
  padding: 8px;
  cursor: pointer;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 12px;
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-recommend .product-ul .product-item .item-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-recommend .product-ul .product-item .item-desc {
  color: #585858;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 10px;
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-recommend .product-ul .product-item .item-line {
  margin-top: 10px;
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-recommend .product-ul .product-item .item-bottom {
  gap: 10px clamp(10px, 1.25rem, 20px);
  color: #585858;
  margin-top: clamp(20px, 2.5rem, 40px);
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-recommend .product-ul .product-item .item-bottom .number {
  font-size: clamp(20px, 1.5rem, 24px);
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-recommend .product-ul .product-item .item-bottom .item-btn {
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 1px #024ffd;
  line-height: 1;
  padding: 8px 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #0052d9;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 639px) {
  .content .content-body .product-details .pro-left .pro-left-detail .pro-recommend .product-ul .product-item .item-bottom .item-btn {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
  }
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-recommend .product-ul .product-item:hover {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.content .content-body .product-details .pro-left .pro-left-detail .pro-recommend .product-ul .product-item:hover .item-btn {
  background-color: #0052d9;
  color: #fff;
}
@media (max-width: 639px) {
  .content .content-body .product-details .pro-left .pro-left-detail {
    margin-top: 10px;
  }
}
@media (max-width: 639px) {
  .content .content-body .product-details {
    margin-top: 10px;
    gap: 10px;
  }
}
.content .content-body .coupon-box {
  padding: clamp(10px, 1.875rem, 30px) 0 clamp(40px, 5rem, 80px);
}
.content .content-body .coupon-box .coupon-ul {
  margin-left: -25px;
}
.content .content-body .coupon-box .coupon-ul > * {
  padding-left: 25px;
  font-size: 13px;
  margin-bottom: 25px;
}
@media (max-width: 959px) {
  .content .content-body .coupon-box .coupon-ul {
    margin-left: -10px;
  }
  .content .content-body .coupon-box .coupon-ul > * {
    padding-left: 10px;
    font-size: 13px;
    margin-bottom: 10px;
  }
}
.content .content-body .coupon-box .coupon-ul .item {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  background-color: #fff;
}
.content .content-body .coupon-box .coupon-ul .item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.content .content-body .coupon-box .coupon-ul .item .item-top {
  padding: clamp(20px, 2.5rem, 40px) 20px;
}
.content .content-body .coupon-box .coupon-ul .item .item-top .item-price {
  font-size: clamp(30px, 3.125rem, 50px);
}
.content .content-body .coupon-box .coupon-ul .item .item-top .item-date {
  margin-top: clamp(15px, 1.25rem, 20px);
}
.content .content-body .coupon-box .coupon-ul .item.blue-bg .item-top {
  color: #fff;
  background-color: #0052d9;
  position: relative;
}
.content .content-body .coupon-box .coupon-ul .item.blue-bg .item-top::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  width: 100%;
  height: 10px;
  -webkit-transform: scale(-180deg);
          transform: scale(-180deg);
  background: radial-gradient(circle, #0052d9, #0052d9 4px, transparent 5px);
  background-size: 10px 10px;
}
.content .content-body .coupon-box .coupon-ul .item.red-bg .item-top {
  background-color: #ff0f23;
  color: #fff;
  position: relative;
}
.content .content-body .coupon-box .coupon-ul .item.red-bg .item-top::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  width: 100%;
  height: 10px;
  -webkit-transform: scale(-180deg);
          transform: scale(-180deg);
  background: radial-gradient(circle, #ff0f23, #ff0f23 4px, transparent 5px);
  background-size: 10px 10px;
}
.content .content-body .coupon-box .coupon-ul .item .item-bottom {
  padding: 20px;
}
.content .content-body .coupon-box .coupon-ul .item .item-bottom .item-btn {
  padding: 12px 20px;
  background-color: #eef0f9;
  border-radius: 5px;
  border: solid 1px #a6abc0;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(15px, 1.5625rem, 25px) auto 0;
}
.content .content-body .source-box {
  padding: clamp(10px, 1.875rem, 30px) 0 clamp(40px, 5rem, 80px);
}
.content .content-body .source-box .source-ul {
  margin-left: -30px;
}
.content .content-body .source-box .source-ul > * {
  padding-left: 30px;
  font-size: 13px;
  margin-bottom: 30px;
}
@media (max-width: 959px) {
  .content .content-body .source-box .source-ul {
    margin-left: -10px;
  }
  .content .content-body .source-box .source-ul > * {
    padding-left: 10px;
    font-size: 13px;
    margin-bottom: 10px;
  }
}
.content .content-body .source-box .source-ul .item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 15px;
  font-size: clamp(14px, 1.125rem, 18px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid transparent;
  cursor: pointer;
  gap: 15px;
}
.content .content-body .source-box .source-ul .item .item-left {
  gap: clamp(15px, 1.5625rem, 25px);
}
.content .content-body .source-box .source-ul .item .item-left img {
  width: clamp(60px, 7.5rem, 120px);
  height: clamp(60px, 7.5rem, 120px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.content .content-body .source-box .source-ul .item .item-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
  padding: 10px 20px;
  background-color: #eef0f9;
  border-radius: 6px;
  border: solid 1px #a6abc0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.content .content-body .source-box .source-ul .item:hover {
  background-color: #ffffff;
  -webkit-box-shadow: 3px 4px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 4px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  border: solid 1px #0052d9;
}
.content .content-body .source-box .source-ul .item:hover .item-btn {
  background-color: #0052d9;
  color: #fff;
  border-color: #0052d9;
}
@media (max-width: 639px) {
  .content .content-body .source-box .source-ul .item .item-btn-inner {
    width: 100%;
  }
}
.content .content-body .source-box .source-pagination {
  margin-top: clamp(20px, 2.5rem, 40px);
}
.content .content-body .source-box .source-pagination .uk-pagination > * > a {
  border-radius: 100px;
}
.content .content-body .bom-box {
  padding: clamp(10px, 1.875rem, 30px) 0 clamp(40px, 5rem, 80px);
}
.content .content-body .bom-box .bg {
  width: 100%;
  position: relative;
  z-index: 0;
}
.content .content-body .bom-box .upload-box {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  max-width: 1040px;
  margin: -150px auto 0;
  max-width: 95%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 12px;
  padding: clamp(20px, 2.5rem, 40px) clamp(20px, 7.5rem, 120px);
  font-size: clamp(16px, 1.25rem, 20px);
}
@media (max-width: 1199px) {
  .content .content-body .bom-box .upload-box {
    margin-top: -120px;
  }
}
@media (max-width: 959px) {
  .content .content-body .bom-box .upload-box {
    margin-top: -70px;
  }
}
@media (max-width: 639px) {
  .content .content-body .bom-box .upload-box {
    margin-top: -40px;
  }
}
.content .content-body .bom-box .upload-box .upload-nav {
  font-size: clamp(16px, 1.5rem, 24px);
}
.content .content-body .bom-box .upload-box .upload-nav li.uk-active a {
  background-color: #0052d9;
  color: #fff;
  border-color: #0052d9;
}
.content .content-body .bom-box .upload-box .upload-nav li a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: block;
  background-color: #ffffff;
  border-radius: 12px 12px 0 0;
  border: solid 1px #b2b6c8;
  padding: clamp(15px, 1.5625rem, 25px) clamp(15px, 2.5rem, 40px);
  border-bottom: none;
}
.content .content-body .bom-box .upload-box .layui-upload-drag {
  background-color: #eef0f9;
  border-radius: 12px;
  border: none;
  color: #000000;
  font-size: clamp(15px, 1.25rem, 20px);
  padding: clamp(40px, 5rem, 80px) clamp(20px, 2.5rem, 40px);
}
.content .content-body .bom-box .upload-box .layui-upload-drag .upload-btn {
  color: #fff;
  margin: clamp(20px, 3.125rem, 50px) auto 0;
  font-size: clamp(16px, 1.5rem, 24px);
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  gap: 10px;
  background-color: #0052d9;
  border-radius: 12px;
  max-width: 100%;
  padding: clamp(15px, 1.25rem, 20px) clamp(20px, 4.375rem, 70px);
}
.content .content-body .bom-box .upload-box .layui-upload-drag .upload-btn:hover {
  opacity: 0.8;
}
.content .content-body .bom-box .upload-box .layui-upload-drag .upload-btn img {
  width: clamp(20px, 1.875rem, 30px);
}
.content .content-body .bom-box .up-desc {
  margin-top: clamp(15px, 1.5625rem, 25px);
  color: #727375;
  font-size: clamp(14px, 1.125rem, 18px);
}
.content .content-body .bom-box .download-btn {
  cursor: pointer;
  font-size: clamp(14px, 1.125rem, 18px);
  margin-top: clamp(15px, 1.5625rem, 25px);
  gap: 10px;
}
.content .content-body .bom-box .download-btn:hover {
  color: #0052d9;
}
.content .content-body .bom-box .download-btn img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.content .content-body .component-box {
  padding: clamp(10px, 1.875rem, 30px) 0 clamp(40px, 5rem, 80px);
}

.modal-form .uk-modal-dialog {
  padding: 0;
}
.modal-form .uk-modal-dialog .modal-header {
  padding: 20px 30px;
  background-color: #f5f5f5;
}
.modal-form .uk-modal-dialog .modal-header .title-l {
  font-size: 18px;
}
.modal-form .uk-modal-dialog .modal-header .uk-modal-close-default {
  position: relative;
  top: 0;
  right: 0;
  color: #000;
}
.modal-form .uk-modal-dialog .modal-header .uk-modal-close-default:hover {
  color: #0052d9;
}
.modal-form .uk-modal-dialog .modal-body {
  max-width: 360px;
  margin: 0 auto;
  padding: clamp(20px, 2.5rem, 40px);
}
.modal-form .uk-modal-dialog .modal-body .input-box {
  padding: clamp(15px, 1.25rem, 20px);
  background-color: #f9f9f9;
  border-radius: 6px;
  margin-bottom: clamp(15px, 1.25rem, 20px);
  border: 1px solid #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.modal-form .uk-modal-dialog .modal-body .input-box:focus-within {
  border-color: #0052d9;
}
.modal-form .uk-modal-dialog .modal-body .input-box input {
  width: 100%;
}
.modal-form .uk-modal-dialog .modal-body .input-box button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 15px;
  text-wrap: nowrap;
}
.modal-form .uk-modal-dialog .modal-body .form-btn {
  background-color: #0052d9;
  border-radius: 6px;
  padding: clamp(15px, 1.25rem, 20px);
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 80%;
  margin-left: 10%;
}
.modal-form .uk-modal-dialog .modal-body .form-btn:hover {
  opacity: 0.8;
}
.modal-form.modal-min .uk-modal-dialog {
  width: 540px;
}
.modal-form.modal-max .uk-modal-dialog {
  width: 660px;
}
.modal-form.modal-max .uk-modal-dialog .uk-modal-close-default {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  bottom: auto;
}
.modal-form.modal-max .uk-modal-dialog .modal-form-box {
  padding: clamp(15px, 1.25rem, 20px);
  margin-left: -15px;
}
.modal-form.modal-max .uk-modal-dialog .modal-form-box > * {
  padding-left: 15px;
  margin-bottom: 15px;
  margin-top: 0;
}
.modal-form.modal-max .uk-modal-dialog .modal-form-box input {
  font-size: 14px;
  padding: 0 15px;
  height: 40px;
  border: solid 1px #dcdcdc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.modal-form.modal-max .uk-modal-dialog .modal-form-box input:focus-within {
  border-color: #0052d9;
}
.modal-form.modal-max .uk-modal-dialog .modal-form-box textarea {
  border: solid 1px #dcdcdc;
  padding: 15px;
  font-size: 14px;
  width: 100%;
  resize: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.modal-form.modal-max .uk-modal-dialog .modal-form-box textarea:focus-within {
  border-color: #0052d9;
}
.modal-form.modal-max .uk-modal-dialog .modal-form-box .layui-form-select {
  display: block;
  width: 100%;
}
.modal-form.modal-max .uk-modal-dialog .modal-form-box .form-btn {
  gap: 15px;
}
.modal-form.modal-max .uk-modal-dialog .modal-form-box .form-btn .btn {
  width: 100%;
  height: 40px;
  max-width: 160px;
  font-size: 14px;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #0052d9;
  cursor: pointer;
}
.modal-form.modal-max .uk-modal-dialog .modal-form-box .form-btn .btn.cancel {
  background-color: #434343;
}
.modal-form.modal-max .uk-modal-dialog .modal-form-box .form-btn .btn:hover {
  opacity: 0.8;
}

.header {
  background-color: #fff;
  z-index: 9;
  color: #585858;
  font-size: 14px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.header .drop-inner {
  width: auto;
}
.header .drop-inner .drop-box {
  padding: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.header .drop-inner .drop-box img {
  width: 120px;
}
.header .phone-btn a {
  gap: 5px;
}
.header .header-nav {
  padding: 10px 0;
}
.header .header-nav-btn {
  background-color: #0052d9;
  color: #fff;
  padding: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  text-wrap: nowrap;
}
.header .header-nav-btn:hover {
  opacity: 0.85;
}
.header .uk-container {
  max-width: 1600px;
}
.header .uk-container .header-right {
  gap: 10px clamp(15px, 1.25rem, 20px);
}
.header .uk-container .header-left {
  gap: 10px clamp(15px, 1.25rem, 20px);
}
.header .mobile-btn {
  min-height: 42px;
}

[uk-toggle] {
  cursor: pointer;
}

#offcanvas-nav .uk-offcanvas-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
}
#offcanvas-nav .uk-offcanvas-bar .uk-offcanvas-close {
  position: relative;
  top: 0;
  right: 0;
  color: #0052d9;
}
#offcanvas-nav .uk-offcanvas-bar .uk-offcanvs-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  margin: 20px 0;
  color: #000;
}
#offcanvas-nav .uk-offcanvas-bar .uk-offcanvs-nav a {
  color: inherit;
}
#offcanvas-nav .uk-offcanvas-bar .uk-offcanvs-nav .header-nav {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #f1f1f1;
}
#offcanvas-nav .uk-offcanvas-bar .uk-offcanvs-nav .header-nav:hover {
  color: #0052d9;
}
#offcanvas-nav .uk-offcanvas-bar .uk-offcanvs-nav .header-nav.uk-active {
  color: #0052d9;
}

.drop-header-nav {
  background-color: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#product-off .uk-offcanvas-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 20px;
  background-color: #fff;
}
#product-off .uk-offcanvas-bar * {
  color: #585858;
}
#product-off .uk-offcanvas-bar .uk-offcanvas-close {
  color: inherit;
}
#product-off .uk-offcanvas-bar .canvas-header {
  color: #000;
  padding-bottom: 15px;
}
#product-off .uk-offcanvas-bar .canvas-header .uk-offcanvas-close {
  position: relative;
  top: 0;
  right: 0;
}
#product-off .uk-offcanvas-bar .canvas-header .uk-text-bold {
  color: inherit;
}
#product-off .uk-offcanvas-bar .uk-canvas-body {
  overflow-y: auto;
}
#product-off .uk-offcanvas-bar .uk-canvas-body .layui-icon {
  width: 16px;
  height: 16px;
  border-radius: 100px;
  margin-left: 5px;
  background-color: #eef0f9;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 12px;
  color: #585858;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#product-off .uk-offcanvas-bar .uk-canvas-body .uk-accordion-title {
  padding: 5px 10px;
  border: solid 1px #d0d3e2;
  border-radius: 8px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#product-off .uk-offcanvas-bar .uk-canvas-body .uk-accordion-title a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #666;
}
#product-off .uk-offcanvas-bar .uk-canvas-body .uk-accordion-title a:hover {
  color: #0052d9;
}
#product-off .uk-offcanvas-bar .uk-canvas-body .right-bottom-inner .inner-item {
  font-size: 13px;
  margin-top: 15px;
}
#product-off .uk-offcanvas-bar .uk-canvas-body .right-bottom-inner .inner-item .item-bottom-box {
  margin-top: 10px;
  gap: 8px 15px;
  color: #666;
}
#product-off .uk-offcanvas-bar .uk-canvas-body .right-bottom-inner .item-a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#product-off .uk-offcanvas-bar .uk-canvas-body .right-bottom-inner .item-a:hover {
  color: #0052d9;
}
#product-off .uk-offcanvas-bar .uk-canvas-body .item-title {
  color: #000000;
}
