body,
div,
dl,
dt,
dd,
ul,
ol,
li,
pre,
code,
form,
input,
textarea,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

.page {
  width: 640px;
  margin-left: auto;
  margin-right: auto;
  background: white;
  padding: 120px 0 20px 0;
}
.logo {
  text-align: center;
}
.logo strong {
  position: absolute;
  top: -999em;
  left: -999em;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -999em;
  overflow: hidden;
}
.logo img {
  height: 250px;
  width: 250px;
}
img {
  border-width: 0;
}
.search {
  text-align: center;
  margin: 0 0 50px 0;
}
.links ul li {
  display: inline;
}
.links ul li a:hover {
  color: #fff;
}
.links ul li a:link {
  color: #fff;
}
.links ul li a:visited {
  color: #fff;
}
.links ul li a:active {
  color: #fff;
}
table {
  width: 100%;
}
.sys-cmd {
  position: relative;
  font-family: monospace;
}
.sys-cmd span {
  position: absolute;
  left: 130px;
}
.sys-cmd li {
  list-style: none;
}
.cmd-title {
  font-family: monospace;
  margin: 10px 0 5px 0;
}
.well {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
  margin-bottom: 20px;
  min-height: 20px;
  padding: 9.5px;
}
.kq-well {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
  margin-bottom: 20px;
  min-height: 20px;
  padding: 19px;
}

.container-query {
    display: flex;
    --height: 40px;
    border: 1px #c7cad1 solid;
    /* border-radius: 50px; */
    overflow: hidden;
    transition: all .3s ease-in-out;
    * {
        height: var(--height);
        line-height: var(--height);
    }
    .kq-input {
        flex: 1;
        border: 0 none;
        background: #fff;
        border-radius: 50px;
        padding-left: 10px;
    }
    .kq-button {
        width: 130px;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        font-size: 16px;
        color: #333;
        background: #ebebeb;
        border: 0 none;
        transition: all .3s ease-in-out;

        &:hover {
            background-color: #dddcdc;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
        }
    }
    &:hover {
        border-color: #adadad;
    }
    &:active {
        color: #999;
    }
}

@media only screen and (max-width: 600px) {
  .page {
    width: 100%;
    padding: 120px 20px 0 20px;
  }
}