@import url(https://css02.v15cdn.com/m531/iconfont/iconfont.css);
@import url(https://css02.v15cdn.com/m531/swiper.css);
@import url(https://css02.v15cdn.com/m531/message.css);
@import url(https://css01.v15cdn.com/language.css);
:root {
  --color: #ff2b2f;
  --hovercolor: #F4F4F4;
  --fontcolor: #000000;
  --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: 36px;
  --borderradius: 3px;
  --fontbold3: 300;
  --fontbold4: 400;
  --fontbold5: 500;
  --fontbold6: 600;
  --fontbold7: 700;
  --fontbold8: 800;
  --fontbold9: 900;
  --fontfamily: "Kanit", "Lato", "Open Sans", "Poppins", "Oswald", "Noto Sans", "Montserrat", arial, sans-serif;
  --psize: 18px;
  --titlesize: 44px;
  --fontcolor1: #480e1a;
}

@media (max-width: 1600px) {
  :root {
    --psize: 16px;
    --titlesize: 32px;
  }
}
@media (max-width: 1366px) {
  :root {
    --hometitlefont: 30px;
    --titlesize: 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;
}

sup {
  line-height: 1;
}

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

body {
  margin: 0px auto;
  line-height: 1.5;
  color: var(--fontcolor);
  font-size: var(--psize);
  overflow-x: hidden;
  font-family: var(--fontfamily);
  font-weight: 300;
}
body p {
  line-height: 28px;
}

body.inner-body {
  padding-top: 100px;
}
@media (max-width: 1024px) {
  body.inner-body {
    padding-top: 60px;
  }
}
body.inner-body header {
  background: #fff;
  --headercolor: #000000;
}
body.inner-body header .head-logo a .logo1 {
  display: block;
}
body.inner-body header .head-logo a .logo {
  display: none;
}
body.inner-body footer:before {
  display: none;
}

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

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;
}

.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);
  }
}
.l-wrap {
  margin: 0px auto;
  width: 100%;
  padding: 0 70px;
  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 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: 1440px) {
  .l-wrap {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  body {
    padding-top: 60px;
  }
  .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: 36px;
    height: 24px;
  }
  .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;
}

header {
  height: 100px;
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  z-index: 999;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 400;
}
header .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;
  height: 100%;
}
header .head-logo a .logo1 {
  display: none;
}
header .head-logo a .logo {
  display: block;
}
header .head-logo a img {
  width: auto;
  max-height: 60px;
}
header.is-active {
  background: #fff;
  --headercolor: #000000;
  -webkit-box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
}
header.is-active .head-logo a .logo1 {
  display: block;
}
header.is-active .head-logo a .logo {
  display: none;
}
header .m-menu {
  display: none;
}
header .l-wrap {
  height: 100%;
}
header .head-nav {
  height: 100%;
}
header .head-nav .nav-ul {
  height: 100%;
}
header .head-nav .nav-ul > li {
  height: 100%;
  position: relative;
}
header .head-nav .nav-ul > li:hover .submenu {
  visibility: inherit;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
header .head-nav .nav-ul > li .submenu {
  position: absolute;
  top: 100%;
  left: 0px;
  visibility: hidden;
  min-width: 200px;
  background: #FFFFFF;
  -webkit-box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
header .head-nav .nav-ul > li .submenu li {
  position: relative;
  padding: 12px 10px;
  height: 55px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}
@media (max-width: 500px) {
  header .head-nav .nav-ul > li .submenu li {
    white-space: normal;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
header .head-nav .nav-ul > li .submenu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 30px;
  height: 100%;
  color: var(--fontcolor);
  text-transform: capitalize;
  font-size: var(--fontsize16);
  opacity: 0.8;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .head-nav .nav-ul > li .submenu li a:hover {
  color: var(--color);
}
header .head-nav .nav-ul > li > a {
  font-size: 20px;
  color: var(--headercolor);
  text-transform: capitalize;
  margin: 0 18px;
  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 .head-nav .nav-ul > li > a:hover, header .head-nav .nav-ul > li > a.inmenu_1 {
  color: var(--color);
}
@media (max-width: 1600px) {
  header .head-nav .nav-ul > li > a {
    font-size: 18px;
  }
}
@media (max-width: 1366px) {
  header .head-nav .nav-ul > li > a {
    font-size: 16px;
  }
}
header .head-nav .nav-ul > li > em {
  position: absolute;
  top: 50%;
  right: 0px;
  font-size: var(--fontsize12);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--headercolor);
  display: none;
}
header .search-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .search-box .head-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .search-box .head-search button {
  padding: 10px;
  outline: 0;
  border: none;
  background: 0 0;
  cursor: pointer;
}
header .search-box .head-search button em {
  font-size: var(--fontsize20);
  color: var(--headercolor);
}
@media (max-width: 1024px) {
  header {
    height: 60px;
    -webkit-box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.15);
            box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.15);
    --headercolor: #000000;
    background-color: #ffffff;
  }
  header .search-box .head-search {
    display: none;
  }
  header .search-box .search-input {
    position: static;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: inherit;
    overflow: hidden;
    margin: 10px 0px;
    width: 100%;
    border: 1px solid #c2c2c2;
    border-radius: var(--borderradius);
    -webkit-box-shadow: none;
            box-shadow: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .search-box .search-input input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  header.is-active .head-nav {
    top: 59px;
    height: calc(100vh - 50px);
  }
  header .nav-ul > li .submenu > li em {
    display: none;
  }
  header .head-logo a {
    max-width: inherit;
  }
  header .head-logo a img {
    max-height: 45px;
  }
  header .head-logo a img.logo {
    display: none;
  }
  header .head-logo a img.logo1 {
    display: block;
  }
  header .head-nav {
    position: fixed;
    top: 60px;
    left: 0px;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    padding: 10px 20px;
    width: 100%;
    height: calc(100vh - 55px);
    background: #FFFFFF;
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  header .head-nav.head-nav-act {
    visibility: inherit;
    opacity: 1;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  header .head-nav.head-nav-act .nav-ul > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  header .head-nav .nav-ul {
    overflow-y: auto;
    padding: 0px 0 100px;
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .head-nav .nav-ul > li {
    height: auto;
    width: 100%;
  }
  header .head-nav .nav-ul > li:hover > a,
  header .head-nav .nav-ul > li:hover > em {
    color: inherit;
  }
  header .head-nav .nav-ul > li:hover .submenu {
    visibility: inherit;
    opacity: inherit;
    -webkit-transform: inherit;
            transform: inherit;
    -webkit-transform: none;
            transform: none;
  }
  header .head-nav .nav-ul > li.cur > a {
    color: var(--color);
  }
  header .head-nav .nav-ul > li.cur > em {
    color: var(--color);
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  header .head-nav .nav-ul > li > em {
    top: 8px;
    right: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 40px;
    font-size: var(--fontsize20);
    cursor: pointer;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
    -webkit-transform: none;
            transform: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .head-nav .nav-ul > li > a {
    padding: 12px 0px;
    height: auto;
    font-weight: var(--fontbold4);
    font-size: var(--fontsize18);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  header .head-nav .nav-ul > li > a::after {
    content: none;
  }
  header .head-nav .nav-ul > li .submenu {
    position: static;
    display: none;
    visibility: inherit;
    padding-left: 10px;
    min-width: inherit;
    -webkit-box-shadow: none;
            box-shadow: none;
    opacity: 1;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
  }
  header .head-nav .nav-ul > li .submenu li {
    height: auto;
    border-bottom: none;
  }
  header .head-nav .nav-ul > li .submenu li:hover {
    background: 0 0;
  }
  header .head-nav .nav-ul > li .submenu li a {
    padding: 5px 0px;
    border: none;
    font-weight: var(--fontbold4);
  }
  header .head-nav .nav-ul > li .submenu li ul {
    position: static !important;
    display: block !important;
    padding-left: 10px;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  header .search-box {
    width: 100%;
    height: auto;
  }
  header .search-box input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  header .m-menu {
    position: relative;
    display: block;
    width: 35px;
    height: 40px;
    cursor: pointer;
  }
  header .m-menu span {
    position: absolute;
    left: 0px;
    height: 2px;
    border-radius: var(--borderradius);
    background: var(--color);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  header .m-menu span:nth-child(1) {
    top: 25%;
    width: 80%;
  }
  header .m-menu span:nth-child(2) {
    top: 48%;
    width: 60%;
  }
  header .m-menu span:nth-child(3) {
    top: 73%;
    width: 70%;
  }
  header .m-menu.act span {
    top: 48%;
    width: 32px;
  }
  header .m-menu.act span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .m-menu.act span:nth-child(2) {
    width: 0px;
  }
  header .m-menu.act span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  header .nav-ul .head-contact {
    padding: 15px 0px;
  }
  header .nav-ul .head-contact .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    color: var(--fontcolor);
    font-size: var(--fontsize17);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .nav-ul .head-contact .item em {
    margin-right: 6px;
    color: var(--color);
    font-size: var(--fontsize22);
  }
}

.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);
}

footer {
  padding: 90px 0 170px;
  border-radius: 40px 40px 0 0;
  background: -webkit-gradient(linear, left top, right top, from(#a61e36), to(#e22127));
  background: linear-gradient(90deg, #a61e36, #e22127);
  color: #ffffff;
  position: relative;
}
footer p {
  line-height: 24px;
}
footer:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #eceaea;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}
footer .foot-logo {
  max-width: 350px;
}
footer .foot-logo img {
  margin-bottom: 85px;
  max-height: 50px;
  width: auto;
}
footer .foot-logo p {
  font-size: 18px;
}
footer .foot-contact {
  max-width: 350px;
}
footer .foot-contact .tit {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 400;
}
footer .foot-contact p {
  font-size: 18px;
  margin-bottom: 9px;
}
footer .foot-contact .bottom-social {
  margin-top: 25px;
}
footer .foot-contact .bottom-social .social-list a {
  margin-right: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .foot-contact .bottom-social .social-list a:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
footer .foot-contact .bottom-social .lang-box {
  width: 86px;
  border: 2px solid #ffffff;
  border-radius: 5px;
  height: 36px;
  position: relative;
  cursor: pointer;
}
footer .foot-contact .bottom-social .lang-box > span {
  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;
  width: 100%;
  height: 100%;
}
footer .foot-contact .bottom-social .lang-box > span em {
  margin-left: 8px;
}
footer .foot-contact .bottom-social .lang-box ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  bottom: calc(100% + 2px);
  background-color: #ffffff;
  border-radius: 5px;
  color: #000000;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .foot-contact .bottom-social .lang-box ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .foot-contact .bottom-social .lang-box ul li a:hover {
  background-color: var(--color);
  color: #ffffff;
}
footer .foot-contact .bottom-social .lang-box.active ul {
  opacity: 1;
  visibility: visible;
}
footer .foot-nav {
  max-width: 600px;
  padding: 0 30px;
}
footer .foot-nav ul li {
  width: 50%;
  line-height: 36px;
  font-size: 20px;
}
@media (max-width: 1024px) {
  footer {
    padding: 50px 0;
    border-radius: 20px 20px 0 0;
  }
  footer .footer-main {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .foot-logo,
  footer .foot-contact,
  footer .foot-nav {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
  footer .foot-logo img {
    margin-bottom: 10px;
  }
  footer .foot-nav {
    padding: 0;
  }
  footer .foot-nav ul li {
    width: 100%;
  }
}

.gotop {
  position: fixed;
  right: 50px;
  bottom: 130px;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  overflow: hidden;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color);
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gotop .iconfont {
  color: #FFFFFF;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.gotop.act {
  bottom: 150px;
  visibility: inherit;
  opacity: 1;
}

.mobile-bottom-bag {
  position: relative;
  display: none;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.bottom-btn {
  display: none;
}

@media (max-width: 1024px) {
  .bottom-btn .btn-item .gotop {
    position: absolute;
    top: 7px;
    left: 47%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--color);
    opacity: 1;
    cursor: pointer;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bottom-btn .btn-item .gotop .iconfont {
    color: #FFFFFF;
  }
  .bottom-btn .btn-item div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-transform: capitalize;
    -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;
    font-size: var(--fontsize12);
  }
  .bottom-btn.active {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
  .bottom-btn.bottom-btn-hide {
    visibility: inherit;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .gotop {
    visibility: inherit;
  }
  .pc-back {
    display: none;
  }
  footer {
    margin-bottom: calc(60px + constant(safe-area-inset-bottom));
    margin-bottom: calc(60px + env(safe-area-inset-bottom));
  }
  .bottom-btn {
    position: fixed;
    color: #000000;
    bottom: 0px;
    left: 0;
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
    width: 100%;
    background: #fbfbfb;
    -webkit-box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .bottom-btn {
    visibility: inherit;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .bottom-btn.bottom-btn-hide {
    visibility: inherit;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .bottom-btn .btn-item {
    width: 20%;
    height: 55px;
  }
  .bottom-btn .btn-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -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;
  }
  .bottom-btn .btn-item em {
    height: 32px;
    font-size: var(--fontsize20);
  }
  .bottom-btn .btn-item p {
    text-transform: capitalize;
    font-size: var(--fontsize12);
  }
}
.search-input {
  position: absolute;
  top: 100%;
  right: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  background: #FFFFFF;
  -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);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.search-input input {
  width: 200px;
  height: 40px;
}

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

.search-input .search-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.search-input .search-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.search-input .search-btn:hover {
  opacity: 0.9;
}

.search-input .search-btn em {
  color: var(--color);
  font-size: var(--fontsize22);
}

.search-input.active {
  visibility: visible;
  opacity: 1;
  -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;
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
  -webkit-transform-origin: top;
          transform-origin: top;
}

.toast-title {
  font-weight: var(--fontbold6);
}

.toast-message {
  word-wrap: break-word;
  -ms-word-wrap: break-word;
}

.toast-message a,
.toast-message label {
  color: #FFFFFF;
}

.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}

.toast-close-button {
  position: relative;
  top: -0.3em;
  right: -0.3em;
  float: right;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #FFFFFF;
  font-weight: var(--fontbold6);
  font-size: var(--fontsize20);
  line-height: 1;
  opacity: 0.8;
  -webkit-text-shadow: 0 1px 0 #FFFFFF;
}

.toast-close-button:focus,
.toast-close-button:hover {
  color: var(--fontcolor);
  text-decoration: none;
  opacity: 0.4;
  cursor: pointer;
}

.rtl .toast-close-button {
  right: 0.3em;
  left: -0.3em;
  float: left;
}

button.toast-close-button {
  padding: 0px;
  border: 0;
  background: 0 0;
  cursor: pointer;
  -webkit-appearance: none;
}

.toast-center-center {
  top: 40%;
  right: 0px;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.toast-top-center {
  top: 20%;
  right: 0px;
  width: 100%;
}

.toast-bottom-center {
  right: 0px;
  bottom: 0px;
  width: 100%;
}

.toast-top-full-width {
  top: 0px;
  right: 0px;
  width: 100%;
}

.toast-bottom-full-width {
  right: 0px;
  bottom: 0px;
  width: 100%;
}

.toast-top-left {
  top: 12px;
  left: 12px;
}

.toast-top-right {
  top: 12px;
  right: 12px;
}

.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

#toast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
}

#toast-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#toast-container > div {
  position: relative;
  overflow: hidden;
  margin: 0px 0 6px;
  padding: 5px 15px 5px 50px;
  width: 300px;
  border-radius: var(--borderradius);
  background-position: 15px center;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 12px #999;
  box-shadow: 0 0 12px #999;
  color: #FFFFFF;
  font-size: var(--fontsize16);
  opacity: 0.9;
  pointer-events: auto;
}

#toast-container > div.rtl {
  padding: 15px 50px 15px 15px;
  background-position: right 15px center;
  direction: rtl;
}

#toast-container > div:hover {
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}

#toast-container > .toast-info {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=) !important;
}

#toast-container > .toast-error {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important;
}

#toast-container > .toast-success {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important;
}

#toast-container > .toast-warning {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=) !important;
}

#toast-container.toast-bottom-center > div,
#toast-container.toast-center-center > div,
#toast-container.toast-top-center > div {
  margin-right: auto;
  margin-left: auto;
  width: 300px;
}

#toast-container.toast-bottom-full-width > div,
#toast-container.toast-top-full-width > div {
  margin-right: auto;
  margin-left: auto;
  width: 96%;
}

.toast {
  background-color: #030303;
}

.toast-success {
  background-color: #51a351;
}

.toast-error {
  background-color: #bd362f;
}

.toast-info {
  background-color: #2f96b4;
}

.toast-warning {
  background-color: #f89406;
}

.toast-progress {
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}

@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  #toast-container > div.rtl {
    padding: 8px 50px 8px 8px;
  }
  #toast-container .toast-close-button {
    top: -0.2em;
    right: -0.2em;
  }
  #toast-container .rtl .toast-close-button {
    right: 0.2em;
    left: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  #toast-container > div.rtl {
    padding: 8px 50px 8px 8px;
  }
  #toast-container .toast-close-button {
    top: -0.2em;
    right: -0.2em;
  }
  #toast-container .rtl .toast-close-button {
    right: 0.2em;
    left: -0.2em;
  }
  .bottom-btn .btn-item .gotop {
    left: 44%;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
  #toast-container > div.rtl {
    padding: 15px 50px 15px 15px;
  }
}
.rfixed {
  position: fixed;
  right: 50px;
  bottom: calc(200px + constant(safe-area-inset-bottom));
  bottom: calc(200px + env(safe-area-inset-bottom));
  z-index: 99;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.compare-panel .item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  border: 1px solid #EFEFEF;
  background: #FFFFFF;
  -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 {
  padding: 0px 10px;
  width: calc(100% - 50px);
  font-size: var(--fontsize12);
}

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

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

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

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

.clear-all {
  background-color: #ededed;
  color: var(--fontcolortitle);
  cursor: pointer;
}

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

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

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

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

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

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

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

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