@charset "utf-8";

/* 设置滚动条的样式 */
body::-webkit-scrollbar {
  width: 10px;
}

/* 滚动槽 */
body::-webkit-scrollbar-track {
  background-color: #333;
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
}

/* 滚动条滑块 */
body::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: rgba(203, 203, 203, 1.00);
}

body::-webkit-scrollbar-thumb:hover {
  background: #d32f2f;
}

/* 非激活窗口 */
body::-webkit-scrollbar-thumb:window-inactive {
  background: #d32f2f;
}

/* 禁用页面滚动 手机侧边菜单用 */
.body-no-scroll {
  overflow: hidden;
  /* 禁止页面滚动 */
  height: 100%;
  /* 防止页面内容溢出 */
}

/* swiper */
:root {
  --swiper-pagination-color: #d32f2f;
  --swiper-pagination-bullet-inactive-color: #ccc;
  --swiper-pagination-bullet-inactive-opacity: 1;
}

.details-img {
  position: relative;
  display: inline-block;
}

.cert-icons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
}

.cert-icons img {
  width: 32px; /* 图标大小可调整 */
  height: auto;
}

/* 毛玻璃 */
.layer-glass {
  width: 5rem;
  background-color: rgba(0, 0, 0, 0.50);
  border-radius: 5px;
  line-height: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 0px;
  box-shadow: 0 10px 10px rgba(51, 51, 51, 0.50);
  -webkit-box-shadow: 0 10px 10px rgba(51, 51, 51, 0.50);
  margin-bottom: 0px;
}

/* 手机视图导航栏菜单图标 */
.navIco {
  width: 0.35rem;
  /* 宽度 */
  height: 0.22rem;
  /* 高度 */
  margin: auto;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

.navIco span {
  display: block;
  position: absolute;
  height: 2px;
  /* 线高 */
  width: 100%;
  background: #d32f2f;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.navIco span:nth-child(1) {
  top: 0;
}

.navIco span:nth-child(2),
.navIco span:nth-child(3) {
  top: calc(50% - 0.5px);
}

.navIco span:nth-child(4) {
  top: calc(100% - 1px);
}

.navIco.open span:nth-child(1) {
  top: 50%;
  width: 0%;
  left: 50%;
}

.navIco.open span:nth-child(2) {
  transform: rotate(45deg);
}

.navIco.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.navIco.open span:nth-child(4) {
  top: 50%;
  width: 0%;
  left: 50%;
}

/* flex垂直居中 */
.vertical-center {
  display: flex;
  align-items: center;
}

/* flex水平居中 */
.horizontal-center {
  display: flex;
  justify-content: center;
}

/* AI客服按钮及窗口 */
#dify-chatbot-bubble-button {
  z-index: 2147483647 !important;
  background-color: #d32f2f !important;
  pointer-events: auto !important;
  box-shadow: 0 0 10px #444444 !important;
  right: 1.2rem !important;
  bottom: 1rem !important;
  width: 45px !important;
  height: 45px !important;
  transition: all 0.3s;
}

#dify-chatbot-bubble-button:hover {
  box-shadow: 0 0 15px #000000 !important;
}

#dify-chatbot-bubble-window {
  z-index: 2147483647 !important;
  position: fixed !important;
  pointer-events: auto !important;
  height: 600px !important;
  width: 400px !important;
  bottom: 1rem !important;
  top: unset !important;
}

/* 产品详情页面 */
.automotive .details-img {
  box-shadow: 0 0 10px rgb(226, 226, 226);
  margin: 1% 2% 1%;
  float: left;
  width: 40%;
  max-width: 400px;
}

.automotive .details-info {
  width: 50%;
  font-size: 0.2rem;
  float: right;
  line-height: 0.47rem;
}

.automotive .details-info .cret {
  display: flex;
  align-items: center;
}

.automotive .details-info svg {
  height: 0.3rem;
  padding: 0 4px 0 4px;
}

.product-img {
  position: relative;
  display: inline-block;
}

.product-img img {
  display: block;
  width: 100%;
  height: auto;
}

.cert-icons {
  position: absolute;
  top: 3.7%;
  right: 3%;
  display: flex;
  z-index: 2;
  height: 6%;
  width: 15%;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
  user-select: none;
}

.cert-icons img {
  pointer-events: none;
  height: 100%;
}

.related-products{
  width: 100%;
  padding-top: 2vw;
}

.related-products {
  /* 修改swiper分页点颜色 */
  --swiper-pagination-color: #d32f2f;
  --swiper-pagination-bullet-inactive-color: #888;
  --swiper-pagination-bullet-inactive-opacity: 1;
}

.related-products .product-img figure {
  background: none;
  display: block;
  line-height: normal;
  overflow: hidden;
  position: relative;
  border: 1px #cecece solid;
  margin: 0;
}

.related-products .product-img figure img {
  display: block;
  width: 100%;
  height: auto;
  transition: 424ms linear;
}

.related-products .product-img figcaption {
  height: auto;
  display: block;
  color: #5d5d5d;
  font-size: 14px;
  line-height: normal;
  margin: 10px 0 10px;
  transition: 350ms;
  text-align: center;
}

.related-products .product-img figure mark {
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: rgba(0, 117, 207, 0.2);
  background: #d32f2f33;
  filter: alpha(opacity=20);
  z-index: 20;
  opacity: 0;
  transform: skewX(45deg);
  visibility: hidden;
  transition: 360ms;
}

.related-products .product-img figure mark b {
  display: block;
  width: 46px;
  height: 46px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -23px;
  margin-top: -23px;
  z-index: 30;
}

.related-products .product-img figure mark b:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #d32f2f;
  position: absolute;
  left: 0;
  top: 23px;
  ;
  -webkit-transform: translateX(-200px);
  -moz-transform: translateX(-200px);
  transform: translateX(-200px)
}

.related-products .product-img figure mark b:after {
  content: "";
  width: 1px;
  height: 100%;
  background: #d32f2f;
  position: absolute;
  left: 23px;
  top: 0;
  -webkit-transform: translateY(-200px);
  -moz-transform: translateY(-200px);
  transform: translateY(-200px);
}

.related-products .product-img figure mark:before {
  content: "";
  width: 100%;
  height: 0%;
  border-left: 3px solid #d32f2f;
  border-right: 3px solid #d32f2f;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  transition: 320ms;
}

.related-products .product-img figure mark:after {
  content: "";
  width: 0%;
  height: 100%;
  border-top: 3px solid #d32f2f;
  border-bottom: 3px solid #d32f2f;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  transition: 320ms;
}

.related-products .product-img:hover figure mark {
  opacity: 1;
  transform: skewX(0);
  visibility: visible;
}

.related-products .product-img:hover figure mark:before {
  height: 100%;
  transition: 330ms 200ms;
}

.related-products .product-img:hover figure mark:after {
  width: 100%;
  transition: 330ms 200ms;
}

.related-products .product-img:hover figure img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  transform: scale(1.05);
}

.related-products .product-img:hover figure mark b:before {
  transition: 355ms 180ms;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
}

.related-products .product-img:hover figure mark b:after {
  transition: 355ms 240ms;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}

.related-products .product-img:hover figcaption {
  color: #d32f2f;
}

.related-products .swiper-pagination{
  position: static;
}

.productlineup {
  width: 100%;
  padding-top: 2vw;
}

.productlineup .txt1{
  font-size: 0.14rem;
}

.title3 {
  font-size: 0.2rem;
  color: #d32f2f;
  font-family: medium;
  text-transform: uppercase;
  font-weight: bold;
  padding-bottom: 10px;
}

.dt-layout-full {
  box-shadow: 0 0 3px rgb(226, 226, 226);
}

table.productlineup-table thead {
  font-family: medium;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}

table.productlineup-table tbody tr {
  transition: all 0.3s;
}

table.productlineup-table tbody tr:hover {
  background-color: #FFEBEE;
  color: #000000;
}

table.productlineup-table th:first-child,
table.productlineup-table td:first-child{
  min-width: 100px;
}

table.productlineup-table th,
table.productlineup-table td {
  padding: 10px 12px;
  border: none;
  text-align: left;
  min-width: 80px;
}

.productinfo {
  float: left;
  width: 45%;
  min-width: 400px;
  padding: 2vw 5% 0 0;
}

table.competitor-table {
  width: 100%;
  border-collapse: collapse;
}

table.competitor-table thead {
  color: #333;
  font-family: medium;
}

table.competitor-table tbody tr {
  transition: all 0.3s;
}

table.competitor-table tbody tr:hover {
  background-color: #FFEBEE;
  color: #000000;
}

table.competitor-table tbody tr th {
  font-weight: normal;
}

table.competitor-table th:nth-child(1) {
  width: 35%;
}

table.competitor-table th:nth-child(2) {
  width: 65%;
}

.datasheet-preview{
  padding-top: 2vw;
}

.pdfviewer {
  box-shadow: 0 0 10px rgb(226, 226, 226);
  margin-top: 0.1rem;
  width: 100%;
  aspect-ratio: 1/1.414;
  max-height: 800px;
  user-select: none;
}

@supports (-webkit-touch-callout: none) {
  /* 单独设置IOS pdfviewer */
    .pdfviewer {
        height: auto; 
        aspect-ratio: auto;
    }
}

/* .fallback-notice-banner-desktop {
  background-color: #fdecea;
  color: #d32f2f;
  padding: 12px 16px;
  font-size: 14px;
  top: -0.5rem;
  text-align: center;
}

.fallback-notice-banner-phone {
  background-color: #fdecea;
  color: #d32f2f;
  padding: 12px 16px;
  font-size: 14px;
  top: -0.5rem;
  text-align: center;
  display: none;
} */

.jump-target {
  scroll-margin-top: .37rem;
}

/* 返回按钮 */
.back-button {
  width: .7rem;
  height: .7rem;
  background-color: #f3f5fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-left {
  --arrow-size: .2rem;
  --arrow-color: rgb(102, 102, 102);
  --arrow-color-hover: rgba(102, 102, 102, 0.5);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--arrow-size) * 1.8);
  height: var(--arrow-size);
}

.arrow-left .arrow-single,
.arrow-left .arrow-double {
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  width: calc(var(--arrow-size) * .7071);
  height: calc(var(--arrow-size) * .7071);
  box-sizing: border-box;
  display: inline-block;
  border-top: calc(var(--arrow-size) / 5) solid var(--arrow-color);
  border-left: calc(var(--arrow-size) / 5) solid var(--arrow-color);
  transform-origin: top left;
  transition: left 0.3s cubic-bezier(0, 0, 0.2, 1), opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.arrow-left .arrow-single {
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 2;
}

.arrow-left .arrow-double {
  left: 50%;
  opacity: 0;
  border-color: var(--arrow-color-hover);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.arrow-left:hover .arrow-double {
  left: calc(50% + var(--arrow-size) * 0.25);
  opacity: 1;
}

.arrow-left:hover .arrow-single {
  left: calc(50% - var(--arrow-size) * 0.25);
}

/* 获取报价页面 */
.quoteform input,
.quoteform textarea,
.quoteform select {
  color: #3f3f3f;
  transition: all .3s;
}

.quoteform input:focus,
.quoteform input:hover,
.quoteform select:focus,
.quoteform select:hover,
.quoteform textarea:focus,
.quoteform textarea:hover {
  border-color: #d32f2f;
  box-shadow: 0px 0px 3px rgb(200, 200, 200);
}

.quotetable {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.quotetable button {
  cursor: pointer;
}

.quotepersontable {
  width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
  gap: 20px;
}

.quoteproducttable {
  width: 50%;
  margin-right: 5%;
}

.quotemessagetable {
  width: 45%;
}

.quoteproduct {
  box-shadow: 0px 0px 5px rgb(200, 200, 200);
  width: 100%;
  font-size: max(14px, 0.15rem);
  border-collapse: collapse;
  margin-bottom: 30px;
}

.quoteproduct input {
  width: 100%;
}

.quoteproduct thead {
  background-color: #e4e4e4;
  color: #170303;
}

.quoteproduct table,
.quoteproduct th,
.quoteproduct td {
  border: 1px solid #a5a5a5;
  padding: 1% 2%;
}

.quoteproduct th:nth-child(1) {
  width: 50%;
}

.quoteproduct th:nth-child(2) {
  width: 31%;
}

.textarea-message {
  padding: 10px;
  border: 1px solid #a5a5a5;
  box-shadow: 0px 0px 5px rgb(200, 200, 200);
  width: calc(100% - 22px);
  resize: vertical;
  min-height: 100px;
  margin-bottom: 30px;
  border-radius: 0;
}

.quotemessagetitle {
  font-weight: bold;
  padding: .1rem 0 .1rem;
  line-height: calc(max(.18rem, 14px) * 1.33);
}

.quotemessage {
  position: relative;
}

.product-input,
.quantity-input {
  height: 32px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #a5a5a5;
  padding: 1% 3%;
  border-radius: 4px;
}

.quote-person-info {
  width: 250px;
  font-weight: bold;
  margin: 0 0 2% 0;
}

.quote-person-info input,
.quote-person-info select {
  height: 32px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #a5a5a5;
  padding: 1% 3%;
  margin-top: 3px;
  border-radius: 4px;
}

.quotesubmitbutton {
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-block;
  color: #353535;
  height: 48px;
  line-height: 48px;
  background: #d32f2f;
  padding: 0 19px;
  font-size: 15px;
  color: #fff;
  transition: all 0.3s;
  border: none;
  box-shadow: 0px 0px 5px rgb(200, 200, 200);
  cursor: pointer;
}

.quotesubmitbutton:hover {
  box-shadow: 0px 0px 5px rgb(0, 0, 0);
}

.quotesubmitbutton-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.privacy a {
  padding: 0 2px;
  color: #0645AD;
}

/* CSS Document */
body {
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  font-family: Arial, "微软雅黑";
  color: #666;
  overflow-x: hidden;
  width: auto;
  height: auto;
}

a {
  color: #666;
  text-decoration: none;
  outline: none;
  transition: all .3s;
}

a:focus {
  outline-style: none;
  -moz-outline-style: none;
}

p {
  font-size: max(14px, 0.13rem);
  color: #6e6e6e;
  line-height: .36rem;
}

img {
  border: 0px;
  vertical-align: middle;
}

a:link {
  text-decoration: none;
  outline: none;
}

a:visited {
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
  color: #d32f2f;
  outline: none;
}

ul,
p,
dl,
dd {
  padding: 0px;
  margin: 0px;
}

li {
  list-style-position: outside;
  list-style-type: none;
}


h2,
h3,
h4,
h5 {
  font-size: 14px;
  padding: 0px;
  margin: 0px;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clear_f {
  clear: both;
  height: 0px;
  padding: 0px;
  margin: 0px;
  display: block;
}

input,
textarea {
  background: transparent;
  padding: 0px;
  font-size: 14px;
  font-family: Arial, "微软雅黑";
  color: #888;
  outline: none;
  border: 0px;
}

em {
  font-style: normal;
}

.btn1 {
  cursor: pointer;
}

.red {
  color: #cb1f18;
}

.wal {
  max-width: 17.0rem;
  margin: 0 auto;
}

.wal2 {
  width: 12.0rem;
  margin: 0px auto;
  padding-top: .5rem;
  position: relative;
}

.w280 {
  width: 2.8rem;
}

.w870 {
  width: 8.7rem;
}

.ico_h {
  display: inline-block;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  user-select: none;
}

.ico_h:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}

.ico_h:hover,
.ico_h:focus,
.ico_h:active {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-animation-name: hover;
  animation-name: hover;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.ico_h:hover:before,
.ico_h:focus:before,
.ico_h:active:before {
  opacity: .4;
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-animation-name: hover-shadow;
  animation-name: hover-shadow;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.Phone-Box {
  display: none;
}

/*头部导航*/
.header {
  height: 1.1rem;
  width: 100%;
  position: absolute;
  top: 0px;
  z-index: 15;
  left: 0px;
  transition: all 0.3s ease-out 0s;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}

.header .wal {
  height: 1.1rem;
  position: relative;
}

.header.mini {
  background: #fff;
  z-index: 9999;
  box-shadow: 0 0 10px rgb(100, 100, 100);
}

.sortbar-fixed {
  position: fixed;
  z-index: 9999;
  background: #fff;
}

.sortbar-fixed .nav li a {
  color: #000;
}

.sortbar-fixed .img1 {
  display: none !important;
}

.sortbar-fixed .img2 {
  display: inline-block !important;
}

.header .logo {
  position: absolute;
  left: 0;
  top: 0.25rem;
  display: block;
  overflow: hidden;
}

.header .logo img {
  width: 2.85rem;
}

.header .logo .img1 {
  position: fixed;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, .5));
}

.header .logo .img2 {
  display: none;
}

.header .cert {
  left: 3.4rem;
  top: 0.2rem;
}

.header .cert img {
  width: 0.4rem;
}

.header .topRight {
  position: absolute;
  right: 0px;
  top: 0.36rem;
  height: 0.36rem;
}

.nav {
  position: absolute;
  right: 1.23rem;
  top: 0px;
}

.nav li {
  float: left;
  margin-left: 0.6rem;
}

.nav li a {
  display: block;
  height: 1.1rem;
  line-height: 1.1rem;
  color: #fff;
  position: relative;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, .5));
}

.nav li a:before {
  content: '';
  width: 100%;
  top: 0px;
  height: 0.03rem;
  position: absolute;
  transition: all 0.3s;
}

.nav li a:hover {
  color: #d32f2f;
}

.nav li .aNow1:before {
  background: #d32f2f;
}

.nav.mini a {
  color: #000;
  filter: none;
}

.topSearch {
  position: relative;
  height: 0.36rem;
  width: 0.36rem;
  right: 0.1rem;
}

.topSearch img {
  position: absolute;
  right: 0.15rem;
  top: 0.11rem;
}

.topSearch .img1 {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, .5));
}

.topSearch .img2 {
  display: none;
}

.topSearch.mini .img1 {
  display: none;
}

.topSearch.mini .img2 {
  display: inline-block;
}

.topSearch input {
  position: absolute;
  right: 0;
  display: none;
  padding: 0 0.15rem;
  height: 0.36rem;
  line-height: 0.36rem;
  background: #f5f5f5;
  -moz-border-radius: 0.24rem;
  border-radius: 0.24rem;
  box-shadow: 0px 0px 14px #ddd;
  width: 1.5rem;
  font-size: 10.15rem;
}

.header .lan {
  top: 0.11rem;
  position: relative;
  height: 0.36rem;
  width: 0.36rem;
}

.header .lan img {
  position: absolute;
}

.header .lan .img1 {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, .5));
}

.header .lan .img2 {
  display: none;
}

.header.mini .lan img {
  display: none;
}

.header.mini .lan .img1 {
  display: inline-block;
}

.headDiv {
  height: 1.0rem;
  position: relative;
  z-index: 15;
  background: #fff;
}

.headDiv .logo {
  position: absolute;
  left: 0.2rem;
  top: 0.35rem;
}

.headDiv .logo img {
  width: 2.08rem;
}

.headDiv .topRight {
  position: absolute;
  right: 0.24rem;
  height: 1rem;
}

.headDiv .topRight li {
  float: left;
  width: 0.54rem;
  height: 1.0rem;
}

.headDiv .topRight li a {
  display: block;
  height: 1.0rem;
  line-height: 1.0rem;
}

.headDiv .topRight li img {
  width: 0.25rem;
}

.header .lan .list {
  position: absolute;
  top: 0.35rem;
  right: -0.2rem;
  display: none;
  width: 1.14rem;
  background: #fff;
  height: .8rem;
}

.header .lan .list li {
  font-size: 0.14rem;
  line-height: 0.36rem;
  padding-left: 0.17rem;
}

.header .lan .list li a {
  display: block;
  color: #a4a5a5;
}

.header .lan .list li a:hover {
  font-weight: bold;
  color: #d32f2f;
}

.sNav {
  display: none;
  position: fixed;
  z-index: 18;
  width: 100%;
  background: #f8f8f8 url(https://resource.selittel.com/images/sNavBg.jpg) center no-repeat;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  left: 0px;
  top: 1.1rem;
  box-shadow: 0 0 5px rgb(200, 200, 200);
  user-select: none;
}

.sNav .wal2{
  width: 12.0rem;
  margin: 0px auto;
  padding-top: 0;
  position: relative;
}

.sNav .midDiv {
  padding-left: 0.7rem;
  width: 4.1rem;
  height: 210px;
}

.sNav .msg {
  font-size: max(0.24rem, 20px);
  color: #000;
  padding-top: 0.42rem;
  line-height: max(0.28rem, 24px);
}

.sNav .wen {
  font-size: max(0.18rem, 12px);
  color: #dbdada;
  padding: 0.15rem 0 0.25rem;
}

.sNav .list {
  padding-top: 0.1rem;
  position: relative;
  left: 3rem;
}

.sNav .list ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 3rem;
}

.sNav .list li {
  height: max(0.35rem, 25px);
  line-height: 0.35rem;
  font-size: max(0.14rem, 12px);
  margin-bottom: 0.1rem;
  padding-right: 0.5rem;
}

.sNav .list li a {
  padding-left: 0.16rem;
  display: block;
  position: relative;
  color: #4f4f4f;
}

.sNav .list li a:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  background: #dbdbdb;
  transition: all 0.3s;
}

.sNav .list li a:hover {
  color: #d32f2f;
}

.sNav .list li a:hover:before {
  background: #d32f2f;
}

/*导航菜单触发*/
.navLayer {
  overflow-x: auto;
  height: 100%;
  overflow: hidden;
  position: fixed;
  z-index: 22;
  right: -100%;
  top: 0px;
  position: fixed;
  right: -100%;
  /* 初始状态在屏幕外 */
  width: 0;
  /* 初始宽度为 0 */
  display: block;
  /* 确保菜单始终可见（但在屏幕外） */
}

.navLayer .bg {
  overflow-x: auto;
  position: relative;
  background: #fff;
  height: 100%;
  width: 100%;
}

.navLayer .logo {
  position: absolute;
  left: 0.2rem;
  top: 0.35rem;
}

.navLayer .logo img {
  width: 2.08rem;
}

.sideNav {
  padding: 1.15rem 0.2rem 0.5rem;
}

.subNav {
  cursor: pointer;
  display: block;
  height: 1rem;
  line-height: 1rem;
  position: relative;
  font-size: 0.34rem;
  border-bottom: #eee solid 1px;
}

.subNav1 {
  font-weight: bold;
}

.plusminus {
  position: absolute;
  float: right;
  right: 20px;
  width: 13px;
  height: 13px;
  cursor: pointer;

  &.active {
    &:before {
      transform: translatey(-50%) rotate(-180deg);
      opacity: 0;
    }

    &:after {
      transform: translatey(-50%) rotate(0);
    }
  }

  &:before,
  &:after {
    content: "";
    display: block;
    background-color: #d32f2f;
    position: absolute;
    top: 50%;
    left: 0;
    transition: .35s;
    width: 100%;
    height: 3px;
  }

  &:before {
    transform: translatey(-50%);
  }

  &:after {
    transform: translatey(-50%) rotate(90deg);
  }

}

.subNav:before {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1px;
  background: #d32f2f;
  position: absolute;
  left: 0px;
  bottom: -1px;
}

.subNav .name {
  position: relative;
}

.subNav a {
  color: #706f6d;
  display: block;
}

.navContent {
  display: none;
}

.navContent a {
  display: block;
  height: 1.0rem;
  line-height: 1.0rem;
  color: #666;
  font-size: 0.28rem;
  border-bottom: #eee solid 1px;
}

.searchLayerTel {
  display: none;
  z-index: 22;
  top: 1.0rem;
  left: 0px;
  width: 100%;
  position: fixed;
}

.searchLayerTel .box {
  padding: 0.3rem 0.36rem;
}

.searchLayerTel .box .form {
  padding-right: 1.3rem;
  position: relative;
}

.searchLayerTel .form .input1 {
  width: 100%;
  background: #fff;
  border-top-left-radius: 8px;
  -moz-border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  -moz-border-bottom-left-radius: 8px;
  height: 0.8rem;
  line-height: 0.8rem;
  text-indent: 0.2rem;
  font-size: 0.24rem;
}

.searchLayerTel .form .btn1 {
  border-top-right-radius: 8px;
  -moz-border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  -moz-border-bottom-right-radius: 8px;
  position: absolute;
  right: 0px;
  top: 0px;
  background: #d32f2f;
  text-align: center;
  width: 1.3rem;
  height: 0.8rem;
  cursor: pointer;
  color: #fff;
  font-size: 0.28rem;
}

.pageBg {
  position: fixed;
  z-index: 11;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.8);
  left: 0px;
  top: 0px;
}

.footDiv {
  visibility: hidden;
  border-top: 3px solid #f70502;
  background: #721111 url(https://resource.selittel.com/images/map.3a2479d1.png) center no-repeat;
  padding: 0.95rem 0 .2rem 0;
}

.footDiv .bigBox {
  padding: 0 0.7rem;
}

.footDiv .leftDiv {
  width: 2.8rem;
  user-select: none;
}

.footDiv .leftDiv li {
  font-size: max(0.18rem, 14px);
  font-weight: bold;
}

.footDiv .leftDiv li a {
  display: block;
  color: #fff;
  padding-bottom: 0.32rem;
}

.footDiv .leftDiv li a:hover {
  color: #f70401;
}

.footNav {
  width: 9.6rem;
}

.footNav li {
  float: left;
  width: 1.98rem;
  user-select: none;
}

.footNav li:last-child {
  width: auto;
}

.footNav li h2 {
  font-size: max(0.18rem, 14px);
  color: #fff;
  padding-bottom: 0.28rem;
}

.footNav dd {
  line-height: max(0.3rem, 22px);
  font-size: max(0.14rem, 12px);
}

.footNav dd a {
  color: #fff;
}

.footNav dd a:hover {
  color: #f70502;
}

.footDiv .rightDiv {
  width: 3.2rem;
}

.footDiv .ewm {
  text-align: right;
  user-select: none;
}

.footDiv .ewm img {
  box-shadow: 0 0 20px #ddd;
  width: 100px;
}

.footDiv .share {
  padding-top: 0.3rem;
}

.footDiv .share li {
  float: left;
  margin-left: 0.15rem;
}

.footDiv .share li img {
  width: 0.35rem;
}

.footDiv .share li .img1 {
  display: none;
}

.footDiv .share li:hover img {
  display: none;
}

.footDiv .share li:hover .img1 {
  display: inline-block;
}

.footDiv .tel {
  font-size: max(0.3rem, 20px);
  color: #fff;
  font-weight: bold;
  padding: 0.3rem 0 .1rem;
}

.footDiv .address {
  color: #fff;
  font-size: max(0.14rem, 12px);
}

.footDiv .msg {
  font-size: 12px;
  color: #b8b8b8;
  padding-top: 0.26rem;
  text-align: right;
  text-transform: uppercase;
}

.footDiv a {
  color: #fff;
}

.footDivTel {
  border-top: 3px solid #f70502;
  background: #721111 url(https://resource.selittel.com/images/map.3a2479d1.png) center no-repeat;
  padding: 0.7rem 0.2rem 0.6rem;
}

.footDivTel .txt1 {
  font-weight: bold;
  color: #fff;
  font-size: 0.36rem;
  text-align: center;
  padding-bottom: 0.1rem;
}

.footDivTel .txt2 {
  font-size: 0.24rem;
  color: #bdbcbc;
  text-align: center;
  height: 0.5rem;
  position: relative;
}

.footDivTel .txt2:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -0.08rem;
  width: 0.16rem;
  height: 1px;
  background: #d32f2f;
  bottom: 0;
}

.footDivTel .tel {
  color: #fff;
  text-align: center;
  font-size: 0.48rem;
  font-weight: bold;
  padding: 0.15rem 0 0.1rem;
}

.footDivTel .address {
  text-align: center;
  color: #fff;
  font-size: 0.24rem;
  padding-bottom: 0.25rem;
}

.footDivTel .ewm {
  margin: 0 auto;
  width: 1.33rem;
}

.footDivTel .ewm img {
  width: 1.33rem;
}

.footDivTel .share {
  text-align: center;
  padding: 0.28rem 0;
}

.footDivTel .share li {
  display: inline-block;
  margin: 0 0.08rem;
}

.footDivTel .share li img {
  width: 0.35rem;
}

.footDivTel .share li .img1 {
  display: none;
}

.footDivTel .share li:hover img {
  display: none;
}

.footDivTel .share li:hover .img1 {
  display: inline-block;
}

.footDivTel .msg {
  font-size: 0.24rem;
  line-height: 0.48rem;
  color: #fff;
  padding-top: 0.05rem;
  text-align: center;
  text-transform: uppercase;
}

.footDivTel .msg a {
  color: #b8b8b8;
}

.banquan {
  text-align: center;
  font-size: max(0.16rem, 13px);
  border-top: 1px solid rgba(255, 255, 255, .5);
  margin-top: .2rem;
  padding: .2rem 0 0rem 0;
}

.pageBanner {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/656;
  max-height: 550px;
  user-select: none;
}

.pageBanner .imgDiv img {
  position: fixed;
  width: 100%;
  max-height: 656px;
  object-fit: cover;
  z-index: -100;
}

.pageBanner .botDiv {
  position: absolute;
  left: 50%;
  margin-left: -7.0rem;
  bottom: 0px;
  width: 14.0rem;
  height: 0.7rem;
  background: #fff;
}

.pageBanner .botDiv:after {
  content: '';
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 0.03rem;
  background: #efefef;
}

.pageNav {
  height: 0.7rem;
  padding-left: 0.5rem;
}

.pageNav li {
  float: left;
  margin-right: 0.42rem;
  font-weight: bold;
}

.pageNav li a {
  display: block;
  height: 0.7rem;
  line-height: 0.7rem;
  color: #525252;
  position: relative;
}

.pageNav li a:hover {
  color: #d32f2f;
}

.pageNav li em {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 0.03rem;
  z-index: 2;
  transition: all 0.3s;
}

.pageNav li .aNow em,
.pageNav li a:hover em {
  background: #d32f2f;
}

.pageBanner .rightDiv {
  position: absolute;
  right: 0px;
  top: 0px;
  width: auto;
  height: 0.7rem;
  background: #f3f5fa;
  padding-right: 30px;
}

.pageBanner .rightDiv:after {
  content: '';
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 0.03rem;
  background: #dee8ee;
  z-index: 2;
}

.pageBanner .layer {
  position: fixed;
  left: 0px;
  top: 1.4rem;
  width: 100%;
  z-index: 2;
  text-align: center;
  z-index: -99;
  /* 确保层级比imgDiv高 */
  display: flex;
  justify-content: center;
}

.pageBanner .layer .name {
  margin: 0 auto;
  width: 2.1rem;
  height: 1.28rem;
  background: url(https://resource.selittel.com/images/nimg210Bg.png) center no-repeat;
  background-size: 2.1rem;
  font-size: 0.36rem;
  color: #fff;
  line-height: 1.28rem;
  text-shadow: #00000088 0 0 10px;
}

.pageBanner .layer .nameImg {
  font-weight: bold;
  font-size: .4rem;
  line-height: 0.75rem;
  text-transform: uppercase;
  font-family: Arial Black, Arial;
  color: #d32f2f;
  text-shadow: #00000088 0 0 10px;
  height: 0.76rem;
  padding: 0.12rem 0;
  position: relative;
}

.pageBanner .layer .nameImg img {
  height: 0.47rem;
}

.pageBanner .layer .nameImg:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -0.23rem;
  width: 0.46rem;
  height: 0.04rem;
  background: #d32f2f;
}

.pageNow {
  padding-left: 0.34rem;
  line-height: 0.7rem;
  display: flex;
  align-items: center;
}

.pageNow a {
  color: #666;
  background: url(https://resource.selittel.com/images/nimg5_1.png) left center no-repeat;
  background-size: 0.05rem;
  padding: 0 0.12rem 0 0.19rem;
}

.pageNow a:hover {
  color: #d32f2f;
}

.pageNow em {
  background: url(https://resource.selittel.com/images/nimg5_1.png) left center no-repeat;
  background-size: 0.05rem;
  padding-left: 0.13rem;
  color: #666;
}

.pageNow img {
  padding-right: 0.12rem;
  position: relative;
}

.pageBannerTel {
  display: none;
  position: relative;
  z-index: 4;
}

.pageBannerTel .imgDiv img {
  width: 100%;
}

.pageBannerTel .txt {
  text-align: center;
  position: absolute;
  left: 50%;
  margin-left: -1.05rem;
  top: 50%;
  margin-top: -0.64rem;
  width: 2.1rem;
  height: 1.28rem;
  background: url(https://resource.selittel.com/images/nimg210Bg.png) center no-repeat;
  background-size: 2.1rem;
  font-size: 0.36rem;
  color: #fff;
  line-height: 1.28rem;
  background-color: rgba(0, 0, 0, 0.50);
  box-shadow: 0 10px 10px rgba(51, 51, 51, 0.50);
  -webkit-box-shadow: 0 10px 10px rgba(51, 51, 51, 0.50);
}

.pageBox {
  position: relative;
  background-color: #f7f7f7;
}

.grayBg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 4.2rem;
  background: #f7f7f7;
  z-index: 1;
}

.treflip {
  width: 14rem;
  background: #fff;
  padding: 0 0 0.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.treflip2 {
  padding: 0.84rem 0 0;
}

.pageTitle {
  padding-bottom: 0.3rem;
}

.pageTitle .title1 {
  font-size: max(0.36rem, 30px);
  color: #d32f2f;
  text-transform: uppercase;
}

.pageTitle .title2 {
  font-size: max(0.22rem, 18px);
  color: #3f3f3f;
  font-weight: bold;
}

.pageTitleTel {
  height: 0.98rem;
  background: #d32f2f;
  position: relative;
  display: none;
  box-shadow: 0 1px 5px rgba(35, 25, 25, 0.2);
  z-index: 3;
}

.sideTitleTel {
  width: 100%;
  height: 0.98rem;
  position: absolute;
  left: 0px;
  top: 0px;
}

.sideTitleTel .con {
  font-size: 0.3rem;
  height: 0.98rem;
  line-height: 0.98rem;
  position: relative;
  padding-right: 10px;
}

.sideTitleTel .con a {
  color: #fff;
  display: block;
  height: 0.98rem;
  padding-left: 0.2rem;
  background: url(https://resource.selittel.com/images/limg65_1.png) right center no-repeat;
  background-size: 0.65rem;
}

.sideTitleTel .con p {
  color: #fff;
  display: block;
  height: 0.98rem;
  padding-left: 0.2rem;
}

.sideTitleTel .con.on a {
  background: url(https://resource.selittel.com/images/limg65_1on.png) right center no-repeat;
  background-size: 0.65rem;
}

.sideTitleNav {
  position: absolute;
  top: 0.98rem;
  z-index: 10;
  width: 100%;
  background: #fff;
  display: none;
  -moz-box-shadow: 0 1px 5px rgba(35, 25, 25, 0.2);
  -webkit-box-shadow: 0 1px 5px rgba(35, 25, 25, 0.2);
  box-shadow: 0 1px 5px rgba(35, 25, 25, 0.2);
}

.sideTitleNav li {
  font-size: 0.26rem;
  height: 0.82rem;
  border-bottom: #d7d7d7 solid 1px;
}

.sideTitleNav li a {
  display: block;
  height: 0.82rem;
  line-height: 0.82rem;
  padding-left: 0.4rem;
  color: #666;
}

.sideTitleTel .con em {
  display: block;
  color: #fff;
  padding-left: 0.4rem;
}

.headDiv .logo {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

/*分页*/
.pageNum.pageNum-top {
  text-align: center;
  float: right;
  padding-top: 0.1rem;
  padding-bottom: 0.2rem;
}

.pageNum {
  text-align: center;
}

.pageNum a,
.pageNum span {
  margin: 0 10px;
  display: inline-block;
  color: #353535;
  height: 48px;
  line-height: 48px;
  background: #eee;
  padding: 0 19px;
  font-size: 13px;
  transition: all 0.3s;
}

.pageNum .disabled {
  background: #eee;
  color: #999;
  cursor: not-allowed;
}

.pageNum a:hover,
.pageNum .aNow {
  background: #c91d24;
  color: #FFF;
}

.pageNum a:active {
  transform: scale(0.95);
}

.topA {
  z-index: 99;
  position: fixed;
  right: 1.2rem;
  bottom: 2rem;
  display: none;
  width: 45px;
  height: 45px;
  background: #e62129;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 10px #444444;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s;
  transform: scale(0.7);
  transform-origin: 25%;
  user-select: none;
}

.topA:hover {
  box-shadow: 0 0 15px #000000;
}

.tab li {
  cursor: pointer;
}

#Layer1 {
  position: absolute;
  position: fixed;
  _position: absolute;
  width: 100%;
  z-index: 98;
  top: 0;
  left: 0px;
  background-color: #000;
  display: none;
}

.selectDiv {
  cursor: pointer;
}

.selectDiv span {
  padding-left: 10px;
}

.selectDiv select {
  display: none;
}

/**/
.selectLayer {
  position: absolute;
  z-index: 100;
  display: none;
  background: #FFF;
  border: #bababa solid 1px;
}

.selectLayer li {
  height: 22px;
  line-height: 22px;
  overflow: hidden;
  padding-left: 10px;
  color: #666;
}

@-webkit-keyframes detailsNavList {
  0% {
    opacity: 0;

    -webkit-transform: translateX(70px);
    transform: translateX(70px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
}

@-moz-keyframes detailsNavList {
  0% {
    opacity: 0;
    -moz-transform: translateX(70px);
    transform: translateX(70px);
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
    transform: translateX(0);
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
}

@-o-keyframes detailsNavList {
  0% {
    opacity: 0;
    -o-transform: translateX(70px);
    transform: translateX(70px);
    backface-visibility: hidden;
    transform-style: preserve-3d;
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
    backface-visibility: hidden;
    transform-style: preserve-3d;
  }
}

@keyframes detailsNavList {
  0% {
    opacity: 0;
    -webkit-transform: translateX(70px);
    -moz-transform: translateX(70px);
    -o-transform: translateX(70px);
    transform: translateX(70px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
}

@-webkit-keyframes shieldingEnter {
  0% {
    height: 0;
  }

  100% {
    height: 183px;
  }
}

@-moz-keyframes shieldingEnter {
  0% {
    height: 0;
  }

  100% {
    height: 183px;
  }
}

@-o-keyframes shieldingEnter {
  0% {
    height: 0;
  }

  100% {
    height: 183px;
  }
}

@keyframes shieldingEnter {
  0% {
    height: 0;
  }

  100% {
    height: 183px;
  }
}

.product-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .3rem;
	margin: .2rem 0 .3rem 0;
}

.product-list li {
  width: 100%;
}

.product-list li figure {
  background: none;
  display: block;
  line-height: normal;
  overflow: hidden;
  position: relative;
  border: 1px #cecece solid;
  margin: 0;
}

.product-list li figure img {
  display: block;
  width: 100%;
  height: auto;
  transition: 424ms linear;
}

.product-list li figcaption {
  height: 0.4rem;
  display: block;
  color: #5d5d5d;
  font-size: 14px;
  line-height: normal;
  margin-top: 20px;
  transition: 350ms;
  text-align: center;
}

.product-list li figure mark {
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: rgba(0, 117, 207, 0.2);
  background: #d32f2f33;
  filter: alpha(opacity=20);
  z-index: 20;
  opacity: 0;
  transform: skewX(45deg);
  visibility: hidden;
  transition: 360ms;
}

.product-list li figure mark b {
  display: block;
  width: 46px;
  height: 46px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -23px;
  margin-top: -23px;
  z-index: 30;
}

.product-list li figure mark b:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #d32f2f;
  position: absolute;
  left: 0;
  top: 23px;
  ;
  -webkit-transform: translateX(-200px);
  -moz-transform: translateX(-200px);
  transform: translateX(-200px)
}

.product-list li figure mark b:after {
  content: "";
  width: 1px;
  height: 100%;
  background: #d32f2f;
  position: absolute;
  left: 23px;
  top: 0;
  -webkit-transform: translateY(-200px);
  -moz-transform: translateY(-200px);
  transform: translateY(-200px);
}

.product-list li figure mark:before {
  content: "";
  width: 100%;
  height: 0%;
  border-left: 3px solid #d32f2f;
  border-right: 3px solid #d32f2f;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  transition: 320ms;
}

.product-list li figure mark:after {
  content: "";
  width: 0%;
  height: 100%;
  border-top: 3px solid #d32f2f;
  border-bottom: 3px solid #d32f2f;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  transition: 320ms;
}

.product-list li:hover figure mark {
  opacity: 1;
  transform: skewX(0);
  visibility: visible;
}

.product-list li:hover figure mark:before {
  height: 100%;
  transition: 330ms 200ms;
}

.product-list li:hover figure mark:after {
  width: 100%;
  transition: 330ms 200ms;
}

.product-list li:hover figure img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  transform: scale(1.05);
}

.product-list li:hover figure mark b:before {
  transition: 355ms 180ms;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
}

.product-list li:hover figure mark b:after {
  transition: 355ms 240ms;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}

.product-list li:hover figcaption {
  color: #d32f2f;
}