html,
body {
  font-family: "Microsoft YaHei", Arial, sans-serif;
}

input,
textarea,
p,
dl,
dt,
dd {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.common-wrapper {
  width: 1260px;
  margin: 0 auto;
}

/* START 下载Popover 通用 */
.common-down-popover {
  box-sizing: border-box;
  position: absolute;
  z-index: 68;
  width: 400px;
  background: #ffffff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px 0;
  display: none;
  /* transition: all 0.25s ease-in-out;
  opacity: 0;
  visibility: hidden; */
}

.common-down-popover .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.common-down-popover .item .item-title {
  display: flex;
  align-items: center;
}
.common-down-popover .item .item-title span:first-child {
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  font-weight: bold;
}
.common-down-popover .item .item-title .tag {
  display: block;
  height: 20px;
  background: rgba(0, 0, 0, 0.05);
  font-size: 11px;
  line-height: 20px;
  color: #333333;
  padding: 0 6px;
  margin-left: 10px;
}
.common-down-popover .item .item-title .tag i {
  font-style: normal;
  margin-left: 4px;
  font-weight: normal;
}
.common-down-popover .item .item-title .tag-local {
  font-weight: bold;
  color: #0ea400;
  background: rgba(14, 164, 0, 0.1);
}
.common-down-popover .item .item-desc {
  font-size: 12px;
  line-height: 20px;
  color: rgba(51, 51, 51, 0.4);
  padding-top: 6px;
}
.common-down-popover .item .down-link {
  display: block;
  width: 80px;
  height: 32px;
  line-height: 33px;
  text-align: center;
  background: rgba(0, 0, 0, 0.05);
  font-size: 13px;
  color: #333333;
  border-radius: 8px;
}
.common-down-popover .item .down-link:hover {
  color: #236ee7;
  background: rgba(0, 122, 255, 0.15);
}
/* END 下载Popover 通用 */

/* START 产品下载 Modal */
.download-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100vh;
  overflow: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transition: all 0.25s ease-in-out;
  /* display: none; */
  opacity: 0;
  visibility: hidden;
}
.download-modal.show {
  /* display: flex; */
  opacity: 1;
  visibility: visible;
}

.download-modal-mask {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
}

.download-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
  cursor: pointer;
}
.download-modal-content {
  box-sizing: border-box;
  position: relative;
  z-index: 999;
  /* width: 1000px; */
  border-radius: 30px;
  background: rgba(245, 245, 247, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  /* margin: 600px auto 0; */
  /* padding-bottom: 80px; */
  padding: 0 100px 80px;
  margin-top: 25vh;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.download-modal.show .download-modal-content {
  opacity: 1;
  transform: translateY(0);
  margin-top: 30vh;
}

.download-modal-content .modal-title {
  text-align: center;
  padding-top: 80px;
}
.download-modal-content .modal-title span {
  display: block;
  font-size: 30px;
  line-height: 40px;
  color: #333333;
}
.download-modal-content .modal-title span:last-child {
  font-size: 14px;
  line-height: 20px;
  color: rgba(51, 51, 51, 0.5);
  padding-top: 14px;
}
.download-pro-list {
  display: flex;
  justify-content: center;
  padding-top: 56px;
}
.download-pro-item {
  box-sizing: border-box;
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 20px;
}
.download-pro-item .item-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #ffffff;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding-top: 30px;
}
.download-pro-item .item-card:hover {
  background: rgba(0, 0, 0, 0.05);
}
.download-pro-item .name {
  font-size: 13px;
  line-height: 17px;
  color: #333333;
  padding-top: 15px;
}
.download-pro-foot {
  font-size: 12px;
  line-height: 24px;
  color: rgba(51, 51, 51, 0.6);
  text-align: center;
  padding-top: 78px;
}
/* END 产品下载 Modal */

/* START 常见问题 Page */
.question-container {
  box-sizing: border-box;
  background: #f5f5f7;
}
.question-wrapper {
  min-height: calc(100vh - 250px);
}
.question-wrapper .question-top {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 30px 20px;
}
.question-wrapper .question-top a {
  display: block;
}
.question-wrapper .question-top .title {
  font-size: 16px;
  line-height: 20px;
  color: #3d3d3d;
  padding-left: 30px;
}
.question-content {
  width: 100%;
  background: #ffffff;
  padding: 40px 100px 80px;
}
.question-content .breadcrumb-wrapper {
  background: #ffffff;
  font-size: 12px;
  line-height: 30px;
}
.question-content .breadcrumb-wrapper .b-link {
  color: #666666;
}
.question-content .breadcrumb-wrapper .divider {
  color: #bbbbbb;
}
.question-content .breadcrumb-wrapper .b-active {
  font-weight: 700;
  color: #333333;
}
.question-content .c-title {
  box-sizing: border-box;
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  font-size: 24px;
  background: rgba(0, 122, 255, 0.05);
  padding-left: 20px;
  margin-top: 50px;
}
.question-content .question-list {
  padding-top: 50px;
}
.question-content .question-list a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  font-size: 14px;
  line-height: 17px;
  color: #333333;
  padding-left: 20px;
  transition: all 0.25s ease-in-out;
}
.question-content .question-list a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #cccccc;
  margin-right: 16px;
}
.question-content .question-list a:hover {
  background: rgba(0, 0, 0, 0.05);
}
/* END 常见问题 Page */
