/* CSS Document */
.contentBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1023px) {
  .contentBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contentBox .left {
  width: 12%;
}
@media (max-width: 1023px) {
  .contentBox .left {
    width: 100%;
  }
}
.contentBox .right {
  width: 86%;
}
@media (max-width: 1023px) {
  .contentBox .right {
    width: 100%;
  }
}

.fixBox {
  width: 220px;
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 20;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 55px 30px 35px 30px;
  background-color: #e6e6e6;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .fixBox {
    padding: 20px;
    top: auto;
    bottom: 0;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@media (max-width: 768px) {
  .fixBox {
    display: none;
  }
}
.fixBox .fixBtn {
  margin-top: 100px;
  width: 120px;
  position: relative;
  display: block;
  padding: 10px 30px;
  letter-spacing: 0;
  font-size: 14px;
  background-color: #10303b;
  border: 1px solid #10303b;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  color: white;
}
@media (max-width: 1024px) {
  .fixBox .fixBtn {
    margin-top: 10px;
  }
}
.fixBox .fixBtn:hover {
  color: #10303b;
  background-color: white;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}