@charset "UTF-8";
/***
Spectrum Colorpicker v1.8.0
https://github.com/bgrins/spectrum
Author: Brian Grinstead
License: MIT
***/
.sp-container {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  /* https://github.com/bgrins/spectrum/issues/40 */
  z-index: 9999994;
  overflow: hidden;
}

.sp-container.sp-flat {
  position: relative;
}

/* Fix for * { box-sizing: border-box; } */
.sp-container,
.sp-container * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */
.sp-top {
  position: relative;
  width: 100%;
  display: inline-block;
}

.sp-top-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.sp-color {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 20%;
}

.sp-hue {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 84%;
  height: 100%;
}

.sp-clear-enabled .sp-hue {
  top: 33px;
  height: 77.5%;
}

.sp-fill {
  padding-top: 80%;
}

.sp-sat, .sp-val {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sp-alpha-enabled .sp-top {
  margin-bottom: 18px;
}

.sp-alpha-enabled .sp-alpha {
  display: block;
}

.sp-alpha-handle {
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: 6px;
  left: 50%;
  cursor: pointer;
  border: 1px solid black;
  background: white;
  opacity: 0.8;
}

.sp-alpha {
  display: none;
  position: absolute;
  bottom: -14px;
  right: 0;
  left: 0;
  height: 8px;
}

.sp-alpha-inner {
  border: solid 1px #333;
}

.sp-clear {
  display: none;
}

.sp-clear.sp-clear-display {
  background-position: center;
}

.sp-clear-enabled .sp-clear {
  display: block;
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 84%;
  height: 28px;
}

/* Don't allow text selection */
.sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-clear, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button {
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
}

.sp-container.sp-input-disabled .sp-input-container {
  display: none;
}

.sp-container.sp-buttons-disabled .sp-button-container {
  display: none;
}

.sp-container.sp-palette-buttons-disabled .sp-palette-button-container {
  display: none;
}

.sp-palette-only .sp-picker-container {
  display: none;
}

.sp-palette-disabled .sp-palette-container {
  display: none;
}

.sp-initial-disabled .sp-initial {
  display: none;
}

/* Gradients for hue, saturation and value instead of images.  Not pretty... but it works */
.sp-sat {
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#FFF), to(rgba(204, 154, 129, 0)));
  background-image: -webkit-linear-gradient(left, #FFF, rgba(204, 154, 129, 0));
  background-image: -moz-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
  background-image: -o-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
  background-image: -ms-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
  background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr="#FFFFFFFF", endColorstr="#00CC9A81");
}

.sp-val {
  background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#000000), to(rgba(204, 154, 129, 0)));
  background-image: -webkit-linear-gradient(bottom, #000000, rgba(204, 154, 129, 0));
  background-image: -moz-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
  background-image: -o-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
  background-image: -ms-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
  background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00CC9A81", endColorstr="#FF000000");
}

.sp-hue {
  background: -moz-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  background: -ms-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  background: -o-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), color-stop(0.17, #ffff00), color-stop(0.33, #00ff00), color-stop(0.5, #00ffff), color-stop(0.67, #0000ff), color-stop(0.83, #ff00ff), to(#ff0000));
  background: -webkit-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
}

/* IE filters do not support multiple color stops.
   Generate 6 divs, line them up, and do two color gradients for each.
   Yes, really.
 */
.sp-1 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff0000", endColorstr="#ffff00");
}

.sp-2 {
  height: 16%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffff00", endColorstr="#00ff00");
}

.sp-3 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ff00", endColorstr="#00ffff");
}

.sp-4 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffff", endColorstr="#0000ff");
}

.sp-5 {
  height: 16%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0000ff", endColorstr="#ff00ff");
}

.sp-6 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff00ff", endColorstr="#ff0000");
}

.sp-hidden {
  display: none !important;
}

/* Clearfix hack */
.sp-cf:before, .sp-cf:after {
  content: "";
  display: table;
}

.sp-cf:after {
  clear: both;
}

.sp-cf {
  *zoom: 1;
}

/* Mobile devices, make hue slider bigger so it is easier to slide */
@media (max-device-width: 480px) {
  .sp-color {
    right: 40%;
  }
  .sp-hue {
    left: 63%;
  }
  .sp-fill {
    padding-top: 60%;
  }
}
.sp-dragger {
  border-radius: 5px;
  height: 5px;
  width: 5px;
  border: 1px solid #fff;
  background: #000;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}

.sp-slider {
  position: absolute;
  top: 0;
  cursor: pointer;
  height: 3px;
  left: -1px;
  right: -1px;
  border: 1px solid #000;
  background: white;
  opacity: 0.8;
}

/*
Theme authors:
Here are the basic themeable display options (colors, fonts, global widths).
See http://bgrins.github.io/spectrum/themes/ for instructions.
*/
.sp-container {
  border-radius: 0;
  background-color: #ECECEC;
  border: solid 1px #f0c49B;
  padding: 0;
}

.sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue, .sp-clear {
  font: normal 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.sp-top {
  margin-bottom: 3px;
}

.sp-color, .sp-hue, .sp-clear {
  border: solid 1px #666;
}

/* Input */
.sp-input-container {
  float: right;
  width: 100px;
  margin-bottom: 4px;
}

.sp-initial-disabled .sp-input-container {
  width: 100%;
}

.sp-input {
  font-size: 12px !important;
  border: 1px inset;
  padding: 4px 5px;
  margin: 0;
  width: 100%;
  background: transparent;
  border-radius: 3px;
  color: #222;
}

.sp-input:focus {
  border: 1px solid orange;
}

.sp-input.sp-validation-error {
  border: 1px solid red;
  background: #fdd;
}

.sp-picker-container, .sp-palette-container {
  float: left;
  position: relative;
  padding: 10px;
  padding-bottom: 300px;
  margin-bottom: -290px;
}

.sp-picker-container {
  width: 172px;
  border-left: solid 1px #fff;
}

/* Palettes */
.sp-palette-container {
  border-right: solid 1px #ccc;
}

.sp-palette-only .sp-palette-container {
  border: 0;
}

.sp-palette .sp-thumb-el {
  display: block;
  position: relative;
  float: left;
  width: 24px;
  height: 15px;
  margin: 3px;
  cursor: pointer;
  border: solid 2px transparent;
}

.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
  border-color: orange;
}

.sp-thumb-el {
  position: relative;
}

/* Initial */
.sp-initial {
  float: left;
  border: solid 1px #333;
}

.sp-initial span {
  width: 30px;
  height: 25px;
  border: none;
  display: block;
  float: left;
  margin: 0;
}

.sp-initial .sp-clear-display {
  background-position: center;
}

/* Buttons */
.sp-palette-button-container,
.sp-button-container {
  float: right;
}

/* Replacer (the little preview div that shows up instead of the <input>) */
.sp-replacer {
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  padding: 4px;
  display: inline-block;
  *zoom: 1;
  *display: inline;
  border: solid 1px #91765d;
  background: #eee;
  color: #333;
  vertical-align: middle;
}

.sp-replacer:hover, .sp-replacer.sp-active {
  border-color: #F0C49B;
  color: #111;
}

.sp-replacer.sp-disabled {
  cursor: default;
  border-color: silver;
  color: silver;
}

.sp-dd {
  padding: 2px 0;
  height: 16px;
  line-height: 16px;
  float: left;
  font-size: 10px;
}

.sp-preview {
  position: relative;
  width: 25px;
  height: 20px;
  border: solid 1px #222;
  margin-right: 5px;
  float: left;
  z-index: 0;
}

.sp-palette {
  *width: 220px;
  max-width: 220px;
}

.sp-palette .sp-thumb-el {
  width: 16px;
  height: 16px;
  margin: 2px 1px;
  border: solid 1px #d0d0d0;
}

.sp-container {
  padding-bottom: 0;
}

/* Buttons: http://hellohappy.org/css3-buttons/ */
.sp-container button {
  background-color: #eeeeee;
  background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
  background-image: linear-gradient(to bottom, #eeeeee, #cccccc);
  border: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 5px 4px;
  text-align: center;
  text-shadow: 0 1px 0 #eee;
  vertical-align: middle;
}

.sp-container button:hover {
  background-color: #dddddd;
  background-image: -webkit-linear-gradient(top, #dddddd, #bbbbbb);
  background-image: -moz-linear-gradient(top, #dddddd, #bbbbbb);
  background-image: -ms-linear-gradient(top, #dddddd, #bbbbbb);
  background-image: -o-linear-gradient(top, #dddddd, #bbbbbb);
  background-image: linear-gradient(to bottom, #dddddd, #bbbbbb);
  border: 1px solid #bbb;
  border-bottom: 1px solid #999;
  cursor: pointer;
  text-shadow: 0 1px 0 #ddd;
}

.sp-container button:active {
  border: 1px solid #aaa;
  border-bottom: 1px solid #888;
  -webkit-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
  -moz-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
  -ms-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
  -o-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
  box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
}

.sp-cancel {
  font-size: 11px;
  color: #d93f3f !important;
  margin: 0;
  padding: 2px;
  margin-right: 5px;
  vertical-align: middle;
  text-decoration: none;
}

.sp-cancel:hover {
  color: #d93f3f !important;
  text-decoration: underline;
}

.sp-palette span:hover, .sp-palette span.sp-thumb-active {
  border-color: #000;
}

.sp-preview, .sp-alpha, .sp-thumb-el {
  position: relative;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}

.sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.sp-palette .sp-thumb-inner {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=);
}

.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=);
}

.sp-clear-display {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==);
}

body {
  margin: 0;
}

.kf-container {
  margin: 0;
  background: #000;
  font: 12px/20px "Play", "cwTeXHei", "Segoe UI", Microsoft JhengHei, "微軟正黑體", Arial, Helvetica, sans-serif;
  color: #fff;
  position: relative;
  overflow-x: hidden;
}
.kf-container .section {
  overflow: hidden;
}
.kf-container .btn, .kf-container .icon {
  display: inline-block;
  vertical-align: middle;
}
.kf-container .btn {
  cursor: pointer;
}
.kf-container .center {
  position: relative;
  width: 1366px;
  margin: 0 auto;
}
.kf-container h2 {
  font-size: 38px;
  line-height: 1.08654;
  color: #FF7200;
  font-weight: 200;
  margin-bottom: 20px;
}
.kf-container h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
  color: #ddd;
  margin-bottom: 20px;
}
.kf-container h3 span {
  color: #FF7200;
}
.kf-container h4 {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.25em;
  color: #bbb;
}
.kf-container .fright {
  float: right;
}
.kf-container .clear-fix:after {
  content: "";
  visibility: hidden;
  display: block;
  clear: both;
  height: 0;
}
@media screen and (max-width: 1366px) {
  .kf-container .section .center {
    width: 960px;
  }
  .kf-container h2 {
    font-size: 38px;
    margin-bottom: 10px;
  }
  .kf-container h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 960px) {
  .kf-container .section .center {
    width: 640px;
  }
}
@media screen and (max-width: 640px) {
  .kf-container .section .center {
    width: 320px;
  }
}
.kf-container .icon-keytop {
  background: url("../images/icon-keytop.png") 0 0 no-repeat;
  width: 140px;
  height: 65px;
}
.kf-container .icon-keybody {
  background: url("../images/icon-keybody.png") 0 0 no-repeat;
  width: 152px;
  height: 128px;
}
.kf-container .icon-keylight {
  background-image: url("../images/icon-keylight.png");
  background-repeat: no-repeat;
  width: 141px;
  height: 144px;
  margin: 5px;
}
.kf-container .icon-keylight-01 {
  background-position: 0px 0;
}
.kf-container .icon-keylight-02 {
  background-position: -141px 0;
}
.kf-container .icon-keylight-03 {
  background-position: -282px 0;
}
.kf-container .icon-keylight-04 {
  background-position: -423px 0;
}
.kf-container .icon-keylight-05 {
  background-position: -564px 0;
}
.kf-container #RGBKeyboard {
  color: #fff;
  padding: 50px 0 280px;
}
.kf-container #RGBKeyboard .center {
  position: relative;
}
.kf-container #RGBKeyboard .frame {
  position: relative;
  z-index: 2;
  width: 1130px;
  margin: 0 auto;
}
.kf-container .rgb_bg {
  position: relative;
  z-index: 1;
}
.kf-container .rgb_control {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 250px;
  background: rgba(85, 118, 129, 0.1);
  z-index: 2;
}
.kf-container .rgb_control .center .frame {
  width: auto;
}
.kf-container .rgb_control_panel {
  margin: 35px auto;
  text-align: center;
  list-style: none;
  padding: 0;
}
.kf-container .rgb_control_panel li {
  position: relative;
  display: inline-block;
  padding: 10px 50px;
  vertical-align: top;
  min-height: 123px;
}
.kf-container .rgb_control_panel li:after {
  content: "";
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.kf-container .rgb_control_panel li:last-child:after {
  border: none;
  content: none;
}
.kf-container .rgb-icons {
  margin: 0 auto 15px;
}
.kf-container .rgb-icons .btn-rgbicon {
  margin: 0 4px;
}
.kf-container #KBframe {
  position: relative;
  display: inline-block;
}
.kf-container .icon-rgbicon {
  width: 64px;
  height: 64px;
  background: url("../images/rgb-icon.png") 0 0 no-repeat;
}
.kf-container .icon-rgbicon:after {
  content: "";
  background: url("../images/rgb-icon_hover.png");
  width: 1px;
  height: 1px;
  visibility: hidden;
  opacity: 0;
}
.kf-container .icon-rgbicon-wave {
  background-position: 0px 0;
}
.kf-container .icon-rgbicon-breathing {
  background-position: -64px 0;
}
.kf-container .icon-rgbicon-raindrop {
  background-position: -128px 0;
}
.kf-container .icon-rgbicon-marquee {
  background-position: -192px 0;
}
.kf-container .icon-rgbicon-waveonkeypress {
  background-position: -256px 0;
}
.kf-container .icon-rgbicon-static {
  background-position: -320px 0;
}
.kf-container .icon-rgbicon-gametype {
  background-position: -384px 0;
}
.kf-container .btn-rgbicon {
  position: relative;
  border-radius: 50%;
  perspective: 200px;
}
.kf-container .btn-rgbicon .btn-rgbbtntitle {
  opacity: 0;
  transition: all 400ms ease;
  transform-style: preserve-3d;
  transform-origin: center;
  transform: translate(-50%, 10px);
  color: #fff;
}
.kf-container .btn-rgbicon.hover .btn-rgbbtntitle {
  opacity: 1;
  transform: translate(-50%, 0);
}
.kf-container .btn-rgbicon:hover, .kf-container .btn-rgbicon.active {
  box-shadow: 0 0 15px 0px rgba(255, 255, 255, 0.2);
  transition: box-shadow 250ms ease;
}
.kf-container .btn-rgbicon:hover .icon-rgbicon, .kf-container .btn-rgbicon.active .icon-rgbicon {
  background-image: url("../images/rgb-icon_hover.png");
  transition: background-image 300ms ease;
}
.kf-container span.btn-rgbbtntitle {
  position: absolute;
  top: -28px;
  width: auto;
  left: 50%;
  line-height: 14px;
  word-wrap: normal;
  white-space: nowrap;
}
.kf-container span.btn-rgbbtntitle:before {
  content: "[";
  margin-right: 5px;
}
.kf-container span.btn-rgbbtntitle:after {
  content: "]";
  margin-left: 5px;
}
.kf-container .icon-wavedir {
  width: 24px;
  height: 24px;
  background: url("../images/icon-wavedirection.png") 0 0 no-repeat;
}
.kf-container .icon-wavedir-left {
  background-position: 0px 0;
}
.kf-container .icon-wavedir-right {
  background-position: -24px 0;
}
.kf-container .icon-wavedir-up {
  background-position: -48px 0;
}
.kf-container .icon-wavedir-down {
  background-position: -72px 0;
}
.kf-container .btn-wavedir .icon-wavedir {
  transition: opacity 400ms ease;
  opacity: 0.2;
}
.kf-container .btn-wavedir:hover .icon-wavedir, .kf-container .btn-wavedir.active .icon-wavedir {
  opacity: 1;
}
.kf-container #rd-kb {
  position: relative;
  width: 1118px;
  height: 503px;
}
.kf-container .kb-img {
  position: relative;
  background: url("../images/k9.png") 0 0 no-repeat;
  width: 1260px;
  height: 402px;
  z-index: 2;
}
.kf-container .ef, .kf-container .ef-img {
  position: absolute;
  left: 0;
  top: 0;
}
.kf-container .ef {
  width: 100%;
  height: 100%;
  transition: opacity 400ms ease 0s;
  opacity: 0;
}
.kf-container #kb-ef {
  position: absolute;
  left: -25px;
  top: -61px;
  z-index: 1;
}
.kf-container #kb-ef.marquee_single #ef2-marquee, .kf-container #kb-ef.marquee #ef2-marquee, .kf-container #kb-ef.wave_td .ef1-td-img, .kf-container #kb-ef.wave_lr .ef1-lr-img, .kf-container #kb-ef.default #ef0-default, .kf-container #kb-ef.raincolor #vkb, .kf-container #kb-ef.waveonkey #ef6-waveonkeypress, .kf-container #kb-ef.gametype #ef7-gametype, .kf-container #kb-ef.singlecolor #ef3-static, .kf-container #kb-ef.breathcolor #ef4-breath {
  opacity: 1;
}
.kf-container #ef6-waveonkeypress {
  background: #4e4e4e;
}
.kf-container .kb-ef {
  position: absolute;
  top: 72px;
  left: 35px;
  width: 1240px;
  height: 365px;
  overflow: hidden;
}
.kf-container .kb-gkey {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 60px;
  height: 307px;
  z-index: 98;
  background: red;
  display: none;
}
.kf-container .ef1-lr-img {
  background: url("../images/rainbow-x.jpg") 0 0 repeat-x;
}
.kf-container .ef1-td-img {
  background: url("../images/rainbow-y.jpg") 0 0 repeat-y;
}
.kf-container .ef2-img {
  width: 349px;
  height: 43px;
  background: url("../images/Marquee.png") 0 0 no-repeat;
}
.kf-container .ef2-img-2 {
  transform: rotateY(180deg);
}
.kf-container #ef0-default {
  background: url("../images/rainbow-x.png") 0 0 repeat-x;
  background-size: auto 100%;
}
.kf-container #ef4-breathing {
  width: 100%;
  height: 100%;
  transition: background-color 1.5s ease 0s;
}
.kf-container .default-color {
  background: #4e4e4e;
}
.kf-container .ag-keyboard-press {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  background: none;
  transition: opacity 400ms ease-in-out 0s;
}
.kf-container .ag-keyboard-press.on {
  opacity: 1;
  transition: opacity 200ms ease-out 0s;
}
.kf-container .ef6-img {
  width: 281px;
  height: 295px;
  background: url("../images/wave.png") 0 0 no-repeat;
  transition: transform 400ms ease 0s;
  transform: scale(0.4);
}
.kf-container .ef6-img.on {
  transform: scale(1);
}
.kf-container .ef6-img.right {
  transform: rotateY(180deg) scale(0.4);
}
.kf-container .ef6-img.right.on {
  transform: rotateY(180deg) scale(1);
}
@keyframes wave_lr {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1063px 0;
  }
}
@keyframes wave_td {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -611px;
  }
}
.kf-container .ef6-vcblock {
  left: 500px;
  width: 281px;
  height: 295px;
  transition: transform 400ms ease 0s;
  transform: scale(0.4);
}
.kf-container .ef6-vcblock.on {
  transform: scale(1);
}
.kf-container .ef6-vcblock.right {
  transform: rotateY(180deg) scale(0.4);
}
.kf-container .ef6-vcblock.right.on {
  transform: rotateY(180deg) scale(1);
}
.kf-container .ef6-vcblock .ef6-block {
  position: absolute;
  background-color: #9afeff;
}
.kf-container .ef6-vcblock .block-front {
  position: absolute;
  left: 100%;
  top: 0;
  width: 15px;
  height: 100%;
  opacity: 0.2;
}
.kf-container .ef6-vcblock .block-back {
  position: absolute;
  right: 100%;
  top: 0;
  width: 64px;
  height: 100%;
  opacity: 0.4;
}
.kf-container .block1 {
  left: 165px;
  top: 0px;
  width: 104px;
  height: 69px;
}
.kf-container .block2 {
  left: 123px;
  top: 69px;
  width: 104px;
  height: 60px;
}
.kf-container .block3 {
  left: 93px;
  top: 129px;
  width: 104px;
  height: 55px;
}
.kf-container .block4 {
  left: 71px;
  top: 184px;
  width: 104px;
  height: 55px;
}
.kf-container .block5 {
  left: 114px;
  top: 239px;
  width: 104px;
  height: 53px;
}
.kf-container .block6 {
  left: 146px;
  top: 292px;
  width: 104px;
  height: 60px;
}
.kf-container .sp-preview {
  border: none;
  width: 33px;
  height: 18px;
}
.kf-container #select_gt {
  width: auto;
}
.kf-container .sp-dd {
  transform: scale(0.8);
}
@media screen and (max-width: 1366px) {
  .kf-container .rgb_bg {
    transform: scale(0.8) translate(-140px, 0px);
  }
  .kf-container #RGBKeyboard {
    padding: 40px 0 250px;
  }
  .kf-container #RGBKeyboard .frame {
    width: 880px;
  }
  .kf-container .rgb_control {
    height: 210px;
  }
  .kf-container .rgb_control_panel li {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 960px) {
  .kf-container #RGBKeyboard {
    display: none;
  }
  .kf-container .rgb_bg, .kf-container .rgb_control {
    display: none;
  }
  .kf-container #RGBKeyboard .frame {
    width: 610px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 640px) {
  .kf-container #RGBKeyboard {
    background-image: url(../images/rgbkb_640.jpg);
    height: 676px;
    padding-top: 0;
  }
  .kf-container #RGBKeyboard .frame {
    width: auto;
    padding-top: 20px;
  }
}
.kf-container #RGBKeyboard.test .kb-ef {
  z-index: 99999;
  opacity: 0.5;
}
.kf-container .gallery {
  position: relative;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  min-height: 1000px;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.kf-container .gallery-title {
  text-align: center;
  margin-bottom: 25px;
}
.kf-container .gallery-list {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.kf-container .gallery-box {
  position: relative;
  width: 33.3%;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.kf-container .gallery-box:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 66.7%;
}
.kf-container .gallery-box .gallery-boxwrap img {
  transition: all 250ms ease-out;
}
.kf-container .gallery-box:hover .gallery-boxwrap img {
  transform: scale(1.1);
}
.kf-container .gallery-space {
  display: block;
  width: 100%;
  padding-top: 100%;
}
.kf-container .gallery-boxout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  box-sizing: border-box;
}
.kf-container .gallery-boxwrap {
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.kf-container .gallery-boxwrap img {
  display: block;
  width: 100%;
}
.kf-container .gallery-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: all 400ms ease-out;
}
.kf-container .gallery-cover .gallery-close {
  position: absolute;
  left: 50%;
  top: 150px;
  margin-left: -40px;
}
.kf-container .gallery.show .gallery-cover {
  opacity: 1;
  visibility: visible;
}
.kf-container .gallery-close {
  background: url("../images/gallery/gallery-close.png") 0 0 no-repeat;
  width: 80px;
  height: 80px;
  cursor: pointer;
}
.kf-container .gallery-main {
  max-width: 1000px;
  margin: 270px auto 0;
  position: relative;
}
.kf-container .gallery-main:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 66.7%;
}
.kf-container .gallery-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.kf-container .gallery-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kf-container .gallery-content img {
  display: block;
  max-width: 100%;
}
.kf-container .gallery-left {
  background: url(../images/gallery/arr.png) center center no-repeat;
  width: 32px;
  height: 68px;
  padding: 20px;
  position: absolute;
  top: 50%;
  margin-top: -44px;
  left: -15%;
  opacity: 0.6;
  transition: opacity 250ms ease-out;
  cursor: pointer;
}
.kf-container .gallery-left:hover {
  opacity: 1;
}
.kf-container .gallery-right {
  background: url(../images/gallery/arr.png) center center no-repeat;
  width: 32px;
  height: 68px;
  padding: 20px;
  transform: scaleX(-1);
  position: absolute;
  top: 50%;
  margin-top: -44px;
  right: -15%;
  opacity: 0.6;
  transition: opacity 250ms ease-out;
  cursor: pointer;
}
.kf-container .gallery-right:hover {
  opacity: 1;
}
.kf-container .gallery-show {
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 960px) {
  .kf-container .hide-m {
    display: none;
  }
  .kf-container .gallery-box {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .kf-container .gallery-box {
    width: 100%;
  }
}
.kf-container .section {
  padding: 110px 0 0 0;
  box-sizing: border-box;
  text-align: center;
}
.kf-container .center .frame {
  width: 960px;
  margin: 0 auto;
}
.kf-container .yt-videos {
  padding-top: 60px;
  text-align: center;
}
.kf-container .yt-videos .box {
  border: 1px solid #ec6c00;
  padding: 10px;
  display: inline-block;
  margin: 0 15px 20px;
}
.kf-container .video {
  position: relative;
  min-width: 400px;
  padding-top: 56.25%;
}
.kf-container .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.kf-container .s1 {
  padding-top: 40px;
}
.kf-container .s1 .frame {
  background: url("../images/icon-rgbfusion.png") right top no-repeat;
}
.kf-container .s1 .center {
  z-index: 12;
}
.kf-container .s1 .frame2 {
  background: url("../images/s1_01.jpg") center bottom no-repeat;
  height: 1205px;
  position: relative;
  z-index: 11;
  margin-top: -320px;
  animation: color-cw 1.5s linear infinite;
}
.kf-container .s1 h2 {
  padding: 40px 120px 20px;
}
.kf-container .s2 {
  background: url("../images/s2.jpg") center top no-repeat;
  height: 540px;
}
.kf-container .s2 .btext {
  background: rgba(0, 0, 0, 0.8);
  color: #ec6c00;
  padding: 10px 35px;
  display: inline-block;
  font-size: 38px;
  line-height: 1;
  margin-top: 128px;
}
.kf-container .s3 {
  background: url("../images/s3.jpg") center top no-repeat;
  min-height: 618px;
  padding-top: 250px;
}
.kf-container .s3 .s3_text {
  margin: 30px 0;
}
.kf-container .s3_text {
  background: url("../images/s3_text.png") 0 0 no-repeat;
  width: 1182px;
  height: 187px;
  display: inline-block;
}
.kf-container .keylines {
  white-space: nowrap;
  word-wrap: normal;
  width: 1976px;
  position: relative;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.kf-container .keylines .qzkey {
  margin: 5px;
}
.kf-container .keylines .qzkey:nth-child(1) .icon-keytop, .kf-container .keylines .qzkey:nth-child(1) .icon-keylight {
  animation-delay: 250ms;
}
.kf-container .keylines .qzkey:nth-child(2) .icon-keytop, .kf-container .keylines .qzkey:nth-child(2) .icon-keylight {
  animation-delay: 200ms;
}
.kf-container .keylines .qzkey:nth-child(3) .icon-keytop, .kf-container .keylines .qzkey:nth-child(3) .icon-keylight {
  animation-delay: 150ms;
}
.kf-container .keylines .qzkey:nth-child(4) .icon-keytop, .kf-container .keylines .qzkey:nth-child(4) .icon-keylight {
  animation-delay: 100ms;
}
.kf-container .keylines .qzkey:nth-child(5) .icon-keytop, .kf-container .keylines .qzkey:nth-child(5) .icon-keylight {
  animation-delay: 50ms;
}
.kf-container .keylines .qzkey:nth-child(6) .icon-keytop, .kf-container .keylines .qzkey:nth-child(6) .icon-keylight {
  animation-delay: 0ms;
}
.kf-container .keylines .qzkey:nth-child(7) .icon-keytop, .kf-container .keylines .qzkey:nth-child(7) .icon-keylight {
  animation-delay: 0ms;
}
.kf-container .keylines .qzkey:nth-child(8) .icon-keytop, .kf-container .keylines .qzkey:nth-child(8) .icon-keylight {
  animation-delay: 50ms;
}
.kf-container .keylines .qzkey:nth-child(9) .icon-keytop, .kf-container .keylines .qzkey:nth-child(9) .icon-keylight {
  animation-delay: 100ms;
}
.kf-container .keylines .qzkey:nth-child(10) .icon-keytop, .kf-container .keylines .qzkey:nth-child(10) .icon-keylight {
  animation-delay: 150ms;
}
.kf-container .keylines .qzkey:nth-child(11) .icon-keytop, .kf-container .keylines .qzkey:nth-child(11) .icon-keylight {
  animation-delay: 200ms;
}
.kf-container .keylines .qzkey:nth-child(12) .icon-keytop, .kf-container .keylines .qzkey:nth-child(12) .icon-keylight {
  animation-delay: 250ms;
}
@keyframes press {
  0%, 50%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(30px);
  }
}
.kf-container .qzkey {
  position: relative;
  width: 152px;
  height: 218px;
  display: inline-block;
}
.kf-container .qzkey .icon-keytop {
  position: absolute;
  top: 43px;
  left: 6px;
}
.kf-container .qzkey .icon-keylight {
  position: absolute;
  top: 0;
  left: 0;
}
.kf-container .qzkey .icon-keybody {
  position: absolute;
  top: 89px;
  left: 0;
}
.kf-container .qzkey .icon-keytop, .kf-container .qzkey .icon-keylight {
  transition: transform 400ms ease;
}
.kf-container .qzkey.press30 .icon-keytop, .kf-container .qzkey.press30 .icon-keylight {
  transform: translateY(30px);
}
.kf-container .qzkey.animate .icon-keytop, .kf-container .qzkey.animate .icon-keylight {
  animation-name: press;
  animation-duration: 700ms;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.kf-container .s5 {
  background: url("../images/s5.jpg") center bottom no-repeat;
  min-height: 778px;
  padding: 200px 0;
}
.kf-container .s5 .frame h3 {
  padding: 0 5px;
}
.kf-container .s5 .fs-xxxx {
  line-height: 150px;
}
.kf-container .s5 .frame2 {
  margin: 100px auto;
}
.kf-container .fs-xxxx {
  font-size: 187px;
}
.kf-container .fs-xxl {
  font-size: 65px;
}
.kf-container .s5-chart {
  background: url("../images/s5-chart.png") center bottom no-repeat;
  width: 957px;
  height: 177px;
  margin: 0 auto;
}
.kf-container .s6 {
  background: url("../images/s6.jpg") center center no-repeat fixed;
  height: 1135px;
}
.kf-container .s6 .frame {
  text-align: left;
}
.kf-container .s6 .frame .fright {
  width: 307px;
  margin-right: 43px;
}
.kf-container .s6 .s6pic {
  margin: 0 auto;
}
.kf-container .s6pic {
  background: url("../images/s6pic.jpg") 0 0 no-repeat;
  width: 873px;
  height: 404px;
  position: relative;
}
.kf-container .s6pic .s6pic-line {
  position: absolute;
  left: 569px;
  top: 26px;
}
.kf-container .s6pic-line {
  background: #ec6c00;
  width: 6px;
  height: 260px;
}
.kf-container .s6pic-text {
  color: #ec6c00;
  text-align: left;
  padding: 26px;
}
.kf-container .s6pic-text .text1 {
  font-size: 30px;
  line-height: 30px;
  display: block;
  margin-bottom: 40px;
}
.kf-container .s6pic-text .text2 {
  font-size: 100px;
  line-height: 80px;
  display: block;
}
.kf-container .s7 {
  background: url("../images/s7.jpg") center center no-repeat;
  height: 519px;
}
.kf-container .s7 .frame {
  text-align: left;
  padding: 39px 0 0 192px;
}
.kf-container .s7 .frame .text {
  width: 425px;
}
.kf-container .s8 {
  background: url("../images/s8.jpg") center center no-repeat;
  height: 703px;
}
.kf-container .s8 .text {
  color: #ec6c00;
  font-size: 38px;
  position: absolute;
  left: 740px;
  top: 210px;
}
.kf-container .s8 .text.pos2 {
  left: 50%;
  margin-left: 57px;
}
.kf-container .s9 {
  background: url("../images/s9.jpg") center top no-repeat;
  min-height: 1024px;
}
.kf-container .s9 .frame {
  padding-top: 960px;
}
.kf-container .s10 {
  min-height: 766px;
  position: relative;
}
.kf-container .s10 .frame {
  background: url("../images/s10.jpg") center -50px no-repeat;
  height: 766px;
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  animation: color-ccw 2s linear infinite;
}
.kf-container .s10 .frame2 {
  background: url("../images/icon-rgbfusion.png") 65% bottom no-repeat;
  padding: 336px 0 13px 0;
  position: relative;
  z-index: 12;
}
.kf-container .s10 .fs-xxxx {
  line-height: 150px;
}
.kf-container .s10 .fs-xxl {
  font-weight: bold;
  line-height: 110px;
}
@keyframes color-cw {
  from {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(359deg);
    filter: hue-rotate(359deg);
  }
}
@keyframes color-ccw {
  from {
    -webkit-filter: hue-rotate(359deg);
    filter: hue-rotate(359deg);
  }
  to {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
  }
}
.kf-container .s11 {
  padding-top: 50px;
  position: relative;
}
.kf-container .s11 .text {
  display: none;
}
.kf-container .s12 {
  background: url("../images/s12.jpg") center center no-repeat fixed;
  min-height: 936px;
  padding-top: 150px;
}
.kf-container .s12 .frame {
  background-color: rgba(242, 101, 0, 0.94);
  padding: 100px 0;
}
.kf-container .s12 .frame .text {
  text-align: left;
  width: 550px;
  margin: 0 auto;
}
.kf-container .s12 .frame h2, .kf-container .s12 .frame h3 {
  color: #fff;
}
.kf-container .s12chart {
  background: url("../images/s12chart.png") 0 0 no-repeat;
  width: 584px;
  height: 246px;
  margin: 40px 0 20px;
  display: inline-block;
  position: relative;
}
.kf-container .s12chart .text {
  position: absolute;
  font-size: 20px;
}
.kf-container .s12chart .text1 {
  left: 6px;
  top: 3px;
}
.kf-container .s12chart .text2 {
  left: 373px;
  top: 224px;
}
.kf-container .s12chart .text3 {
  left: 367px;
  top: 0;
  color: #565656;
}
.kf-container .s12chart .text4 {
  left: 369px;
  top: 140px;
}
.kf-container .s13 {
  background: url("../images/s13.jpg") center top no-repeat;
  padding: 160px 0;
}
.kf-container .s13 .frame {
  text-align: left;
  width: 1366px;
}
.kf-container .s13 .frame h2, .kf-container .s13 .frame h3 {
  color: #000;
}
.kf-container .s13 .frame .text {
  float: left;
}
.kf-container .s13 .frame:after {
  content: "";
  visibility: hidden;
  display: block;
  clear: both;
  height: 0;
}
.kf-container .s13 .text {
  margin-right: 40px;
}
.kf-container .s13 .text:last-child {
  margin-right: auto;
}
.kf-container .s13 .text1 {
  width: 400px;
}
.kf-container .s13 .text2 {
  width: 420px;
}
.kf-container .s13 .text3 {
  width: 460px;
}
.kf-container .s13 .frame2 {
  margin-top: 870px;
  text-align: left;
  display: inline-block;
}
.kf-container .s13 .frame2 .s13pic {
  float: left;
  margin-right: 20px;
}
.kf-container .s13 .frame2 .text {
  float: left;
  width: 315px;
}
.kf-container .s13 .frame2 h3 {
  line-height: 24px;
}
.kf-container .s13 .frame2:after {
  content: "";
  visibility: hidden;
  display: block;
  clear: both;
  height: 0;
}
.kf-container .s13 .frame3 {
  margin-top: 70px;
}
.kf-container .s13 .frame3 .text {
  margin: 0 auto 50px;
  width: 780px;
}
.kf-container .s13pic {
  display: inline-block;
  background: url("../images/s13pic.jpg") 0 0 no-repeat;
  width: 527px;
  height: 228px;
}
.kf-container .s13pic2 {
  display: inline-block;
  background: url("../images/cable-manage.gif") 0 0 no-repeat;
  width: 901px;
  height: 405px;
}
.kf-container .s14 {
  background: #1a151f url("../images/s14.jpg") center 0 no-repeat;
  height: 753px;
}
.kf-container .s14 h2 {
  width: 500px;
  margin: 0 auto;
}
.kf-container .s14 h3 {
  width: 790px;
  margin: 380px auto 0;
}
.kf-container .s15 {
  background: url("../images/s15.jpg") center 0 no-repeat;
  height: 338px;
}
.kf-container .icon-social_FB {
  background: url("../images/icon-social_FB.png") center center no-repeat;
  width: 47px;
  height: 47px;
}
.kf-container .icon-social_YT {
  background: url("../images/icon-social_YT.png") center center no-repeat;
  width: 47px;
  height: 47px;
}
.kf-container .s16 {
  background: url("../images/s16.jpg") center 0 repeat-y;
  min-height: 1260px;
  padding: 0;
}
.kf-container .s16 .gallery {
  padding: 100px 0 220px;
}
.kf-container .s16 .gallery .frame {
  padding: 35px 20px;
  background: rgba(0, 0, 0, 0.8);
}
.kf-container .s16 .gallery-title {
  color: #ec6c00;
}
.kf-container .s16 .social-area {
  background: rgba(0, 0, 0, 0.93);
  padding: 50px 70px;
}
.kf-container .social-links {
  text-decoration: none;
}
.kf-container .social-links .social-box {
  width: 50%;
  float: left;
}
.kf-container .social-links:after {
  content: "";
  visibility: hidden;
  display: block;
  clear: both;
  height: 0;
}
.kf-container .social-link {
  display: block;
  border: 2px solid #7d7d7d;
  padding: 15px 0;
  margin: 12px;
}
.kf-container .social-link:hover {
  border-color: #a8a8a8;
}
.kf-container .social-icon {
  padding: 5px 0;
}
.kf-container .social-name {
  font-size: 19px;
  line-height: 20px;
  color: #ec6c00;
}
@media screen and (max-width: 1366px) {
  .kf-container .s1 h2 {
    padding: 35px 120px 10px;
  }
  .kf-container .s1 .frame {
    background-size: 120px auto;
  }
  .kf-container .s1 .frame2 {
    background-size: 1366px 857px;
    height: 950px;
  }
  .kf-container .s3_text {
    background: url("../images/s3_text_1366.png") 0 0 no-repeat;
    width: 956px;
    height: 252px;
  }
  .kf-container .s5 {
    padding: 170px 0;
  }
  .kf-container .fs-xxxx {
    font-size: 165px;
  }
  .kf-container .s6 {
    padding-top: 120px;
  }
  .kf-container .s7 .frame {
    padding: 42px 0 0 92px;
  }
  .kf-container .s10 .frame {
    background-position: center top;
  }
  .kf-container .s10 .frame2 {
    background-position: 70% bottom;
    background-size: 120px;
    padding: 386px 0 7px 0;
  }
  .kf-container .s11 {
    padding-top: 0;
  }
  .kf-container .s13 {
    padding: 130px 0 160px;
  }
  .kf-container .s13 .frame {
    width: 960px;
  }
  .kf-container .s13 .frame .text {
    float: right;
    width: 440px;
  }
  .kf-container .s13 .text {
    margin-left: 40px;
    margin-right: auto;
  }
  .kf-container .s13 .text:last-child {
    margin-left: auto;
    margin-right: auto;
  }
  .kf-container .s13 .frame2 {
    margin-top: 790px;
  }
  .kf-container .social-area {
    padding: 30px 40px;
  }
}
@media screen and (max-width: 960px) {
  .kf-container .center .frame {
    width: 640px;
  }
  .kf-container .yt-videos {
    padding-top: 40px;
  }
  .kf-container .yt-videos .box {
    padding: 10px;
    display: block;
    margin: 0 auto 15px;
    width: 100%;
    max-width: 450px;
  }
  .kf-container .video {
    position: relative;
    width: 100%;
    min-width: unset;
    max-width: 500px;
    padding-top: 56.25%;
  }
  .kf-container .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .kf-container .s1 .frame {
    background-position: center 160px;
    background-size: auto;
  }
  .kf-container .s1 .frame2 {
    background-size: 960px 603px;
    height: 603px;
    margin-top: -170px;
  }
  .kf-container .s1 h2 {
    padding: 35px 110px 140px;
  }
  .kf-container .s1 h3 {
    padding: 10px;
  }
  .kf-container .s3 {
    padding-top: 150px;
  }
  .kf-container .s3_text {
    background: url("../images/s3_text_960.png") 0 0 no-repeat;
    width: 642px;
    height: 236px;
  }
  .kf-container .s5 {
    padding: 150px 0;
  }
  .kf-container .s5 .frame2 {
    margin: 80px auto;
  }
  .kf-container .s5 .fs-xxxx {
    line-height: 110px;
    letter-spacing: -10px;
  }
  .kf-container .s5-chart {
    background-image: url("../images/s5-chart_960.png");
    width: 625px;
    height: 265px;
  }
  .kf-container .fs-xxxx {
    font-size: 130px;
  }
  .kf-container .s6 {
    height: 825px;
  }
  .kf-container .s6 .s6pic {
    position: absolute;
    left: 50%;
    margin-left: -437px;
  }
  .kf-container .s6pic .s6pic-line {
    left: 50%;
    top: 26px;
    margin: 0 0 0 -1px;
  }
  .kf-container .s6pic-text .text1 {
    line-height: 35px;
    margin-bottom: 20px;
  }
  .kf-container .s6 .frame .fright {
    margin-right: 13px;
  }
  .kf-container .s6pic-text {
    padding: 26px 136px;
  }
  .kf-container .s7 .frame {
    padding: 46px 0 0 25px;
  }
  .kf-container .s7 .frame .text {
    width: 350px;
  }
  .kf-container .s8 .text {
    text-align: left;
    line-height: 46px;
    top: 180px;
  }
  .kf-container .s8 .text.pos2 {
    margin-left: 77px;
  }
  .kf-container .s9 {
    background-size: 1400px auto;
    min-height: 800px;
  }
  .kf-container .s9 .frame {
    padding-top: 670px;
  }
  .kf-container .s10 {
    min-height: 610px;
  }
  .kf-container .s10 .frame {
    background-position: center -100px;
  }
  .kf-container .s10 .fs-xxxx {
    line-height: 120px;
    letter-spacing: -3px;
  }
  .kf-container .s10 .frame2 {
    background-position: 82% bottom;
    padding: 226px 0 4px 0;
  }
  .kf-container .s11 {
    background: url(../images/rgbkb_960.jpg) center bottom no-repeat;
    padding: 100px 0 560px;
  }
  .kf-container .s11 .text {
    display: block;
  }
  .kf-container .s13 {
    padding: 50px 0 90px;
  }
  .kf-container .s13 .frame {
    text-align: center;
  }
  .kf-container .s13 .frame .text {
    float: none;
    width: auto;
    padding: 0 15px;
    margin: 0 auto;
  }
  .kf-container .s13 .frame2 {
    margin-top: 790px;
  }
  .kf-container .s13 .frame2 .s13pic {
    margin-right: 10px;
  }
  .kf-container .s13 .frame2 .text {
    width: 315px;
  }
  .kf-container .s13 .frame3 {
    margin-top: 70px;
  }
  .kf-container .s13 .frame3 .text {
    width: auto;
    padding: 0 30px;
  }
  .kf-container .s13pic {
    width: 310px;
    height: 228px;
  }
  .kf-container .s13pic2 {
    background-size: cover;
    width: 605px;
    height: 270px;
  }
  .kf-container .s14 {
    height: auto;
    padding-bottom: 40px;
  }
  .kf-container .s14 h3 {
    width: auto;
    padding: 0 30px;
    margin: 380px auto 0;
  }
  .kf-container .s16 .gallery {
    padding: 50px 0 0;
  }
  .kf-container .s16 .gallery .center {
    width: auto;
  }
  .kf-container .s16 .gallery .frame {
    width: auto;
  }
  .kf-container .gallery-box {
    width: 33.3%;
  }
}
@media screen and (max-width: 640px) {
  .kf-container .center .frame {
    width: 320px;
  }
  .kf-container .s1 {
    height: auto;
  }
  .kf-container .s1 .frame {
    background-position: center 290px;
    background-size: auto;
  }
  .kf-container .s1 .frame2 {
    background: url("../images/s1_01_640.jpg") center bottom no-repeat;
    height: 518px;
    margin-top: -90px;
  }
  .kf-container .s1 h2 {
    padding: 35px 10px 150px;
  }
  .kf-container .s1 h3 {
    padding: 10px;
  }
  .kf-container .s2 {
    background: url(../images/s2_640.jpg) center top no-repeat;
    height: 431px;
  }
  .kf-container .s2 .btext {
    padding: 10px 150px;
    line-height: 1.3;
    margin-top: 178px;
    position: absolute;
    left: 50%;
    margin-left: -230px;
  }
  .kf-container .s3 {
    background: url(../images/s3_640.jpg) center top no-repeat;
    min-height: 640px;
    padding-top: 80px;
  }
  .kf-container .s3_text {
    background: url("../images/s3_text_640.png") 0 0 no-repeat;
    width: 247px;
    height: 513px;
  }
  .kf-container .s4 {
    padding-top: 0;
  }
  .kf-container .icon-keytop {
    background-size: contain;
    width: 91px;
    height: 42px;
  }
  .kf-container .icon-keybody {
    background-size: contain;
    width: 99px;
    height: 83px;
  }
  .kf-container .icon-keylight {
    background-size: 458px 94px;
    width: 92px;
    height: 94px;
    margin: 3px;
  }
  .kf-container .icon-keylight-01 {
    background-position: 0px 0;
  }
  .kf-container .icon-keylight-02 {
    background-position: -92px 0;
  }
  .kf-container .icon-keylight-03 {
    background-position: -184px 0;
  }
  .kf-container .icon-keylight-04 {
    background-position: -276px 0;
  }
  .kf-container .icon-keylight-05 {
    background-position: -368px 0;
  }
  .kf-container .keylines {
    width: 1308px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .kf-container .keylines .qzkey {
    margin: 5px;
  }
  .kf-container .keylines .qzkey:nth-child(1) .icon-keytop, .kf-container .keylines .qzkey:nth-child(1) .icon-keylight {
    animation-delay: 250ms;
  }
  .kf-container .keylines .qzkey:nth-child(2) .icon-keytop, .kf-container .keylines .qzkey:nth-child(2) .icon-keylight {
    animation-delay: 200ms;
  }
  .kf-container .keylines .qzkey:nth-child(3) .icon-keytop, .kf-container .keylines .qzkey:nth-child(3) .icon-keylight {
    animation-delay: 150ms;
  }
  .kf-container .keylines .qzkey:nth-child(4) .icon-keytop, .kf-container .keylines .qzkey:nth-child(4) .icon-keylight {
    animation-delay: 100ms;
  }
  .kf-container .keylines .qzkey:nth-child(5) .icon-keytop, .kf-container .keylines .qzkey:nth-child(5) .icon-keylight {
    animation-delay: 50ms;
  }
  .kf-container .keylines .qzkey:nth-child(6) .icon-keytop, .kf-container .keylines .qzkey:nth-child(6) .icon-keylight {
    animation-delay: 0ms;
  }
  .kf-container .keylines .qzkey:nth-child(7) .icon-keytop, .kf-container .keylines .qzkey:nth-child(7) .icon-keylight {
    animation-delay: 0ms;
  }
  .kf-container .keylines .qzkey:nth-child(8) .icon-keytop, .kf-container .keylines .qzkey:nth-child(8) .icon-keylight {
    animation-delay: 50ms;
  }
  .kf-container .keylines .qzkey:nth-child(9) .icon-keytop, .kf-container .keylines .qzkey:nth-child(9) .icon-keylight {
    animation-delay: 100ms;
  }
  .kf-container .keylines .qzkey:nth-child(10) .icon-keytop, .kf-container .keylines .qzkey:nth-child(10) .icon-keylight {
    animation-delay: 150ms;
  }
  .kf-container .keylines .qzkey:nth-child(11) .icon-keytop, .kf-container .keylines .qzkey:nth-child(11) .icon-keylight {
    animation-delay: 200ms;
  }
  .kf-container .keylines .qzkey:nth-child(12) .icon-keytop, .kf-container .keylines .qzkey:nth-child(12) .icon-keylight {
    animation-delay: 250ms;
  }
  @keyframes press640 {
    0%, 50%, 100% {
      transform: translateY(0);
    }
    25% {
      transform: translateY(25px);
    }
  }
  .kf-container .qzkey {
    position: relative;
    width: 99px;
    height: 172px;
    display: inline-block;
  }
  .kf-container .qzkey .icon-keytop {
    position: absolute;
    top: 43px;
    left: 4px;
  }
  .kf-container .qzkey .icon-keylight {
    position: absolute;
    top: 16px;
    left: 1px;
  }
  .kf-container .qzkey .icon-keybody {
    position: absolute;
    top: 75px;
    left: 0;
  }
  .kf-container .qzkey .icon-keytop, .kf-container .qzkey .icon-keylight {
    transition: transform 400ms ease;
  }
  .kf-container .qzkey.press30 .icon-keytop, .kf-container .qzkey.press30 .icon-keylight {
    transform: translateY(30px);
  }
  .kf-container .qzkey.animate .icon-keytop, .kf-container .qzkey.animate .icon-keylight {
    animation-name: press640;
    animation-duration: 700ms;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
  }
  .kf-container .s5 {
    padding-top: 50px;
  }
  .kf-container .s5 .fs-xxxx {
    line-height: 60px;
    letter-spacing: -2px;
  }
  .kf-container .s5 .fs-xxl {
    line-height: 30px;
    font-weight: bold;
  }
  .kf-container .s5 .frame2 {
    margin: 30px auto;
  }
  .kf-container .fs-xxxx {
    font-size: 60px;
  }
  .kf-container .s5-chart {
    background-image: url("../images/s5-chart_640.png");
    width: 306px;
    height: 265px;
  }
  .kf-container .fs-xxl {
    font-size: 25px;
  }
  .kf-container .s6 {
    background: none;
  }
  .kf-container .s6 .fright {
    float: none;
  }
  .kf-container .s6 .frame {
    text-align: center;
  }
  .kf-container .s6 .frame .fright {
    margin: 0 auto 40px;
  }
  .kf-container .s6 {
    height: auto;
  }
  .kf-container .s6 .s6pic {
    position: relative;
    left: auto;
    margin: auto;
  }
  .kf-container .s6pic {
    background: url("../images/s6pic_640.jpg") 0 0 no-repeat;
    width: 640px;
    height: 404px;
  }
  .kf-container .s6pic .s6pic-line {
    display: none;
  }
  .kf-container .s6pic-text {
    text-align: center;
  }
  .kf-container .s7 {
    background: url("../images/s7_640.jpg") center bottom no-repeat;
    height: auto;
    padding: 70px 0 260px 0;
  }
  .kf-container .s7 .frame {
    text-align: center;
    padding: 10px 0;
  }
  .kf-container .s7 .frame .text {
    width: auto;
  }
  .kf-container .s8 {
    background-image: url("../images/s8_640.jpg");
    height: 334px;
  }
  .kf-container .s8 .text {
    text-align: center;
  }
  .kf-container .s8 .text.pos2 {
    position: relative;
    top: auto;
    left: auto;
    width: 220px;
    display: inline-block;
    margin: 58px auto 0;
  }
  .kf-container .s9 {
    background-size: auto;
    background-image: url("../images/s9_640.jpg");
    padding-top: 700px;
  }
  .kf-container .s9 .frame {
    padding-top: 0;
  }
  .kf-container .s9 h3 {
    padding: 20px 15px 0;
  }
  .kf-container .s10 {
    padding-top: 210px;
    height: auto;
    min-height: unset;
  }
  .kf-container .s10 .frame {
    background: url("../images/s10_640.jpg") center top no-repeat;
    height: 399px;
  }
  .kf-container .s10 .frame2 {
    text-align: left;
    background-position: 95% bottom;
    background-size: 90px;
    padding: 0 0 2px 0;
  }
  .kf-container .s10 h2 {
    font-size: 39px;
    line-height: 60px;
    padding: 0 10px;
  }
  .kf-container .s10 .fs-xxxx {
    line-height: 40px;
    letter-spacing: 0;
  }
  .kf-container .s10 .fs-xxl {
    font-size: 66px;
    line-height: 60px;
    font-weight: bold;
  }
  .kf-container .s11 {
    background-size: 640px 427px;
    padding: 50px 0 360px;
  }
  .kf-container .s11 .text {
    display: block;
  }
  .kf-container .s12.section .center {
    width: auto;
  }
  .kf-container .s12 .center .frame {
    width: auto;
  }
  .kf-container .s12 .frame {
    padding: 60px 0;
  }
  .kf-container .s12 .frame .text {
    text-align: center;
    width: 320px;
    margin: 0 auto;
  }
  .kf-container .s12chart {
    background: url("../images/s12chart_640.png") 0 0 no-repeat;
    width: 297px;
    height: 246px;
    margin: 40px 0 20px;
  }
  .kf-container .s12chart .text {
    display: none;
  }
  .kf-container .s13 {
    background-image: url("../images/s13_640.jpg");
  }
  .kf-container .s13 .frame .text {
    margin-bottom: 30px;
  }
  .kf-container .s13 .frame h2 {
    font-size: 32px;
  }
  .kf-container .s13 .frame h3 {
    font-size: 18px;
  }
  .kf-container .s13 .frame2 {
    margin-top: 760px;
    text-align: center;
    padding-bottom: 230px;
    position: relative;
  }
  .kf-container .s13 .frame2 .s13pic {
    margin-right: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -155px;
  }
  .kf-container .s13 .frame2 .text {
    float: none;
    width: 315px;
  }
  .kf-container .s13 .frame3 {
    margin-top: 70px;
  }
  .kf-container .s13 .frame3 .text {
    width: auto;
    padding: 0 30px;
  }
  .kf-container .s13pic2 {
    background: url("../images/cable-management-s.gif") 0 0 no-repeat;
    width: 285px;
    height: 140px;
  }
  .kf-container .s14 {
    background: #000 url("../images/s14_640.jpg") center 100px no-repeat;
    padding: 0;
    height: auto;
  }
  .kf-container .s14 h2 {
    width: auto;
  }
  .kf-container .s14 h3 {
    width: auto;
    margin: 160px auto 20px;
    padding: 0 8px;
  }
  .kf-container .s15 {
    background: url("../images/s15_640.jpg") center 0 no-repeat;
    height: 182px;
  }
  .kf-container .gallery-list {
    width: 320px;
    margin: 0 auto;
  }
  .kf-container .gallery-list .gallery-box {
    width: 100%;
  }
  .kf-container .s16 h2 {
    margin-bottom: 30px;
  }
  .kf-container .social-links .social-box {
    width: 100%;
    float: none;
    margin: 20px 0;
  }
}
