.dark-mode,
.ocw-dark,
.wb-dm {
  --ocw-head-bg-color: #222;
  --ocw-head-fcolor: #eee;
  --wb-bfc: #eee;
  --wb-bgc: #222;
  --wb-bgcl: #333;
  --wb-wk: #666;
}
.ocw-contact-form {
  line-height: 32px;
  position: relative;
  z-index: 5;
}
.ocw-contact-form input,
.ocw-contact-form option,
.ocw-contact-form select,
.ocw-contact-form textarea {
  font-size: var(--ocw-bfs, 12px);
}
.ocw-contact-form .ocw-dropdown,
.ocw-contact-form select {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  background-color: var(--wb-bgc, var(--ocw-bgc, #f1f0f0));
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  color: var(--wb-bfc, var(--ocw-bfc, #333));
  height: 34px;
  line-height: 34px;
  margin-right: 10px;
  outline: none !important;
  padding: 0 6px !important;
}
.ocw-contact-form .ocw-dropdown.block {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.ocw-contact-form .wdi-main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.ocw-contact-form .ocw-form-control {
  background: none;
  background-color: var(--wb-bgc, var(--ocw-bgc, #f1f0f0));
  border: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--wb-bfc, var(--ocw-bfc, #333));
  height: 34px;
  outline: none !important;
  padding: 0 10px;
  width: 100%;
}
.ocw-contact-form .ocw-form-control.ocw-warning {
  -webkit-box-shadow: 0 0 3px #cd355a;
  box-shadow: 0 0 3px #cd355a;
}
.ocw-contact-form textarea.ocw-form-control {
  display: block;
  height: 72px;
  line-height: 18px;
  padding: 5px 10px;
}
.ocw-contact-form textarea.ocw-form-control::-webkit-scrollbar {
  background-color: #ddd;
  width: 6px;
}
.ocw-contact-form textarea.ocw-form-control::-webkit-scrollbar-thumb {
  background-color: var(--wb-wk, var(--ocw-wk, #999));
  border-radius: 2px;
}
.ocw-contact-form textarea.ocw-form-control::-webkit-scrollbar-thumb:hover {
  background-color: var(--ocw-theme-color, #06c);
}
.ocw-contact-form input::-webkit-input-placeholder,
.ocw-contact-form textarea::-webkit-input-placeholder {
  color: var(--wb-wk, var(--ocw-wk, #999));
}
.ocw-contact-form .ocw-btns {
  padding-top: 14px;
}
.ocw-contact-form .ocw-btn-primary {
  background-color: var(--ocw-theme-color, #06c);
  border-radius: 5px;
  color: #fff;
  height: 36px;
  line-height: 36px;
  width: 124px;
}
.ocw-contact-form .ocw-btn-cancel {
  color: var(--wb-bfc, var(--ocw-bfc, #333));
  line-height: 34px;
  margin-left: 10px;
}
.ocw-form-item {
  padding-bottom: 10px;
}
.ocw-form-item.with-dropdown-inline {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.ocw-form-item.with-dropdown-inline .ocw-dropdown {
  max-width: 120px;
}
.ocw-form-captcha {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.ocw-form-captcha .ocw-captcha {
  height: 34px;
  margin-left: 5px;
  overflow: hidden;
  width: 110px;
}
.ocw-form-captcha img {
  display: block;
  height: auto;
  width: 100%;
}
.ocw-btn-close {
  cursor: pointer;
  padding: 5px 5px 10px 10px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}
.ocw-btn-close .ocw-close {
  fill: var(--wb-wk, var(--ocw-wk, #fff));
  height: 16px;
  width: 16px;
}
.cow-align-center,
.ocw-panel-msg {
  text-align: center;
}
.ocw-panel-msg {
  line-height: 1.6;
  min-height: 120px;
  padding-bottom: 20px;
  padding-top: 20px;
}
.ocw-panel-msg .ocw-link {
  color: var(--ocw-theme-color, #06c);
  text-decoration: underline;
}
.ocw-wb-icon {
  display: inline-block;
  height: 16px;
  vertical-align: middle;
  width: 16px;
}
.ocw-wb-btn {
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: center;
  text-decoration: none;
}
.ocw-wb-btn:before {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  display: none;
  height: 200px;
  left: 50%;
  margin-left: -100px;
  margin-top: -100px;
  position: absolute;
  top: 50%;
  width: 200px;
}
.ocw-wb-btn:hover:before {
  -webkit-animation: ocwCircleIn 0.3s linear;
  animation: ocwCircleIn 0.3s linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  display: block;
}
@-webkit-keyframes ocwCircleIn {
  0% {
    opacity: 0.4;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ocwCircleIn {
  0% {
    opacity: 0.4;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ocw-buoy {
  position: fixed;
  z-index: 1000;
}
.ocw-buoy.lt {
  left: 20px;
  top: 50px;
  -webkit-transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
  transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
}
.ocw-buoy.lt .ocw-buoy-panel {
  bottom: auto;
  left: 0;
  right: auto;
  top: 0;
  -webkit-transform: translateY(84px);
  transform: translateY(84px);
}
.ocw-buoy.lt .ocw-buoy-panel.active-panel {
  -webkit-transform: translateY(64px);
  transform: translateY(64px);
}
.ocw-buoy.lc {
  left: 20px;
  margin-top: -24px;
  top: 50%;
  -webkit-transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
  transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
}
.ocw-buoy.lc .ocw-buoy-panel {
  left: 0;
  right: auto;
  -webkit-transform: translateY(50%) !important;
  transform: translateY(50%) !important;
}
.ocw-buoy.lb {
  bottom: 50px;
  left: 20px;
  -webkit-transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
  transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
}
.ocw-buoy.lb .ocw-buoy-panel {
  left: 0;
  right: auto;
}
.ocw-buoy.rt {
  right: 20px;
  top: 50px;
  -webkit-transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
  transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
}
.ocw-buoy.rt .ocw-buoy-panel {
  bottom: auto;
  top: 0;
  -webkit-transform: translateY(84px);
  transform: translateY(84px);
}
.ocw-buoy.rt .ocw-buoy-panel.active-panel {
  -webkit-transform: translateY(64px);
  transform: translateY(64px);
}
.ocw-buoy.rc {
  margin-top: -24px;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
  transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
}
.ocw-buoy.rc .ocw-buoy-panel {
  right: 0;
}
.ocw-buoy.rb {
  bottom: 50px;
  right: 20px;
  -webkit-transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
  transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
}
.ocw-buoy-item {
  min-width: var(--ocw-buoy-icon-size, 24px);
  position: relative;
}
.ocw-buoy-item.active .ocw-buoy-panel {
  opacity: 1;
  -webkit-transform: translateY(-64px);
  transform: translateY(-64px);
  visibility: visible;
}
.ocw-buoy-btn {
  background-color: #0066ff;
  border-radius: 50px;
  -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  cursor: pointer;
  display: block;
  font-size: 0;
  line-height: var(--ocw-buoy-icon-size, 24px);
  padding: 12px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}
.ocw-buoy-btn .ocw-btn-text {
  color: var(--wb-bfc, var(--ocw-bfc, #333));
  display: inline-block;
  font-size: var(--ocw-bfs, 12px);
  margin-left: 8px;
  vertical-align: middle;
}
.ocw-buoy-btn .ocw-point {
  background-color: red;
  border-radius: 100%;
  height: 8px;
  position: absolute;
  right: 0;
  top: 4px;
  width: 8px;
}
.ocw-buoy-btn .ocw-wb-icon {
  fill: #fff;
  height: var(--ocw-buoy-icon-size, 24px);
  position: relative;
  width: var(--ocw-buoy-icon-size, 24px);
}
.ocw-buoy-btn:hover .ocw-btn-text,
.ocw-buoy-btn:hover .ocw-wb-icon {
  opacity: 0.8;
}
.ocw-buoy-btn:active {
  background-color: var(--ocw-theme-color, #06c);
}
.ocw-buoy-btn:active .ocw-wb-icon {
  fill: #fff;
}
.ocw-buoy-btn:active .ocw-btn-text {
  color: #fff;
}
.ocw-animated-circles {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.ocw-animated-circles.ocw-hide-anim {
  visibility: hidden;
}
.ocw-animated-circles .ocw-circle {
  border: 1px solid var(--ocw-theme-color, #06c);
  border-radius: var(--ocw-buoy-icon-size, 24px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 100%;
}
.ocw-animated-circles.ocw-animated {
  opacity: 1;
}
.ocw-animated-circles.ocw-animated .c-1 {
  -webkit-animation: scaleToggleOne 2s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    forwards;
  animation: scaleToggleOne 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.ocw-animated-circles.ocw-animated .c-2 {
  -webkit-animation: scaleToggleTwo 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    forwards;
  animation: scaleToggleTwo 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.ocw-animated-circles.ocw-animated .c-3 {
  -webkit-animation: scaleToggleThree 3s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    forwards;
  animation: scaleToggleThree 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@-webkit-keyframes scaleToggleOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleToggleOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scaleToggleTwo {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleToggleTwo {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scaleToggleThree {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  66% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleToggleThree {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  66% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ocw-buoy-panel {
  background-color: var(--wb-bgcl, var(--ocw-bgcl, #fff));
  border-radius: 10px;
  bottom: 0;
  -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
  font-size: 13px;
  min-height: 250px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-84px);
  transform: translateY(-84px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
  width: var(--ocw-panel-width, 360px);
  z-index: 3;
}
.ocw-buoy-panel p {
  font-size: 13px;
}
.ocw-buoy-panel a {
  color: var(--ocw-theme-color, #06c);
}
.ocw-buoy-panel a:hover {
  text-decoration: underline;
}
.ocw-buoy-panel.active-panel {
  opacity: 1;
  -webkit-transform: translateY(-64px);
  transform: translateY(-64px);
  visibility: visible;
}
.ocw-panel-head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: linear-gradient(90deg, #0564f5, #4b93ff);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 14px 20px;
}
.ocw-panel-head,
.ocw-pic-head {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.ocw-pic-head {
  height: 38px;
  margin-right: 10px;
  position: relative;
  width: 38px;
}
.ocw-pic-head img {
  border: 1px solid #b8d1ea;
  border-radius: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}
.ocw-pic-head .ocw-b {
  background-color: #4ad504;
  border: 2px solid #fff;
  border-radius: 100%;
  bottom: 0;
  display: block;
  height: 6px;
  position: absolute;
  right: 0;
  width: 6px;
}
.ocw-head-info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1.75em;
  overflow: hidden;
  text-align: left;
}
.ocw-head-info .ocw-name {
  color: var(--ocw-head-fcolor,  #fff);
  font-weight: 700;
}
.ocw-head-info .ocw-text {
  color: var(--ocw-head-fcolor,  #fff);
  margin-top: 2px;
 
}
.ocw-panel-main {
  background-color: var(--wb-bgcl, var(--ocw-bgcl, #fff));
  max-height: 400px;
  max-height: 50vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 14px 20px 120px;
  -webkit-transition:
    opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    -webkit-transform 0.3s ease;
}
.ocw-panel-main:hover::-webkit-scrollbar {
  background-color: var(--wb-bbc, var(--ocw-bbc, #d1d1d1));
  display: block;
}
.ocw-panel-main:hover::-webkit-scrollbar-thumb {
  background-color: var(--wb-wk, var(--ocw-wk, #999));
}
.ocw-panel-main::-webkit-scrollbar {
  background-color: transparent;
  width: 4px;
}
.ocw-panel-main::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 4px;
}
.ocw-panel-main::-webkit-scrollbar-thumb:hover {
  background-color: var(--ocw-theme-color, #06c);
}
.ocw-now-time {
  color: #b3b3b3;
  height: 11px;
  overflow: hidden;
  text-align: center;
}
.ocw-now-time .ocw-time {
  display: inline-block;
  font-size: 20px;
  line-height: 22px;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  vertical-align: top;
}
.ocw-label {
  color: var(--wb-wk, var(--ocw-wk, #999));
}
.ocw-contact-tool {
  background-color: var(--wb-bgcl, var(--ocw-bgcl, #fff));
  bottom: 0;
  left: 0;
  margin-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  right: 0;
  text-align: center;
  -webkit-transition:
    opacity 0.3s ease-in,
    visibility 0ms 0ms,
    -webkit-transform 0.3s ease-in;
  transition:
    opacity 0.3s ease-in,
    visibility 0ms 0ms,
    -webkit-transform 0.3s ease-in;
  transition:
    transform 0.3s ease-in,
    opacity 0.3s ease-in,
    visibility 0ms 0ms;
  transition:
    transform 0.3s ease-in,
    opacity 0.3s ease-in,
    visibility 0ms 0ms,
    -webkit-transform 0.3s ease-in;
}
.ocw-contact-tool .ocw-tool-list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.ocw-title {
  background: none;
  color: var(--wb-bfc, var(--ocw-bfc, #333));
  font-weight: 700;
  line-height: 1.75em;
}
.ocw-tool-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
}
.ocw-tool-list.tool-list-color .ocw-btn-tool {
  background-color: var(--ocw-theme-color, #06c);
}
.ocw-tool-list .ocw-btn-tool {
  background-color: #ccc;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  margin: 0 2px;
  position: relative;
  text-align: center;
  width: 36px;
}
.ocw-tool-list .ocw-btn-tool svg {
  fill: #fff;
  display: block;
  height: 22px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 22px;
}
.ocw-tool-list .ocw-btn-tool.wx {
  background-color: #12b95e;
}
.ocw-tool-list .ocw-btn-tool.qq {
  background-color: #11b7f5;
}
.ocw-tool-list .ocw-btn-tool.tel {
  background-color: #06c;
}
.ocw-tool-list .ocw-btn-tool.email {
  background-color: #08c;
}
.ocw-tool-list .ocw-btn-tool.msg {
  background-color: #685ab0;
}
.ocw-tool-list .ocw-btn-tool.order {
  background-color: #935ab0;
}
.ocw-tool-list .ocw-btn-tool.whatsapp {
  background-color: #40c351;
}
.ocw-tool-list .ocw-btn-tool.telegram {
  background-color: #29b6f6;
}
.ocw-tool-list .ocw-btn-tool.messenger {
  background-color: #0084ff;
}
.ocw-tool-list .ocw-btn-tool.viber {
  background-color: #912fbd;
}
.ocw-tool-list .ocw-btn-tool.signal {
  background-color: #c822ff;
}
.ocw-tool-list .ocw-btn-tool.line {
  background-color: #00c300;
}
.ocw-tool-list .ocw-btn-tool.line svg {
  height: 20px;
  width: 20px;
}
.ocw-tool-list .ocw-btn-tool.faq {
  background-color: #2196f3;
}
.active-msg {
  padding-bottom: 20px;
}
.active-msg .buoy-default,
.active-msg .ocw-now-time {
  display: none;
}
.active-msg .ocw-contact-tool {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition:
    opacity 0.2s ease-out,
    visibility 0ms 0.2s,
    -webkit-transform 0.2s ease-out;
  transition:
    opacity 0.2s ease-out,
    visibility 0ms 0.2s,
    -webkit-transform 0.2s ease-out;
  transition:
    transform 0.2s ease-out,
    opacity 0.2s ease-out,
    visibility 0ms 0.2s;
  transition:
    transform 0.2s ease-out,
    opacity 0.2s ease-out,
    visibility 0ms 0.2s,
    -webkit-transform 0.2s ease-out;
  visibility: hidden;
}
.ocw-type-item {
  display: none;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition:
    opacity 0.3s ease-in,
    -webkit-transform 0.3s ease-in;
  transition:
    opacity 0.3s ease-in,
    -webkit-transform 0.3s ease-in;
  transition:
    transform 0.3s ease-in,
    opacity 0.3s ease-in;
  transition:
    transform 0.3s ease-in,
    opacity 0.3s ease-in,
    -webkit-transform 0.3s ease-in;
}
.ocw-type-item.buoy-wx .buoy-list {
  display: block;
  width: auto;
}
.ocw-type-item.buoy-wx {
  padding-bottom: 14px;
}
.ocw-type-item.buoy-wx .ocw-msg-item {
  align-items: flex-start;
}
.ocw-type-item.buoy-wx .buoy-list {
  border-radius: 6px;
  padding: 12px 18px;
}
.ocw-type-item .with-img {
  display: block;
  padding-left: 0;
  text-align: center;
}
.ocw-type-item .with-img .qr-img {
  display: block;
  height: auto;
  margin: 0 auto 5px;
  width: 145px;
}
.ocw-type-item .with-img .ocw-label {
  color: var(--wb-wk, var(--ocw-wk, #999));
  font-size: 14px;
  line-height: 1.6;
}
.ocw-panel-main.ocw-channel-picked {
  scroll-padding-bottom: 130px;
}
.ocw-type-item.ocw-type-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.ocw-msg-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
}
.ocw-msg-item.by-user {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.ocw-msg-item.by-user .ocw-pic {
  margin-left: 5px;
  margin-right: 0;
}
.ocw-msg-item.by-user .ocw-msg-con {
  background-color: var(--ocw-theme-color, #06c);
  border-radius: 8px 0 8px 8px;
  color: #fff;
}
.ocw-msg-item .ocw-pic {
  border: 1px solid #b8d1ea;
  border-radius: 100%;
  height: 24px;
  margin-right: 5px;
  width: 24px;
}
.ocw-msg-item .ocw-msg-con {
  background-color: var(--wb-bgc, var(--ocw-bgc, #f1f0f0));
  border-radius: 0 8px 8px 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--wb-bfc, var(--ocw-bfc, #333));
  line-height: 1.5em;
  min-width: 70%;
  padding: 10px 8px 14px;
  text-align: left;
}
.ocw-msg-item .ocw-msg-con pre {
  white-space: pre-wrap;
  word-break: break-all;
}
.ocw-msg-item .buoy-list {
  background-color: var(--wb-bgc, var(--ocw-bgc, #f1f0f0));
  border-radius: 2px 5px 5px 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 174px;
  padding: 10px 14px;
  text-align: left;
}
.ocw-msg-item .buoy-list .ocw-qq {
  fill: #11b7f5;
}
.ocw-msg-item .buoy-list.list-email svg {
  fill: #06c;
}
.ocw-msg-item .buoy-list.list-tel svg {
  fill: #12b95e;
}
.ocw-msg-item .buoy-list .ocw-whatsapp {
  fill: #40c351;
}
.ocw-msg-item .buoy-list .ocw-telegram {
  fill: #29b6f6;
}
.ocw-msg-item .buoy-list .ocw-messenger {
  fill: #0084ff;
}
.ocw-msg-item .buoy-list .ocw-viber {
  fill: #912fbd;
}
.ocw-msg-item .buoy-list .ocw-signal {
  fill: #c822ff;
}
.ocw-msg-item .buoy-list .ocw-line {
  fill: #00c300;
  height: 18px;
  width: 18px;
}
.ocw-list-item {
  color: var(--wb-bfc, var(--ocw-bfc, #333));
  display: block;
  padding-left: 22px;
  position: relative;
}
.ocw-list-item:hover {
  text-decoration: none;
}
.ocw-list-item + .ocw-list-item {
  border-top: 1px solid #e5e5e5;
  margin-top: 10px;
  padding-top: 10px;
}
.ocw-list-item .ocw-link {
  color: var(--wb-bfc, var(--ocw-bfc, #333));
  display: block;
  line-height: 1.5;
}
.ocw-list-item .ocw-link:hover {
  color: var(--ocw-theme-color, #06c);
  text-decoration: underline;
}
.ocw-list-item .ocw-wb-icon {
  left: 0;
  margin-top: -8px;
  position: absolute;
  top: 50%;
}
.ocw-list-item .ocw-wx {
  fill: #12b95e;
}
.ocw-user-msg {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  display: -webkit-box;
  max-height: 12em;
  overflow: hidden;
}
.wbocw-actived-panel {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
}
.wbocw-actived-panel .ocw-mask,
.wbocw-actived-panel .ocw-panel-m {
  display: block;
}
.ocw-mask {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
}
.ocw-mask,
.ocw-panel-m {
  bottom: 0;
  display: none;
  left: 0;
}
.ocw-panel-m {
  background-color: var(--wb-bgcl, var(--ocw-bgcl, #fff));
  border-radius: 0;
  border-radius: 10px 10px 0 0;
  font-size: var(--ocw-bfs, 12px);
  min-height: 70vh;
  overflow: hidden;
  position: absolute;
  width: 100vw;
  z-index: 100000;
}
.ocw-panel-m .ocw-panel-main {
  max-height: 60vh;
  padding-bottom: 20px;
}
.ocw-panel-m .ocw-contact-tool {
  bottom: env(safe-area-inset-bottom);
  padding-bottom: 80px;
}
.ocw-panel-m .ocw-contact-form .ocw-btn-primary {
  display: block;
  width: 100%;
}
.ocw-panel-m .ocw-contact-form .ocw-btn-cancel {
  display: block;
  margin-left: 0;
  margin-top: 10px;
  text-align: center;
}
.ocw-mobile .ocw-buoy-btn .ocw-btn-text,
.wb-scrolling .ocw-animated-circles {
  display: none;
}
.wb-scrolling .ocw-buoy-btn {
  opacity: 0.5;
  -webkit-transform: translateX(90%);
  transform: translateX(90%);
}
.ocw-hidden {
  display: none;
}
.ocw-msg-bar {
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 5px;
  color: #fff;
  display: none;
  font-size: var(--ocw-bfs, 12px);
  left: 50%;
  line-height: 2em;
  max-width: 220px;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100001;
}
.ocw-faq-list,
.ocw-faq-tips {
  margin-top: 10px;
}
.ocw-faq-list {
  list-style: none;
  padding: 0;
}
.ocw-faq-list li {
  margin-bottom: 10px;
  padding: 0;
}
.ocw-faq-list li a {
  color: var(--ocw-theme-color, #06c);
  cursor: pointer;
  display: block;
}
.ocw-faq-list li a:hover {
  text-decoration: underline;
}
.ocw-faq-search {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  padding: 10px;
  width: 100%;
}
.ocw-faq-title {
  color: var(--ocw-theme-color, #06c);
}
.ocw-faq-content {
  line-height: 1.5;
  margin-top: 10px;
}
.ocw-faq-content img {
  height: auto;
  max-width: 100%;
}
.ocw-faq-content p + p {
  margin-top: 1em;
}
.ocw-fold {
  border-radius: var(--ocw-unfold-radius, 3px);
  -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
  font-size: var(--ocw-bfs, 12px);
  position: fixed;
  width: var(--ocw-unfold-size, 38px);
  z-index: 1000;
}
.ocw-fold .ocw-more-item .ocw-wx {
  fill: #12b95e;
}
.ocw-fold.lt {
  left: 20px;
  top: 50px;
  -webkit-transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
  transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
}
.ocw-fold.lt .ocw-el-item:hover .ocw-el-more {
  -webkit-transform: translate3d(48px, -50%, 0);
  transform: translate3d(48px, -50%, 0);
}
.ocw-fold.lt .ocw-el-item:first-child .ocw-el-more {
  top: 0;
  -webkit-transform: translate3d(30px, 0, 0);
  transform: translate3d(30px, 0, 0);
}
.ocw-fold.lt .ocw-el-item:first-child:hover .ocw-el-more {
  top: 0;
  -webkit-transform: translate3d(48px, 0, 0);
  transform: translate3d(48px, 0, 0);
}
.ocw-fold.lt .ocw-el-item:first-child .ocw-el-more .ocw-more-inner:before {
  top: 10px;
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.ocw-fold.lt .ocw-el-item:first-child .ocw-el-more .ocw-more-inner:after {
  margin-top: 0;
  top: 0;
}
.ocw-fold.lt .ocw-el-item.ocw-need-click.active .ocw-form-panel {
  -webkit-transform: translate3d(16%, 0, 0) !important;
  transform: translate3d(16%, 0, 0) !important;
}
.ocw-fold.lt .ocw-el-more {
  left: 0;
  padding-left: 15px;
  padding-right: 0;
  right: auto;
  -webkit-transform: translate3d(30px, -50%, 0);
  transform: translate3d(30px, -50%, 0);
}
.ocw-fold.lt .ocw-more-inner:before {
  left: -6px;
  right: auto;
}
.ocw-fold.lt .ocw-more-inner:after {
  left: 0;
  right: auto;
}
.ocw-fold.lc {
  left: 20px;
  top: 50%;
  -webkit-transform: translate(
    var(--ocw-offset-x, 0),
    calc(-50% + var(--ocw-offset-y, 0))
  );
  transform: translate(
    var(--ocw-offset-x, 0),
    calc(-50% + var(--ocw-offset-y, 0))
  );
}
.ocw-fold.lc .ocw-el-item:not(.ocw-need-click):hover .ocw-el-more {
  -webkit-transform: translate3d(48px, -50%, 0);
  transform: translate3d(48px, -50%, 0);
}
.ocw-fold.lc .ocw-el-more {
  left: 0;
  padding-left: 15px;
  padding-right: 0;
  right: auto;
  -webkit-transform: translate3d(30px, -50%, 0);
  transform: translate3d(30px, -50%, 0);
}
.ocw-fold.lc .ocw-el-more .ocw-more-inner:before {
  left: -6px;
  right: auto;
}
.ocw-fold.lc .ocw-el-more .ocw-more-inner:after {
  left: 0;
  right: auto;
}
.ocw-fold.lc .ocw-form-panel {
  -webkit-transform: translate3d(30px, 0, 0) !important;
  transform: translate3d(30px, 0, 0) !important;
}
.ocw-fold.lc.active-panel .ocw-form-panel {
  -webkit-transform: translate3d(48px, 0, 0) !important;
  transform: translate3d(48px, 0, 0) !important;
}
.ocw-fold.lb {
  bottom: 50px;
  left: 20px;
  -webkit-transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
  transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
}
.ocw-fold.lb .ocw-el-item:not(.ocw-need-click):hover .ocw-el-more {
  -webkit-transform: translate3d(48px, -50%, 0);
  transform: translate3d(48px, -50%, 0);
}
.ocw-fold.lb .ocw-el-more {
  left: 0;
  padding-left: 15px;
  padding-right: 0;
  right: auto;
  -webkit-transform: translate3d(30px, -50%, 0);
  transform: translate3d(30px, -50%, 0);
}
.ocw-fold.lb .ocw-el-more .ocw-more-inner:before {
  left: -6px;
  right: auto;
}
.ocw-fold.lb .ocw-el-more .ocw-more-inner:after {
  left: 0;
  right: auto;
}
.ocw-fold.lb .ocw-form-panel {
  -webkit-transform: translate3d(30px, 0, 0) !important;
  transform: translate3d(30px, 0, 0) !important;
}
.ocw-fold.lb.active-panel .ocw-form-panel {
  -webkit-transform: translate3d(48px, 0, 0) !important;
  transform: translate3d(48px, 0, 0) !important;
}
.ocw-fold.rt {
  right: 20px;
  top: 50px;
  -webkit-transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
  transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
}
.ocw-fold.rt .ocw-el-item:first-child .ocw-el-more {
  top: 0;
  -webkit-transform: translate3d(-90%, 0, 0);
  transform: translate3d(-90%, 0, 0);
}
.ocw-fold.rt .ocw-el-item:first-child:hover .ocw-el-more {
  top: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.ocw-fold.rt .ocw-el-item:first-child .ocw-el-more .ocw-more-inner:before {
  top: 10px;
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.ocw-fold.rt .ocw-el-item:first-child .ocw-el-more .ocw-more-inner:after {
  margin-top: 0;
  top: 0;
}
.ocw-fold.rt .ocw-el-item .ocw-el-more.ocw-form-panel {
  bottom: auto;
  top: 0;
}
.ocw-fold.rt .ocw-el-item .ocw-el-more.ocw-form-panel .ocw-more-inner:before {
  top: 10px;
}
.ocw-fold.rt .ocw-el-item .ocw-el-more.ocw-form-panel .ocw-more-inner:after {
  top: 0;
}
.ocw-fold.rc {
  right: 20px;
  top: 50%;
  -webkit-transform: translate(
    var(--ocw-offset-x, 0),
    calc(-50% + var(--ocw-offset-y, 0))
  );
  transform: translate(
    var(--ocw-offset-x, 0),
    calc(-50% + var(--ocw-offset-y, 0))
  );
}
.ocw-fold.rb {
  bottom: 50px;
  right: 20px;
  -webkit-transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
  transform: translate(var(--ocw-offset-x, 0), var(--ocw-offset-y, 0));
}
.ocw-fold.rb .ocw-el-item .ocw-el-more {
  top: auto;
  bottom: 0;
  -webkit-transform: translate3d(-90%, 0, 0);
  transform: translate3d(-90%, 0, 0);
}
.ocw-fold.rb .ocw-el-item:not(.ocw-need-click):hover .ocw-el-more {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.ocw-fold.rb .ocw-el-item .ocw-el-more .ocw-more-inner:before {
  top: auto;
  bottom: 18px;
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.ocw-fold.rb .ocw-el-item .ocw-el-more .ocw-more-inner:after {
  top: auto;
  bottom: 0;
  margin-top: 0;
}
.ocw-fold .ocw-btn-item {
  cursor: pointer;
  display: block;
  height: var(--ocw-unfold-size, 38px);
  line-height: var(--ocw-unfold-size, 38px);
  position: relative;
  text-align: center;
}
.ocw-fold .ocw-btn-item .icon-img {
  display: inline-block;
  height: 24px;
  vertical-align: middle;
  width: 24px;
}
.ocw-fold .ocw-btn-item svg {
  fill: var(--ocw-theme-color, #666);
  height: 40%;
  width: 40%;
}
.ocw-fold.ocw-fillet {
  border-radius: var(--ocw-unfold-radius, 24px);
}
.ocw-fold.ocw-fillet .ocw-el-item:first-child {
  border-radius: var(--ocw-unfold-radius, 24px) var(--ocw-unfold-radius, 24px) 0
    0;
}
.ocw-fold.ocw-fillet .ocw-el-item:last-child {
  border-radius: 0 0 var(--ocw-unfold-radius, 24px)
    var(--ocw-unfold-radius, 24px);
}
.ocw-fold.ocw-big {
  width: var(--ocw-unfold-size, 48px);
}
.ocw-fold.ocw-big .ocw-el-item {
  height: var(--ocw-unfold-size, 48px);
  margin-top: -1px;
}
.ocw-fold.ocw-big .ocw-el-item:first-child {
  margin-top: 0;
}
.ocw-fold.ocw-big .ocw-el-item:last-child .ocw-btn-item:after {
  visibility: hidden;
}
.ocw-fold.ocw-big .ocw-el-item.active {
  background-color: var(--ocw-theme-color, #06c);
}
.ocw-fold.ocw-big .ocw-el-item.active .ocw-btn-item {
  z-index: 2;
}
.ocw-fold.ocw-big .ocw-el-item.active .ocw-btn-item:after {
  visibility: hidden;
}
.ocw-fold.ocw-big .ocw-el-item.active .ocw-btn-item svg {
  fill: #fff;
}
.ocw-fold.ocw-big .ocw-el-item .ocw-btn-item {
  height: var(--ocw-unfold-size, 48px);
  line-height: var(--ocw-unfold-size, 48px);
}
.ocw-fold.ocw-big .ocw-el-item .ocw-btn-item:after {
  background-color: #ececec;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.ocw-fold.ocw-big .ocw-btn-item svg {
  height: 40%;
  width: 40%;
}
.ocw-fold .wx-inner {
  text-align: center;
}
.ocw-el-item {
  background-color: var(--wb-bgcl, var(--ocw-bgcl, #fff));
  height: var(--ocw-unfold-size, 38px);
  position: relative;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  width: 100%;
}
.ocw-el-item:first-child {
  border-radius: var(--ocw-unfold-radius, 3px) var(--ocw-unfold-radius, 3px) 0 0;
}
.ocw-el-item:last-child {
  border-radius: 0 0 var(--ocw-unfold-radius, 3px) var(--ocw-unfold-radius, 3px);
}
.ocw-el-item:not(.ocw-need-click):hover .ocw-el-more {
  opacity: 1;
  text-align: left;
  -webkit-transform: translate3d(-100%, -50%, 0);
  transform: translate3d(-100%, -50%, 0);
  visibility: visible;
}
.ocw-el-item:hover {
  background-color: var(--ocw-theme-color, #06c);
}
.ocw-el-item:hover .ocw-btn-item {
  z-index: 2;
}
.ocw-el-item:hover .ocw-btn-item:after {
  visibility: hidden;
}
.ocw-el-item:hover .ocw-btn-item svg {
  fill: #fff;
}
.ocw-el-more {
  background-color: transparent;
  color: var(--wb-bfc, var(--ocw-bfc, #333));
  opacity: 0;
  padding-right: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate3d(-90%, -50%, 0);
  transform: translate3d(-90%, -50%, 0);
  transition:
    transform 0.3s,
    opacity 0.5s,
    -webkit-transform 0.3s;
  visibility: hidden;
  z-index: 2;
}
.ocw-el-more .ocw-more-inner:before {
  right: -6px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.ocw-el-more .ocw-more-inner:after {
  margin-top: -18px;
  right: 0;
  top: 50%;
}
.ocw-el-more .ocw-qq {
  fill: #11b7f5;
}
.ocw-el-more .ocw-email {
  fill: #06c;
}
.ocw-el-more .ocw-tel {
  fill: #12b95e;
}
.ocw-el-more .qr-img {
  display: block;
  height: auto;
  margin: 0 auto 5px;
  max-width: 120px;
  width: 90%;
}
.ocw-el-more .ocw-link {
  color: var(--wb-bfc, var(--ocw-bfc, #333));
  font-size: var(--ocw-bfs, 12px);
  line-height: 1.5;
  text-decoration: none;
}
.ocw-el-more .ocw-link:hover {
  color: var(--ocw-theme-color, #06c);
}
.ocw-el-more .ocw-label {
  color: var(--wb-wk, var(--ocw-wk, #999));
}
.ocw-more-inner {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  min-width: 140px;
  padding: 20px 16px;
  position: relative;
}
.ocw-more-inner,
.ocw-more-inner:before {
  background-color: var(--wb-bgcl, var(--ocw-bgcl, #fff));
  border-radius: 3px;
  -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
}
.ocw-more-inner:before {
  content: "";
  height: 18px;
  position: absolute;
  width: 18px;
  z-index: 1;
}
.ocw-more-inner:after {
  background-color: var(--wb-bgcl, var(--ocw-bgcl, #fff));
  border-radius: 0 0 3px 0;
  content: "";
  height: 36px;
  position: absolute;
  width: 36px;
  z-index: 2;
}
.ocw-more-item {
  color: var(--wb-bfc, var(--ocw-bfc, #333));
  line-height: 16px;
  position: relative;
  z-index: 5;
}
.ocw-more-item + .ocw-more-item {
  border-top: 1px solid #ececec;
  margin-top: 15px;
  padding-top: 10px;
}
.ocw-more-item .ocw-wb-icon {
  left: 0;
  margin-top: -8px;
  position: absolute;
  top: 50%;
}
.ocw-more-item .ocw-p {
  padding-left: 20px;
}
.ocw-more-item .ocw-whatsapp {
  fill: #40c351;
}
.ocw-more-item .ocw-telegram {
  fill: #29b6f6;
}
.ocw-more-item .ocw-messenger {
  fill: #0084ff;
}
.ocw-more-item .ocw-viber {
  fill: #912fbd;
}
.ocw-more-item .ocw-signal {
  fill: #c822ff;
}
.ocw-more-item .ocw-line {
  fill: #00c300;
}
.ocw-form-panel {
  bottom: 0;
  left: 0;
  top: auto;
  -webkit-transform: translate3d(-90%, 0, 0);
  transform: translate3d(-90%, 0, 0);
}
.ocw-form-panel .ocw-more-inner {
  width: var(--ocw-panel-width, 360px);
}
.ocw-form-panel .ocw-more-inner:before {
  bottom: 10px;
  right: -6px;
  top: auto;
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.ocw-form-panel .ocw-more-inner:after {
  bottom: 0;
  right: 0;
  top: auto;
}
.ocw-form-panel .ocw-form-header {
  color: var(--wb-wk, var(--ocw-wk, #999));
  font-size: var(--ocw-bfs, 12px);
  line-height: 1.75em;
  margin-bottom: 10px;
  position: relative;
  z-index: 5;
}
.ocw-form-panel .ocw-msg-set {
  margin-bottom: 20px;
}
.active-panel .ocw-form-panel {
  opacity: 1;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  visibility: visible;
}
.owc-title-list {
  margin-bottom: 30px;
  margin-top: 50px;
}
.owc-title-list h1 {
  color: var(--wb-fcs, var(--ocw-fcs, #333));
  font-size: 3em;
  font-weight: 700;
}
.page-faq .header .search-form {
  display: none;
}
.align-center {
  text-align: center;
}
.container-faq {
  background-color: var(--wb-bgcl, var(--ocw-bgcl, #fff));
}
.search-form-banner {
  padding-bottom: 20px;
  padding-top: 20px;
}
.search-form-banner .search-form {
  height: 42px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  position: relative;
  width: 350px;
}
.search-form-banner .search-form .form-control {
  background-color: hsla(0, 0%, 100%, 0.3);
  border-color: hsla(0, 0%, 100%, 0.4);
  color: var(--wb-fcs, var(--ocw-fcs, #333));
  width: 100%;
}
.search-form-banner .search-form .form-control::-webkit-input-placeholder {
  color: var(--wb-wke, var(--ocw-wke, #c1c1c1));
}
.search-form-banner .search-form .form-control::-moz-placeholder {
  color: var(--wb-wke, var(--ocw-wke, #c1c1c1));
}
.search-form-banner .search-form .form-control:-ms-input-placeholder {
  color: var(--wb-wke, var(--ocw-wke, #c1c1c1));
}
.search-form-banner .search-form .form-control::-ms-input-placeholder {
  color: var(--wb-wke, var(--ocw-wke, #c1c1c1));
}
.search-form-banner .search-form .form-control::placeholder {
  color: var(--wb-wke, var(--ocw-wke, #c1c1c1));
}
.search-form-banner .search-form .btn-search svg {
  fill: #fff;
}
.main-faq-index {
  font-size: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}
.main-faq-index .faq-cat-wp {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  padding-bottom: 60px;
  vertical-align: top;
  width: 100%;
}
.main-faq-index .faq-cat-wp .sc-title {
  color: var(--wb-fcs, var(--ocw-fcs, #333));
  font-size: 18px;
  line-height: 28px;
  padding-bottom: 15px;
  text-align: center;
}
.main-faq-index .load-more {
  display: block;
  font-size: 14px;
  margin-bottom: -35px;
  padding: 20px 0;
  text-align: center;
}
.main-faq {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}
.main-faq .sc-title + .faq-box {
  margin-bottom: 20px;
  margin-top: 20px;
}
.main-faq .bread-crumbs {
  margin-bottom: 20px;
  margin-top: 30px;
}
.faq-box {
  background-color: var(--wb-bgcl, var(--ocw-bgcl, #fff));
  border: 2px solid var(--wb-bbc, var(--ocw-bbc, #d1d1d1));
  border-radius: 4px;
  padding: 25px 0 35px;
}
.faq-list .item {
  border-bottom: 1px solid var(--wb-bbc, var(--ocw-bbc, #d1d1d1));
  margin-left: 30px;
  margin-right: 30px;
}
.faq-list .item:hover {
  cursor: pointer;
}
.faq-list .item:hover .title-detail {
  color: var(--ocw-theme-color, #06c);
}
.faq-list .item .hd {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath fill='%231554B8' fill-rule='evenodd' d='M9.5 8.4c-.5.3-.5.4-.5.6v1H7V9c0-1.3.8-1.9 1.4-2.3.5-.3.6-.4.6-.7 0-.6-.4-1-1-1a1 1 0 0 0-.9.5l-.5.9-1.7-1 .5-.9A3 3 0 0 1 8 3a3 3 0 0 1 3 3c0 1.4-.9 2-1.5 2.4zM8 13c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1zM8 0a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 16px auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  min-height: 42px;
  padding: 10px 60px 10px 32px;
  position: relative;
}
.faq-list .item .hd strong {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 16px;
  font-weight: 700;
}
.faq-list .item .hd:after {
  content: "";
  position: absolute;
  right: 4px;
  top: 24px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}
.faq-list .item .bd {
  display: none;
  font-size: 14px;
  padding: 0 20px 20px 32px;
}
.faq-list .item.active .hd:after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.faq-list .item.active .bd {
  display: block;
}
.faq-list .title-detail {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.ocw-pagination {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 1200px) {
  .main-faq-index {
    margin-left: 0;
    margin-right: 0;
  }
  .main-faq-index .faq-cat-wp {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .main-faq-index {
    padding-top: 0;
  }
  .main-faq-index .faq-cat-wp .sc-title {
    padding-bottom: 0;
  }
  .faq-list .item {
    margin-left: var(--ocw-sphm, 20px);
    margin-right: var(--ocw-sphm, 20px);
  }
  .faq-list .item .hd {
    background-position: 0 14px;
    background-size: 14px auto;
    font-size: 14px;
    line-height: 22px;
    min-height: auto;
    padding: 10px 20px 10px 25px;
  }
  .faq-list .item .hd:after {
    height: 4px;
    top: 18px;
    width: 4px;
  }
  .faq-list .item .bd {
    padding: 0 0 15px;
  }
}
.wb-is-mobile .main-faq {
  margin: 30px var(--ocw-sphm, 20px);
  max-width: none;
}
.wb-is-mobile .container-faq .search-form .form-control {
  width: 100% !important;
}

/* ===== 绔栧悜 FAB 闈㈡澘鏍峰紡 ===== */

/* FAB 绔栧悜瀹瑰櫒 */
.ocw-fab-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
  padding: 2px 0;
}

/* 涓绘寜閽細鍦ㄧ嚎鍜ㄨ锛堟笎鍙樿儗鏅� + 绔栨帓鏂囧瓧锛� */
.ocw-fab-main {
  width: 48px;
  min-height: 124px;
  padding: 12px 6px 14px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.ocw-fab-main:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  border-color: rgba(196, 181, 253, 0.9);
  -webkit-box-shadow: 0 16px 34px rgba(124, 58, 237, 0.16), 0 4px 10px rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.16), 0 4px 10px rgba(15, 23, 42, 0.08);
}
.ocw-fab-main:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.ocw-fab-main-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(245, 243, 255, 0.92), rgba(252, 231, 243, 0.6));
}
.ocw-fab-main-icon .ocw-wb-icon {
  width: 24px;
  height: 24px;
  fill: url(#ocw-chat-bubble-gradient);
  overflow: visible;
}
.ocw-fab-main-icon .ocw-chat-dot {
  fill: rgba(255, 255, 255, 0.86);
}
.ocw-fab-main-text {
  color: #111827;
  font-size: 13px;
  writing-mode: vertical-rl;
  letter-spacing: 1px;
  line-height: 1.12;
  font-weight: 500;
}

/* 鍦嗗舰鎸夐挳閫氱敤鏍峰紡 */
.ocw-fab-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12), 0 1px 4px rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12), 0 1px 4px rgba(15, 23, 42, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.ocw-fab-btn:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 14px 28px rgba(124, 58, 237, 0.18), 0 2px 8px rgba(15, 23, 42, 0.1);
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.18), 0 2px 8px rgba(15, 23, 42, 0.1);
}
.ocw-fab-btn .ocw-wb-icon {
  width: 24px;
  height: 24px;
  fill: #4b5563;
}
.ocw-fab-btn:hover .ocw-wb-icon {
  fill: #7c3aed;
}
.ocw-fab-cart {
  color: #4b5563;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  text-decoration: none !important;
}
.ocw-fab-cart .ocw-wb-icon path {
  fill: currentColor;
}
.ocw-fab-cart:hover {
  color: #7c3aed;
  text-decoration: none !important;
}
.ocw-fold .ocw-cart-entry,
.ocw-fold .ocw-fab-cart {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.ocw-fold .ocw-fab-cart {
  position: relative;
}
.ocw-fold .ocw-fab-cart .ocw-fab-cart-count {
  top: 2px;
  right: 2px;
}
.ocw-fold .ocw-fab-cart .ocw-wb-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.ocw-fab-top .ocw-wb-icon {
  width: 25px;
  height: 25px;
}
.ocw-fab-msg-trigger .ocw-wb-icon {
  width: 22px;
  height: 22px;
}

/* 瑕嗙洊鏃� .ocw-buoy-btn 鏍峰紡锛團AB 妯″紡涓嬶級 */
.ocw-fab-bar .ocw-buoy-btn {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  -webkit-box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12), 0 1px 4px rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12), 0 1px 4px rgba(15, 23, 42, 0.08);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
  z-index: 2;
}
.ocw-fab-bar .ocw-buoy-btn:hover {
  background: rgba(255, 255, 255, 0.96);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 14px 28px rgba(124, 58, 237, 0.18), 0 2px 8px rgba(15, 23, 42, 0.1);
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.18), 0 2px 8px rgba(15, 23, 42, 0.1);
}
.ocw-fab-bar .ocw-buoy-btn:active {
  background: rgba(255, 255, 255, 0.96);
}
.ocw-fab-bar .ocw-buoy-btn .ocw-wb-icon {
  fill: #4b5563;
  height: 24px;
  width: 24px;
  position: static;
  display: block;
}
.ocw-fab-bar .ocw-buoy-btn:hover .ocw-wb-icon {
  fill: #7c3aed;
  opacity: 1;
}

/* 绾㈣壊閫氱煡寰芥爣 */
.ocw-fab-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: #ff3b30;
  border-radius: 50%;
  border: 2px solid var(--wb-bgcl, #fff);
  z-index: 3;
}
.ocw-fab-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ff4d5e;
  border: 2px solid var(--wb-bgcl, #fff);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 20;
}
.ocw-fab-cart-count[hidden] {
  display: none !important;
}
.ocw-fab-cart-count.is-show {
  animation: ocwCartBadgePop 0.28s ease;
}
@keyframes ocwCartBadgePop {
  0% {
    transform: scale(0.72);
  }
  70% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .ocw-fab-bar {
    gap: 10px;
  }
  .ocw-fab-main {
    width: 46px;
    min-height: 118px;
    border-radius: 22px;
  }
  .ocw-fab-btn,
  .ocw-fab-bar .ocw-buoy-btn {
    width: 46px;
    height: 46px;
  }
}

/* FAB 妯″紡涓嬬Щ闄ゆ棫娴爣鍔ㄧ敾鍦� */
.ocw-fab-mode .ocw-animated-circles {
  display: none !important;
}

/* FAB 妯″紡涓� ocw-buoy-item 涓嶉渶瑕� min-width 闄愬埗 */
.ocw-fab-mode .ocw-buoy-item {
  min-width: 0;
}

/* FAB 妯″紡涓嬪睍寮€闈㈡澘瀹氫綅 - 鍙充晶浣嶇疆锛氶潰鏉垮嚭鐜板湪 FAB 宸︿晶锛屽簳閮ㄥ榻� */
.ocw-buoy.ocw-fab-mode.rt .ocw-buoy-panel,
.ocw-buoy.ocw-fab-mode.rc .ocw-buoy-panel,
.ocw-buoy.ocw-fab-mode.rb .ocw-buoy-panel {
  top: auto;
  bottom: 0;
  right: calc(100% + 12px);
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}
.ocw-buoy.ocw-fab-mode.rt .ocw-buoy-panel.active-panel,
.ocw-buoy.ocw-fab-mode.rc .ocw-buoy-panel.active-panel,
.ocw-buoy.ocw-fab-mode.rb .ocw-buoy-panel.active-panel {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* FAB 妯″紡涓嬪睍寮€闈㈡澘瀹氫綅 - 宸︿晶浣嶇疆锛氶潰鏉垮嚭鐜板湪 FAB 鍙充晶锛屽簳閮ㄥ榻� */
.ocw-buoy.ocw-fab-mode.lt .ocw-buoy-panel,
.ocw-buoy.ocw-fab-mode.lc .ocw-buoy-panel,
.ocw-buoy.ocw-fab-mode.lb .ocw-buoy-panel {
  top: auto;
  bottom: 0;
  left: calc(100% + 12px);
  right: auto;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
}
.ocw-buoy.ocw-fab-mode.lt .ocw-buoy-panel.active-panel,
.ocw-buoy.ocw-fab-mode.lc .ocw-buoy-panel.active-panel,
.ocw-buoy.ocw-fab-mode.lb .ocw-buoy-panel.active-panel {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}