
/* introduction */

.centerBg {
  width: 100%;
  transform: translateY(-20px);
  height: 170px;
}
.commonMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}
.commonNavLeft {
  width: 250px;
  transform: translateY(-100px);
  height: auto;
}
.commonNavLeft>ul {
  width: 100%;
  background-color: #7B081E;
}
.commonNavLeft>ul>h3 {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-indent: 30px;
  font-weight: bold;
  font-size: 22px;
  color: #FFFFFF;
  background: url(../images/list_title_bg.png) no-repeat right;
}
.commonNavLeft>ul>li {
  width: 100%;
  transition: all .3s ease-out .1s;
  -webkit-transition: all .3s ease-out .1s;
  -moz-transition: all .3s ease-out .1s;
  -ms-transition: all .3s ease-out .1s;
  -o-transition: all .3s ease-out .1s;
  overflow: hidden;
}
.commonNavLeft>ul>li>a {
  display: block;
  padding: 15px 30px;
  line-height: 30px;
  font-weight: bold;
  font-size: 18px;
  color: #FFFFFF;
}
.commonNavLeft>ul>li+li>a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.commonNavLeft>ul>li:hover {
  transform: translateX(20px);
  background: url(../images/leftBg.png) no-repeat top / cover;
}
.commonNavLeft>ul>li>a:hover {
  background: url(../images/left_nav_arrow.png) no-repeat 90% 70%;
  color: #ffffff;
}
.commonNavLeft>ul>li.active {
  transform: translateX(20px) !important;
  background: url(../images/leftBg.png) no-repeat top / cover !important;
}
.commonNavLeft>ul>li.active>a {
  background: url(../images/left_nav_arrow.png) no-repeat 90% 70% !important;
  color: #ffffff !important;
}
.commonRight {
  width: calc(100% - 320px);
}
.location {
  width: 100%;
  padding: 0px 0px;
  line-height: 23px;
  color: #666666;
  background: url(../images/icon_loaction.png) no-repeat 0px 5px;
  padding-left: 20px;
  margin-top: 10px;
}
.location>a {
  display: inline-block;
  font-size: 15px;
  color: #666666;
}
.location>a:hover {
  color: #222222;
}
.introduction {
  width: 100%;
  margin-top: 30px;
}
.introduction h3 {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: url(../images/icon_intro_title.png) no-repeat left / cover;
  font-weight: bold;
  font-size: 20px;
  color: #222222;
  text-indent: 20px;
  margin-bottom: 30px;
}
.introduction p {
  font-weight: 400;
  font-size: 15px;
  color: #222222;
  line-height: 30px;
  text-indent: 2em;
  margin-bottom: 10px;
}
.introductionCode {
  width: 210px;
  background-color: RGBA(242, 242, 242, 1);
  padding: 30px 30px;
  margin-top: 30px;
  text-align: center;
}
.introductionCode>img {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px !important;
}
.introductionCode>span {
  font-weight: 400;
  font-size: 15px;
  color: #222222;
  line-height: 30px;
}
.introduction img {
  display: block;
  max-width: 90%;
  margin: 20px 0;
}
.introduction table p {
  text-indent: 0em !important;
}

/* listPic */

.listPic {
  width: 100%;
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.noticeListBox,
.teamBox,
.platformIntro {
  width: 100%;
  margin-top: 30px;
  padding-bottom: 30px;
}
.listPic>h3,
.noticeListBox>h3,
.teamItem .teamTitle,
.platformIntro>h3,
.datalistItem .datalistItemTitle,
.labTeam .teamTitle,
.labNotice .labNoticeTitle {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: url(../images/icon_intro_title.png) no-repeat left / cover;
  font-weight: bold;
  font-size: 20px;
  color: #222222;
  text-indent: 20px;
}
.listpic_item {
  width: 100%;
  margin-top: 30px;
}
.listpic_item>a {
  display: flex;
  justify-content: space-between;
}
.listpic_item_pic {
  width: 300px;
  height: 167px;
  overflow: hidden;
}
.listpic_item_pic>img {
  transition: all .3s ease-out .1s;
  -webkit-transition: all .3s ease-out .1s;
  -moz-transition: all .3s ease-out .1s;
  -ms-transition: all .3s ease-out .1s;
  -o-transition: all .3s ease-out .1s;
}
.listpic_item:hover .listpic_item_pic>img {
  transform: scale(1.1,1.1);
  -webkit-transform: scale(1.1,1.1);
  -moz-transform: scale(1.1,1.1);
  -ms-transform: scale(1.1,1.1);
}
.listpic_item_text {
  width: calc(100% - 330px);
  padding-top: 5px;
}
.listpic_item_text>h3 {
  display: block;
  font-weight: 600;
  font-size: 20px;
  color: #111111;
  line-height: 39px;
  height: 39px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.listpic_item_text>p {
  font-weight: 400;
  font-size: 15px;
  color: #111111;
  line-height: 28px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 15px 0px;
}
.listpic_item_text>span {
  display: block;
  font-weight: 400;
  font-size: 15px;
  color: #999999;
  line-height: 39px;
  padding-left: 20px;
  background: url(../images/icon_time.png) no-repeat 0px;
}
.listpic_item:hover h3 {
  color: #AE0B2A;
}

/* page */

.page {
  width: 100%;
  margin-top: 30px;
}
.page_nav {
  height: 32px;
  width: 100%;
  text-align: center;
}
.page_nav li {
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
  color: #222222;
  border-radius: 5px;
  margin: 0px 3px;
}
.page_nav li a {
  display: block;
  background-color: #ffffff;
  color: #222222;
}
.page_nav li>a.active {
  border: 1px solid #AE0C2A;
  background-color: #ffffff;
  color: #AE0C2A;
}
.page_nav li.active>span {
  border: 1px solid #AE0C2A;
  background-color: #ffffff;
  color: #AE0C2A;
}
.pagination {
  margin: 0 !important;
}
.page_nav li:last-child {
  width: auto;
}
.total {
  width: auto !important;
}
.total span {
  width: auto !important;
  font-size: 14px;
  padding: 0px 5px;
}
.pagination span,
.pagination a {
  box-sizing: border-box;
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px !important;
  border: 1px solid #ffffff;
  border-radius: 4px;
}
.pagination a:hover {
  color: #AE0C2A;
  background-color: #ffffff;
  border: 1px solid #AE0C2A;
}
.pagination div {
  display: inline-block;
  height: 40px;
  font-size: 16px;
  color: #333333;
  line-height: 40px;
}
.pagination div input {
  width: 40px;
  height: 40px;
  border: 1px solid #e6e6e6;
  margin: 0px 5px;
  font-size: 16px;
  text-align: center;
}
.pagination div input[type="button"] {
  width: 60px;
  background-color: #990000;
  border: 1px solid #990000;
  color: #ffffff;
  margin-left: 10px;
  cursor: pointer;
}

/* notice */

.noticeList {
  width: 100%;
  margin-top: 30px;
}
.noticeListDetail {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}
.noticeListDetail>a {
  display: flex;
  justify-content: space-between;
}
.noticeListDetail>a>h3 {
  display: inline-block;
  width: 80%;
  font-weight: 400;
  font-size: 16px;
  color: #111111;
  line-height: 39px;
  height: 39px;
  padding-left: 35px;
  background: url(../images/icon_notice_list_bg.png) no-repeat 0px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.noticeListDetail+.noticeListDetail {
  margin-top: 20px;
}
.noticeListDetail>a>span {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 39px;
  opacity: 0.6;
}
.noticeListDetail:after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #AE0B2A;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  transition: all .3s ease-out .1s;
  -webkit-transition: all .3s ease-out .1s;
  -moz-transition: all .3s ease-out .1s;
  -ms-transition: all .3s ease-out .1s;
  -o-transition: all .3s ease-out .1s;
}
.noticeListDetail:hover:after{
  width: 100%;
}
.noticeListDetail:hover h3 {
  background: url(../images/icon_notice_list_bg_h.png) no-repeat 0px;
  color: #AE0B2A;
}
.noticeListDetail ul li {
  list-style: none;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  color: #111111;
  line-height: 30px;
  padding-left: 35px;
  background: url(../images/icon_notice_list_bg.png) no-repeat 0px;
}
.noticeListDetail p {
  font-size: 16px;
  color: #111111;
  line-height: 30px;
  margin-bottom: 10px;
}
/* team */

.teamItem {
  width: 100%;
}
.teamList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}
.teamlistDetail {
  width: calc(100% - 51%);
  background-color: #ffffff;
  border:1px solid #ffffff;
}
.teamlistDetail>a {
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
.teamlistPic {
  width: 150px;
  height: 140px;
  overflow: hidden;
}
.teamlistText {
  width: calc(100% - 170px);
  padding-top: 10px;
}
.teamlistText>h3 {
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: #111111;
  line-height: 30px;
}
.teamlistText>p {
  font-weight: 400;
  font-size: 14px;
  color: #111111;
  line-height: 28px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 10px;
}
.teamlistDetail:hover {
  border: 1px solid #AE0B2A;
  background-color: rgba(246, 230, 233, 1);
}
.teamlistDetail:hover h3 {
  color: #AE0B2A;
}
.teamItem + .teamItem {
  margin-top: 20px;
}

/* intro */

.platformIntro>h3 {
  margin-bottom: 30px;
  margin-top: 30px;
}
.platformIntro p {
  font-weight: 400;
  font-size: 16px;
  color: #111111;
  line-height: 30px;
  margin-bottom: 10px;
  text-indent: 2em;
}

/* achieItem */

.achieItem {
  width: 100%;
}
.achieCase {
  width: 100%;
  margin-top: 30px;
}
.achieTitle {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: url(../images/icon_intro_title.png) no-repeat left / cover;
  display: flex;
  justify-content: space-between;
}
.achieTitle>h3 {
  display: inline-block;
  width: 80%;
  font-weight: bold;
  font-size: 20px;
  color: #222222;
  text-indent: 20px;
}
.achieTitle>a {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #AA0C29;
  line-height: 60px;
  background: url(../images/icon_case_title_more.png) no-repeat right;
  padding-right: 30px;
}
.achieTitle>a:hover {
  text-decoration-line: underline;
}
.achieBanner {
  margin-top: 40px;
}
.achieBanner,
.swiper_achie_banner {
  width: 100%;
  height: 420px;
}
.swiper_achie_box,
.swiper_achie_img {
  width: 100%;
  height: 100%;
}
.swiper_achie_text {
  width: 100%;
  height: 100px;
  background: url(../images/icon_achie_opacity.png) no-repeat bottom / cover;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 2;
}
.swiper_achie_text>h3 {
  display: block;
  font-weight: 600;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 40px;
  text-indent: 20px;
  width: 80%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 50px;
}
.swiper_achie_prev,
.swiper_achie_next {
  width: 40px;
  height: 50px;
  color: transparent;
}
.swiper_achie_prev {
  left: 0;
  background: url(../images/icon_achie_prev.png) no-repeat 0px;
}
.swiper_achie_next {
  right: 0px;
  background: url(../images/icon_achie_next.png) no-repeat 0px;
}

.achieNotice {
  width: 100%;
  margin-top: 40px;
}
.achieTitle {
  margin-bottom: 30px;
}

/* data */

.dataList {
  width: 100%;
}
.dataListPinned {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}
.dataListPinned>a {
  display: flex;
  justify-content: space-between;
}
.dataPinnedPic {
  width: 500px;
  height: 250px;
  overflow: hidden;
}
.dataPinnedPic>img {
  transition: all .3s ease-out .1s;
  -webkit-transition: all .3s ease-out .1s;
  -moz-transition: all .3s ease-out .1s;
  -ms-transition: all .3s ease-out .1s;
  -o-transition: all .3s ease-out .1s;
}
.dataListPinned:hover .dataPinnedPic>img {
  transform: scale(1.1,1.1);
  -webkit-transform: scale(1.1,1.1);
  -moz-transform: scale(1.1,1.1);
  -ms-transform: scale(1.1,1.1);
}
.dataPinnedText {
  width: calc(100% - 540px);
  padding-top: 15px;
}
.dataPinnedText>span {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
  padding: 3px 8px;
  background-color: RGBA(163, 11, 39, 1);
  border-radius: 5px;
}
.dataPinnedText>h3 {
  font-weight: bold;
  font-size: 20px;
  color: #111111;
  line-height: 39px;
  padding-left: 30px;
  background: url(../images/icon_core_title_first.png) no-repeat 0px;
  margin: 10px 0px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  height: 39px;
  overflow: hidden;
}
.dataPinnedText>p {
  font-weight: 400;
  font-size: 15px;
  color: #111111;
  line-height: 28px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 20px 0px;
}
.dataPinnedText>div>span {
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  color: #111111;
  line-height: 25px;
  padding-right: 10px;
}
.dataPinnedText>div>span+span {
  padding-left: 10px;
}
.dataPinnedText>div>i {
  font-style: normal;
  display: inline-block;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  background-color: rgba(174, 12, 42, 0.1);
  font-weight: 400;
  font-size: 15px;
  color: #AE0C2A;
  line-height: 25px;
  margin-right: 10px;
  border-radius: 50px;
}
.dataListPinned:hover .dataPinnedText h3 {
  color: #AE0B2A;
}
.datalistItem {
  width: 100%;
}
.dataListItemDetail {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dataListItemCont {
  width: calc(100% - 52%);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.dataListItemCont>a>h3 {
  display: block;
  font-weight: bold;
  font-size: 20px;
  color: #111111;
  line-height: 39px;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 39px;
  overflow: hidden;
}
.dataListItemCont>a>p {
  font-weight: 400;
  font-size: 15px;
  color: #111111;
  line-height: 28px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 10px 0px;
}
.dataListItemCont>a>div>span {
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  color: #111111;
  line-height: 25px;
  padding-right: 10px;
}
.dataListItemCont>a>div>span+span {
  padding-left: 10px;
}
.dataListItemCont>a>div>i {
  font-style: normal;
  display: inline-block;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  background-color: rgba(174, 12, 42, 0.1);
  font-weight: 400;
  font-size: 15px;
  color: #AE0C2A;
  line-height: 25px;
  margin-right: 10px;
  border-radius: 50px;
}
.dataListItemCont+.dataListItemCont+.dataListItemCont {
  margin-top: 20px;
}
.dataListItemCont>a:hover h3 {
  color: #AE0B2A;
}

/* lab */

.labBox {
  width: 100%;
  margin-top: 30px;
}
.labMenu {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}
.labNav {
  width: calc(100% - 75%);
  height: 80px;
  padding: 20px 10px;
  background-color: RGBA(244, 245, 247, 1);
  line-height: 24px;
  overflow: hidden;
  text-align: center;
}
.labNav>a {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #111111;
}
.labNav + .labNav {
  border-left: 1px solid rgba(206, 207, 211, 0.4);
}
.labNav + .labNav + .labNav + .labNav + .labNav  {
  border-top: 1px solid rgba(206, 207, 211, 0.4);
}
.labNav:nth-child(5),
.labNav:nth-child(9) {
  border-left: 0px;
}
.labNavAct {
  background-color: RGBA(167, 12, 40, 1);
}
.labNavAct>a {
  color: #ffffff !important;
}
.labNav:hover {
  background-color: RGBA(167, 12, 40, 1);
}
.labNav:hover a {
  color: #ffffff;
}
.labIntruduction {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.labIntroPic {
  display: none;
  width: 650px;
  height: 300px;
  overflow: hidden;
}
.labIntroText {
  width: 100%;
  padding-top: 40px;
}
.labIntroText>h3 {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: url(../images/icon_intro_title.png) no-repeat left / cover;
  font-weight: bold;
  font-size: 20px;
  color: #222222;
  text-indent: 20px;
}
.labIntroText p {
  font-weight: 400;
  font-size: 16px;
  color: #111111;
  line-height: 34px;
  margin-top: 20px;
}
.labTeam,
.labNotice {
  width: 100%;
  margin-top: 40px;
}
.labTeam .teamlistDetail {
  background-color: rgba(244, 245, 247, 1);
}
.labTeam .teamlistDetail+.teamlistDetail+.teamlistDetail {
  margin-top: 30px;
}
.labTeam .teamlistDetail:hover {
  background-color: rgba(246, 230, 233, 1);
}
.labTeamTap>h5 {
  display: block;
  font-weight: bold;
  font-size: 18px;
  color: #222222;
  line-height: 20px;
  margin: 20px 0px 20px 20px;
  border-left: 2px solid RGBA(174, 11, 42, 1);
  padding-left: 10px;
}

/* article */

.article {
  width: 100%;
  margin-top: 40px;
}
.articleTitle {
  padding-bottom: 30px;
  text-align: center;
  border-bottom: 1px solid rgba(206, 207, 211, 0.4);
}
.articleTitle>h3 {
  display: block;
  width: 100%;
  line-height: 36px;
  font-weight: bold;
  font-size: 20px;
  color: #222222;
}
.articleTitle>span {
  display: inline-block;
  font-size: 14px;
  color: #656565;
  margin-top: 10px;
}
.articleCont {
  width: 100%;
  margin-top: 30px;
}
.articleCont p {
  font-size: 16px;
  color: #222222;
  line-height: 30px;
  text-indent: 2em;
  margin-bottom: 20px;
}
.articleCont img {
  display: block;
  max-width: 80%;
  margin: 20px auto;
}
.articleCont table p {
  text-indent: 0em !important;
}
.articlePage {
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid #FFCDD6;
}
.articlePage>a {
  display: block;
  font-size: 14px;
  color: #333333;
  line-height: 40px;
  height: 40px;
  overflow: hidden;
  white-space: nowrap;  
  text-overflow: ellipsis;
  padding-left: 20px;
}

/* team article */

.teamArticle {
  width: 100%;
  margin-top: 40px;
}
.teamArticleTitle {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
}
.teamArticelPic {
  width: 150px;
  height: 140px;
  overflow: hidden;
}
.teamArticleText {
  width: calc(100% - 170px);
  padding-top: 10px;
}
.teamArticleText>h3 {
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: #AE0B2A;
  line-height: 30px;
}
.teamArticleText>p {
  font-weight: 400;
  font-size: 14px;
  color: #111111;
  line-height: 28px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 10px;
}
.teamArticleCont {
  width: 100%;
}
.teamArticleCont h3 {
  display: block;
  font-weight: bold;
  font-size: 18px;
  color: #222222;
  line-height: 20px;
  margin: 20px 0px 20px 0px;
  border-left: 2px solid RGBA(174, 11, 42, 1);
  padding-left: 10px;
}
.teamArticleCont p {
  font-size: 16px;
  color: #222222;
  line-height: 30px;
  text-indent: 2em;
  margin-bottom: 20px;
}