@charset "UTF-8";
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: "Microsoft Yahei";
  font-size: 1rem;
}

.head-wrap,
.jumbotron_txt_wrap,
.fund-introduction-wrap,
.member-intro-wrap,
.latest-news-wrap,
.footer-wrap,
.title-container {
  max-width: 1400px;
  margin: auto;
}

p {
  margin: 0;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  cursor: pointer;
  text-decoration: none;
}

:root {
  box-sizing: border-box;
  --default-font: 'PingFang SC';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
}

@media screen and (min-width: 375px) {
  html {
    /* iPhone6的375px尺寸作为16px基准，414px正好18px大小, 600 20px */
    font-size: calc(100% + 2 * (100vw - 375px) / 39);
    font-size: calc(16px + 2 * (100vw - 375px) / 39);
  }
}

@media screen and (min-width: 414px) {
  html {
    /* 414px-1000px每100像素宽字体增加1px(18px-22px) */
    font-size: calc(112.5% + 4 * (100vw - 414px) / 586);
    font-size: calc(18px + 4 * (100vw - 414px) / 586);
  }
}

@media screen and (min-width: 600px) {
  html {
    /* 600px-1000px每100像素宽字体增加1px(20px-24px) */
    font-size: calc(125% + 4 * (100vw - 600px) / 400);
    font-size: calc(20px + 4 * (100vw - 600px) / 400);
  }
}

@media screen and (min-width: 1000px) {
  html {
    /* 1000px往后是每100像素0.5px增加 */
    font-size: 16px;
  }
}

/***** 设置滚动条背景色为透明 *************/
::-webkit-scrollbar {
  width: 8px;
  /* 宽度 */
  height: 8px;
  /* 高度 */
}

/* 设置滚动条背景颜色和透明度 */
::-webkit-scrollbar-track {
  background-color: transparent;
  /* 背景颜色 */
}

::-webkit-scrollbar-thumb {
  background-color: transparent;
  /* 滑块颜色 */
}

/* 设置滚动条边框颜色和透明度 */
::-webkit-scrollbar-track {
  border: none;
  /* 边框颜色 */
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  /* 圆角大小 */
}

/* 鼠标经过图片实现放大效果 */
.fund-introduction-img,
.news-img-wrap {
  overflow: hidden;
}

.fund-introduction-img img,
.news-img-wrap img {
  transition: all 0.6s ease-out;
}

.fund-introduction-img img:hover,
.news-img-wrap img:hover {
  transform: scale(1.1);
}

/* 鼠标放上时效果 */
.member1:hover,
.col-lg-4:hover,
.news-txt-box:hover {
  cursor: pointer;
  box-shadow: 3px 3px 8px #dbdbdb, -3px -3px 8px #dbdbdb;
}

/* 导航栏样式 */
/********************************
****** name: 回到顶部按钮
*********************************/
.btn-to-top {
  position: fixed;
  display: none;
  bottom: 20px;
  right: 25px;
  z-index: 1020;
  width: 50px;
  height: 50px;
  background: url(../image/uptop.png);
}

.btn-to-top:hover {
  background: url(../image/uptop-hover.png);
}

.btn-to-top.in {
  display: block;
}

/********回到顶部按钮 end***************/
.head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  opacity: 0.9;
}

.head-wrap {
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #080808;
}

.head-wrap .head-l {
  display: flex;
  align-items: center;
}

.head-wrap .head-l .title-wrapper p:nth-child(1) {
  font-size: 1.125rem;
  color: #666;
}

.head-wrap .head-l .title-wrapper p:nth-child(1) a,
.head-wrap .head-l .title-wrapper p:nth-child(1) a:link,
.head-wrap .head-l .title-wrapper p:nth-child(1) a:hover,
.head-wrap .head-l .title-wrapper p:nth-child(1) a:active,
.head-wrap .head-l .title-wrapper p:nth-child(1) a:focus {
  color: #666;
}

.head-wrap .head-l p {
  padding-left: 1.25rem;
  font-size: 1.375rem;
  font-weight: bold;
  color: #080808;
  line-height: 34px;
}

.head-wrap .head-l a,
.head-wrap .head-l a:link,
.head-wrap .head-l a:visited,
.head-wrap .head-l a:hover,
.head-wrap .head-l a:active,
.head-wrap .head-l a:focus {
  color: #080808;
}

.head-wrap .head-r ul {
  overflow: hidden;
  margin: 0;
}

.head-wrap .head-r li {
  float: left;
  padding: 10px 20px;
  list-style-type: none;
}

.head-wrap .head-r .icon img {
  padding: 0 5px;
}

.head-wrap .head-r li + li {
  margin-left: 1.875rem;
}

.head-wrap .head-r a {
  display: block;
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 1.5rem;
}

.head-wrap .head-r a:link {
  color: #080808;
}

.head-wrap .head-r a:visited {
  color: #080808;
}

.head-wrap .head-r a:hover,
.head-wrap .head-r a.active,
.head-wrap .head-r a .current {
  color: #009b4c;
}

/* 大banner样式 */
.jumbotron {
  height: 450px;
  padding: 0 0 180px;
  margin-top: 110px;
  margin-bottom: 0;
  background: url("../image/banner-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.jumbotron .jumbotron_txt_wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.jumbotron .banner-txt1 {
  font-size: 3.75rem;
  line-height: 3.75rem;
}

.jumbotron .line {
  width: 310px;
  height: 1px;
  border-top: 1px solid #fff;
  margin: 30px 0;
  border-radius: 1.5px;
}

.jumbotron .banner-txt2 {
  font-size: 3rem;
  line-height: 3rem;
}

.jumbotron-detail {
  padding: 0 0 100px;
}

/* 网页section区公共样式 */
.section,
.member-intro-wrap {
  font-size: 1.125rem;
  line-height: 1.125rem;
}

.section {
  width: 100%;
  padding-bottom: 60px;
  color: #333;
}

.fund-introduction-wrap,
.member-intro-wrap {
  margin: auto;
}

/* 基金简介样式 */
.fund-introduction-container {
  background-color: #fafafa;
}

.fund-introduction {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
}

.fund-introduction .fund-introduction-img-wrap {
  height: 100%;
  width: 50%;
  padding: 5px;
  background-color: #f2f2f2;
  background-clip: content-box;
}

.fund-introduction .fund-introduction-img-wrap .fund-introduction-img {
  position: relative;
}

.fund-introduction .fund-introduction-img-wrap .fund-introduction-img img {
  max-width: 100%;
  max-height: 100%;
}

.fund-introduction .fund-introduction-info-wrap {
  width: 50%;
  padding: 0 25px;
}

.fund-introduction .fund-introduction-info-wrap .fund-introduction-txt {
  width: 100%;
  text-align: justify;
}

.fund-introduction .fund-introduction-info-wrap .fund-introduction-txt p ::before {
  content: "\00A0";
  width: 5px;
  height: 12PX;
  margin-right: 10px;
  background: #009b4c;
}

.fund-introduction .fund-introduction-info-wrap .fund-introduction-txt p {
  padding: 15px 0;
  text-indent: 36px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 1.125rem;
  color: #333333;
  line-height: 48px;
}

.fund-introduction .fund-introduction-info-wrap .fund-introduction-txt p span::before {
  display: none;
}

.fund-introduction .fund-introduction-info-wrap .fund-introduction-txt p .span-block {
  display: block;
  padding-left: 15px;
}

.fund-introduction .fund-introduction-info-wrap .fund-introduction-txt p .green {
  font-weight: bold;
  color: #009b4c;
}

/* 成员介绍样式 */
.member-intro-container {
  padding-bottom: 70px;
  background-color: #ffffff;
}

.member-intro-wrap {
  display: flex;
  color: #333;
}

.member-intro-wrap .img-box {
  padding-top: 50px !important;
}

.member-intro-wrap .name {
  font-size: 1.125rem;
  font-weight: 400;
  height: 1.5rem;
  line-height: 1.5rem;
}

.member-intro-wrap .duties {
  margin-top: 10px;
  color: #999;
}

.member-intro-wrap .member1 {
  width: 25%;
  padding-bottom: 30px;
  margin-bottom: 20px;
  background: #fff;
  text-align: center;
}

.member-intro-wrap .member1 .member1-img {
  background: #ececec;
}

.member-intro-wrap .member1 .member1-img img {
  width: 100%;
}

.member-intro-wrap .row {
  width: 100%;
  flex-grow: 1;
  margin: 0;
}

.member-intro-wrap .row .col-lg-4 {
  padding: 0;
  margin-bottom: 20px;
  margin-left: 10px;
  text-align: center;
  background: #fff;
  flex: 0 0 19.1%;
}

.member-intro-wrap .row .col-lg-4 .adv-img {
  background: #009b4c;
  height: 200px;
  margin-bottom: 20px;
}

.member-intro-wrap .row .col-lg-4 .adv-img img {
  width: 100%;
  height: 150px;
}

.member-intro-wrap .row .col-lg-4 .adv-img .name {
  margin: 5px;
  font-family: Microsoft YaHei;
  font-size: 1.5rem;
  font-weight: 400;
  height: 2.25rem;
  line-height: 2.25rem;
  color: #FFFFFF;
}

.member-intro-wrap .row .col-lg-4 .adv-title {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 1.125rem;
  height: 48px;
  line-height: 48px;
  text-align: left;
  padding-left: 15px;
}

.member-intro-wrap .row .col-lg-4 .adv-title a {
  color: #333333;
}

.member-intro-wrap .row .col-lg-4 .adv-title::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: black;
  border-radius: 50%;
  margin-right: 5px;
  margin-bottom: 5px;
}

.member-intro-wrap .row .col-lg-4 .grey {
  background: #f7f8fa;
}

/* 最新动态样式 */
.latest-news-container {
  padding-bottom: 80px;
  background-color: #f7f8fa;
}

.latest-news-wrap {
  display: flex;
  justify-content: center;
  background: #f7f8fa;
}

.latest-news-wrap .news-label,
.latest-news-wrap .news-time,
.latest-news-wrap .news-brief {
  font-size: 0.875rem;
  line-height: 0.875rem;
}

.latest-news-wrap .news-box + .news-box {
  margin-left: 20px;
}

.latest-news-wrap .news-box1 .news-txt-wrap,
.latest-news-wrap .news-box2 .news-txt-wrap {
  padding: 0 16px;
}

.latest-news-wrap .news-box1 .news-txt-wrap:hover,
.latest-news-wrap .news-box2 .news-txt-wrap:hover {
  cursor: pointer;
}

.latest-news-wrap .news-box {
  /* width: 700px;*/
  width: 100%;
  height: 467px;
  position: relative;
  background: #f8f8f8;
}

.latest-news-wrap .news-box .news-label {
  position: absolute;
  z-index: 1000;
  padding: 10px 20px;
  color: #fff;
  background: #009b4c;
}

.latest-news-wrap .news-box .news-img-wrap {
  width: 700px;
  height: 467px;
}

.latest-news-wrap .news-box .news-img-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.latest-news-wrap .news-box .news-txt-wrap .news-txt-box {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 110px;
  padding: 0 16px;
}

.latest-news-wrap .news-box .news-txt-wrap .news-txt-box .news-time {
  width: 80px;
  height: 80px;
  background: #ffffff;
}

.latest-news-wrap .news-box .news-txt-wrap .news-txt-box .news-time .news-day {
  height: 46px;
  line-height: 46px;
  font-family: Arial;
  font-weight: 400;
  font-size: 1.5rem;
  color: #009b4c;
  text-align: center;
}

.latest-news-wrap .news-box .news-txt-wrap .news-txt-box .news-time .news-month {
  height: 34px;
  line-height: 16px;
  font-family: Arial;
  font-weight: 400;
  font-size: 1rem;
  color: #666666;
  text-align: center;
}

.latest-news-wrap .news-box .news-txt-wrap .news-txt-box .news-content {
  /*width: 535px;*/
  width: calc(100% - 90px);
  height: 80px;
  margin: -20px 0 0 16px;
}

.latest-news-wrap .news-box .news-txt-wrap .news-txt-box .news-content .news-title {
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.125rem;
}

.latest-news-wrap .news-box .news-txt-wrap .news-txt-box .news-content .news-title a {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 1.125rem;
  color: #333333;
  line-height: 36px;
}

.latest-news-wrap .news-box .news-txt-wrap .news-txt-box .news-content .news-brief {
  line-height: 26px;
  text-align: left;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: .875rem;
  color: #999999;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-news-wrap .news-box .news-txt-wrap .green {
  background: #f7f8fa;
}

/* 最新动态-科研动态样式 */
.news-box3 .news-txt-wrap {
  margin-top: 53px;
  padding-bottom: 16px !important;
}

.news-box3 .news-txt-wrap .news-title {
  margin: 24px 0 14px !important;
  line-height: 1.875rem !important;
  font-size: 1.125rem;
}

.news-box3 .news-time::before {
  display: none !important;
}

/* 更多动态样式 */
.more-news-container {
  text-align: center;
}

.more-news-container .more-news + .more-news {
  margin-left: 40px;
}

.more-news-container .more-news {
  display: inline-block;
  margin: 40px auto;
  padding: 12px 36px;
  border: 1px solid #999999;
  font-size: 1rem;
  line-height: 1rem;
  color: #000000;
}

.more-news-container .more-news:hover {
  color: #009b4c;
  border-color: #009b4c;
}

/* 版权信息样式 */
.footer {
  padding: 40px 0;
  text-align: center;
  background: #333333;
}

.footer .footer-wrap {
  display: flex;
  justify-content: space-around;
}

.footer .footer-wrap .footer-left {
  width: 50%;
  text-align: left;
}

.footer .footer-wrap .footer-left .copyright-info {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 30px;
}

.footer .footer-wrap .footer-left .copyright-info a {
  color: #ffffff;
}

.footer .footer-wrap .footer-left .blank-space {
  padding-bottom: 30px;
}

.footer .footer-wrap .footer-right {
  width: 50%;
  text-align: right;
}

.footer .footer-wrap .footer-right .subscription-name {
  margin: 0 20px;
  line-height: 30px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 0.75rem;
  color: #666666;
}

@media screen and (max-width: 900px) {
  .head-wrap,
  .jumbotron_txt_wrap,
  .fund-introduction-wrap,
  .member-intro-wrap,
  .latest-news-wrap,
  .footer-wrap,
  .title-container {
    width: 100%;
  }
  .latest-news-wrap .news-box {
    padding: 0;
    margin: 0 20px;
    width: calc(100% - 40px);
    height: auto;
  }
  .latest-news-wrap .news-box + .news-box {
    margin: 20px;
  }
  .latest-news-wrap .news-box .news-img-wrap {
    width: 100%;
    height: auto;
  }
  .latest-news-wrap .news-box .news-img-wrap img {
    width: 100%;
    height: auto;
  }
  .latest-news-wrap .news-box .news-txt-wrap {
    margin-right: 20px;
  }
  .latest-news-wrap .news-box .news-txt-wrap .news-txt-box {
    width: 100%;
  }
  .latest-news-wrap .news-box .news-txt-wrap .news-txt-box .news-content {
    width: calc(100% - 80px);
  }
  .section {
    margin-right: 20px;
  }
  .member-intro-wrap .row {
    flex-wrap: wrap;
  }
  .member-intro-wrap .row .col-lg-4 {
    width: 50% !important;
  }
}

.panel-img-list .left-box {
  width: calc(59.8% - 20px);
}

.panel-img-list .left-box .mixture-box {
  display: flex;
  justify-content: space-between;
}

.panel-img-list .left-box .mixture-box2 {
  margin-top: 20px;
}

.panel-img-list .panel-img-box a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #fff;
  overflow: hidden;
}

.panel-img-list .panel-img-box a .img-box {
  transition: all 0.5s ease-out;
  /* 过度 所有css属性 1秒过度 结束慢*/
  -moz-transition: all 0.5s ease-out;
  /* Firefox 4 */
  -webkit-transition: all 0.5s ease-out;
  /* Safari 和 Chrome */
  -o-transition: all 0.5s ease-out;
}

.panel-img-list .panel-img-box a .img-box .mask {
  position: absolute;
  left: 10px;
  bottom: 0;
  width: calc(100% - 20px);
  height: 100%;
  z-index: 2;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.3) 70%);
  visibility: visible;
}

.panel-img-list .panel-img-box a .img-box .mask:hover {
  background: url("../imgs/index/mask_grad2.png") repeat-x left bottom;
  background-size: auto 100%;
  opacity: 1;
  filter: alpha(opacity=0.9);
  transition: all 0.5s;
}

.panel-img-list .panel-img-box a .img-box:hover {
  transform: scale(1.1, 1.1);
}

.panel-img-list .panel-img-box a img {
  position: relative;
  width: 100%;
  height: auto;
}

.panel-img-list .panel-img-box .read-more span {
  position: relative;
  top: 0.6rem;
  font-size: 14px;
}

.panel-img-list .panel-img-box .read-more i {
  position: relative;
  top: 8px;
  left: 10px;
  color: red;
}

.panel-img-list .text-box {
  position: absolute;
  left: 10px;
  bottom: 1rem;
  width: 100%;
  color: #fff;
  text-align: left;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding: 15px 30px;
  font-size: 18px;
  z-index: 999;
}

.panel-img-list .text-box .name {
  font-size: px-to-rem(24px);
  font-weight: bold;
}

.container {
  width: 100%;
  background: #fff;
}

.container .about-box {
  margin: 1.625rem;
  padding-top: 5rem;
}

.container .about-box .col-md-6 {
  height: auto;
  padding: 0;
  background: #fff;
}

.container .about-box .img-box {
  margin-bottom: 1.875rem;
}

.container .about-box .img-box img {
  margin-bottom: 1.875rem;
}

.container .about-box .info-box {
  width: 100%;
  text-align: left;
  padding: 2rem 0 0 4rem;
}

.container .about-box .info-box h3 {
  font-size: 1.875rem;
  text-align: left;
  margin: 0;
  padding-bottom: 0;
  line-height: 3rem;
  font-weight: bold;
}

.container .about-box .info-box p .about-item {
  display: block;
  padding-bottom: 1.75rem;
  font-size: 1.5rem;
  line-height: 48px;
}

.container .about-box .info-box p .about-item .item-title {
  display: block;
  font-weight: 700;
}

@media screen and (max-width: 991.98px) {
  .container .about-box {
    margin: 0;
    padding: 1.0rem;
  }
  .container .about-box .col-md-6 {
    height: auto;
  }
  .container .about-box .info-box {
    width: 100%;
    padding: 1rem;
  }
  .container .about-box .info-box h3 {
    font-size: 1.6rem;
  }
}