@charset "UTF-8";

/* CSS reset */
*,
body,
header,
footer,
div,
input,
img,
p,
b,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ul,
span,
a,
article,
nav,
aside,
section,
form,
input,
button {
  margin: 0;
  padding: 0;
  border: none;
  list-style: none;
  text-decoration: none;
  outline: none;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 14px;
  color: #333;
  font-family: "ProductSans", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
a {
  color: #333;
  text-decoration: none;
}

a,
a:hover,
a:visited {
  outline: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}
button {
  border: none;
  background: 0 0;
}
input:focus,
button:focus {
  outline: none;
}

::-webkit-input-placeholder {
  /* color: #ccc */
  color: rgba(193, 51, 52, 0.3);
}

::-moz-placeholder {
  /* color: #ccc */
  color: rgba(193, 51, 52, 0.3);
}

:-ms-input-placeholder {
  /* color: #ccc */
  color: rgba(193, 51, 52, 0.3);
}
textarea::-webkit-input-placeholder {
  /* color: #ccc */
  color: rgba(193, 51, 52, 0.3);
}

textarea::-moz-placeholder {
  color: #ccc;
}

textarea:-ms-input-placeholder {
  color: #ccc;
}
article,
aside,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}
input[type="text"] {
  outline: 0;
  box-shadow: none;
  border: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
table {
  border: 0;
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
}
table td {
  padding: 0;
}
@font-face {
  font-family: "ProductSans";
  font-display: swap;
  src: local("ProductSans"),
    url("../font/ProductSans-Light.otf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "ProductSans";
  font-display: swap;
  src: local("ProductSans"),
    url("../font/ProductSans-Regular.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ProductSans";
  font-display: swap;
  src: local("ProductSans"),
    url("../font/ProductSans-Medium.otf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "ProductSans";
  font-display: swap;
  src: local("ProductSans"),
    url("../font/ProductSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "open-sans";
  font-display: swap;
  src: local("ProductSans"),
    url("../font/open-sans.woff.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "open-sans";
  font-display: swap;
  src: local("ProductSans"),
    url("../font/Open-Sans-Bold.woff.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #222;
}
header {
  padding: 0 16px;
  height: 48px;
}
.header {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: block;
  width: 160px;
  height: 28px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #0c1d31;
  background: url(../images/logo.png) center left no-repeat;
  background-size: 100%;
}
.post-page .logo {
  background: url(../images/post-logo.png) center left no-repeat;
  background-size: 100%;
}
.footer-logo .logo {
  width: 200px;
  height: 26px;
  background: url(../images/post-logo.png) center left no-repeat;
  background-size: 100%;
}
.footer-logo {
  height: 88px;
  background-color: #091f2d;
  text-align: center;
  padding: 0 16px;
}
.footer-logo-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 88px;
}
.logo-top {
  width: 90px;
  height: 88px;
  line-height: 88px;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}
.logo-top .icon-arrow {
  transform: rotate(90deg);
  fill: #fff;
  opacity: 0.5;
}
.disclaimer {
  display: flex;
  align-items: center;
  color: #aaa;
  opacity: 0.6;
  text-transform: uppercase;
}
.disclaimer svg {
  margin-left: 6px;
  padding: 2px;
  fill: #aaa;
  border: 1px solid #aaa;
  border-radius: 50%;
  transform: rotate(-90deg);
}
.post-page .disclaimer {
  color: #fff;
}
footer {
  border-top: solid 1px #eaeaea;
  background: #081c28;
}
.footer-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #333;
}
.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 240px;
  background: url(../images/banner.png) top no-repeat;
  background-size: cover;
}
.banner-tit {
  padding: 16px;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  color: #ffffff;
}
.banner-tit span {
  font-size: 30px;
  font-weight: 400;
}
main {
  padding: 0 16px 32px;
}
.index-main {
  background: #fafafa;
  padding: 0 16px 24px;
}
.product-item {
  margin: 24px 0;
}
.product-item-wrap {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
}
.product-set-item {
  margin: 24px 0 0;
  width: 100%;
  height: 470px;
}
.product-set-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  background: #f9f0e6;
  overflow: hidden;
  border-radius: 8px;
}
.product-set-wrap:hover .product-item-btn {
  border: solid 1px rgba(55, 3, 3, 0);
  color: #fff;
  background: rgba(55, 3, 3, 0.25);
}
.product-set-wrap .link-cover {
  z-index: 3;
}
.product-set-left {
  padding: 32px 24px;
  position: absolute;
  left: 0;
  top: 225px;
  bottom: 0;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.product-set-elec {
  line-height: 18px;
  letter-spacing: 1px;
  color: #7f4a42;
}
.product-set-tit {
  margin: 22px 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #210202;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-set-left .product-item-btn {
  margin: 0 auto;
  width: 200px;
  border: solid 1px rgba(55, 3, 3, 0.25);
  color: rgba(55, 3, 3, 0.5);
}
.product-set-right {
  width: 100%;
  height: 225px;
  position: relative;
  overflow: hidden;
}
.product-set-logo {
  position: absolute;
  max-width: 2000px;
  width: 723px;
  height: 100%;
  right: 0;
  bottom: 0;
}
.link-cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.product-item-l {
  width: 100%;
  height: 225px;
  border-radius: 8px;
  overflow: hidden;
}
.product-item-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.product-item-r {
  padding: 24px 8px 8px;
}
.product-elec {
  margin-bottom: 8px;
  letter-spacing: 1px;
  color: #31c2b3;
  font-weight: 300;
}
.product-item-tit {
  font-size: 20px;
  line-height: 26px;
  color: #333;
}
.product-item-date {
  margin: 14px 0;
  color: #ccc;
}
.product-item-desc {
  margin: 12px 0 17px;
  color: #aaa;
  line-height: 20px;
}
.product-item-tit,
.product-item-desc {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-item-btn {
  display: block;
  height: 44px;
  line-height: 44px;
  font-size: 16px;
  color: #666;
  text-align: center;
  border-radius: 4px;
  border: solid 1px #cccccc;
  text-transform: uppercase;
}
.product-item-wrap:hover .product-item-logo {
  transform: scale(1.1);
  transition: all 0.3s;
}
.product-item-wrap:hover {
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.1);
}
.product-item-wrap:hover .product-item-btn {
  color: #fff;
  border-color: #152a45;
  background-color: #152a45;
}
.nav {
  margin: 24px 0 30px;
}
.main-tit {
  font-size: 30px;
  line-height: 36px;
}
.art-author-wrap {
  margin-top: 12px;
  color: #999;
}
.art-author {
  padding: 0 16px 0 0;
  font-size: 16px;
  font-weight: 500;
  color: #999;
}
.art-date {
  color: #999;
}
.art-main h3,
.art-main h3 a {
  margin-bottom: 17px;
  font-size: 24px;
  color: #222;
  line-height: 28px;
}
.art-main p,
.art-main li,
.art-main a {
  font-family: "open-sans";
  font-size: 18px;
  line-height: 32px;
}
.art-main a,
.art-main h3 a {
  color: #31c2b3;
  font-weight: bold;
}
.art-main a:hover {
  text-decoration: underline;
}
.art-main b {
  font-family: "open-sans";
  font-weight: 700;
  color: #000;
}
.art-main ul li {
  padding-left: 30px;
  background: url(../images/check.svg) no-repeat left 3px;
  background-size: 20px 20px;
}
.art-main ol {
  padding-left: 30px;
}
.art-main ol li {
  list-style: decimal;
}
.art-main ol li img {
  margin-top: 16px;
}
.art-main li p:first-child {
  margin-bottom: 11px;
}
.art-main li:not(:last-child) {
  margin-bottom: 11px;
}
.art-main p,
.art-main ul,
.art-main ol {
  margin-bottom: 20px;
}
.art-main img {
  display: block;
  width: 100%;
  margin: 0 0 24px 0;
}
.art-main video {
  width: 100%;
  margin: 0 0 24px 0;
}
.art-main .offer-btn-link {
  display: block;
  width: 100%;
  margin: 0 0 40px 0;
  padding: 12px 16px;
  text-align: center;
  line-height: 28px;
  color: #fff;
  font-size: 16px;
  background: #31c2b3;
  border-radius: 8px;
}
.offer-btn-link span {
  display: none;
}
.bottom-text {
  position: sticky;
  z-index: 22;
  bottom: 0px;
  width: 100%;
  padding: 16px;
  margin: 8px 0 0;
}
#disclaimer p {
  margin-bottom: 16px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 20px;
}
.contact-link {
  color: #fff;
  height: 30px;
  padding: 0 10px;
  text-align: center;
  line-height: 30px;
  border-radius: 8px;
  background: #31c2b3;
}
.footer-tit {
  padding: 0 16px;
  color: rgba(49, 194, 179, 0.75);
  font-size: 20px;
  line-height: 68px;
}
.footer-b {
  border-top: 1px solid #33465b;
  opacity: 0.5;
  margin: 32px 16px 0;
  padding-bottom: 16px;
}
.footer-wrap {
  display: flex;
  justify-content: center;
  padding: 16px 0;
  margin-left: -16px;
}
.copyright,
.footer-link {
  color: #afbac6;
  line-height: 20px;
}
.footer-link-wrap {
  color: #33465b;
}
.footer-link {
  padding: 0 16px;
}
.copyright {
  text-align: center;
}
.click-link {
  display: block;
  width: 100%;
  padding: 12px 16px;
  line-height: 28px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  background: #31c2b3;
  border-radius: 8px;
}
.post-page {
  background: #0c1d31;
}
.post-page .logo {
  color: #fff;
}
aside {
  margin-top: 40px;
  display: none;
}
.aside-product {
  padding: 24px;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}
.aside-product-tit {
  padding: 16px 0;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.aside-list .aside-product-tit {
  text-align: left;
}
.aside-product-btn {
  display: block;
  margin: 0 8px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  background: #31c2b3;
}
.aside-product:hover .aside-product-btn,
.offer-btn-link:hover {
  background: #14cebb;
}
.aside-tit {
  margin-bottom: 24px;
  font-family: "ProductSans";
  font-weight: 700;
  font-size: 24px;
  color: #0c1d31;
}
.aside-list {
  padding: 20px 32px;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}
.aside-list-item {
  display: flex;
  align-items: center;
}
.aside-list-item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 50%;
  background: #eee;
}
.aside-list-order {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "ProductSans";
  font-size: 16px;
  line-height: 2.25;
  color: #333333;
}
.aside-list-item:hover .aside-list-order,
.aside-list-act .aside-list-order {
  color: #31c2b3;
}
.aside-list-link {
  margin-left: 10px;
  font-size: 14px;
  padding: 4px 6px;
  color: #ccc;
  border-radius: 2px;
  border: solid 1px #eeeeee;
  display: none;
}
.icon-cart {
  margin-right: 2px;
  transform: translateY(1px);
  fill: transparent;
}
.aside-list-item:hover::before,
.aside-list-act::before {
  background-color: #31c2b3;
}
.aside-list-item:hover .icon-cart,
.aside-list-act .icon-cart {
  fill: #ccc;
}
.aside-list-item:hover .aside-list-order,
.aside-list-act .aside-list-order {
  max-width: calc(100% - 83px);
}
.aside-list-item:hover .aside-list-link,
.aside-list-act .aside-list-link {
  visibility: visible;
  display: block;
}
.art-main .offer-btn-link:hover {
  text-decoration: none;
}
.about-nav {
  margin: 48px 0 32px;
  text-align: center;
}
.about-logo {
  max-width: 100%;
  width: 384px;
  height: auto;
}
.about-desc {
  margin: 16px 0 40px;
  font-size: 16px;
  color: #999;
}
.aside-about-list {
  padding: 20px 32px;
  background-color: #ffffff;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}
.aside-about-item {
  padding: 8px 0;
}
.aside-about-order {
  display: flex;
  align-items: flex-start;
  font-family: "ProductSans";
  font-size: 16px;
  line-height: 22px;
  color: #333;
}
.aside-about-order::before {
  content: "";
  display: block;
  flex: 0 0 4px;
  height: 4px !important;
  margin: 7px 10px 0 0;
  border: 2px solid transparent;
  border-radius: 50%;
  background-color: #eeeeee;
}
.aside-about-order:hover,
.aside-about-act .aside-about-order {
  color: #31c2b3;
}
.about-subtit {
  font-size: 20px;
  margin: 0 0 28px 0;
}
.aside-about-order:hover::before,
.aside-about-act .aside-about-order::before {
  border: 2px solid #31c2b3;
  background-color: #31c2b3;
}
#about-mail {
  display: block;
  height: 50px;
  padding: 0 16px;
  font-size: 20px;
  line-height: 50px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #31c2b3;
  border-radius: 8px;
}
@media screen and (max-width: 359px) {
  .footer .logo {
    width: 168px;
  }
}
@media screen and (min-width: 680px) {
  header {
    height: 64px;
  }
  .logo {
    width: 205px;
    height: 28px;
  }
  .banner {
    height: 320px;
  }
  .banner-tit {
    font-size: 48px;
    line-height: 58px;
  }
  .banner-tit span {
    font-size: 40px;
  }
  .product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .product-item {
    width: calc(50% - 12px);
    margin: 24px 0 0;
  }
  .product-item-r {
    padding: 24px 16px 16px;
  }
  #disclaimer {
    text-align: left;
  }
  .art-main .offer-btn-link {
    font-size: 20px;
    font-weight: 700;
  }
  .offer-btn-link span {
    display: inline-block;
  }
  .art-main ol li img {
    margin-top: 24px;
  }
  .footer-b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  .product-set-item {
    height: 340px;
  }
  .product-set-right {
    height: auto;
  }
  .product-set-left {
    top: 0;
    padding: 78px 32px;
    width: 50%;
  }
  .product-set-logo {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product-set-tit {
    font-size: 36px;
    line-height: 40px;
  }
}
@media screen and (min-width: 840px) {
  .main,
  .main-multiple {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .product-list {
    justify-content: flex-start;
    margin-right: -24px;
  }
  .product-set-item {
    padding-right: 24px;
  }
  .product-item {
    width: 33.3%;
    padding-right: 24px;
    /* margin-right: 24px; */
  }
  article,
  .nav {
    width: calc(70% - 32px);
  }
  aside {
    display: block;
    width: 30%;
  }

  .main-tit {
    font-size: 38px;
    line-height: 46px;
  }
  .art-author-wrap {
    font-size: 16px;
  }
  /* .art-main p,.art-main li,.art-main a{
        font-size: 18px;
        line-height: 28px;
    } */
  .art-main p,
  .art-main ul,
  .art-main ol {
    margin-bottom: 28px;
  }
  .art-main h3,
  .art-main h3 a {
    margin-bottom: 25px;
    font-size: 24px;
    line-height: 30px;
  }
  .art-main img,
  .art-main video {
    margin-bottom: 32px;
  }
  .nav {
    margin: 32px 0;
  }
  .aside-product,
  .aside-list,
  .aside-about-list {
    position: sticky;
    top: 32px;
  }
  .bottom-text {
    display: none;
  }
  .art-main .offer-btn-link {
    margin: 0 0 15px 0;
  }
  #list-1 {
    margin-top: -25px;
  }
  .list-tit {
    padding-top: 25px;
  }
}
@media screen and (min-width: 1124px) {
  .main,
  .header,
  .footer,
  .main-multiple,
  .footer-logo-wrap {
    width: 1092px;
    margin: 0 auto;
  }
  article,
  .nav {
    width: 728px;
  }
  aside {
    width: 284px;
  }
  .footer-b {
    margin: 32px 0 0;
  }
  .footer-tit,
  #disclaimer p {
    padding: 0;
  }
}
