.contentBox .leftBox {
  float: left;
  width: 64%;
}
@media (max-width: 640px) {
  .contentBox .leftBox {
    float: none;
    width: 100%;
  }
}
.contentBox .rightBox {
  float: right;
  width: 30%;
}
@media (max-width: 640px) {
  .contentBox .rightBox {
    float: none;
    width: 100%;
    margin-top: 30px;
  }
}

.note {
  padding: 10px;
  font-size: 15px;
  line-height: 1.6;
  background-color: #f1f1f1;
}
.note a {
  font-size: 18px;
  color: #09f;
}
@media (min-width: 1201px) {
  .note a:hover {
    text-decoration: underline;
  }
}

.downloadBox {
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
}
@media (max-width: 480px) {
  .downloadBox {
    border-radius: 10px;
  }
}

.downloadTitle {
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.11px;
  background-color: #0b318f;
  padding: 17.5px;
}
@media (max-width: 768px) {
  .downloadTitle {
    padding: 15px;
    font-size: 20px;
    letter-spacing: 0.1px;
  }
}

.downloadList .downloadItem {
  background-color: #ffffff;
}
.downloadList .downloadItem:nth-child(even) {
  background-color: #f5f5f5;
}
@media (min-width: 1201px) {
  .downloadList .downloadItem:hover .title {
    color: #0b318f;
  }
  .downloadList .downloadItem:hover .download svg {
    color: #0b318f;
  }
}
.downloadList .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.downloadList .linkWrap {
  display: block;
  position: absolute;
  inset: 0;
}
.downloadList .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.09px;
  padding: 18.5px 50px;
  word-break: break-all;
}
@media (max-width: 1023px) {
  .downloadList .title {
    padding: 18.5px 30px;
  }
}
@media (max-width: 768px) {
  .downloadList .title {
    font-size: 16px;
    letter-spacing: 0.08px;
    padding: 18.5px 20px;
  }
}
.downloadList .download {
  width: 110px;
  display: block;
  text-align: center;
  padding: 18.5px 10px;
}
@media (max-width: 768px) {
  .downloadList .download {
    width: 80px;
  }
}
@media (max-width: 480px) {
  .downloadList .download {
    width: 60px;
  }
}
@media (min-width: 1201px) {
  .downloadList .download:hover svg {
    color: #0b318f;
  }
}

.popArea.show {
  opacity: 1;
  visibility: visible;
}

.popMask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1005;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.popMask.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}