@import url(https://css02.v15cdn.com/m532/fonts/iconfont.css);
@import url(https://css02.v15cdn.com/m532/swiper.css);
@import url(https://css02.v15cdn.com/m532/message.css);
@import url(https://css01.v15cdn.com/language.css);
@import url(https://css01.v15cdn.com/toastr.min.css);
:root {
  --color: #004EA2;
  --hovercolor: #F4F4F4;
  --fontcolor: #111827;
  --pcolor:#4B5563;
  --headercolor: #FFFFFF;
  --footercolor: #111111;
  --introcolor: #555555;
  --fontsize12: 12px;
  --fontsize13: 13px;
  --fontsize14: 14px;
  --fontsize15: 15px;
  --fontsize16: 16px;
  --fontsize17: 17px;
  --fontsize18: 18px;
  --fontsize20: 20px;
  --fontsize22: 22px;
  --fontsize24: 24px;
  --fontsize26: 26px;
  --fontsize28: 28px;
  --fontsize30: 30px;
  --hometitlefont: 40px;
  --borderradius: 3px;
  --fontbold3: 300;
  --fontbold4: 400;
  --fontbold5: 500;
  --fontbold6: 600;
  --fontbold7: 700;
  --fontbold8: 800;
  --fontbold9: 900;
  --fontfamily:"Poppins", "Oswald", "Noto Sans", "Montserrat", arial, sans-serif;
}

@media (max-width: 1366px) {
  :root {
    --hometitlefont: 30px;
  }
}
@media (max-width: 768px) {
  :root {
    --hometitlefont: 24px ;
  }
}
*,
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
table,
th,
td,
ul,
li,
dl,
dt,
dd,
div,
p {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html {
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0px auto;
  max-width: 1920px;
  line-height: 1.5;
  color: var(--fontcolor);
  font-size: var(--fontsize18);
  overflow-x: hidden;
  font-family: var(--fontfamily);
  font-weight: 500;
}
@media (max-width: 1366px) {
  body {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  text-transform: capitalize;
  font-weight: var(--fontbold6);
}

p {
  color: var(--pcolor);
}

img {
  border: 0px;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

img.lazy {
  display: inline-block;
  opacity: 0;
}

img.lazy,
img.tst {
  -webkit-transition: opacity 0.6s, -webkit-transform 0.3s ease;
  transition: opacity 0.6s, -webkit-transform 0.3s ease;
  transition: opacity 0.6s, transform 0.3s ease;
  transition: opacity 0.6s, transform 0.3s ease, -webkit-transform 0.3s ease;
}

img.loaded {
  opacity: 1;
}

img:not([src]) {
  position: absolute;
  visibility: hidden;
}

li,
ol,
ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

iframe,
video {
  max-width: 100%;
  outline: 0;
  border: none;
  vertical-align: bottom;
}

h4.cate-h4,
h4.pro-h4 {
  clear: both;
  font-weight: var(--fontbold5);
}

ul.cate-ulli,
ul.pro-ulli {
  clear: both;
  padding: 10px 0px 10px 20px;
}

ul.cate-ulli li,
ul.pro-ulli li {
  list-style-type: disc;
  line-height: 175%;
}

button {
  outline: 0;
  border: none;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(122, 122, 122, 0.1);
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: #D7D7D7;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar {
  width: 8px;
  height: 1px;
}

.hidden {
  overflow: hidden;
}

.img-wrap {
  position: relative;
  overflow: hidden;
}
.img-wrap img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
.img-wrap img:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.lazy-load {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-top-color: transparent;
  border-bottom-color: transparent;
  -webkit-animation: arrow-circle infinite 0.75s linear;
          animation: arrow-circle infinite 0.75s linear;
}

.lazy-wrap {
  position: relative;
  display: block;
  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;
}

.lazy-wrap::after {
  display: block;
  padding-bottom: 50%;
  content: "";
}

.lazy-wrap.lazy-loaded .lazy-load {
  display: none;
  -webkit-animation: none;
  animation: none;
}

.lazy-wrap.lazy-loaded::after {
  padding-bottom: 0px;
}

.lazy-load:after,
.lazy-load:before {
  position: absolute;
  top: 14px;
  left: -1px;
  border-top: 3px solid var(--color);
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  content: "";
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.lazy-load:after {
  top: -1px;
  left: 10px;
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
}

@-webkit-keyframes arrow-circle {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
}

@keyframes arrow-circle {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
}
.line1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

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

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

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

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

.l-wrap {
  margin: 0px auto;
  width: 100%;
  padding: 0 50px;
  max-width: 1600px;
}

.head-lang {
  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;
}

.lang {
  z-index: 99999;
  text-align: left;
  position: relative;
}

.lang-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 30px;
  border: none;
  cursor: pointer;
  font-size: var(--fontsize16);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
}
.lang-icon img {
  width: 20px;
}

.lang-icon span {
  position: relative;
  padding-right: 18px;
  color: var(--headercolor);
  margin-left: 8px;
}

.lang-icon span::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 13px;
  width: 8px;
  height: 1px;
  background: var(--headercolor);
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
}

.lang-icon span::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 13px;
  width: 8px;
  height: 1px;
  background: var(--headercolor);
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
}

.lang-drop {
  position: absolute;
  top: calc(100% + 26px);
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  background: #FFFFFF;
  border: 1px solid #EBEEF5;
  border-radius: 4px;
  -webkit-box-shadow: 0px 2px 12px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 12px 0 rgba(0, 0, 0, 0.1);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s, top 0.3s;
  transition: opacity 0.3s, top 0.3s;
}

.lang-drop.lang-flex {
  -webkit-transform: translateX(20%);
          transform: translateX(20%);
}

.lang-drop.active {
  visibility: visible;
  opacity: 1;
  top: calc(100% + 7px);
}

.lang-arrow {
  display: block;
  width: 6px;
  height: 6px;
  background-color: #FFFFFF;
  border-top: 1px solid #EBEEF5;
  border-left: 1px solid #EBEEF5;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  position: absolute;
  top: -4px;
  left: 50%;
}

.lang-drop.lang-flex .lang-arrow {
  left: 80%;
}

.lang-wrap {
  list-style: none;
  width: 140px;
  padding: 8px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.lang-flex .lang-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 8px;
}

.lang-wrap li {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.lang-flex .lang-wrap li {
  width: 33.3333%;
}

.lang-wrap li.lang-active,
.lang-wrap li:hover {
  background-color: #EEEEEE;
}

.lang-wrap li a {
  display: block;
  color: var(--fontcolor);
  font-size: var(--fontsize12);
  padding: 10px 12px;
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.lang-wrap li img {
  display: inline-block;
  width: 24px;
  height: 16px;
  vertical-align: -0.25em;
  margin-right: 4px;
}

@media (max-width: 1024px) {
  .l-wrap {
    padding: 0px 15px;
  }
  .lang {
    margin-right: 20px;
    margin-left: auto;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .lang-icon span {
    display: none;
  }
  .lang-icon > img {
    width: 28px;
    -webkit-filter: invert(90%);
            filter: invert(90%);
  }
  .lang-flex .lang-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px;
    width: 96vw;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lang-drop {
    display: none;
  }
  .lang-drop.active {
    display: block;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.justify-normal {
  -webkit-box-pack: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.font-medium {
  font-weight: 500;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.text-center {
  text-align: center;
}

header {
  position: fixed;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  z-index: 99;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.head-top {
  height: 40px;
  color: #FFFFFF;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  position: relative;
  background-color: var(--color);
}

.head-top .l-wrap {
  height: 100%;
  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;
}

.head-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--fontsize14);
  font-weight: var(--fontbold3);
  color: var(--headercolor);
}
@media (max-width: 1440px) {
  .head-left {
    font-size: var(--fontsize12);
  }
}

.head-left .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head-left .item:not(:first-child) {
  margin-left: 20px;
}

.head-left .item em {
  margin-right: 5px;
}

.head-top .head-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.head-top .head-right .head-lang {
  margin-right: 20px;
}
.head-top .head-right .search-input {
  background: #ffffff;
  border-radius: 4px;
  padding: 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.head-top .head-right .search-input input {
  border: none;
  height: 28px;
  outline: none;
}
.head-top .head-right .search-input button {
  border: none;
  background-color: transparent;
  height: 28px;
  cursor: pointer;
  width: 25px;
}
.head-top .head-right .search-input button em {
  color: var(--color);
}
@media (max-width: 1440px) {
  .head-top .head-right .search-input {
    display: none;
  }
}

.head-top .head-right .head-share {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}

.head-top .head-right .head-share .icon-share {
  display: none;
}

.head-top .head-right .head-share ul {
  padding: 0px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  white-space: nowrap;
}

.head-share ul a {
  width: 30px;
  height: 30px;
  color: var(--headercolor);
  border-radius: 50%;
  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;
  margin-right: 10px;
  text-decoration: none;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.head-share ul a:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.head-share ul a.fb:hover {
  background: #3b5998;
}

.head-share ul a.tw:hover {
  background: #55ACEE;
}

.head-share ul a.ins:hover {
  background: #DE5DCA;
}

.head-share ul a.vk:hover {
  background: #0077FF;
}

.head-share ul a.lk:hover {
  background: #007AB6;
}

.head-share ul a.you:hover {
  background: #FF0000;
}

.head-share ul a.pi:hover {
  background: #DF4B38;
}

.head-share ul a.tik:hover {
  background: #333333;
}

.head-info {
  height: 80px;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  background-color: #ffffff;
}

.head-info .l-wrap {
  height: 100%;
  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;
}

.head-info .m-menu {
  display: none;
}

.head-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.head-logo a .himg {
  display: block;
}

.head-logo a .fimg {
  display: none;
}

header.is-active .himg {
  display: none;
}

header.is-active .fimg {
  display: block;
}

.head-logo a img {
  width: auto;
  max-height: 65px;
}

.head-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.head-nav .nav-ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0px;
}

.head-nav .nav-ul > li {
  height: 100%;
  position: relative;
}

.head-nav .nav-ul > li > a {
  font-size: var(--fontsize20);
  color: #000000;
  text-transform: capitalize;
  margin: 0px 20px;
  height: 100%;
  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;
  position: relative;
  white-space: nowrap;
}

header.is-active .head-nav .nav-ul > li > a {
  color: var(--fontcolor);
}

.head-nav .nav-ul > li > a em {
  margin-left: 5px;
  font-size: var(--fontsize18);
  font-weight: var(--fontbold5);
}

.head-nav .nav-ul > li > a::before {
  content: "";
  width: 0px;
  height: 2px;
  background: var(--color);
  position: absolute;
  bottom: 15px;
  left: 0px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.head-nav .nav-ul > li:hover > a {
  color: var(--color);
}

.head-nav .nav-ul > li > a.inmenu_1 {
  color: var(--color) !important;
}

.head-nav .nav-ul > li:hover > a::before, .head-nav .nav-ul > li > a.inmenu_1::before {
  width: 100%;
}

.head-nav .nav-ul > li > ul {
  position: absolute;
  left: 0px;
  top: 100%;
  background: #FFFFFF;
  min-width: 220px;
  margin: 0px;
  -webkit-box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.head-nav .nav-ul > li > ul li {
  position: relative;
}

.head-nav .nav-ul > li > ul li:hover > a, .head-nav .nav-ul > li > ul li:hover > em {
  color: var(--color);
}

.head-nav .nav-ul > li > ul a {
  padding: 0px 10px;
  height: 45px;
  line-height: 45px;
  color: var(--fontcolor);
  padding-right: 30px;
  text-align: left;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: var(--fontsize16);
}

.head-nav .nav-ul > li > ul a + em {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--fontcolor);
}

.head-nav .nav-ul > li > ul ul {
  position: absolute;
  left: 100%;
  top: 0px;
  background: #FFFFFF;
  min-width: 220px;
  margin: 0px;
  -webkit-box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.head-nav .nav-ul ul {
  list-style: none;
  padding: 0px;
}

@media (min-width: 1025px) {
  #liinquiry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #liinquiry a {
    background: var(--color);
    height: 40px;
    padding: 0 15px;
    border-radius: 30px;
    color: #fff !important;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
    text-decoration: none;
  }
  #liinquiry a:hover {
    opacity: 0.9;
  }
  #liinquiry a::before {
    display: none;
  }
}
.head-nav .search-box {
  height: 100%;
  position: relative;
}
@media (min-width: 1441px) {
  .head-nav .search-box {
    display: none;
  }
}

.head-nav .search-box .head-search {
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head-nav .search-box .head-search button {
  outline: 0;
  border: none;
  cursor: pointer;
  background: 0 0;
  background: var(--color);
  border-radius: var(--borderradius);
  margin-left: 10px;
  width: 36px;
  height: 36px;
}

.head-nav .search-box .head-search button em {
  font-size: var(--fontsize22);
  font-weight: var(--fontbold6);
  color: #FFFFFF;
}

.head-nav .search-input {
  position: absolute;
  top: 20px;
  right: 45px;
  background: #000000;
  color: #FFFFFF;
  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-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  visibility: hidden;
}

.head-nav .search-input.active {
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  visibility: visible;
  opacity: 1;
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
  -webkit-transform-origin: top;
          transform-origin: top;
}

.head-nav .search-input input {
  width: 200px;
  height: 40px;
  padding-left: 10px;
  font-size: var(--fontsize16);
  border: none;
  background: 0 0;
  color: #FFFFFF;
  outline: 0;
}

.head-nav .search-input button {
  width: 40px;
  height: 40px;
  border: none;
  outline: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  background: #333333;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.head-nav .search-input button em {
  font-size: var(--fontsize22);
  color: #ffffff;
  font-weight: var(--fontbold6);
}

@media (min-width: 1025px) {
  .nav-ul > li:hover .submenu {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
  .nav-ul > li .submenu {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .nav-ul > li .submenu li:hover ul {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
  .nav-ul > li .submenu li ul {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
header.is-active {
  background: #FFFFFF !important;
  -webkit-box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid #E5E5E5;
}

header.is-active .head-top {
  height: 0px;
  opacity: 0;
}

header.is-active .head-info {
  height: 75px;
}

footer {
  background: #000000 url(https://css02.v15cdn.com/m532/imgs/foot_bg.webp) no-repeat;
  background-size: cover;
  color: #ffffff;
  padding-top: 40px;
}
footer .foot-top {
  gap: 50px;
  padding: 20px 0 60px;
}
footer .foot-form {
  max-width: 310px;
  width: 22%;
}
footer .foot-form .foot-logo {
  margin-bottom: 20px;
}
footer .foot-form p {
  font-size: 16px;
  margin: 0 0 20px;
  color: #ffffff;
  font-weight: 400;
}
footer .foot-form .wmkcfeedback input {
  height: 36px;
  margin-bottom: 8px;
  color: #ffffff;
}
footer .foot-form .wmkcfeedback textarea {
  height: 102px;
  margin-bottom: 8px;
  color: #ffffff;
}
footer .foot-form .wmkcfeedback .send-btn {
  height: 36px;
  font-size: 16px;
  min-width: 100%;
  width: 100%;
  margin-top: 0;
}
footer .foot-form .wmkcfeedback input, footer .foot-form .wmkcfeedback textarea {
  background-color: transparent;
  border: 1px solid #6B7280;
  width: 100%;
  border-radius: 4px;
}
footer .foot-nav, footer .foot-contact {
  max-width: 245px;
}
footer .foot-nav li, footer .foot-contact li {
  margin-bottom: 8px;
  font-weight: 400;
}
footer .foot-nav a:hover, footer .foot-contact a:hover {
  text-decoration: underline;
}
footer .foot-contact .contact-way li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  word-break: break-word;
}
footer .foot-contact .contact-way em {
  margin-right: 3px;
}
footer .foot-share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .foot-share ul li {
  margin-right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #004EA2;
  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.2s;
  transition: 0.2s;
}
footer .foot-share ul li:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
footer .foot-title {
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}
footer .foot-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 2px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
footer .copyright {
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
footer .copyright p {
  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;
  color: #9CA3AF;
  font-size: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .copyright a:first-child {
  margin-left: auto;
  margin-right: 16px;
}

@media (max-width: 1280px) {
  footer .foot-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 1024px) {
  footer .foot-top {
    gap: 15px;
    padding: 20px 0;
  }
  footer .foot-form {
    display: none;
  }
  footer .foot-nav, footer .foot-contact {
    width: 100%;
    max-width: 100%;
  }
  footer .copyright p {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  footer .copyright p a:first-child {
    margin-left: 0;
  }
}
.gotop {
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  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;
  font-weight: var(--fontbold6);
}

.gotop.active {
  opacity: 1;
  visibility: inherit;
  overflow: inherit;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.gotop em, .gotop i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: var(--fontcolor);
}

.gotop:hover {
  background: #c1c1c1;
}

.bottom-btn {
  display: none;
}

@media (max-width: 1440px) {
  .head-nav .nav-ul > li > a {
    margin: 0px 15px;
    font-size: var(--fontsize16);
  }
}
@media (max-width: 1280px) {
  .head-nav .nav-ul > li > a {
    margin: 0px 10px;
  }
}
body {
  padding-top: 120px;
}

@media (max-width: 1024px) {
  body {
    padding-top: 0px;
  }
  .head-logo .himg {
    display: none !important;
  }
  .head-logo .fimg {
    display: block !important;
  }
  header .head-top {
    display: none;
  }
  header {
    background: #FFFFFF !important;
    -webkit-box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
  }
  header .head-info {
    height: 70px !important;
  }
  .head-nav {
    position: fixed;
    top: 70px;
    right: 0px;
    width: 100%;
    height: calc(100vh - 70px);
    background: #FFFFFF;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 100px;
    overflow-y: auto;
    display: none;
  }
  .head-nav .nav-ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .head-nav .nav-ul > li {
    height: auto;
    width: 100%;
  }
  .head-nav .nav-ul > li.cur {
    background: #FAFAFA;
  }
  .head-nav .nav-ul > li.cur .icon-arrow-down {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .head-nav .nav-ul > li .icon-arrow-down {
    position: absolute;
    right: 10px;
    top: 2px;
    font-weight: var(--fontbold3);
    width: 40px;
    height: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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: all 0.1s linear;
    transition: all 0.1s linear;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    font-size: var(--fontsize20);
  }
  .head-nav .nav-ul > li > a {
    height: auto;
    padding: 10px 20px;
    margin: 0px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    color: var(--fontcolor);
  }
  .head-nav .nav-ul > li:hover > a {
    background: 0 0;
    color: inherit;
  }
  .head-nav .nav-ul > li > ul {
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    max-width: 100%;
    background: #FAFAFA;
    display: none;
    padding: 0px 30px;
  }
  .head-nav .nav-ul > li > ul a {
    color: var(--fontcolor);
    font-size: var(--fontsize16);
    display: inline-block;
    line-height: inherit;
    height: auto;
    padding: 10px 0px;
  }
  .head-nav .nav-ul > li:hover > a::before, .head-nav .nav-ul > li > a.inmenu_1::before {
    display: none;
  }
  .head-nav .nav-ul > li > ul li:hover > a, .head-nav .nav-ul > li > ul li:hover > em {
    background: 0 0;
    color: inherit;
  }
  .head-nav .nav-ul > li > ul .icon-arrow-down {
    display: none;
  }
  .head-nav .nav-ul > li > ul ul {
    position: static;
    display: block;
    background: 0 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0px 20px;
  }
  .head-nav .search-box {
    width: 100%;
    height: auto;
  }
  .head-nav .search-box .head-search {
    display: none;
  }
  .head-nav .search-input {
    position: static;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    visibility: inherit;
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 4px 10px;
    background: #FFFFFF;
  }
  .head-nav .search-input input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border: 1px solid #EEEEEE;
    color: var(--fontcolor);
  }
  .head-nav .search-input input:focus {
    border-color: var(--color);
  }
  .head-nav .search-input button {
    background: #EEEEEE;
  }
  .head-lang {
    margin-left: auto;
  }
  .head-info .m-menu {
    display: block;
    position: relative;
    width: 26px;
    height: 40px;
    cursor: pointer;
    margin-right: 5px;
  }
  .m-menu span {
    position: absolute;
    background: var(--fontcolor);
    height: 2px;
    width: 100%;
    border-radius: 4px;
    left: 0px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .m-menu span:nth-child(1) {
    top: 25%;
  }
  .m-menu span:nth-child(2) {
    top: 48%;
  }
  .m-menu span:nth-child(3) {
    top: 73%;
  }
  .m-menu.act span {
    top: 48%;
  }
  .m-menu.act span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .m-menu.act span:nth-child(2) {
    width: 0px;
  }
  .m-menu.act span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .home-more {
    min-width: 160px;
    height: 45px;
  }
}
@media (max-width: 768px) {
  .head-left {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 10px 20px;
    color: var(--fontcolor);
    font-size: var(--fontsize16);
  }
  .head-left .item {
    margin-bottom: 10px;
  }
  .head-left .item {
    margin-left: 0px !important;
  }
  .rfixed {
    display: none;
  }
  header .head-info {
    height: 60px !important;
  }
  .head-logo a img {
    max-height: 45px;
  }
  .head-nav {
    top: 59px;
    height: calc(100vh - 59px);
  }
  footer {
    margin-bottom: calc(55px + constant(safe-area-inset-bottom));
    margin-bottom: calc(55px + env(safe-area-inset-bottom));
  }
  .bottom-btn {
    background: #fbfbfb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
    opacity: 1;
  }
  .bottom-btn.bottom-btn-hide {
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
    opacity: 1;
  }
  .bottom-btn.bottom-btn-keep {
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
    opacity: 1;
  }
  .bottom-btn.bottom-btn-menu {
    -webkit-transform: translateY(60px) !important;
            transform: translateY(60px) !important;
    opacity: 0;
  }
  .bottom-btn .btn-item {
    width: 20%;
    height: 55px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    position: relative;
  }
  .bottom-btn .btn-item.gotop {
    opacity: 1;
    visibility: inherit;
    overflow: inherit;
    -webkit-transform: none;
            transform: none;
    border-radius: 0px;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: 0 0;
  }
  .bottom-btn .btn-item.gotop em {
    background: var(--color);
    width: 30px;
    height: 30px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 5px;
    font-size: var(--fontsize16);
    color: #ffffff;
  }
  .bottom-btn .btn-item.gotop:hover {
    background: 0 0;
  }
  .bottom-btn .btn-item em, .bottom-btn .btn-item i {
    font-size: var(--fontsize20);
    line-height: 1;
  }
  .bottom-btn .btn-item a, .bottom-btn .btn-item div {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--fontcolor);
    text-transform: capitalize;
  }
  .bottom-btn .btn-item a p, .bottom-btn .btn-item div {
    font-size: var(--fontsize12);
    text-transform: capitalize;
    line-height: 1;
    padding-top: 2px;
  }
  .mobile-bottom-bag {
    display: none;
  }
}
@media (min-width: 1025px) {
  #liproducts .nav2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    position: fixed;
    left: 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #liproducts .nav2 > li {
    width: 12%;
    margin: 1em 20px;
    text-align: center;
  }
  #liproducts .nav2 > li .item-info a {
    height: auto;
  }
  #liproducts .nav2 > li a {
    padding: 0px;
    background: 0 0 !important;
  }
  #liproducts .nav3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    position: fixed;
    left: 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #liproducts .nav3 > li {
    width: 12%;
    margin: 1em 20px;
    text-align: center;
  }
  #liproducts .nav3 > li .cate-img a {
    height: auto;
  }
  #liproducts .nav3 > li a {
    padding: 0px;
    background: 0 0 !important;
  }
  #liproducts .nav3 > li ul {
    display: block;
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #liproducts .nav3 > li ul li {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  #liproducts .nav2 .item-info, #liproducts .nav3 .cate-img {
    display: none;
  }
}
.rfixed {
  position: fixed;
  bottom: calc(150px + constant(safe-area-inset-bottom));
  bottom: calc(150px + env(safe-area-inset-bottom));
  right: 50px;
  z-index: 99;
}

.compare-panel {
  width: 280px;
  background: #FFFFFF;
  position: fixed;
  z-index: 1000;
  bottom: 0px;
  right: 0px;
  -webkit-box-shadow: -1px -1px 3px #CCCCCC;
          box-shadow: -1px -1px 3px #CCCCCC;
  display: none;
  -webkit-transition: bottom 0.2s;
  transition: bottom 0.2s;
}

.compare-t {
  background-color: var(--color);
  font-size: var(--fontsize14);
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  cursor: pointer;
}

.compare-close {
  position: relative;
  width: 24px;
  height: 24px;
  background: 0 0;
  cursor: pointer;
  border: none;
}

.compare-close::after, .compare-close::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  border-radius: 2px;
}

.compare-close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 4px;
}

.compare-close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  right: 4px;
}

.compare-tit {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.5;
  color: #ffffff;
}

.compare-checked {
  color: #FFFFFF;
  margin: 0px 4px;
}

#productChache_list {
  padding: 0px 10px;
  height: 220px;
  overflow-y: auto;
}

#productChache_list::-webkit-scrollbar {
  width: 4px;
}

#productChache_list::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0.05);
}

#productChache_list::-webkit-scrollbar-thumb {
  border-radius: var(--borderradius);
  background-color: rgba(0, 0, 0, 0.15);
}

.selected-item {
  position: relative;
  border-bottom: 1px solid #EFEFEF;
  padding: 10px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item-clear {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: transparent;
  cursor: pointer;
  outline: 0;
  border: none;
}

.item-clear::after, .item-clear::before {
  content: "";
  display: block;
  position: absolute;
  width: 70%;
  height: 2px;
  background-color: #333333;
  border-radius: 2px;
  top: 50%;
  margin-top: -1px;
}

.item-clear::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 3px;
}

.item-clear::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 3px;
}

.item-content {
  -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;
}

.item-img {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border: 1px solid #EFEFEF;
  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;
}

.item-img img {
  max-width: 100%;
  max-height: 100%;
}

.item-c {
  width: calc(100% - 50px);
  padding: 0px 10px;
  font-size: var(--fontsize12);
}

.item-title {
  max-height: 34px;
  word-break: break-word;
  display: block;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3;
  color: var(--fontcolor);
}

.item-price {
  color: var(--color);
}

.compare-b {
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.compare-b * {
  display: block;
  width: 80px;
  text-align: center;
  font-size: var(--fontsize12);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 30px;
  border-radius: 2px;
  padding: 0px 2px;
}

.clear-all {
  color: var(--fontcolor);
  background-color: #EDEDED;
  cursor: pointer;
  border: none;
}

.compare-inquire, .compare-inquire:hover {
  color: #FFFFFF;
  background-color: var(--color);
}

.compare-b .orderNow {
  margin: 0px;
  background: #F66F08;
  color: #FFFFFF;
  line-height: 30px;
  padding: 0px 2px;
  border: none;
  border-radius: 2px;
  font-size: var(--fontsize12);
  cursor: pointer;
  display: block;
  width: 80px;
}

.rfixed-sc {
  width: 40px;
  height: 40px;
  background: var(--color);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  color: #FFFFFF;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
  display: none;
}

.rfixed-sc em {
  font-size: var(--fontsize20);
}

.rfixed-scnum {
  position: absolute;
  right: 6px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #D4322C;
  border-radius: 50%;
  text-align: center;
  font-size: var(--fontsize12);
  color: #FFFFFF;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  line-height: 16px;
}

@media (max-width: 768px) {
  .compare-panel {
    width: 100%;
    bottom: 55px;
  }
  .rfixed-scnum {
    right: 26px;
  }
}
.wmkcfeedback .send-btn {
  color: #ffffff;
}