@charset "UTF-8";
/*搜索详情页面的样式*/
body {
  min-width: 1464px;
  background-color: #F5F5F5;
}
body a {
  color: inherit;
}

.content {
  position: relative;
  min-height: 360px;
  text-align: center;
}
.content .page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 360px;
  background: #f0f6ff;
  z-index: 1;
}

input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.rotate180 {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

/*搜索框的样式*/
.search-container {
  position: relative;
  min-height: 144px;
  background-color: #f0f6ff;
  text-align: center;
}
.search-container:before, .search-container:after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 288px;
  content: "";
  background-size: 100% 100%;
}
.search-container:before {
  left: 0;
  background-image: url("/app/assets/images/search/banner_left-2e3c4637ad3353758121c2cf69d484eb.png");
}
.search-container:after {
  right: 0;
  background-image: url("/app/assets/images/search/banner_right-385a1c680df396b9454823277be4605e.png");
}
.search-container .search-box {
  position: relative;
  display: inline-block;
  text-align: left;
  margin: 40px auto 30px;
  z-index: 1;
}
.search-container .search-btns:after {
  display: block;
  content: "";
  clear: both;
}
.search-container .search-inp {
  background: white;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
}
.search-container .search-inp > div {
  display: inline-block;
  height: 38px;
  vertical-align: top;
}
.search-container .search-types {
  position: relative;
  width: 114px;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 38px;
}
.search-container .search-types .selected-type {
  cursor: pointer;
}
.search-container .search-types .selected-type:after {
  position: absolute;
  top: 50%;
  right: -4px;
  height: 24px;
  width: 1px;
  content: "";
  margin-top: -12px;
  background-color: rgba(0, 0, 0, 0.05);
}
.search-container .search-types .selected-type .icon {
  display: inline-block;
  margin-left: 4px;
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  font-size: 12px;
}
.search-container .search-types .selected-type .icon.rotate180 {
  transform: scale(0.7) rotate(180deg);
  -webkit-transform: scale(0.7) rotate(180deg);
  -moz-transform: scale(0.7) rotate(180deg);
  -ms-transform: scale(0.7) rotate(180deg);
  -o-transform: scale(0.7) rotate(180deg);
  font-size: 12px;
}
.search-container .search-types .selected-type #selectedType {
  display: inline-block;
  width: 88px;
  vertical-align: middle;
}
.search-container .search-types .type-lists {
  position: absolute;
  display: none;
  top: 38px;
  left: 0;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  z-index: 10;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 9px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 9px 0 rgba(0, 0, 0, 0.1);
}
.search-container .search-types .type-lists .active {
  color: #3D82F2;
}
.search-container .search-types .type-lists > li {
  padding: 8px;
  cursor: pointer;
}
.search-container .search-types .type-lists > li:hover {
  background-color: rgba(61, 130, 242, 0.05);
}
.search-container .search-types .type-lists > li:not(:first-child) {
  border-top: 1px solid #eee;
}
.search-container .search-inps .search-input {
  line-height: 38px;
  padding: 0 8px;
  width: 540px;
  font-size: 16px;
  vertical-align: top;
}
.search-container a {
  display: inline-block;
  font-size: 16px;
}
.search-container a.btn-blue-auto {
  line-height: 40px;
  height: auto;
  border-radius: 4px;
  margin: -1px -1px 0 0;
}
.search-container a.btn-blue-auto:hover {
  opacity: 0.7;
}
.search-container .high-level-search {
  margin-left: 16px;
}

/*搜索范围的样式*/
.serach-range-wrap {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
}
.serach-range-wrap input {
  position: relative;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}
.serach-range-wrap input:before {
  position: absolute;
  display: inline-block;
  top: -7px;
  left: -7px;
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ebecf4;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.serach-range-wrap input:checked:before {
  border: 1px solid #3D82F2;
}
.serach-range-wrap input:checked:after {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #3D82F2;
  z-index: 2;
}
.serach-range-wrap > label {
  margin-right: 24px;
  cursor: pointer;
}
.serach-range-wrap > label span {
  display: inline-block;
  vertical-align: middle;
}

.main {
  position: relative;
  width: 1000px;
  min-height: 800px;
  margin: 24px auto;
  text-align: left;
}
.main.no-nav-status .main-right {
  padding-left: 0;
  padding-right: 0;
}
.main .left-nav {
  position: absolute;
  top: 0;
  left: 0;
  /*bottom: 0;*/
  /*overflow: auto;*/
  width: 216px;
  margin-right: 32px;
}
.main .main-right {
  padding-left: 232px;
  padding-right: 232px;
}
.main .right-nav {
  width: 216px;
  position: absolute;
  right: 0;
  top: 0;
}
.main .navs {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.main .navs > li {
  margin-bottom: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
}
.main .navs a {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 22px;
}
.main .navs .icon-down {
  display: inline-block;
  margin-right: 8px;
  font-size: 12px;
}
.main .navs .nav-child {
  padding-left: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.main .navs .nav-child dd {
  margin-top: 13px;
}
.main .navs .nav-child a {
  position: relative;
  font-size: 14px;
  cursor: pointer;
}
.main .navs .nav-child a .icon {
  display: inline-block;
  margin-right: 8px;
  width: 14px;
  height: 14px;
  font-size: 16px;
  border-radius: 2px;
  border: 1px solid #dfdcdf;
  vertical-align: middle;
}
.main .navs .nav-child a .icon.icon-selected3 {
  border: none;
}
.main .navs .nav-child a span {
  vertical-align: middle;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.main .navs .nav-child .nav-count {
  width: 30px;
}
.main .navs .nav-child input[type='checkbox'] {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}
.main .navs .nav-child .more-list {
  display: none;
  }

.main .navs .nav-child .show-more {
  text-align: right;
  cursor: pointer;
  }

.main-info {
  vertical-align: top;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 20px;
  background: #ffffff;
  padding: 16px;
  -webkit-box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.1);
  min-height: 400px;
}
.main-info h3 {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  line-height: 25px;
  margin-bottom: 8px;
}
.main-info .source span:hover {
  font-weight: bold;
}
.main-info .type-label {
  display: inline-block;
  padding: 0 6px;
  line-height: 24px;
  margin-right: 4px;
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
}
.main-info label {
  display: inline-block;
  width: 100px;
  padding-right: 10px;
  text-align: right;
  vertical-align: top;
  color: #b3b0b3;
}
.main-info s {
  float: right;
  width: calc(100% - 120px);
  text-decoration: none;
  word-wrap: break-word;
}
.main-info .list-info-top {
  position: relative;
}
.main-info .result-title {
  display: inline-block;
  line-height: 22px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  width: calc(100% - 80px);
  cursor: pointer;
}
.main-info .collect-statu {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  line-height: 20px;
  cursor: pointer;
}
.main-info .collect-statu i {
  font-size: 16px;
  margin-right: 4px;
  color: #dddddd;
}
.main-info .collect-statu.collected, .main-info .collect-statu:hover {
  color: #ffc331;
}
.main-info .collect-statu.collected i:before, .main-info .collect-statu:hover i:before {
  color: #ffc331;
}
.main-info p {
  display: block;
  height: auto !important;
  height: 32px;
  min-height: 32px;
  line-height: 32px;
  margin-bottom: 6px;
  overflow: hidden;
  position: relative;
}
.main-info div {
  margin-bottom: 16px;
}
.main-info .txt-more {
  color: #999999;
  cursor: pointer;
}
.main-info .txt-more.down,
.main-info .txt-more.up {
  display: block;
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 70px;
  height: 20px;
  line-height: 20px;
  text-align: right;
  background: #FFFFFF;
  background: -webkit-gradient(linear, right top, left top, color-stop(40%, #FFFFFF), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #FFFFFF 40%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(270deg, #FFFFFF 40%, rgba(255, 255, 255, 0) 100%);
}

/*过滤条件的样式*/
.content-top {
  margin-top: 16px;
}

.filters {
  display: inline-block;
  margin-right: 16px;
}
.filters > li {
  display: inline-block;
  padding: 0 8px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 2px;
  border: 1px solid #eeeeee;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  margin-right: 4px;
  cursor: pointer;
}
.filters > li:hover {
  border-color: #3D82F2;
}
.filters > li.active {
  color: #3D82F2;
  background: rgba(61, 130, 242, 0.1);
  border-color: rgba(61, 130, 242, 0.1);
}

/*图表*/
.echart-box {
  background-color: #fff;
  margin-top: 16px;
  padding: 16px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #eee;
}

.layui-inline,
.layui-input-inline {
  display: inline-block;
}

.layui-input {
  width: 160px;
  height: 30px;
  line-height: 30px;
  background: white;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.calendar-input {
  position: relative;
}
.calendar-input .icon-calendar {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.calendar-input .layui-input {
  padding-left: 32px;
}

.layui-laydate .layui-laydate-content td,
.layui-laydate .layui-laydate-content th {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  margin: 4px 8px;
  padding: 0;
  font-size: 12px;
  text-align: center;
}

.layui-laydate .laydate-footer-btns span {
  border: none;
  font-size: 14px;
}

.layui-laydate .laydate-btns-confirm {
  color: #3D82F2;
}

.layui-laydate, .layui-laydate-hint {
  background: white;
  -webkit-box-shadow: 0 0 6px 0 #eaedf3 !important;
          box-shadow: 0 0 6px 0 #eaedf3 !important;
}

#layui-laydate1 .layui-laydate-header,
#layui-laydate2 .layui-laydate-header,
#layui-laydate3 .layui-laydate-header,
#layui-laydate4 .layui-laydate-header {
  background-color: transparent !important;
}

.laydate-theme-molv .layui-laydate-header i {
  color: #bfc1c2 !important;
  font-size: 12px;
}

.laydate-theme-molv .layui-laydate-header span {
  color: #333 !important;
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  padding: 0;
}

.layui-laydate .laydate-theme-molv .layui-laydate-main {
  width: 288px;
}

.laydate-theme-molv .layui-laydate-content {
  border: none !important;
  padding-top: 0;
}

.laydate-theme-molv .layui-laydate-footer {
  border-color: #EAEDF3 !important;
  border-width: 1px 0 0 0 !important;
}

.layui-laydate-content .laydate-day-next, .layui-laydate-content .laydate-day-prev {
  color: #999 !important;
}

.layui-laydate-content td {
  color: #333 !important;
}

.layui-laydate-footer .laydate-footer-btns span:hover {
  color: #333;
}

.layui-laydate-footer .laydate-footer-btns .laydate-btns-confirm:hover {
  color: #225FC2;
}

.main-right .layui-form-label {
  padding: 5px;
  width: auto;
}
.main-right .layui-form-item .layui-input-inline {
  width: auto;
  margin-right: 0;
}
.main-right .layui-form-item .layui-input-inline:not(:last-child) {
  margin-right: 0;
}
.main-right .layui-form-item .layui-inline {
  margin-right: 0;
}

.main-book-list {
  margin-top: 24px;
}
.main-book-list .tabs-box {
  color: #333333;
}
.main-book-list .tabs-box > span {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding: 0 16px;
  font-size: 16px;
  cursor: pointer;
}
.main-book-list .tabs-box > span.current {
  background: #ffffff;
}
.main-book-list .tab-info-list {
  padding: 23px 4px 23px 4px;
  background: #ffffff;
  display: none;
  font-size: 0;
}
.main-book-list .tab-info-list > li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 80px;
  height: 118px;
  margin: 0 12px 24px;
  cursor: pointer;
  font-size: 14px;
}
.main-book-list .tab-info-list > li > img {
  width: 100%;
  height: 100%;
}
.main-book-list .tab-info-list > li .btm-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 4px;
}


.main-book-list .tab-info-list-text {
  padding: 23px 4px 23px 4px;
  background: #ffffff;
  display: none;
  font-size: 0;
}

.main-book-list .tab-info-list-text > li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 80px;
  height: 118px;
  margin: 0 12px 24px;
  cursor: pointer;
  font-size: 14px;
}

.main-book-list .tab-info-list-text > li > img {
  width: 100%;
  height: 100%;
}

.main-book-list .tab-info-list-text > li .btm-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 4px;
}

.main-book-list .tab-info-list-text.text-style {
  height: auto !important;
  height: 312px;
  min-height: 312px;
  padding: 23px 4px 46px 4px;
  position: relative;
}

.main-book-list .tab-info-list-text.text-style > li {
  width: 100%;
  height: 32px;
  line-height: 32px;
  margin: 0;
  padding: 0 24px;
  box-sizing: border-box;
  cursor: inherit;
}

.main-book-list .tab-info-list-text.text-style > li span {
  display: block;
  font-size: 14px;
  color: #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.main-book-list .tab-info-list-text.text-style > li:nth-of-type(n+11) {
  display: none;
}

.main-book-list .tab-info-list-text.text-style .more-btn {
  font-size: 14px;
  color: #3D82F2;
  cursor: pointer;
  position: absolute;
  left: 28px;
  bottom: 20px;
  z-index: 2;
}
/* 新增详情底部样式 */
.footer-list {
  padding: 28px 28px 13px 28px;
  background-color: #ffffff;
}

.footer-list .dis-none {
  display: none !important;
}

.footer-list .dis-block {
  display: block !important;
}

.footer-list .footer-items {
  margin-top: 8px;
}

.main-book-list  .footer-list-title {
  font-size: 18px;
}

.main-book-list  .footer-list-title .list-title-tabs li {
  cursor: pointer;
  margin: 0 15px 0 0;
  float: left;
}

.main-book-list .footer-list-items {
  margin-top: 8px;
}
.main-book-list .footer-list-items .footer-list-item {
  position: relative;
  width: 100%;
  }
.main-book-list .footer-list-items .footer-list-item:nth-of-type(2n+1){
  background-color: rgb(244,243,247);
}
.main-book-list .footer-list-items .footer-list-item:first-child {
  /*font-weight: bold;*/
  }


.main-book-list .footer-list-items .footer-list-item>i{
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  display: inline-block;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  vertical-align: middle;
  opacity: 0;
}

.main-book-list .footer-list-items .footer-list-item span {
  cursor: pointer;
  display: inline-block;
  margin-left: 20px;
  width: calc(100% - 120px);
  line-height: 30px;
  font-size: 14px;
  color: #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.main-book-list .footer-list-items .footer-list-item a{
  line-height: 30px;
  float: right;
  margin-right: 20px;
}
.main-book-list #demo3 {
  text-align: center;
}

.main-book-list #demo3 .layui-laypage {
  margin: 0;
}

.main-book-list #demo3 .layui-laypage a {
  padding: 0 8px;
}

.main-book-list #demo3  .layui-laypage input {
  margin: 0 5px;
  width: 30px;
}

/*面包屑*/
.main-right .top-box {
  background: #FCFCFC;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 24px;
  position: relative;
}

.breadcrumb-box {
  width: 100%;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
  line-height: 30px;
  /* 面包屑超出部分 不能隐藏 */
  /* overflow: hidden; */
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb-box .icon-up {
  display: inline-block;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  margin: 0 4px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.hover-hand {
  cursor: pointer;
}

.added.main {
  width: 1464px;
}

.added.main .main-info {
  min-height: 230px;
}

.added.main .main-info .img-box {
  float: left;
  margin: 0;
}

.added.main .main-info .img-box .img-zoom {
  height: 160px;
}

.added.main .main-info .section h3 {
  margin-bottom: 24px;
}

.added.main .main-book-list .tab-info-list > li {
  margin: 0 22px 24px;
}

.added.main .main-book-list .tab-info-list.text-style {
  height: auto !important;
  height: 312px;
  min-height: 312px;
  padding: 23px 4px 46px 4px;
  position: relative;
}

.added.main .main-book-list .tab-info-list.text-style > li {
  width: 100%;
  height: 32px;
  line-height: 32px;
  margin: 0;
  padding: 0 24px;
  box-sizing: border-box;
  cursor: inherit;
}

.added.main .main-book-list .tab-info-list.text-style > li span {
  display: block;
  font-size: 14px;
  color: #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.added.main .main-book-list .tab-info-list.text-style > li:nth-of-type(n+11) {
  display: none;
}

.added.main .main-book-list .tab-info-list.text-style .more-btn {
  font-size: 14px;
  color: #3D82F2;
  cursor: pointer;
  position: absolute;
  left: 28px;
  bottom: 20px;
  z-index: 2;
}
/*移动端端*/
@media only screen and (max-width: 767px) {
  .main {
    width: 100%;
    padding: 0 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .added.main {
    width: unset;
  }
  
  .main .left-nav, .main .right-nav {
    position: unset;
    width: 100%;
  }

  .main .main-right {
    width: 100%;
    margin-bottom: 16px;
    padding: 0;
  }
  /* gmk修改移动端样式 */
  .page-header-style1 .header-container {
    padding-bottom: 0;
  }
  
}


/* 分享代码 */
.bshare-custom {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.bshare-custom > span {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  text-align: left;
  color: rgba(0, 0, 0, 0.4);
}

.bshare-custom .bshare-clipboard {
  float: right;
  cursor: pointer;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url('/app/assets/images/details/share-links-afbdfd1d53f3dbaad4f085a2f6b1891b.png') no-repeat !important;
  background-size: 100%;
}
.bshare-custom .share-div {
  float: right;
}
.social-share a {
  margin: 0;
}
.social-share .social-share-icon {
  width: 24px;
  height: 24px;
  border-radius: 0;
  font-size: 24px;
  line-height: 24px;
  margin-right: 10px;
}

.social-share .icon-qq,.social-share .icon-qq:hover,.social-share .icon-wechat,.social-share .icon-wechat:hover,.social-share .icon-weibo,.social-share .icon-weibo:hover {
  border: none;
  background: none;
}
.social-share .icon-wechat {
  background: url('/app/assets/images/details/share-wechat-0c47fa2b1bc82e59683393660b00c9cf.png') no-repeat !important;
  background-size: 100%;
}
.social-share .icon-weibo {
  background: url('/app/assets/images/details/share-weibo-855a5e9bb1fe32ae3c6097e8258796b9.png') no-repeat !important;
  background-size: 100%;
}

.social-share .icon-qq {
  background: url('/app/assets/images/details/share-qq-4d33dc97739f7035171640ba80351b6e.png') no-repeat !important;
  background-size: 100%;
}

@media only screen and (max-width: 767px) {
  .breadcrumb-box .bshare-custom {
    display: none;
  }
}
.text-details .content{
  background: lightsteelblue;
  overflow: hidden;
}
.text-details .content .main{
  margin: 12px auto;
  margin-bottom: 20px;
  width: 1280px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(30, 29, 46, 0.15);
  border-radius: 4px;
  min-height: 300px;
}
.text-details .breadcrumb-box{
  padding: 23px 29px;
  border-bottom: 1px solid #E1E3EE;
  line-height: 16px;
  box-sizing: border-box;
}
.text-details .text-box{
  padding: 40px 0 31px;
  margin: 0 auto;
  width: 850px;
}
.text-details .text-box .title{
  font-size: 18px;
  font-weight: bold;
  color: #201F1D;
  line-height: 18px;
  text-align: center;
}
.text-details .text-box .view{
  font-size: 12px;
  font-weight: 400;
  color: #6D7C92;
  line-height: 20px;
  margin-top: 9px;
  text-align: center;
}
.text-details .text-box .info-list{
  margin-top: 10px;
}
.text-details .info-list p{
  margin-top: 9px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.text-details .info-list label{
  color: #71777D;
  /* margin-right: 9px; */
}
.text-details .info-list .desc{
  color: #6D7C92;
}
.text-details .info-list .desc a{
  text-decoration: underline;
}
@media only screen and (min-width: 1px) and (max-width: 767px){
  body{
    min-width: unset;
  }
  .text-details .content .main {
    width: 95%;
    padding: 0;
  }
  .text-details .text-box {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
}

/* 二维码弹框 */

.content .code-box {
  cursor: pointer;
  position: relative;
  margin-right: 10px;
}
.content .code-box:hover>span {
  font-weight: bold;
}

.content .code-box:hover .code-img {
  display: block;
}

.content .code-box .code-img {
  display: none;
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  padding: 21px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(61, 45, 102, 0.2);
  border-radius: 4px;
}

.content .code-box .code-img>img {
  width: 100%;
  height: 100%;
}

/*作者添加icon start*/
.main-info s .icon {
  font-size: 14px;
  color: #707070;
}

.main-info s .ft-bold {
  font-weight: bold;
}

/*作者添加icon end*/