html,
body {
  background: #fff;
  font-family: Microsoft YaHei, Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial,
    sans-serif;
}

.main-layout {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  margin-top: 40px;
}

/* .side_nav {
   min-height: 869px; 
} */

.headerWrap {
  height: 85px;
}

table {
  border-collapse: collapse;
}

.api_content {
  float: right;
  width: 980px;
  min-height: 600px;
  padding: 0 0 80px 40px;
  color: #666;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  background: #fff;
}

.api_content .content_ {
  width: 780px;
  padding-right: 20px;
  font-size: 14px;
}

.api_content .content_ .interfaceName {
  font-size: 14px;
  line-height: 40px;
  font-weight: bold;
  font-size: 18px;
  color: #666;
  padding: 4 0;
}

.api_content .content_ .versionDiv {
  font-size: 13px;
  color: #1890ff;
  width: 90px;
  line-height: 28px;
  border: 1px #1890ff solid;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  border-radius: 2px;
}

.api_content .content_ .versionDiv .version {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.api_content .content_ .versionDiv .version input {
  font-size: 13px;
  color: #1890ff;
  width: 69%;
  border: none;
  outline: none;
  text-align: center;
  height: 26px;
  line-height: 26px;
  cursor: pointer;
}

.api_content .content_ .versionDiv .version img {
  width: 12px;
  height: 12px;
  margin-left: 2px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: transform 0.5s;
}

.api_content .content_ .versionDiv .version img.versionDropDown {
  transform: rotate(180deg);
}

.api_content .content_ .versionDiv ul {
  width: 100%;
  position: absolute;
  padding: 2px 0;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.35);
  top: 30px;
  display: none;
}

.api_content .content_ .versionDiv ul li {
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.api_content .content_ .versionDiv ul li:hover {
  background: #e6f7ff;
}

.api_content .content_ .role {
  font-size: 13px;
  color: #666;
  margin-top: 16px;
  line-height: 24px;
}

.api_content .content_ .module {
  margin-top: 32px;
}

.api_content .content_ .module h3 {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  line-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding-right: 10px;
  cursor: pointer;
}

.api_content .content_ .module h3 img {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: transform 0.5s;
}

.api_content .content_ .module h3 img.arrowDown {
  transform: rotate(-90deg);
}

.api_content .content_ .module .module_info .info {
  width: 100%;
  margin-top: 16px;
}

.api_content .content_ .module .module_info .info h4 {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.api_content .content_ .module .module_info .info .abnormal {
  font-size: 14px;
  margin-bottom: 6px;
}

.api_content .content_ .module .module_info .info .abnormal a {
  color: #1890ff;
}

.api_content .content_ .module .module_info .info table {
  width: 100%;
}

.api_content .content_ .module .module_info .info table thead tr td {
  border-bottom-color: #e6e6e6;
  padding: 0 0 0 10px;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  background: #f9f9f9;
}

.api_content .content_ .module .module_info .info table tbody tr:hover {
  background: #e6f7ff;
}

.api_content .content_ .module .module_info .info table tbody tr td {
  height: auto;
  font-size: 13px;
  line-height: 22px;
  padding: 9px 0 9px 10px;
  border-bottom: 1px solid #e6e6e6;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.api_content .content_ .module .module_info .info table thead tr td.remark {

  width: 150px;
}

.api_content .content_ .module .module_info .info .note {
  color: #666;
  line-height: 28px;
  margin-top: 8px;
}

.api_content .content_ .module .module_info .info .note a {
  color: #1890ff;
}

.api_content .content_ .module .module_info .code {
  background: #fff;
  margin-top: 16px;
  position: relative;
  padding-top: 32px;
}

.api_content .content_ .module .module_info .code .code_title {
  width: 88px;
  height: 32px;
  line-height: 32px;
  background: #fbfbfb;
  font-size: 13px;
  color: #323232;
  border: 1px #e6e6e6 solid;
  text-align: center;
  position: absolute;
  top: 0;
}

.api_content .content_ .module .module_info .code .code_content {
  width: 100%;
  border: 1px #e6e6e6 solid;
}

.api_content .content_ .module .module_info .code .copy {
  position: absolute;
  top: 42px;
  right: 10px;
  width: 11px;
  height: 14px;
}

.api_content .content_ .module .module_info .code .copy .copy_blue {
  display: none;
}

.api_content .content_ .module .module_info .code .copy:hover div {
  display: block;
}

.api_content .content_ .module .module_info .code .copy:hover .copy_blue {
  display: block;
}

.api_content .content_ .module .module_info .code .copy:hover .copy_gary {
  display: none;
}

.api_content .content_ .module .module_info .code .copy div {
  display: none;
  width: 74px;
  height: 32px;
  line-height: 32px;
  background: #666;
  color: #fff;
  text-align: center;
  position: absolute;
  top: -40px;
  left: -32px;
}

.api_content .content_ .module .module_info .code .copy div .triangled_gary {
  position: absolute;
  bottom: -6px;
  left: 35px;
}

.api_content .content_ .module .module_info .introduce {
  font-size: 14px;
  line-height: 21px;
}

.api_content .anchor {
  width: 160px;
  font-size: 13px;
  color: #666;
}

.api_content .anchor .anchor_ul {
  position: fixed;
  top: 128px;
  box-sizing: border-box;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.api_content .anchor .anchor_ul li {
  line-height: 28px;
  color: #666;
  padding-left: 16px;
  box-sizing: border-box;
  cursor: pointer;
}

.api_content .anchor .anchor_ul li.clickAnchor {
  border-left: #1890ff 1px solid;
}

.api_content .anchor .anchor_ul li.clickAnchor a {
  color: #1890ff;
}

.api_content .anchor .anchor_ul li:hover {
  color: #1890ff;
}

.api_content .anchor .anchor_ul li a {
  color: #666;
  line-height: 28px;
}

.api_content .anchor .anchor_ul li a:hover {
  color: #1890ff;
}

.upTop {
  width: 48px;
  height: 48px;
  font-size: 14px;
  color: #1890ff;
  text-align: center;
  padding: 6px;
  box-sizing: border-box;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  position: fixed;
  bottom: 100px;
  right: 20px;
}

.module_introduce {
  line-height: 30px;
  font-size: 14px;
  padding-left: 30px;
}
