/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-carousel {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
}
.ant-carousel .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  touch-action: pan-y;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.ant-carousel .slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.ant-carousel .slick-list:focus {
  outline: none;
}
.ant-carousel .slick-list.dragging {
  cursor: pointer;
}
.ant-carousel .slick-list .slick-slide {
  pointer-events: none;
}
.ant-carousel .slick-list .slick-slide input.ant-radio-input,
.ant-carousel .slick-list .slick-slide input.ant-checkbox-input {
  visibility: hidden;
}
.ant-carousel .slick-list .slick-slide.slick-active {
  pointer-events: auto;
}
.ant-carousel .slick-list .slick-slide.slick-active input.ant-radio-input,
.ant-carousel .slick-list .slick-slide.slick-active input.ant-checkbox-input {
  visibility: visible;
}
.ant-carousel .slick-list .slick-slide > div > div {
  vertical-align: bottom;
}
.ant-carousel .slick-slider .slick-track,
.ant-carousel .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
  touch-action: pan-y;
}
.ant-carousel .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.ant-carousel .slick-track::before,
.ant-carousel .slick-track::after {
  display: table;
  content: '';
}
.ant-carousel .slick-track::after {
  clear: both;
}
.slick-loading .ant-carousel .slick-track {
  visibility: hidden;
}
.ant-carousel .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.ant-carousel .slick-slide img {
  display: block;
}
.ant-carousel .slick-slide.slick-loading img {
  display: none;
}
.ant-carousel .slick-slide.dragging img {
  pointer-events: none;
}
.ant-carousel .slick-initialized .slick-slide {
  display: block;
}
.ant-carousel .slick-loading .slick-slide {
  visibility: hidden;
}
.ant-carousel .slick-vertical .slick-slide {
  display: block;
  height: auto;
}
.ant-carousel .slick-arrow.slick-hidden {
  display: none;
}
.ant-carousel .slick-prev,
.ant-carousel .slick-next {
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  padding: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
.ant-carousel .slick-prev:hover,
.ant-carousel .slick-next:hover,
.ant-carousel .slick-prev:focus,
.ant-carousel .slick-next:focus {
  color: transparent;
  background: transparent;
  outline: none;
}
.ant-carousel .slick-prev:hover::before,
.ant-carousel .slick-next:hover::before,
.ant-carousel .slick-prev:focus::before,
.ant-carousel .slick-next:focus::before {
  opacity: 1;
}
.ant-carousel .slick-prev.slick-disabled::before,
.ant-carousel .slick-next.slick-disabled::before {
  opacity: 0.25;
}
.ant-carousel .slick-prev {
  left: -25px;
}
.ant-carousel .slick-prev::before {
  content: '\2190';
}
.ant-carousel .slick-next {
  right: -25px;
}
.ant-carousel .slick-next::before {
  content: '\2192';
}
.ant-carousel .slick-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex !important;
  justify-content: center;
  margin-right: 15%;
  margin-bottom: 0;
  margin-left: 15%;
  padding-left: 0;
  list-style: none;
}
.ant-carousel .slick-dots-bottom {
  bottom: 12px;
}
.ant-carousel .slick-dots-top {
  top: 12px;
  bottom: auto;
}
.ant-carousel .slick-dots li {
  position: relative;
  display: inline-block;
  flex: 0 1 auto;
  box-sizing: content-box;
  width: 16px;
  height: 3px;
  margin: 0 4px;
  padding: 0;
  text-align: center;
  text-indent: -999px;
  vertical-align: top;
  transition: all 0.5s;
}
.ant-carousel .slick-dots li button {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  padding: 0;
  color: transparent;
  font-size: 0;
  background: #fff;
  border: 0;
  border-radius: 1px;
  outline: none;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.5s;
}
.ant-carousel .slick-dots li button:hover,
.ant-carousel .slick-dots li button:focus {
  opacity: 0.75;
}
.ant-carousel .slick-dots li button::after {
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  content: '';
}
.ant-carousel .slick-dots li.slick-active {
  width: 24px;
}
.ant-carousel .slick-dots li.slick-active button {
  background: #fff;
  opacity: 1;
}
.ant-carousel .slick-dots li.slick-active:hover,
.ant-carousel .slick-dots li.slick-active:focus {
  opacity: 1;
}
.ant-carousel-vertical .slick-dots {
  top: 50%;
  bottom: auto;
  flex-direction: column;
  width: 3px;
  height: auto;
  margin: 0;
  transform: translateY(-50%);
}
.ant-carousel-vertical .slick-dots-left {
  right: auto;
  left: 12px;
}
.ant-carousel-vertical .slick-dots-right {
  right: 12px;
  left: auto;
}
.ant-carousel-vertical .slick-dots li {
  width: 3px;
  height: 16px;
  margin: 4px 0;
  vertical-align: baseline;
}
.ant-carousel-vertical .slick-dots li button {
  width: 3px;
  height: 16px;
}
.ant-carousel-vertical .slick-dots li.slick-active {
  width: 3px;
  height: 24px;
}
.ant-carousel-vertical .slick-dots li.slick-active button {
  width: 3px;
  height: 24px;
}
.ant-carousel-rtl {
  direction: rtl;
}
.ant-carousel-rtl .ant-carousel .slick-track {
  right: 0;
  left: auto;
}
.ant-carousel-rtl .ant-carousel .slick-prev {
  right: -25px;
  left: auto;
}
.ant-carousel-rtl .ant-carousel .slick-prev::before {
  content: '\2192';
}
.ant-carousel-rtl .ant-carousel .slick-next {
  right: auto;
  left: -25px;
}
.ant-carousel-rtl .ant-carousel .slick-next::before {
  content: '\2190';
}
.ant-carousel-rtl.ant-carousel .slick-dots {
  flex-direction: row-reverse;
}
.ant-carousel-rtl.ant-carousel-vertical .slick-dots {
  flex-direction: column;
}

 {
  /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
  /* Document
   ========================================================================== */
  /**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
  /* Sections
   ========================================================================== */
  /**
 * Remove the margin in all browsers.
 */
}
.ant-cascader-dropdown {
  overflow: visible !important;
}
html {
  font-size: 10px;
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
html,
body {
  /**
 * Render the `main` element consistently in IE.
 */
  /**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
  /* Grouping content
   ========================================================================== */
  /**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
  /**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
  /* Text-level semantics
   ========================================================================== */
  /**
 * Remove the gray background on active links in IE 10.
 */
  /**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
  /**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
  /**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
  /**
 * Add the correct font size in all browsers.
 */
  /**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
  /* Embedded content
   ========================================================================== */
  /**
 * Remove the border on images inside links in IE 10.
 */
  /* Forms
   ========================================================================== */
  /**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
  /**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
  /**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
  /**
 * Correct the inability to style clickable types in iOS and Safari.
 */
  /**
 * Remove the inner border and padding in Firefox.
 */
  /**
 * Restore the focus styles unset by the previous rule.
 */
  /**
 * Correct the padding in Firefox.
 */
  /**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
  /**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
  /**
 * Remove the default vertical scrollbar in IE 10+.
 */
  /**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
  /**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
  /**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
  /**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
  /**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
  /* Interactive
   ========================================================================== */
  /*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
  /*
 * Add the correct display in all browsers.
 */
  /* Misc
   ========================================================================== */
  /**
 * Add the correct display in IE 10+.
 */
  /**
 * Add the correct display in IE 10.
 */
}
html main,
body main {
  display: block;
}
html h1,
body h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
html hr,
body hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
html pre,
body pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
html a,
body a {
  background-color: transparent;
}
html abbr[title],
body abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
html b,
body b,
html strong,
body strong {
  font-weight: bolder;
}
html code,
body code,
html kbd,
body kbd,
html samp,
body samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
html small,
body small {
  font-size: 80%;
}
html sub,
body sub,
html sup,
body sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
html sub,
body sub {
  bottom: -0.25em;
}
html sup,
body sup {
  top: -0.5em;
}
html img,
body img {
  border-style: none;
}
html button,
body button,
html input,
body input,
html optgroup,
body optgroup,
html select,
body select,
html textarea,
body textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
html button,
body button,
html input,
body input {
  /* 1 */
  overflow: visible;
}
html button,
body button,
html select,
body select {
  /* 1 */
  text-transform: none;
}
html button,
body button,
html [type="button"],
body [type="button"],
html [type="reset"],
body [type="reset"],
html [type="submit"],
body [type="submit"] {
  -webkit-appearance: button;
}
html button::-moz-focus-inner,
body button::-moz-focus-inner,
html [type="button"]::-moz-focus-inner,
body [type="button"]::-moz-focus-inner,
html [type="reset"]::-moz-focus-inner,
body [type="reset"]::-moz-focus-inner,
html [type="submit"]::-moz-focus-inner,
body [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
html button:-moz-focusring,
body button:-moz-focusring,
html [type="button"]:-moz-focusring,
body [type="button"]:-moz-focusring,
html [type="reset"]:-moz-focusring,
body [type="reset"]:-moz-focusring,
html [type="submit"]:-moz-focusring,
body [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
html fieldset,
body fieldset {
  padding: 0.35em 0.75em 0.625em;
}
html legend,
body legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
html progress,
body progress {
  vertical-align: baseline;
}
html textarea,
body textarea {
  overflow: auto;
}
html [type="checkbox"],
body [type="checkbox"],
html [type="radio"],
body [type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
html [type="number"]::-webkit-inner-spin-button,
body [type="number"]::-webkit-inner-spin-button,
html [type="number"]::-webkit-outer-spin-button,
body [type="number"]::-webkit-outer-spin-button {
  height: auto;
}
html [type="search"],
body [type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
html [type="search"]::-webkit-search-decoration,
body [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
html ::-webkit-file-upload-button,
body ::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
html details,
body details {
  display: block;
}
html summary,
body summary {
  display: list-item;
}
html template,
body template {
  display: none;
}
html [hidden],
body [hidden] {
  display: none;
}
html *,
body * {
  box-sizing: border-box;
}
html *:before,
body *:before,
html *:after,
body *:after {
  box-sizing: border-box;
}
html *:focus,
body *:focus {
  outline: 0 !important;
}
html h1,
body h1,
html h2,
body h2,
html h3,
body h3,
html h4,
body h4 {
  padding: 0;
  margin: 0;
}
html input,
body input,
html button,
body button,
html select,
body select,
html textarea,
body textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
html img,
body img {
  border: 0;
}
html svg:not(:root),
body svg:not(:root) {
  overflow: hidden;
}
html button,
body button,
html input,
body input,
html optgroup,
body optgroup,
html select,
body select,
html textarea,
body textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
html button,
body button {
  overflow: visible;
}
html button,
body button,
html select,
body select {
  text-transform: none;
}
html button,
body button,
html html input[type="button"],
body html input[type="button"],
html input[type="reset"],
body input[type="reset"],
html input[type="submit"],
body input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
html button[disabled],
body button[disabled],
html html input[disabled],
body html input[disabled] {
  cursor: default;
}
html button::-moz-focus-inner,
body button::-moz-focus-inner,
html input::-moz-focus-inner,
body input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
html input[type="checkbox"],
body input[type="checkbox"],
html input[type="radio"],
body input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  cursor: pointer;
}
html input[type="number"]::-webkit-inner-spin-button,
body input[type="number"]::-webkit-inner-spin-button,
html input[type="number"]::-webkit-outer-spin-button,
body input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
html input[type="search"],
body input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
html input[type="search"]::-webkit-search-cancel-button,
body input[type="search"]::-webkit-search-cancel-button,
html input[type="search"]::-webkit-search-decoration,
body input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
html input:-webkit-autofill,
body input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  -webkit-text-fill-color: #333;
}
html textarea,
body textarea {
  overflow: auto;
  resize: none;
  color: #333;
  padding: 10px;
  border: #e9e9e9 1px solid;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
html optgroup,
body optgroup {
  font-weight: bold;
}
html a,
body a {
  color: inherit;
  text-decoration: none;
}
html a:focus,
body a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
html ul,
body ul,
html ol,
body ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
html p,
body p {
  margin: 0;
}
html input[type="text"],
body input[type="text"],
html input[type="password"],
body input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 10px;
  padding-right: 10px;
  color: #333;
  border: #e9e9e9 1px solid;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
html textarea:focus,
body textarea:focus,
html input[type="text"]:focus,
body input[type="text"]:focus,
html input[type="password"]:focus,
body input[type="password"]:focus {
  border-color: #a0bdfe;
  box-shadow: 0 0 3px 0 #427afb;
}
html ::placeholder,
body ::placeholder {
  color: #9b9b9b;
}
html .list-inline,
body .list-inline {
  font-size: 0;
}
html .list-inline li,
body .list-inline li {
  display: inline-block;
  font-size: 14px;
}
html .ellipsis,
body .ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  min-height: 1em;
}
html .link,
body .link {
  color: #427afb;
  cursor: pointer;
}
html .ReactModal__Body--open,
body .ReactModal__Body--open {
  overflow: hidden;
}
html .container,
body .container {
  width: 1180px;
  margin: 0 auto;
}
html .modal-title,
body .modal-title {
  font-size: 20px;
  font-weight: normal;
  height: 60px;
  line-height: 60px;
  margin-top: 0;
  margin-bottom: 0;
  background: #f3f3f3;
  border-radius: 6px 6px 0 0;
  border-bottom: 1px solid #d8d8d8;
  padding-left: 20px;
}
html .modal-foot,
body .modal-foot {
  border-radius: 0 0 6px 6px;
  background: #f3f3f3;
  text-align: center;
  border-top: 1px solid #d8d8d8;
  height: 60px;
  padding-top: 12px;
}
html .tether-element,
body .tether-element {
  z-index: 100000000000;
}
html .modal-open,
body .modal-open {
  overflow: hidden;
}
html .clearfix:after,
body .clearfix:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
}
html .clearfix,
body .clearfix {
  zoom: 1;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: "PingFangSC-Regular", "Microsoft YaHei", "Hiragino Sans GB", tahoma, Arial, "\5B8B\4F53", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: "PingFangSC-Regular", "Microsoft YaHei", "Hiragino Sans GB", tahoma, Arial, "\5B8B\4F53", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #333;
  background-color: #fff;
  word-wrap: break-word;
}
@media (max-width: 767px) {
  .ant-cascader-menu {
    width: 28vw!important;
    min-width: 28vw!important;
    overflow-x: hidden!important;
  }
  .ant-cascader-menu-item-content {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .ant-cascader-menu-item-expand-icon {
    right: 4px!important;
  }
  .ant-cascader-menu-item {
    padding-right: 10px!important;
    padding-left: 5px!important;
  }
}

.components-Button--button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  border-radius: 5px;
  user-select: none;
  white-space: nowrap;
}

.components-Button--default {
  background-color: #286efa;
  color: #fff;
  font-size: 14px;
}

.components-Button--default:hover {
  color: #fff;
  background-color: #0057ff;
}

.components-Button--outline {
  background-color: transparent;
  color: #286efa;
  border: #286efa 1px solid;
}
.components-Button--outline2 {
  background-color: transparent;
  color: #5f5f5f;
  border: #d8d8d8 1px solid;
}

.components-Button--outline:hover,
.components-Button--outline2:hover {
  background-color: #286efa;
  color: #fff;
}
.components-Button--redOutline {
  background-color: transparent;
  color: #f36264;
  border: #f36264 1px solid;
}
.components-Button--redOutline:hover {
  background-color: #f46465;
  color: #fff;
}
.components-Button--important {
  background-color: #f46465;
  color: #fff;
}

.components-Button--important:hover {
  background-color: #e14647;
}

.components-Button--black,
.components-Button--black:hover {
  background-color: #50565c;
  color: #fff;
}

.components-Button--yellow {
  background-color: #FA6400;
  color: #fff;
}

.components-Button--yellow:hover {
  background-color: #FF5100;
  color: #fff;
}

.components-Button--loading,
.components-Button--loading:hover {
  background-color: #d8d8d8;
  color: #fff;
  cursor: wait;
}

.components-Button--disabled,
.components-Button--disabled:hover {
  background-color: #d8d8d8;
  color: #fff;
  cursor: not-allowed;
  border: 1px solid #efefef;
}

.components-Button--outline.components-Button--disabled,
.components-Button--outline.components-Button--loading {
  border-color: #d8d8d8;
}

.components-ProductServicePages-Three60videoPage-Content1--deskContent1 {
    width: 100%;
    background-color: #D8D8D8;
    /* height: calc(100vh - 60px); */
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.components-ProductServicePages-Three60videoPage-Content1--deskContent1_iframe {
    width: 100%;
    height: 100%;
}
.components-ProductServicePages-Three60videoPage-Content1--deskContent1_iframe .components-ProductServicePages-Three60videoPage-Content1--iframe {
    width: 100%;
    height: 100%;
}
.components-ProductServicePages-Three60videoPage-Content1--deskContent1_txt {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 346px;
    padding-top: 150px;
    text-align: center;
}

.components-ProductServicePages-Three60videoPage-Content1--deskContent1_txt h4 {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 50px;
    letter-spacing: 2px;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.8);
}
.components-ProductServicePages-Three60videoPage-Content1--deskContent1_txt .components-ProductServicePages-Three60videoPage-Content1--p1 {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 18px;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.8);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}
.components-ProductServicePages-Three60videoPage-Content1--deskContent1_txt2 {
    position: absolute;
    left: 0;
    bottom: 30px;
    text-align: left;
    font-size: 0;
    width: 100%;
}
.components-ProductServicePages-Three60videoPage-Content1--deskContent1_info {
    position: absolute;
    left: 30px;
    bottom: 0;
    font-weight: 400;
    color: #FFFFFF;
    font-size: 12px;
}
.components-ProductServicePages-Three60videoPage-Content1--deskContent1_info a {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 16px;
    text-shadow: 0px 4px 10px rgba(0,0,0,0.5);
}
.components-ProductServicePages-Three60videoPage-Content1--deskContent1_info a:first-child {
    margin-bottom: 4px;
}
.components-ProductServicePages-Three60videoPage-Content1--deskContent1_txt2 .components-ProductServicePages-Three60videoPage-Content1--img_list {
    text-align: center;
    font-size: 0;
    width: 100%;
}
.components-ProductServicePages-Three60videoPage-Content1--deskContent1_txt2 .components-ProductServicePages-Three60videoPage-Content1--img_list .components-ProductServicePages-Three60videoPage-Content1--imgitem {
    display: inline-block;
    font-size: 0;
    overflow: hidden;
    width: 88px;
    height: 50px;
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5);
    border-radius: 5px 5px 5px 5px;
    border: 2px solid #fff;
    position: relative;
    margin: 0 7px;
    transition: all 0.3s;
    opacity: 0.5;
    filter:alpha(opacity=0.5);
    cursor: pointer;
}
.components-ProductServicePages-Three60videoPage-Content1--deskContent1_txt2 .components-ProductServicePages-Three60videoPage-Content1--img_list .components-ProductServicePages-Three60videoPage-Content1--imgitemactive {
    border-color: #FA6400;
    opacity: 1;
    filter:alpha(opacity=100);
}
.components-ProductServicePages-Three60videoPage-Content1--deskContent1_txt2 .components-ProductServicePages-Three60videoPage-Content1--img_list .components-ProductServicePages-Three60videoPage-Content1--imgitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.components-ProductServicePages-Three60videoPage-Content1--deskContent1_txt2 .components-ProductServicePages-Three60videoPage-Content1--img_list .components-ProductServicePages-Three60videoPage-Content1--imgitem:hover {
    opacity: 1;
    filter:alpha(opacity=100);
}


/* mobile *********************************************/
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1 {
    width: 100%;
    box-sizing: border-box;
    background-color: #D8D8D8;
    height: 100vh;
}

.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_iframe {
    width: 100%;
    height: 100%;
}
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_iframe .components-ProductServicePages-Three60videoPage-Content1--iframe {
    width: 100%;
    height: 100%;
}
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_txt {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding-top: 100px;
    text-align: center;
}

.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_txt h4 {
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 42px;
    letter-spacing: 2px;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.8);
}
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_txt .components-ProductServicePages-Three60videoPage-Content1--p1 {
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 16px;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.8);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_txt_btn {
    display: inline-block;
    width: 184px;
    height: 36px;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 36px;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.8);
    background: rgba(26,26,26,0.2);
    border-radius: 5px 5px 5px 5px;
}
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_txt2 {
    position: absolute;
    left: 0;
    bottom: 30px;
    text-align: left;
    font-size: 0;
    width: 100%;
}
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_info {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -22px;
    font-weight: 400;
    color: #FFFFFF;
    font-size: 12px;
    text-align: center;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_info::-webkit-scrollbar {
    display: none;
}
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_info a {
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 16px;
    text-align: center;
    text-shadow: 0px 4px 10px rgba(0,0,0,0.5);
}
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_info a:first-child {
    padding-right: 18px;
}
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_txt2 .components-ProductServicePages-Three60videoPage-Content1--img_list {
    text-align: center;
    font-size: 0;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    font-size: 0;
}
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_txt2 .components-ProductServicePages-Three60videoPage-Content1--img_list::-webkit-scrollbar {
    display: none;
}
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_txt2 .components-ProductServicePages-Three60videoPage-Content1--img_list .components-ProductServicePages-Three60videoPage-Content1--imgitem {
    display: inline-block;
    font-size: 0;
    overflow: hidden;
    width: 88px;
    height: 50px;
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5);
    border-radius: 5px 5px 5px 5px;
    border: 2px solid #fff;
    position: relative;
    margin: 0 7px;
    transition: all 0.3s;
    opacity: 0.5;
    filter:alpha(opacity=50);
}
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_txt2 .components-ProductServicePages-Three60videoPage-Content1--img_list .components-ProductServicePages-Three60videoPage-Content1--imgitemactive {
    border-color: #FA6400;
    opacity: 1;
    filter:alpha(opacity=100);
}
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_txt2 .components-ProductServicePages-Three60videoPage-Content1--img_list .components-ProductServicePages-Three60videoPage-Content1--imgitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.components-ProductServicePages-Three60videoPage-Content1--mobileContent1_txt2 .components-ProductServicePages-Three60videoPage-Content1--img_list .components-ProductServicePages-Three60videoPage-Content1--imgitem:hover{
    opacity: 1;
    filter:alpha(opacity=100);
}

.components-ProductServicePages-Three60videoPage--page {
    width: 100%;
    position: relative;
}
.components-ProductServicePages-Three60videoPage--page_top {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}
