﻿:root {
  --sonchoy-font: "微软雅黑", sans-serif;
  --sonchoy-font-two: "Syne", sans-serif;
  --sonchoy-gray: #767676;
  --sonchoy-gray-rgb: 118, 118, 118;
  --sonchoy-white: #ffffff;
  --sonchoy-white-rgb: 255, 255, 255;
  --sonchoy-base: #ffffff;
  --sonchoy-base-rgb: 255, 255, 255;
  --sonchoy-black: #000000;
  --sonchoy-black-rgb: 0, 0, 0;
  --sonchoy-primary: #f4f4f4;
  --sonchoy-primary-rgb: 244, 244, 244;
  --sonchoy-bdr-color: #dedede;
  --sonchoy-bdr-rgb: 222, 222, 222;
}

.row {
  --bs-gutter-x: 30px;
}

body {
  font-family: var(--sonchoy-font);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: var(--sonchoy-black);
}

a {
  color: var(--sonchoy-black);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  color: var(--sonchoy-white);
}

i {
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--sonchoy-black);
  font-family: var(--sonchoy-font);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
img {
  /*pointer-events: none;*/
}
ul::after {
  display: block;
  clear: both;
  content: "";
}

li {
  list-style: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

input::placeholder {
  color: #aaa;
}

.container {
  width: 100%;
  max-width: 1600px;
  padding: 0;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 360px;
  overflow: hidden;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.preloader__v {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  overflow: hidden;
}

.preloader__v video {
  width: 100%;
  max-width: max-content;
}

/*main-header*/

.main-header {
  background: transparent;
  position: fixed;
  display: block;
  width: 100%;
  transition: all 500ms ease;
  z-index: 1000;
  height: 96px;
  background: rgb(0 0 0 / 30%);
}

.main-menu {
  position: relative;
  display: block;
  z-index: 1;
  height: 96px;
}

.main-menu .container {
  max-width: 1700px;
}

.main-menu__logo {
  position: absolute;
  display: block;
  z-index: 1;
  width: 30%;
  max-width: max-content;
  height: 96px;
  line-height: 96px;
}

.main-menu__logo img {
  width: 100%;
}

.main-menu__main-menu-box {
  height: 96px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.main-menu .mobile-nav__toggler {
  position: absolute;
  font-size: 30px;
  color: var(--sonchoy-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
  top: 34px;
  right: 66px;
  display: none;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--sonchoy-black);
}

.main-menu .main-menu__list > li > a::before {
  content: "";
  height: 2px;
  width: 100%;
  background-color: var(--sonchoy-white);
  position: absolute;
  bottom: 16px;
  left: 0px;
  right: 0px;
  z-index: 1;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before {
  opacity: 1;
  visibility: visible;
  color: var(--sonchoy-white);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: inline-flex;
  justify-content: flex-end;
}

.main-menu .main-menu__list > li {
  line-height: 80px;
  margin-left: 1.5vw !important;
  margin-top: 16px;
}

.main-menu .main-menu__list > li > a {
  font-size: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--sonchoy-white);
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}

.main-menu .main-menu__list > li > ul {
  position: absolute;
  margin-left: -49px;
  width: 182px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: -webkit-transform 700ms ease;
  transition: -webkit-transform 700ms ease;
  transition: transform 700ms ease;
  transition: transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.4);
  padding: 0;
  top: 80px;
}

.main-menu .main-menu__list > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list > li > ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list > li > ul > li + li {
  border-top: none;
}

.main-menu .main-menu__list > li > ul > li > a {
  position: relative;
  font-size: 17px;
  line-height: 30px;
  color: var(--sonchoy-white);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0px;
  -webkit-transition: 500ms;
  transition: 500ms;
  display: block;
  text-align: center;
}

.main-menu .main-menu__list > li > ul > li:hover > a {
  background-color: var(--sonchoy-black);
  color: var(--sonchoy-white);
}

.search {
  width: 40px;
}

.main-menu .open-search {
  /*background: url(../images/sou.png) center center no-repeat;*/
  width: 40px;
  height: 40px;
  margin-top: 36px;
  display: flex;
  color: #ffffff;
  font-size: 1.3em;
  justify-content: center;
  align-items: center;
}

.main-menu .top-search {
  right: 360px;
  background: #fff;
  width: 400px;
  padding-right: 40px;
  line-height: 40px;
  position: relative;
  top: 21px;
  display: none;
}

.main-menu .top-search form {
  height: 40px;
}

.main-menu .top-search .text {
  width: 73%;
  height: 40px;
  line-height: 40px;
  border: 0;
  padding: 0 10px;
  font-size: 18px;
  background: #fff;
}
.main-menu .top-search .ck {
  width: 22%;
  height: 40px;
  line-height: 40px;
  border: 0;
  padding: 0 10px;
  font-size: 18px;
}

.main-menu .top-search .btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: #000 url(../images/sou.png) no-repeat center center;
  border-radius: 0;
}

.open-search {
  cursor: pointer;
}

.top-search.on {
  display: block;
}

.top-search[rel="absolute"] {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 100;
  width: 100%;
  max-width: 320px;
}

.top-search .text.focus {
  color: #333;
}

.main-menu .top-search .btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-repeat: no-repeat;
  background-position: center center;
}

.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1001;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 80%;
  height: 80%;
  background: rgb(0 0 0 / 70%);
  z-index: 10;
  position: absolute;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 550px;
  right: 0px;
  opacity: 0;
  top: -100%;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: opacity 100ms ease 0ms, visibility 100ms ease 0ms,
    -webkit-transform 100ms ease 0ms;
  transition: opacity 100ms ease 0ms, visibility 100ms ease 0ms,
    -webkit-transform 100ms ease 0ms;
  transition: opacity 100ms ease 0ms, visibility 100ms ease 0ms,
    transform 100ms ease 0ms;
  transition: opacity 100ms ease 0ms, visibility 100ms ease 0ms,
    transform 100ms ease 0ms, -webkit-transform 100ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  top: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 100ms ease 100ms, visibility 100ms ease 100ms,
    -webkit-transform 100ms ease 100ms;
  transition: opacity 100ms ease 100ms, visibility 100ms ease 100ms,
    -webkit-transform 100ms ease 100ms;
  transition: opacity 100ms ease 100ms, visibility 100ms ease 100ms,
    transform 100ms ease 100ms;
  transition: opacity 100ms ease 100ms, visibility 100ms ease 100ms,
    transform 100ms ease 100ms, -webkit-transform 100ms ease 100ms;
}

.mobile-nav__close {
  position: absolute;
  top: 27px;
  right: 30px;
  font-size: 18px;
  color: var(--sonchoy-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list > li > a > .main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--sonchoy-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content
  .main-menu__list
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a.expanded {
  color: var(--sonchoy-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--sonchoy-base);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
  width: 30px;
  height: 30px;
  background-color: var(--sonchoy-white);
  border: none;
  outline: none;
  color: var(--sonchoy-black);
  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;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
  border-radius: 100px;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a
  > button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--sonchoy-black);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 5vh;
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--sonchoy-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--sonchoy-base);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--sonchoy-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #000;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

.scroll-to-top {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: rgb(0, 0, 0, 0.4);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 100%;
}

.scroll-to-top i {
  color: var(--sonchoy-white);
  font-size: 18px;
  line-height: 60px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.scroll-to-top:hover {
  background-color: rgb(255, 255, 255, 0.4);
}

.scroll-to-top:hover i {
  color: var(--sonchoy-black);
}

.site-footer {
  position: relative;
  display: block;
  background-color: #646464;
  z-index: 10;
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 10px 0 10px;
}

.site-footer__top-inner {
  position: relative;
  display: block;
}

.site-footer .c {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.site-footer .left {
  width: 50%;
  position: relative;
}

.site-footer .left a {
  display: block;
  float: left;
  padding: 10px;
  font-size: 17px;
}

.site-footer .left .img {
  position: absolute;
  bottom: 0;
}

.site-footer .left img {
}

.site-footer .right {
  text-align: right;
  font-size: 18px;
  width: 436px;
}

.site-footer .right span {
  display: block;
}

.site-footer .right span a {
  font-size: 34px;
  padding-right: 0;
  float: inherit;
  line-height: 40px;
  display: inline-block;
}

.site-footer .bottom {
  text-align: left;
  padding: 10px 0;
}

.site-footer .bottom a {
  display: inline-block;
  padding: 10px;
  font-size: 17px;
}

.site-footer .bottom .ba {
  font-size: 14px;
  color: #c9c9c9;
}

.site-footer .bottom .yq {
  text-align: right;
}

.footer-widget__about {
  position: relative;
  display: block;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.footer-widget__about-text {
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 16px;
  line-height: 30px;
  font-size: 14px;
}

.ii img {
  width: 100% !important;
  height: unset !important;
}

.piclist {
  position: relative;
  z-index: 10;
  padding: 20px 0 0;
}

.piclist li {
  width: 24.625%;
  float: left;
  position: relative;
  margin: 0.5% 0.5% 0 0;
}

.piclist li a {
  position: relative;
  display: block;
}

.piclist li a::before {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  display: block;
}

.piclist li a:hover::before {
  background-color: rgba(0, 0, 0, 0);
  transition: all 500ms ease;
}

.piclist li span {
  display: none;
}

.piclist img {
  width: 100%;
  padding: 0px;
}

.piclist.i li:nth-last-child(-n + 4) {
  margin-bottom: 0.5%;
}

.piclist li:nth-child(4n) {
  margin-right: 0% !important;
}

.djlm {
  background-color: #ffffff;
  padding: 20px 0;
}

.djlm.dy {
  display: inline-block;
  width: 14.03%;
}

.djlm h4 {
  margin: 10px auto;
}

.djlm h4 a {
  color: #000;
  display: block;
  border-bottom: 2px solid;
  width: max-content;
  margin: 0px auto;
}

.djlm ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.djlm ul.top27 li {
  width: 14.28%;
}
.djlm ul.top25 li {
  width: 14.28%;
  padding: 0 20px;
}
.djlm li {
  float: left;
  padding: 0 40px;
}

.djlm li a {
  line-height: 22px;
  font-size: 16px;
  color: #333;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.djlm li.aon a,
.djlm li a:hover {
  color: #fff !important;
  background-color: #333;
  border-radius: 5px;
}

.djlm ul.top26 li {
  width: 16.6666666667%;
}

.djlm ul.top28 li {
  width: 20%;
}

.djlm ul.top30 li {
  width: 10.5%;
  padding: 0px;
}
.cmenu ul.top30 li{
  width: 14%;
  padding: 0 24px;
}

.catname {
  background-color: #f0f0f0;
  height: 200px;
  line-height: 200px;
  color: var(--sonchoy-black);
  text-align: center;
}

.catname h2 {
  line-height: 200px;
}

.catname2 {
  background-color: #f0f0f0;
  height: 80px;
  line-height: 80px;
  color: var(--sonchoy-black);
  text-align: center;
  margin-bottom: 20px;
}

.catname2 h2 {
  line-height: 80px;
}

.yscatname {
}

.yscatname h2 {
  line-height: 30px;
  margin-top: 50px;
}

.yscatname h2 span {
  display: block;
  font-size: 22px;
}

.Popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 100;
  user-select: none;
}

.Popup .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.Popup .inner {
  max-width: 550px;
  width: 90%;
  position: relative;
  padding: 4% 0;
  background-color: #fff;
  text-align: center;
  max-height: 80%;
  overflow: auto;
}

.Popup .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #f28e00;
  cursor: pointer;
}

.Popup .close::before,
.Popup .close::after {
  content: "";
  position: absolute;
  left: 50;
  top: 50%;
  background-color: #fff;
  height: 70%;
  width: 2px;
}

.Popup .close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.Popup .close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.Popup aside {
  font-size: 22px;
  color: #333333;
  margin: 30px 0 20px;
}

.Popup article {
  max-width: 360px;
  font-size: 16px;
  line-height: 28px;
  color: #333666;
  margin: 0 auto;
}

.nlist {
  padding: 1% 0 0 0;
  overflow: hidden;
}

.nlist .container {
  max-width: 1280px;
}

.nlist .title-box {
  text-align: center;
  margin-bottom: 1%;
}

.nlist .more {
  text-align: center;
  width: 125px;
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  background: #000;
  display: block;
}

.nlist .more:hover {
  background: #a52d34;
}

.nlist .more:after {
  display: inline-block;
  content: "";
  background: url("../images/PicList75_more.png") no-repeat;
  width: 25px;
  height: 6px;
  vertical-align: middle;
  margin-left: 5px;
}

.nlist .tit a {
  font-size: 20px;
  color: #000;
}

.nlist .tit a {
  font-size: 20px;
  color: #000;
}

.nlist p {
  font-size: 16px;
  line-height: 1.715em;
  color: #7d7d7d;
  height: 3.43em;
  margin-bottom: 2.03vw;
  margin-top: 10px;
}

.nlist .news-top {
  padding-bottom: 4.22vw;
}

.nlist .news-top .info {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.nlist .news-top time {
  border-left: 1px solid #c6c6c6;
  padding-left: 1.62vw;
  display: block;
  margin-bottom: 2.61vw;
  color: #333;
  font-size: 18px;
}

.nlist .news-top time span {
  display: block;
  font-size: 2em;
}

.nlist .news-top .slick-dots {
  text-align: center;
  padding-top: 1.72vw;
}

.nlist .news-top .slick-dots li {
  display: inline-block;
  width: 20px;
  height: 3px;
  margin: 0 5px;
  background-color: #d9d9d9;
}

.nlist .news-top .slick-dots li button {
  display: none;
}

.nlist .news-top .slick-dots li.slick-active {
  background: #000;
}

.nlist .news-top .pic .img-block {
  max-height: 350px;
  object-fit: cover;
}

.nlist page {
  text-align: center;
  color: #000;
  display: block;
  line-height: 50px;
}

.nlist page a {
  width: 50px;
  color: #000;
  display: inline-block;
}

.nlist Page a:hover {
  color: #fff;
  background: #333;
}

.nlist page span {
  background-color: #333;
  width: 50px;
  color: #fff;
  display: inline-block;
}

.nlist page .a1 {
}

.nlist page > a:first-child {
  display: none;
}

.nlist .news-list {
  background: #f5f5f5;
  padding: 4.12vw 0 2vw 0;
}

.nlist .news-list li {
  background: #fff;
  margin-bottom: 1.41vw;
}

.nlist .news-list li a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nlist .news-list .main {
  border-left: 2px solid #000;
  padding-left: 4.17vw;
  padding-right: 4.06vw;
  padding-top: 1vw;
  padding-bottom: 1vw;
}

.nlist .news-list .tit {
  margin-bottom: 5px;
}

.nlist .news-list time {
  color: #ccc;
  font-size: 16px;
}

.nlist .news-list .more {
  line-height: normal;
  color: #333;
  background: none;
  width: auto;
  text-align: left;
}

.nlist .news-list .more:after {
  background-image: url("../images/PicList75_more.gif");
}

.nlist .news-list .pic .img-block {
  max-height: 220px;
  object-fit: cover;
  display: block;
  width: 100%;
  max-width: max-content;
  margin: 0 auto;
}
}

.nlist .s-list {
  background: #f5f5f5;
  padding: 4.12vw 0 2vw 0;
}

.nlist .s-list li {
  background: #fff;
  margin-bottom: 1.41vw;
}
.nlist .s-list li a {
  color: #000;
  font-weight: 600;
}
.nlist .s-list li a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ytable {
  display: table;
  width: 100%;
}

.ytable-fixed {
  table-layout: fixed;
}

.ytable-cell {
  display: table-cell;
  vertical-align: middle;
}

.main-slider-three {
  position: relative;
  display: block;
  z-index: 10;
  /*min-height: 296px;*/
}
.main-slider-three__title {
  font-size: 36px;
}
.main-slider-three.video video {
  width: 100vw;
  cursor: pointer;
}

.main-slider-three .item {
  position: relative;
  z-index: 10;
}

.main-slider-three__img img {
  width: 100%;
}

.active .main-slider-three__img {
  opacity: 1;
  transform: translateX(0px);
  transition: all 1000ms ease;
  transition-delay: 500ms;
  z-index: 1;
  display: block !important;
}

.main-slider-three__content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-slider-three__title {
  position: relative;
  display: block;
  font-size: 80px;
  color: var(--sonchoy-black);
  font-weight: 500;
  line-height: 80px;
  text-transform: capitalize;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.active .main-slider-three__title {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}
.top25 li:nth-child(-n + 4) span::before {
  font-family: "FontAwesome";
  content: "\f111";
  color: #f28e00;
  padding-right: 5px;
}

.sccdcx {
  display: flex;
}
.sccdcx .container {
  line-height: 40px;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sccdcx.t1 {
  height: 180px;
  background-color: #f0f0f0;
  margin: 5px auto;
}
.sccdcx .container.shu {
  background-color: #f0f0f0;
  margin: 20px auto 5px;
  max-width: 1000px;
  height: 200px;
  padding: 10px;
  flex-direction: row;
}
.sccdcx .container.shu .row > div:first-child {
  width: 300px;
}
.sccdcx .container.shu .row > div:nth-child(2) {
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sccdcx .container.shu .row > div:nth-child(2) img {
  width: fit-content;
  height: fit-content;
}
.sccdcx .container.shu .row > div:nth-child(3) {
  width: 340px;
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #9e9e9e;
  color: #ffffff;
}

.sccdcx .container.shu label,
.shu input {
  width: 24%;
  margin: 2% 0.5%;
  float: left;
  height: 30px;
  line-height: 30px;
}
.sccdcx .container.shu label {
  text-align: right;
  padding-right: 5px;
}
.sccdcx .container.shu .row > div:first-child > div:last-child {
  margin-top: 4%;
}
.sccdcx .container.shu .row > div:first-child > div:last-child input {
  width: 74%;
  padding-left: 26px;
}
.sccdcx .container.shu p {
  margin-left: 80px;
  position: absolute;
}
.shu input::placeholder {
  font-size: 14px;
}

.sccdcx .container.shu .row > div:nth-child(3) div {
  width: 33.3333%;
  line-height: 20px;
  padding: 2%;
}

.sccdcx.t3 {
  margin-top: 40px;
  display: block;
}
.sccdcx.t3 .container {
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
  font-size: 20px;
}
.sccdcx.t3 .container .row {
  --bs-gutter-x: 0px;
}
section.sccdcx.t3 .heng {
  border-top: 1px solid #000000;
  max-width: 1280px;
}
.sccdcx.t3 .container .huang {
  font-size: 28px;
  color: #f28c00;
  margin: 20px auto;
  display: block;
}
.sccdcx.t3 .container .huangdi {
  background-color: #f28c00;
  margin: 20px auto 40px;
  display: block;
  color: #ffffff;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 30px;
}

.sccdcx.t3 .container .k1,
.sccdcx.t3 .container .k2 {
  background-color: #f0f0f0;
  position: relative;
  height: 281px;
  padding: 0;
}
.sccdcx.t3 .container .wu {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sccdcx.t3 .container #d0t {
  padding: 5%;
  display: none;
  background-color: #f0f0f0;
  height: 281px;
}

.sccdcx.t3 .container .rbgt {
  display: none;
  height: 100%;
  padding: 20px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}
.sccdcx.t3 .container a.da {
  height: 100%;
  width: 100%;
  display: block;
}
.sccdcx.t3 .container a.da div {
  height: 100%;
  width: 100%;
  color: #000000;
  padding: 20px;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column;
  line-height: 24px;
  text-align: right;
  display: none;
}
.sccdcx.t3 .container a.da div:before {
  display: block;
  content: "";
  width: 1px;
  height: 50%;
  background-color: white;
  position: absolute;
  left: 0;
  margin-top: -20px;
}

.sccdcx.t3 .k3 {
  font-size: 16px;
  text-align: center;
}
.sccdcx.t3 .k3 P:nth-child(2) {
  font-weight: 600;
  font-size: 20px;
  margin-top: 20px;
}
.sccdcx.t3 .k3 P:last-child {
  text-align: left;
  line-height: 30px;
}

.sccdcx.t3 .k4 {
  height: 450px;
  position: relative;
  margin-top: 50px;
  text-align: center;
}
.sccdcx.t3 .k4 p {
  text-align: left;
  font-size: 32px;
  margin-bottom: 20px;
}
.sccdcx.t3 .k4 .da {
  display: none;
}
.sccdcx.t3 .k4 .da > a,
.sccdcx.t3 .k4 .dt {
  flex-direction: column;
  color: #000000;
}
.sccdcx.t3 .k4 .da > a,
.sccdcx.t3 .k4 .dt > div {
  width: 100%;
  flex-direction: column;
}
.sccdcx.t3 .k4 .da > a div,
.sccdcx.t3 .k4 .dt > div,
.k41 {
  height: 200px;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 5%;
  width: 95%;
}
.k41 {
  margin-left: 0%;
  width: 100%;
}
.sccdcx.t3 .k4 .da > a span,
.sccdcx.t3 .k4 .dt > span {
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 10px 20px;
  font-size: 17px;
  line-height: 30px;
  height: 140px;
}
.sccdcx.t3 .k4 .dt > span i:first-child {
  font-size: 22px;
  font-weight: 600;
}

.sccdcx.t3 .k4 .k4d {
  position: absolute;
  bottom: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  text-align: left;
  color: #ffffff;
  z-index: -1;
  line-height: 30px;
  padding: 30px 10px 20px 50px;
}

.sccdcx.t3 .k4 .k4d img {
  position: absolute;
  padding-left: 20px;
  top: 27px;
}

.colorVariable dd,
.colorTemplature dd {
  line-height: 30px !important;
}
.sccdd {
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  color: var(--sonchoy-black);
  padding: 20px 0;
  background-color: #808080;
}

.sccdd .container {
  font-size: 38px;
  color: #ffffff;
  text-align: left;
  line-height: 38px;
  padding: 10px 200px;

  line-height: 40px;
  max-width: 1280px;
}

.sccd {
  height: 560px;
  min-height: 360px;
  background-color: #808080;
  overflow: hidden;
  margin-bottom: 5px;
}
.sccd .container {
  height: 100%;
  margin: 0 auto;
  padding: 0 200px;
  position: sticky;
}
.sccd .sccddh {
  position: relative;
  display: block;
  width: 80px;
  float: left;
  background-color: #696969;
  height: 100%;
}
.sccd .sccddh ul {
  width: 100%;
  padding: 20px;
}
.sccd .sccddh li {
  width: 40px;
  height: 40px;
  position: absolute;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.sccd .sccddh li:nth-child(1) {
  background-color: #fc0000;
  top: 10px;
}
.sccd .sccddh li:nth-child(2) {
  background-color: #fc8000;
  bottom: 250px;
}
.sccd .sccddh li:nth-child(3) {
  background-color: #ffff00;
  bottom: 200px;
}
.sccd .sccddh li:nth-child(4) {
  background-color: #29e529;
  bottom: 150px;
}
.sccd .sccddh li:nth-child(5) {
  background-color: #008282;
  bottom: 100px;
}
.sccd .sccddh li:nth-child(6) {
  background-color: #4141f0;
  bottom: 50px;
}
.sccd .sccddh li:nth-child(7) {
  background-color: #ed48f0;
  bottom: 0px;
}

.sccd .sccditem {
  width: calc(100% - 158px);
  max-width: 1000px;
  position: relative;
  display: block;
  float: left;
  height: 100%;
  overflow-y: auto;
}
.sccd .sccditem ul {
  padding-left: 0px;
  float: left;
  width: 100%;
}
.sccd .sccditem li {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin: 10px;
  float: left;
}
.sccd .sccditem::-webkit-scrollbar {
  background-color: transparent;
}
.sccd .sccditem:hover::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid;
}
.sccd .sccditem:hover::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.sccd .sccditem a {
  display: block;
  width: 100%;
  height: 100%;
}

.sccd .sccdbg {
  position: absolute;
  top: 210px;
  z-index: -999;
  left: 280px;
  width: calc(100% - 480px);
  height: 420px;
  display: flex;
  flex-wrap: nowrap;
  resize: vertical;
  flex-direction: column;
  justify-content: center;
  padding-right: 2px;
  text-align: right;
  user-select: none;
  cursor: ns-resize;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 50%,
    #000000 50%,
    #000000 100%
  );
}
.sccd .sccdbg span {
  pointer-events: none;
  line-height: 35px;
  color: #ffffff;
}
.sccd .sccdbg span:first-child,
.sccd .sccdbg span:nth-child(2) {
  color: #000000;
}
.sccd .sccdbg span:nth-child(2) {
  margin-bottom: 140px;
}

.sccdbgtip {
  background-color: #ea5415;
  color: #fff;
  width: 140px;
  padding: 5px;
  position: absolute;
  right: 200px;
  top: 132px;
  z-index: -1;
}
.sccdbgtip:before {
  content: "";
  background-color: #808080;
  border-top: 8px solid #fc4800;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  left: 60px;
  top: 70px;
  position: absolute;
}

.ys {
  text-align: center;
  margin: 30px auto;
  height: 170px;
}
.ys span {
  text-align: center;
  float: left;
  height: 120px;
}
.ys span i {
  color: var(--sonchoy-black);
  display: block;
  line-height: 100px;
  font-size: 26px;
}
.ys span i:nth-child(2) {
  line-height: 80px;
}
.ys .uld {
  width: 91.6666% !important;
}
.ys ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.ys ul li {
  text-align: center;
  padding: 0 40px;
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 10px;
}
.ys ul li a {
  display: block;
  min-width: 140px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  border-radius: 5px;
}
.ys ul li:nth-last-child(-n + 6) {
  margin-top: 10px;
}
.ys ul li.on a,
.ys ul li a:hover {
  color: #fff !important;
  background: #000000;
}

.ysb {
  height: 290px;
  margin: 0 auto 20px;
}
.ysb ul li.ysl {
  color: #000;
  font-size: 30px;
  text-align: left;
  margin-top: 20px;
}
.ysb ul li a {
  background-color: #9e9e9e;
  color: #ffffff;
}
.ysb ul li:nth-last-child(-n + 6) {
  margin-top: 5px;
}

.main-slider-four {
  position: relative;
  z-index: 10;
  margin-top: 3%;
  margin-bottom: 3%;
}

.main-slider-four .container {
  max-width: 1280px;
}

.main-slider-four .item {
  position: relative;
  z-index: 10;
}

.main-slider-four__content {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 2% 3%;
  color: #fff;
}

.main-slider-four__content h2 {
  font-size: 22px;
  font-weight: normal;
  margin: 0;
  line-height: 30px;
  color: #fff;
}

.main-slider-four__content p {
  transition: 0.3s;
  font-size: 16px;
  color: #fff;
}

.main-slider-four__title {
  position: relative;
  display: block;
  font-size: 90px;
  color: var(--sonchoy-white);
  font-weight: 700;
  line-height: 90px;
  margin-top: 11px;
  margin-bottom: 45px;
  text-transform: capitalize;
  letter-spacing: -0.02em;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.active .main-slider-four__title,
.active .main-slider-four__icon,
.active .main-slider-four__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-four .owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  padding: 0px 20px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
  transform: translateY(-50%);
}

.main-slider-four .owl-theme .owl-nav [class*="owl-"] {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--sonchoy-base-rgb), 1);
  background-color: rgba(var(--sonchoy-white-rgb), 0.3);
  border: none;
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 0px 0px !important;
}

.main-slider-four .owl-theme .owl-nav [class*="owl-"]:hover {
  color: rgba(var(--sonchoy-black-rgb), 1);
  background-color: rgba(var(--sonchoy-white-rgb), 1);
}

.main-slider-four .owl-theme .owl-nav [class*="owl-"] + [class*="owl-"] {
  margin-left: 0px;
}

.owl-dots.disabled,
.owl-nav.disabled {
  display: none !important;
}

.owl-carousel.owl-dot-style1 .owl-dots {
  position: relative;
  text-align: center;
  line-height: 0;
  margin-top: 57px !important;
  display: block;
}

.owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 3px;
  margin: 0px 5px;
  background: #d9d9d9;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #000000;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 240px;
  height: 2px;
  background-color: #d4d4d4;
  border: none;
  margin: 0;
  padding: 0px;
  border-radius: 0;
  transition: all 100ms linear;
  transition-delay: 0.1s;
  overflow: hidden;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot::before {
  background-color: var(--sonchoy-base) !important;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border-radius: 0;
  background-color: var(--sonchoy-base);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: all 900ms ease;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active::before {
  -webkit-transform: scale(1);
  transform: scale(1);
  transform-origin: left center;
}

.PicList175 {
  position: relative;
  z-index: 10;
  padding: 10px;
}

.PicList175 img {
  width: 100%;
  padding: 10px 0px;
}

.about-three__img-2 {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  padding: 5px;
}

.about-three__img-2::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.about-three__img-2 img {
  width: 100%;
  padding: 0;
}

.about-three__img-2:hover::before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
}

.about-three__img-2 a span {
  position: absolute;
  text-align: center;
  color: #fff;
  font-size: 20px;
  top: 45%;
  width: 100%;
  left: 0;
}

.Hbanner {
  position: relative;
  z-index: 999;
}

.Hbanner .panel {
  position: relative;
  height: 100vh;
  width: 100vw;
}

.has-video.had,
.has-video.not,
.has-video.ydsb {
  opacity: 1;
}

.Hbanner .panel .Box {
  height: 100vh;
  width: 100vw;
}

.newHbanner .panel_1 .pic {
  width: 100vw;
  height: 100vh;
}

.newHbanner .panel_1 .pic figure {
  margin: 0;
  height: 100vh;
}

.Hbanner .banwap {
  display: none;
}

.Hbanner .panel_1 .inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "SourceHanSerifCNBOLD";
  align-items: flex-start;
  justify-content: flex-start;
  text-align: center;
}

.Hbanner .inner {
}

.phonePlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: url(../picture/play.svg) no-repeat center/100%;
  z-index: 3;
  display: none;
}

.Hbanner video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.has-video.ydsb video {
  display: none;
}

.consolePoup {
  display: none;
}

.ydsb .muted {
  display: none;
}

.had .muted {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: url(../picture/muted.png) no-repeat center/100%;
  width: 50px;
  height: 50px;
  z-index: 99;
  display: block;
  cursor: pointer;
}

.had .muted.on {
  background-image: url(../picture/on.png);
}

.has-video.ydsb .phonePlay {
  display: block;
  cursor: pointer;
}

.consolePoup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
}

.consolePoup.active {
  display: block;
}

.consolePoup .txt {
  margin: 0 auto;
  position: relative;
}

.consolePoup .txt .pClose {
  position: absolute;
  right: 10px;
  top: -40px;
  z-index: 5;
  width: 40px;
  opacity: 0.7;
}
.consolePoup .txt .pClose .fa {
  color: #ffffff;
  font-size: 1.6em;
}
.consolePoup .txt .pClose:hover {
  cursor: pointer;
  opacity: 1;
}

.consolePoup .txt video {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/*服务流程 */
.fwlc .list {
  width: 1054px;
  margin: 120px auto;
  background-image: url("../picture/lcbg.png");
  height: 400px;
  background-repeat: no-repeat;
}

.fwlc .list dl {
  position: relative;
  cursor: pointer;
  float: left;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.fwlc .list dd {
  margin: 20px;
  height: 40px;
  width: 40px;
}

.fwlc .list dd p {
  padding: 0;
  color: #333;
  margin: 0;
  font-size: 16px;
  line-height: 20px !important;
  text-align: center;
}

.fwlc .list dl:hover p {
  color: #f28e00;
}

.dw141 {
  margin-left: 487px;
}

.dw140,
.dw139 {
}

.dw138 {
  margin-right: 240px;
}

.dw137 {
  margin-left: 87px;
}

.dw136 {
  margin-left: 320px;
}

.dw135 {
  margin-left: 160px;
  margin-right: 240px;
}

.dw121 {
  margin-left: 87px;
}

.dw120 {
  margin-left: 320px;
}

.dw119 {
  margin-left: 160px;
  margin-right: 240px;
}

.dw118 {
  margin-left: 87px;
}

.dw98 {
  margin-left: 160px;
}

.dw134 {
  padding-left: 7px;
  width: 87px !important;
}

.dw122 {
  padding-right: 7px;
  width: 87px !important;
}

.dw122::before,
.dw123::before,
.dw124::before,
.dw125::before,
.dw126::before,
.dw127::before,
.dw128::before,
.dw129::before,
.dw130::before,
.dw131::before,
.dw132::before,
.dw133::before,
.dw134::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../picture/lcbg.png");
  background-position-y: bottom;
  opacity: 0;
  animation-name: switch;
  animation-duration: 1.3s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  background-position-y: bottom;
}

@keyframes switch {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.dw134::before {
  background-position-x: 0px;
  animation-delay: 3s;
}

.dw133::before {
  background-position-x: -87px;
  animation-delay: 3.2s;
}

.dw132::before {
  background-position-x: -167px;
  animation-delay: 3.3s;
}

.dw131::before {
  background-position-x: -247px;
  animation-delay: 3.4s;
}

.dw130::before {
  background-position-x: -327px;
  animation-delay: 3.5s;
}

.dw129::before {
  background-position-x: -407px;
  animation-delay: 3.6s;
}

.dw128::before {
  background-position-x: -487px;
  animation-delay: 3.7s;
}

.dw127::before {
  background-position-x: -567px;
  animation-delay: 3.8s;
}

.dw126::before {
  background-position-x: -647px;
  animation-delay: 3.9s;
}

.dw125::before {
  background-position-x: -727px;
  animation-delay: 4s;
}

.dw124::before {
  background-position-x: -807px;
  animation-delay: 4.1s;
}

.dw123::before {
  background-position-x: -887px;
  animation-delay: 4.2s;
}

.dw122::before {
  background-position-x: -967px;
  animation-delay: 4.3s;
}

.xz {
  background-color: #ffffff;
}

.xz .time {
  text-align: center;
  font-size: 18px;
  color: #000;
  display: block;
  padding: 20px 0;
  width: 50%;
  margin: 0 auto;
}

.xz .time b {
  font-size: 22px;
  display: block;
  margin: 20px 0;
}
.xz ul {
  margin: 0 auto;
  width: 90%;
}

.xz li {
  float: left;
  text-align: center;
  padding: 20px 42px;
}

.xz li a {
  display: block;
  background-color: #f0f0f0;
  overflow: hidden;
}

.xz li .hsc {
  margin: 10px 20px 0px;
  overflow: hidden;
  width: calc(100% - 40px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 316px;
}

.xz li .txt {
  width: calc(100% - 40px);
  margin: 0 auto;
}

.xz li img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.xz li h5,
.xz li p {
  margin: 0 auto;
  text-align: left;
  display: block;
  background-color: #ffffff;
  width: calc(100% - 40px);
  padding: 0 10px;
}

.xz li h5 {
  font-size: 20px;
  font-weight: normal;
  color: #000;
  line-height: 28px;
  width: 100%;
}

.xz li p {
  color: #333;
  font-size: 16px;
  overflow: hidden;
  min-height: 160px;
  line-height: 30px;
  width: 100%;
  margin-bottom: 24px;
}

.xz li span {
  color: #fff;
  border-radius: 5px;
  padding: 0px 20px;
  display: inline-block;
  background: #646464;
  margin: 20px;
}

.xz li a:hover {
  color: #d00234;
}

.xz li a:hover span {
  background-color: #d00234;
}

.xz li.dot .hsc {
  margin: 10px 20px 0px;
  width: calc(100% - 40px);
  height: 500px;
}

.xz li.dot img {
  max-height: 100%;
  width: 100%;
}

.xz li.dot h5 {
  text-align: center;
  width: 100%;
}

.xz li.dot p {
  min-height: unset;
  padding: 0px;
  margin-bottom: 0px;
  overflow: hidden;
}

.xz136 li {
  min-height: unset;
}
.xz136 li h5 {
  padding-top: 10px;
}
.xz136 li .hsc {
  height: unset;
  margin-top: 20px;
}

.xz136 li .txt p {
  min-height: 94px;
  margin-bottom: 0;
}

.view {
  color: #000000;
  margin: 20px auto 0;
}
.view .container h2 {
  text-align: center;
}
.view {
  color: #000000;
  margin: 0px auto 0;
  width: 100%;
  max-width: 1600px;
  padding: 0;
}
.view img {
  max-width: 100%;
  text-align: center;
}

.view div.mzsy {
  width: min-content;
  display: block;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
}
.view div.mzsy img {
  max-width: max-content;
}

.view ul.mzsy {
  width: 100%;
  display: flex;
  overflow: hidden;
  margin: 0 auto;
  flex-wrap: nowrap;
  text-align: center;
  justify-content: space-evenly;
  padding-left: 0;
}
.view ul.mzsy:after {
  content: none;
  display: none;
}
.view ul.mzsy li {
  width: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.view div.sekuai {
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.view div.sekuai a {
  margin: 0px 2px;
}
.view div.sekuai img {
}

.showys {
  color: #000000;
  margin: 20px auto 0;
  background-color: #636363;
}
.showys .container {
  max-width: 1000px;
}
.showys .container dd i {
  line-height: 20px;
  display: block;
}

.showys.bgc {
  color: #000000;
  background-color: #ffffff;
}

.showys.bgc .b1 .b1name,
.showys.bgc .b1 a,
.showys.bgc .b2,
.showys.bgc .b3 dt {
  color: #000000;
}
.b2 dl div {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 50px;
  padding: 0 10px;
  font-size: 16px;
  color: inherit;
  overflow: hidden;
  line-height: normal;
  text-align: left;
}
.b2 dl div img {
  display: block;
  width: 60%;
  margin: 20% auto;
}
.b2 dl div p {
  background: none;
  line-height: 24px;
  padding: 0;
  font-size: 16px;
}

.b2 dl div strong span {
  color: #ffffff;
}
.b2 dl div span {
  color: #cccccc;
}
.showys.bgc .b2 dl div strong span {
  color: #4d4d4d !important;
}
.showys.bgc .b2 dl div span {
  color: #7f7f7f !important;
}

.cxts.b2 dl div strong span {
  color: #4d4d4d !important;
}
.cxts.b2 dl div span {
  color: #7f7f7f !important;
}

.showys h2 {
  text-align: center;
}

.id {
  height: 96px;
  margin-top: -96px;
}

.showys a {
  color: #000000;
  margin: 20px auto 0;
}

.showys .b1,
.showys .b2,
.showys .b3 {
  max-width: 1280px;
  margin: 5px auto;
}

.showys .b1 {
  display: block;
  font-size: 18px;
}

.b1 .b1name {
  line-height: 150px;
  font-size: 36px;
  color: #fff;
}

.b1 a {
  line-height: 50px;
  font-size: 20px;
  display: inline-block;
  text-align: right;
  float: right;
  margin-top: 100px;
  color: #fff;
}

.showys .b1 p {
  padding: 80px;
  display: block;
  color: #fff;
  padding-left: 10px;
}

.showys .b1 dl {
  height: 190px;
  padding: 10px 100px;
  background-color: #f0f0f0;
}

.showys .b1 dd {
  float: left;
  color: #666666;
}

.showys .b1 div {
  float: right;
  display: block;
  background-color: #000;
  color: #fff;
  margin: 5px;
  padding: 5px;
}

.kj,
.gj {
  cursor: pointer;
}

.cxts dl dt {
  color: #000000;
}

.b2 {
  display: block;
  color: #fff;
}

.b2 p,
.b3 p {
  background-color: #7f7f7f;
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  line-height: 36px;
  padding-left: 20px;
}
.b2 dl,
.b3 dl {
  display: none;
}
.b2 dl.on,
.b3 dl.on {
  display: block;
}
.b2 dl {
  width: 19.6%;
  float: left;
  margin-top: 10px;
  margin-right: 0.5%;
  position: relative;
}

.b2 dl:last-child {
  margin-right: 0;
}

.b2 dl dt {
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}

.b2 dd {
  width: 50%;
  padding-bottom: 50%;
  margin: 0;
  float: left;
  text-align: center;
}

.b2 dl dd:last-of-type {
  position: absolute;
  left: 25%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  padding-bottom: 25%;
  margin-top: 25%;
  font-size: 16px;
}

.b2 dl {
  width: 19.6%;
  float: left;
  margin-top: 20px;
  margin-right: 0.5%;
  position: relative;
}
.b2 dl:last-child {
  margin-right: 0;
}
.b2 dl dt {
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}
.b2 dd {
  width: 50%;
  padding-bottom: 50%;
  margin: 0;
  float: left;
  text-align: center;
  background-color: #f0f0f0;
}
.b2 dl dd:nth-child(6),
.b2 dl dd:last-of-type {
  position: absolute;
  left: 25%;
  padding-bottom: 12.5%;
  padding-top: 12.5%;
  margin-top: 25%;
  font-size: 12px;
  width: 50%;
}
.b2 dl dd:last-of-type {
  display: none;
  flex-direction: row;
}

.cxts.b2 dl,
.cxts.b3 dl {
  display: block;
}

.b3 {
  display: block;
  padding-bottom: 10px;
}

.b2 p i,
.b3 p i {
  color: #ffffff;
  font-size: 20px;
  display: inline-block;
  text-align: right;
  float: right;
  width: 100px;
  margin-right: 20px;
  line-height: 36px;
}

.b3 dt {
  color: #ffffff;
  padding-left: 10px;
  text-align: left;
}

.b3 dd {
  margin: 0;
  float: left;
  text-align: center;
  color: #fff;
  float: left;
  border: 2px solid #fff;
  background-color: #f0f0f0;
  min-height: 44px;
  font-size: 16px;
  line-height: 40px;
}
.cp {
  margin: 40px auto;
}
.cp .auto ul.top291 {
  justify-content: flex-start;
  margin: 0;
}

.cp .auto ul.top291 li {
  width: 140px;
  margin-right: 6px;
  padding: 0;
}

.cp .auto ul.top291 li:nth-child(11),
.cp .auto ul.top291 li:nth-child(22) {
  margin-right: 0;
}

.cp .auto ul.top291 a {
  width: 140px;
  height: 160px;
  line-height: 20px;
  font-size: 16px;
}

.cp .auto ul.top291 img {
  width: 140px;
  height: 120px;
}

.cp li a {
  display: block;
  text-align: center;
  color: #000;
  margin: 0 auto;
}

.cp li a:hover {
  color: #000000 !important;
}

.cp ul.top291 a:hover {
  color: #fff;
  background-color: #fff;
  border-radius: 0px;
}

/*cppic */
.cppic {
  padding: 1% 0 0;
  max-width: 90%;
  margin: 0 auto;
}

.cppic li {
  float: left;
  margin-bottom: 2.5em;
}
.cppic figure{
  overflow: hidden;
}
.cppic li img {
  width: 100%;
  transition: 0.3s;
  transform-origin: 100% 100%;
  -webkit-transform-origin-x: right; 
  -webkit-transform-origin-y: bottom; 
}
.cppic li img:hover {
  transform: scale(1.3);

}


.cppic li .txt {
  box-shadow: 0px 0.625em 4.375em rgba(0, 0, 0, 0.05);
  padding: 1.875em;
}

.cppic li .tit {
  font-size: 1.125em;
  line-height: 1.6666;
}

.cppic li p {
  font-size: 16px;
  line-height: 2;
  min-height: 4em;
  color: #333;
}

.cppic li .pic {
  overflow: hidden;
}

.cppic li .Ispic {
  padding-bottom: 62.223%;
  transition: 0.3s;
}

.cppic li a:hover .Ispic {
  transform: scale(1.1);
}

.cppic li a:hover {
  color: #e60012;
}

.cppic li time {
  color: #999999;
  display: block;
  background: url(https://www.ourstucco.cn/statics/images/PicList003142-icon.svg) no-repeat right center;
  font-family: "Roboto-Regular";
}

.cppic li a:hover time {
  background-image: url(https://www.ourstucco.cn/statics/images/PicList003142-icon-red.svg);
}

.Menu003072 {
  background-color: #f0f0f0;
}

.Menu003072 h2 {
  line-height: 100px;
  text-align: center;
}

.Menu003072 .content {
  color: #000;
  padding-bottom: 50px;
}

.Menu003073 {
  background-color: #f0f0f0;
  padding-top: 96px;
}

.Menu003073 h2 {
  line-height: 200px;
  text-align: center;
}

.Menu003073 .st {
  padding-top: 80px;
  padding-bottom: 20px;
}

.Menu003073 .st h2 {
  line-height: 20px;
  font-size: 16px;
}

.Menu003073 .st h2 b {
  line-height: 40px;
  font-size: 18px;
}

.cmenu {
  text-align: center;
  margin: 10px auto;
}

.cmenu ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  --bs-gutter-x: 0;
}

.cmenu ul li {
  text-align: center;
  padding: 0 40px;
  display: inline-block;
  margin-top: 5px;
}

.cmenu ul li a {
  display: block;
  min-width: 140px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  border-radius: 5px;
  background: #f3f3f3;
}
.cmenu ul li.on a,
.cmenu ul li a:hover {
  color: #fff !important;
  background: #000;
}
.PicList175 {
  padding: 3% 0;
}

.PicList175 .word {
  text-align: center;
  margin-bottom: 3%;
}

.PicList175 time {
  text-align: center;
  font-size: 18px;
  width: 50%;
}

.PicList175 li {
  float: left;
  width: 32%;
  margin-right: 2%;
  text-align: center;
  padding: 0 0 2%;
  margin-bottom: 2%;
  box-shadow: 0px 0.625em 4.375em rgba(0, 0, 0, 0.05);
  padding: 10px;
}

.PicList175 li:nth-child(3n) {
  margin-right: 0;
}

.PicList175 li h5,
.PicList175 li p {
  margin: 0;
  text-align: left;
  padding: 0 10px;
}

.PicList175 li h5 {
  font-size: 20px;
  font-weight: normal;
  color: #000;
  line-height: 28px;
}

.PicList175 li span {
  color: #fff;
  border-radius: 5px;
  padding: 10px 20px;
  display: inline-block;
  line-height: 2;
  background: #000;
}

.PicList175 li p {
  color: #333;
  font-size: 16px;
  overflow: hidden;
}

.PicList175 li a:hover {
  color: #d00234;
}

.PicList175 li a:hover span {
  color: #fff;
  background-color: #d00234;
}

.PicList175 li .dot {
  text-align: center;
}

.zdlist {
  padding: 3% 0;
}

.zdlist .title {
  padding-bottom: 3%;
  font-size: 30px;
  color: #000;
  font-weight: bold;
  text-align: center;
}

.zdlist .title span {
  display: block;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
}

.zdlist .list dl {
  float: left;
  width: 20%;
  display: table;
  cursor: pointer;
  margin-bottom: 2.5%;
  box-shadow: 0 -3px 11px 10px rgb(180 189 221 / 8%),
    0 6px 14px hsl(0deg 0% 100% / 30%), 0 12px 20px rgb(180 189 221 / 20%);
  border-radius: 20px;
}

.zdlist .list dl > * {
  display: table-cell;
}

.zdlist .list dt {
  width: 95px;
}

.zdlist .list dt b {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 24px;
  position: relative;
  overflow: hidden;
  line-height: 45px;
  text-align: center;
  margin: 25px auto;
}

.zdlist .list dt b::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 7px;
  background: #f28e00;
  bottom: 38px;
  right: 20px;
}

.zdlist .list dd p {
  padding: 3% 5% 3% 0;
  color: #333;
  margin: 0;
  font-size: 16px;
}

.zdlist .list dl:hover b,
.zdlist .list dl:hover p {
  color: #f28e00;
}

.cppic li {
  width: 23.5%;
}

.cppic li:not(:nth-child(4n)) {
  margin-right: 2%;
}

.cppic li:nth-child(4n + 1) {
  clear: left;
}

@media (max-width: 1023px) {
  .container {
    padding: 0 10px;
  }

  .main-menu .mobile-nav__toggler {
    display: inline-block;
  }

  .main-menu .main-menu__list {
    display: none;
  }

  .main-menu__logo img {
    width: 70vw;
  }

  .site-footer .c {
    flex-direction: column;
    align-items: flex-end;
  }

  .site-footer .left,
  .site-footer .right {
    max-width: 100%;
    height: 250px;
  }

  .site-footer .right {
    margin-top: -120px;
  }
  .site-footer .left {
    width: 100%;
  }

  .site-footer .bottom {
    text-align: center;
    padding-bottom: 100px;
  }

  .site-footer .bottom .ba span {
    display: block;
  }

  .site-footer .bottom .yq {
    text-align: center;
  }

  .djlm .auto ul.top26 li {
    width: 50%;
  }

  .about-three__img-2 a span {
    font-size: 32px;
  }

  .Hbanner .panel,
  .Hbanner .panel .Box,
  .newHbanner .panel_1 .pic {
    height: 50vh;
    display: flex;
    justify-content: center;
  }

  .Hbanner .banwap {
    display: block;
    height: 100%;
  }

  .consolePoup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
  }

  .consolePoup.active {
    display: block;
  }

  .consolePoup .videobox {
    margin-top: 136px;
  }

  .consolePoup .txt {
    margin: 0 auto;
    position: relative;
  }

  .consolePoup .txt .pClose {
    position: absolute;
    right: 10px;
    top: -40px;
    z-index: 5;
    width: 40px;
    opacity: 0.7;
  }

  .consolePoup .txt .pClose:hover {
    cursor: pointer;
    opacity: 1;
  }

  .consolePoup .txt video {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .has-video.ydsb .phonePlay {
    display: block;
  }

  .has-video .macPlay {
    display: none;
  }

  .search {
    padding-left: 6px;
  }

  .main-menu .open-search {
    margin-top: 28px;
  }

  .main-menu .top-search {
    top: 29px;
    width: 100vw;
    right: calc(100vw + -54px);
  }

  .djlm ul.top30 li {
    width: 50%;
  }

  .piclist li a::before {
    display: none;
  }

  .xz .time {
    width: 90%;
  }
  .xz ul {
    width: 100%;
  }
  .xz li {
    width: 100%;
    padding: 0;
  }

  .cppic {
    width: 100%;
  }

  .cppic .auto {
    margin-top: 2em;
  }

  .cppic li {
    width: 48%;
  }

  .cppic li:not(:nth-child(2n)) {
    margin-right: 2%;
  }

  .cppic li:nth-child(2n + 1) {
    clear: left;
  }

  .cppic li .txt {
    padding: 1em;
  }
}
.sidebar {
  position: relative;
  display: block;
  margin-top: -4px;
}

.sidebar__single + .sidebar__single {
  margin-top: 36px;
}

.sidebar__title {
  position: relative;
  margin: 0;
  font-size: 24px;
  margin-bottom: 22px;
  font-weight: 700;
  letter-spacing: -0.016em;
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: #f5f5f8;
  color: var(--sonchoy-gray);
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
  height: 60px;
  width: 100%;
  padding-right: 70px;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--sonchoy-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--sonchoy-gray);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--sonchoy-gray);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--sonchoy-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--sonchoy-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--sonchoy-gray);
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;
  color: var(--sonchoy-black);
  font-size: 25px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.sidebar__post {
  position: relative;
  display: block;
  z-index: 1;
}

.sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 10px 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 3px 20px 0px rgba(21, 24, 32, 0.06);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid transparent;
}

.sidebar__post-list li:hover {
  border: 1px solid var(--sonchoy-base);
}

.sidebar__post-list li + li {
  margin-top: 10px;
}

.sidebar__post-image {
  margin-right: 30px;
}

.sidebar__post-image > img {
  width: 96px;
}

.sidebar__post-content {
  position: relative;
  display: block;
}

.sidebar__post-content h3 {
  font-size: 16px;
  margin: 0;
  line-height: 21px;
  font-weight: 700;
  letter-spacing: -0.016em;
}

.sidebar__post-content-meta {
  line-height: 23px;
  font-weight: 400;
  font-size: 14px;
  color: #8f8e9a;
  letter-spacing: normal;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-content-meta i {
  color: var(--sonchoy-base);
  font-size: 15px;
  padding-right: 10px;
  top: 2px;
  position: relative;
}

.sidebar__post-content h3 a {
  margin-bottom: 8px;
  color: var(--sonchoy-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
}

.sidebar__post-content h3 a:hover {
  color: var(--sonchoy-base);
}

.sidebar__category {
  position: relative;
  display: block;
}

.sidebar__category .insurance-details__catagories-list li a {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 3px 20px 0px rgba(21, 24, 32, 0.06);
}

.sidebar__tags {
  position: relative;
  display: block;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 14px;
  color: #141733;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid #efeded;
  display: inline-block;
  padding: 2px 20px 2px;
  margin-left: 6px;
  font-weight: 500;
}

.sidebar__tags-list a + a {
  margin-left: 6px;
  margin-top: 10px;
}

.sidebar__tags-list a:hover {
  color: var(--sonchoy-white);
  background-color: var(--sonchoy-base);
  border: 1px solid var(--sonchoy-base);
}

@media (max-width: 640px) {
  .nlist .tit {
    font-size: 4vw;
  }

  .nlist p {
    font-size: 3.5vw;
    height: auto;
  }
}
@media (max-width: 480px) {
  .nlist .more {
    line-height: 10vw;
  }
}
@media (min-width: 1700px) {
  .main-menu__logo {
    margin-left: 50px;
  }
}
@media (min-width: 769px) {
  .nlist .news-top .pic {
    width: 520px;
  }

  .nlist .news-top .info .main {
    padding-left: 5.21vw;
  }
}

@media (min-width: 1025px) and (max-width: 1024px) {
  .nlist .news-top .pic {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .nlist .news-top .pic .img-block {
    object-fit: fill;
  }

  .nlist .news-top .ytable-cell,
  .nlist .news-top .ytable {
    display: block;
  }

  .nlist .news-top .info {
    padding: 5vw;
  }
}

@media (max-width: 640px) {
  .nlist .news-top time {
    font-size: 3.6vw;
  }
}

@media (min-width: 641px) {
  .nlist .news-list .pic {
    width: 320px;
  }
}

@media (max-width: 640px) {
  .nlist .news-list .ytable-cell,
  .nlist .news-list .ytable {
    display: block;
  }

  .nlist .news-list li {
    margin-bottom: 4vw;
  }

  .nlist .news-list .main {
    padding: 4vw;
    border: 0;
  }
}

@media (max-width: 1023px) {
  .cp .auto ul.top291 li {
    width: 50% !important;
    margin-right: 0px !important;
  }

  .ytable.xy,
  .ytable.xy > .ytable-cell {
    display: block;
  }

  .main-slider-three {
    margin-top: 96px;
  }
  .djlm li {
    width: 50%;
    padding: 0;
  }
  .djlm li a {
    justify-content: normal;
    padding-left: 5px;
  }
  .piclist li {
    width: 49.5%;
  }

  .ys .col-xl-1 {
    display: none;
  }
  .uld {
    width: 100%;
  }

  .sccd .container {
    padding: 0;
  }

  .ys ul li a {
    min-width: 90px;
    font-size: 14px;
    height: 35px;
    line-height: 35px;
    padding: 0 3%;
  }

  .ys {
    height: auto;
  }
  .ys ul li {
    width: 50%;
    margin: 0 0 1px;
    display: block;
    padding: 0 1%;
  }

  .ys ul li a {
    border-radius: 0;
  }
  .ys ul li:nth-last-child(-n + 6) {
    margin-top: 0;
  }

  .sccd .container {
    padding: 0 !important;
  }
  .sccd .sccddh {
    width: 50px;
  }
  .sccd .sccddh ul {
    padding: 5px;
  }
  .sccd .sccditem {
    width: calc(100% - 130px);
  }
  .sccd .sccditem li {
    width: 11.5%;
    height: auto;
    margin: 0.5%;
  }
  .sccd .sccditem li a {
    padding-bottom: 100%;
  }
  .sccd .sccditem::-webkit-scrollbar {
    display: none;
  }
  .sccd .sccdbg {
    width: 100%;
    left: 0;
  }
  .sccd .sccdbgtip {
    right: 0;
    width: 74px;
    top: 72px;
  }
  .sccd .sccdbgtip:before {
    left: 30px;
    top: 130px;
  }

  .sccdd .container {
    display: contents;
  }
  .sccdcx {
    height: auto !important;
  }
  .sccdcx .container {
    line-height: unset;
  }
  .b1 dl dd {
    width: 50%;
    padding-left: 20px;
  }
  .b1 dl dd:nth-child(2) {
    display: none;
  }
  .showys .b1 dl {
    height: auto;
    padding: 10px;
  }
  .showys.bgc .b1 dl {
    background-color: #f0f0f0;
  }
  .showys.bgc .b1 dd {
    color: #f0f0f0;
  }
  .showys.bgc .b2 dt {
    color: #666666;
  }
  .showys.bgc .b1 .b1name {
    color: #000000;
  }
  .b2 dl {
    width: 100%;
  }
  .b3 dd {
    width: 25%;
    font-size: 16px;
  }
  .colorVariable dd,
  .colorTemplature dd {
    width: 33.33%;
  }
  .djlm ul li {
    width: 50% !important;
  }
  /*.main-slider-four{display: none;}*/
  .main-slider-four__content p {
    display: none;
  }
  .djlm li a span {
    width: 100%;
  }
  .cmenu ul li {
    padding: 0 !important;
    width: 50% !important;
  }
  .fwlc {
    overflow: auto;
  }
  .zdlist .list dl {
    width: 100%;
  }
  #view {
    padding-top: 96px;
  }
  .view div.sekuai a img {
    margin: 0 !important;
    width: 100% !important;
    height: auto !important;
  }
  .view div.mzsy {
    width: 100%;
  }
  .view div.mzsy img {
    max-width: 100%;
    height: auto !important;
  }
  .view ul.mzsy {
    flex-direction: column;
  }
  .view ul.mzsy li {
    width: 100%;
  }
  .footer-widget__about {
    padding-bottom: 20px;
  }
  .view video {
    max-width: 100%;
    text-align: center;
    height: auto;
  }
  .bottom .share {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  .sccdcx .container.shu {
    height: auto;
  }
  .sccdcx .container.shu .row > div:first-child {
    width: 100%;
  }
  .sccdcx .container.shu label {
    width: 16%;
  }
  .sccdcx .container.shu .row > div:first-child > div:last-child {
    margin-top: 0;
  }
  .sccdcx .container.shu p {
    margin-top: 2%;
  }
  .sccdcx .container.shu .row > div:nth-child(2) {
    display: none;
  }
  .sccdcx .container.shu .row > div:nth-child(3) {
    width: 100%;
  }
  .sccdcx .container.shu .row > div:nth-child(3) div {
    padding: 5%;
  }
  .sccdcx .container.shu .row > div:first-child > div:last-child input {
    padding-left: 36px;
  }

  .t3 .container {
    padding: 0;
  }
  .sccdcx.t3 .k4 p {
    font-size: 22px;
  }
  .sccdcx .col-xl-6 {
    width: 50%;
    font-size: small;
  }
  .sccdcx.t3 .container .k1,
  .sccdcx.t3 .container .k2 {
    height: 180px;
  }
  .sccdcx.t3 .k4 {
    height: auto;
  }
  .sccdcx.t3 .k4 .da > a div,
  .sccdcx.t3 .k4 .dt > div,
  .k41 {
    margin-left: 0;
    width: 100%;
    height: 180px;
  }
  .sccdcx.t3 .k4 .da,
  .sccdcx.t3 .k4 .dt {
    border-top: 1px #8a8a8a solid;
    margin-bottom: 20px;
  }
  .sccdcx.t3 .k4 .k4d {
    display: none;
  }
  .b2 dl div img {
    margin: 2% auto;
  }

  .djlm ul.top25 li {
    padding: 0;
  }

  .djlm .container {
    padding: 0;
  }

  .ys .uld {
    margin: 0 auto;
    width: 100% !important;
  }
}

.block-heading-two {
  margin-bottom: 0;
  border-radius: 2px;
  margin-bottom: 10px;
}

.block-heading-two h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
}

.faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  z-index: 1;
}

.faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  padding-left: 30px;
  letter-spacing: -0.01em;
  color: var(--sonchoy-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion + .accrodion {
  margin-top: 18px;
}

.faq-one-accrodion .accrodion-title h4::before {
  content: "\f067";
  font: normal normal normal 14px/1 FontAwesome;
  font-weight: 700;
  font-size: 10px;
  color: var(--sonchoy-white);
  position: absolute;
  top: 50%;
  left: 0;
  line-height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 20px;
  height: 20px;
  background-color: var(--sonchoy-black);
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f068";
  color: var(--sonchoy-white);
  background-color: #f28e00;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  padding-top: 16px;
  padding-right: 48px;
  padding-bottom: 8px;
}

.faq-one-accrodion .accrodion-content p {
  margin: 0;
}
.lianxi .faq-one-accrodion .accrodion-title {
  cursor: default;
}
.lianxi .faq-one-accrodion .accrodion.active .accrodion-title h4 {
  padding-left: 0px;
}
.lianxi .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  display: none;
}

.share {
  float: right;
  display: inline-block;
  padding-top: 5px;
}
.share dd {
  float: left;
  position: relative;
}
.share .d_wx:hover figure {
  display: block;
}

.share dd figure {
  position: absolute;
  left: 50%;
  margin-left: -60px;
  width: 120px;
  bottom: 100%;
  margin-bottom: 10px;
  display: none;
}
.share dd figure:after {
  position: absolute;
  content: "";
  border: 5px solid transparent;
  border-top-color: #fff;
  top: 100%;
  margin-left: -5px;
  left: 50%;
}
.share dd figure img {
  width: 120px;
}
.share dd a {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 11px;
  background: url("../images/share_icon.png") no-repeat 0 0;
}
.share dd.d_sina a {
  background-position: -42px 0;
}
.share dd.d_fb a {
  background-position: -84px 0;
}
.share dd.d_tw a {
  background-position: -120px 0;
  width: 43px;
}
.share dd.d_ing a {
  background-position: -160px 0;
}

.zdlistd .box-rows {
  user-select: none; /* margin-top: 4.875em; */
}
.zdlistd .box-rows .title {
  margin-bottom: 0.95833em;
}
.zdlistd .box-rows dl {
  margin-bottom: 3%;
}
.zdlistd .box-rows dd {
  box-shadow: 0px 0.625em 3.75em rgba(0, 0, 0, 0.05);
  border: solid 1px #f3f3f3;
  text-align: center;
  box-shadow: 0 -3px 11px 10px rgb(180 189 221 / 8%),
    0 6px 14px hsl(0deg 0% 100% / 30%), 0 12px 20px rgb(180 189 221 / 20%);
  border-radius: 20px;
  overflow: hidden;
}

.zdlistd .box-rows dd .heart {
  background: url(../images/sj.png) center center no-repeat;
  top: -60px;
  position: relative;
  font-size: 22px;
  width: 70px;
  height: 70px;
  color: #ffffff;
  display: inline-block;
}
.zdlistd .box-rows dd .heart i {
  position: relative;
  line-height: 90px;
}
.zdlistd .box-rows dd aside {
  color: #000000;
  font-size: 18px;
  margin: 1em 0 1em 0;
  line-height: 1;
  font-weight: bold;
}
.zdlistd .box-rows dd p {
  color: #333;
  width: 86%;
  margin: auto;
  min-height: 6em;
  margin-top: -10%;
  line-height: 2;
  font-size: 16px;
}
.zdlistd .box-rows dd figure {
  padding-bottom: 61%;
  background-size: cover;
}

@media (min-width: 1025px) {
  .zdlistd .box-rows dd {
    float: left;
    min-height: 15.625em;
    width: 30.715%;
    margin-bottom: 3.9275%;
    padding-bottom: 1%;
  }
  .zdlistd .box-rows dd:not(:nth-child(3n)) {
    margin-right: 3.9275%;
  }
}
@media (max-width: 1024px) {
  .zdlistd .box-rows dd {
    padding-bottom: 1em;
    margin-bottom: 2em;
  }
  .zdlistd .box-rows dd p {
    width: 84%;
    min-height: auto;
  }
}

@keyframes warn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  25% {
    transform: scale(0);
    opacity: 0.1;
  }
  50% {
    transform: scale(0.1);
    opacity: 0.3;
  }
  75% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@-webkit-keyframes "warn" {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(0);
    opacity: 0.1;
  }
  50% {
    -webkit-transform: scale(0.1);
    opacity: 0.3;
  }
  75% {
    -webkit-transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
.fwlc p::before {
  content: "";
  position: absolute;
  border-radius: 100%;
  z-index: 1;
  opacity: 1;
  -webkit-animation: warn 2s ease-out;
  -moz-animation: warn 2s ease-out;
  animation: warn 2s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  width: 50%;
  height: 50%;
  background-color: #f28e00;
  margin-left: -3.5px;
}

.fwlc .dw134 p::before,
.fwlc .dw122 p::before {
  margin-left: -7px;
}

.isearch {
  padding-top: 96px;
}
.isearch .top-search {
  height: 300px;
  padding-top: 100px;
  text-align: center;
}
.isearch input,
.isearch select {
  height: 40px;
}
.isearch .btn {
  position: absolute;
  width: 40px;
  background: #000 url(../images/sou.png) no-repeat center center;
  border-radius: 0;
  margin-left: 0px;
}
.lsearch .top-search {
  height: 100px;
  padding-top: 30px;
  text-align: center;
}