* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100vw;
  overflow-x: hidden;
}
.headerContainer {
  width: 100vw;
  height: 100px;
  background-color: #3D598F;
}
.headerContainer .header {
  width: 1200px;
  height: 100px;
  margin: 0 auto;
  background: url('imgs/logo_top.png') no-repeat;
  background-size: 484px 62px;
  background-position: 0 17px;
  position: relative;
}
.headerContainer .header .searchArea {
  position: absolute;
  top: 33px;
  right: 0;
  width: 162px;
  height: 34px;
  display: flex;
  border-radius: 17px;
  overflow: hidden;
  background-color: #E0E8F9;
}
.headerContainer .header .searchArea input {
  width: 134px;
  height: 34px;
  line-height: 34px;
  border: none;
  padding-left: 13px;
  font-size: 14px;
  border-top-left-radius: 17px;
  border-bottom-left-radius: 17px;
  background-color: #E0E8F9;
  color: #3D598F;
}
.headerContainer .header .searchArea ::-webkit-input-placeholder {
  color: #92A1BF;
}
.headerContainer .header .searchArea :-moz-placeholder {
  color: #92A1BF;
}
.headerContainer .header .searchArea ::-moz-placeholder {
  color: #92A1BF;
}
.headerContainer .header .searchArea :-ms-input-placeholder {
  color: #92A1BF;
}
.headerContainer .header .searchArea input:focus {
  outline: none;
  /*去掉默认input焦点边框*/
}
.headerContainer .header .searchArea .searchBtn {
  height: 34px;
  width: 28px;
  border-top-right-radius: 17px;
  border-bottom-right-radius: 17px;
  background: url('imgs/search.png') no-repeat;
  background-size: 14px 15px;
  background-position: left center;
  background-color: #E0E8F9;
}
.navContainer {
  width: 100vw;
  min-width: 1200px;
  background-color: #E0E8F9;
  height: 50px;
}
.navContainer .navBar {
  font-family: PingFang;
  width: 1200px;
  margin: 0 auto;
}
.navContainer .navBar li {
  list-style-type: none;
  position: relative;
}
.navContainer .navBar li .aTitle::before {
  content: '';
  position: absolute;
  height: 20px;
  border-left: 1px solid #3D598F;
  top: 15px;
  left: 0;
}
.navContainer .navBar li .lastA::after {
  content: '';
  position: absolute;
  height: 20px;
  border-left: 1px solid #3D598F;
  top: 15px;
  right: 0;
}
.navContainer .navBar li .aTitle:hover {
  border-bottom: 4px solid #3D598F;
}
.navContainer .navBar a {
  text-decoration: none;
  font-size: 16px;
  color: #3D598F;
  line-height: 50px;
  letter-spacing: 0.5px;
}
.navContainer .navBar .nav > li {
  position: relative;
  float: left;
  width: calc(1200px / 9);
  height: 50px;
  text-align: center;
}
.navContainer .navBar .nav li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 50px;
  color: #3D598F;
}
.navContainer .navBar .nav li ul li a {
  border: 1px solid #3165A3;
  border-top: none;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.navContainer .navBar .nav li ul {
  z-index: 9999;
  border-top: 1px solid #3165A3;
  background-color: #fff;
}
.navContainer .navBar .nav ul {
  display: none;
  position: absolute;
  left: 0;
  top: 55px;
  width: 100%;
}
.navContainer .navBar .nav ul li a:hover {
  background-color: #3D598F;
  color: #FFF;
}
.carouselContainer {
  width: 100vw;
  height: 500px;
  min-width: 1200px;
  background: url('imgs/texture1.png') no-repeat;
  background-size: cover;
  background-color: #f9f9f9;
}
.carouselContainer #mycarousel {
  width: 1200px;
  height: 500px;
  margin: 0 auto;
}
.carouselContainer #mycarousel .active {
  background-color: #3D598F;
}
.carouselContainer #mycarousel .carousel-inner {
  width: 1200px;
  height: 500px;
}
.carouselContainer #mycarousel .carousel-inner .carousel-item > a > img {
  width: 100%;
  height: 100%;
}
.newsCenter {
  width: 100vw;
  height: 434px;
  min-width: 1200px;
  background-color: #f9f9f9;
}
.newsCenter .newsInner {
  width: 1200px;
  height: 434px;
  margin: 0 auto;
  padding-top: 50px;
}
.newsCenter .newsInner .niTitle {
  font-size: 19px;
  font-weight: bold;
  color: #3D598F;
  letter-spacing: 0.5px;
  margin: 0 0 34px 0;
  position: relative;
}
.newsCenter .newsInner .niTitle::after {
  content: '';
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background-color: #3D598F;
  position: absolute;
  left: 0;
  top: 32px;
}
.newsCenter .newsInner .niContent {
  display: flex;
  width: 1200px;
  height: 300px;
}
.newsCenter .newsInner .niLeft {
  width: 550px;
  height: 300px;
}
.newsCenter .newsInner .niLeft #littlecarousel {
  width: 550px;
  height: 300px;
}
.newsCenter .newsInner .niLeft #littlecarousel .carousel-indicators {
  left: 250px;
  margin: 0;
  bottom: 10px;
}
.newsCenter .newsInner .niLeft #littlecarousel .carousel-indicators .active {
  background-color: #3D598F;
}
.newsCenter .newsInner .niLeft #littlecarousel .carousel-inner .carousel-item {
  width: 550px;
  height: 300px;
}
.newsCenter .newsInner .niLeft #littlecarousel .carousel-inner .carousel-item a > img {
  width: 100%;
  height: 100%;
}
.newsCenter .newsInner .niRight {
  margin-left: 45px;
}
.newsCenter .newsInner .niRight .nirTop {
  display: flex;
}
.newsCenter .newsInner .niRight .infoLeft {
  width: 280px;
  height: 130px;
  box-shadow: 0px 5px 9px 1px rgba(61, 89, 143, 0.05);
  background: url('imgs/flower.png') no-repeat;
  background-size: 140px 54px;
  background-position: right bottom;
  background-color: #fff;
  float:left;
}
.newsCenter .newsInner .niRight .infoLeft.infoRight{
	margin-left:45px;
}
.newsCenter .newsInner .niRight .infoLeft.infoBottom{
	margin-top:40px;
}
.newsCenter .newsInner .niRight .infoLeft .ilBorder {
  height: 2px;
  width: 280px;
  border-top: 6px solid #3D598F;
  border-bottom: 2px solid #3D598F;
  box-sizing: content-box;
}
.newsCenter .newsInner .niRight .infoLeft .ilContent {
  margin: 26px 30px 17px 24px;
  color: #323232;
  font-size: 15px;
  font-weight: bold;
}
.newsCenter .newsInner .niRight .infoLeft .ilMore {
  margin-left: 24px;
  margin-right: 30px;
  font-size: 15px;
   margin-bottom:10px;
}
.newsCenter .newsInner .niRight .infoLeft .ilMore a:nth-child(1) {
  color: #969696;
}
.newsCenter .newsInner .niRight .infoLeft .ilMore a:nth-child(2) {
  color: #3D598F;
}
.specialInform {
  width: 100vw;
  height: 410px;
  min-width: 1200px;
  background: url('imgs/texture2.png') no-repeat;
  background-size: cover;
  background-color: #F0F5FF;
}
.specialInform .informContainer {
  width: 1200px;
  height: 410px;
  margin: 0 auto;
  padding-top: 13px;
  display: flex;
}
.specialInform .informContainer .icLeft .icContent .recommend {
  width: 551px;
  height: 92px !important;
  box-shadow: 0px 5px 5px 0px rgba(61, 89, 143, 0.05);
  padding: 6px 15px 6px 5px;
  display: flex;
  background-color: #fff;
  margin-bottom: 12px;
}
.specialInform .informContainer .icLeft .icContent{
  height: 140px;
}
.specialInform .informContainer .icLeft .icContent .recommend img {
  width: 175px;
  height: 80px;
}
.specialInform .informContainer .icLeft .icContent .recommend .recommend-content {
  margin-left: 20px;
  width:330px;
}
.specialInform .informContainer .icLeft .icContent .recommend .recommend-content a:nth-child(1) {
  font-size: 16px;
  color: #323232;
  /* 文字显示三行，多余省略号表示 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* 将对象作为弹性伸缩盒子模型显示 */
  -webkit-box-orient: vertical;
  /* 从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式）*/
  -webkit-line-clamp: 1;
  /* 这个属性不是css的规范属性，需要组合上面两个属性，表示显示的行数 */
}
.specialInform .informContainer .icLeft .icContent .recommend .recommend-content a:nth-child(2) {
  margin-top: 18px;
  color: #969696;
  font-size: 12px;
  /* 文字显示三行，多余省略号表示 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* 将对象作为弹性伸缩盒子模型显示 */
  -webkit-box-orient: vertical;
  /* 从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式）*/
  -webkit-line-clamp: 2;
  /* 这个属性不是css的规范属性，需要组合上面两个属性，表示显示的行数 */
}
.specialInform .informContainer .ic-right {
  margin-left: 45px;
  width: 790px;
}
.specialInform .informContainer .ic-right .icr-content {
  height: 300px;
  box-shadow: 0px 5px 5px 0px rgba(61, 89, 143, 0.05);
  background-color: #fff;
}
.specialInform .informContainer .ic-right .icr-content .icr-border {
  box-sizing: content-box;
  width: 790px;
  height: 2px;
  border-top: 6px solid #3D598F;
  border-bottom: 2px solid #3D598F;
}
.specialInform .informContainer .ic-right .icr-content .icr-link {
  width: 790px;
  height: 290px;
  padding: 35px 39px 0 25px;
}
.specialInform .informContainer .ic-right .icr-content .icr-link .link-gap {
  margin-bottom: 30px;
}
.specialInform .informContainer .ic-right .icr-content .icr-link .link {
  position: relative;
}
.specialInform .informContainer .ic-right .icr-content .icr-link .link a {
  display: block;
}
.specialInform .informContainer .ic-right .icr-content .icr-link .link a:nth-child(1) {
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #323232;
}
.specialInform .informContainer .ic-right .icr-content .icr-link .link a:nth-child(2) {
  font-size: 14px;
  color: #3D598F;
  margin-top: 13px;
}
.specialInform .informContainer .ic-right .icr-content .icr-link .link a:nth-child(3) {
  position: absolute;
  right: 0;
  bottom: 9px;
  width: 453px;
  border-bottom: 1px solid #B9B9B9;
}
.ilContent {
  /* 文字显示三行，多余省略号表示 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* 将对象作为弹性伸缩盒子模型显示 */
  -webkit-box-orient: vertical;
  /* 从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式）*/
  -webkit-line-clamp: 2;
  /* 这个属性不是css的规范属性，需要组合上面两个属性，表示显示的行数 */
}
.ilContent a{
    color: #323232;
    font-size: 15px;
    font-weight: bold;
}
.allTitle {
  font-size: 19px;
  font-weight: bold;
  color: #3D598F;
  letter-spacing: 0.5px;
  margin: 0 0 34px 0;
  position: relative;
}
.allTitle::after {
  content: '';
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background-color: #3D598F;
  position: absolute;
  left: 0;
  top: 32px;
}
.donate-thanks {
  width: 100vw;
  height: 378px;
  background-color: #f9f9f9;
}
.donate-thanks .donate-container {
  width: 1200px;
  height: 378px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
}
.donate-thanks .donate-container .relate-left {
  width: 300px;
  position: relative;
}
.donate-thanks .donate-container .relate-left .relate-container {
	width: 364px;
    height: 215px;
    display: flex;
    background: url(../source/imgs/ntu_donate_bg.png);
    background-size: 100% 100%;
}
.specialInform .informContainer .icLeft .relate-left .relate-container {
    width: 364px;
   /* height: 95px;*/
    height:125px;
    display: flex;
    background: url(../source/imgs/ntu_donate_bg.png);
    background-size: 100% 100%;
}
.specialInform .informContainer .icLeft .relate-left .relate-container1 {
    width: 364px;
   /* height: 95px;*/
    height:120px;
    display: flex;
    background: url(../source/imgs/ntu_donate_bg2.png);
    background-size: 100% 100%;
	margin-top:20px;
}
.donate-thanks .donate-container .relate-left .relate-container .relate-links {
  width: calc(736px / 4);
  text-align: center;
  color: #3D598F;
  line-height: 300px;
}
.donate-thanks .donate-container .relate-left .relate-container a {
  display: block;
  font-size: 16px;
  color: #3D598F;
  letter-spacing: 0.5px;
  font-weight: 560;
}
.donate-thanks .donate-container .relate-left .relate-container .link-first {
  /*background: url('imgs/icons1.png') no-repeat;*/
  background-size: 57px 56px;
  background-position: center 55px;
}
.specialInform .informContainer .icLeft .relate-left .relate-container .link-first {
  /*background: url('imgs/icons1.png') no-repeat;*/
  background-size: 57px 56px;
  background-position: center 55px;
    text-align: center;
    color: #3D598F;
    line-height: 300px;
}
.specialInform .informContainer .icLeft .relate-left .relate-container1 .link-first {
  /*background: url('imgs/icons1.png') no-repeat;*/
  background-size: 57px 56px;
  background-position: center 55px;
    text-align: center;
    color: #3D598F;
    line-height: 300px;
}
.donate-thanks .donate-container .relate-left .relate-container .link-second {
  background: url('imgs/icons2.png') no-repeat;
  background-size: 56px 56px;
  background-position: center 55px;
}
.donate-thanks .donate-container .relate-left .relate-container .link-third {
  background: url('imgs/icons3.png') no-repeat;
  background-size: 46px 54px;
  background-position: center 54px;
}
.donate-thanks .donate-container .relate-left .relate-container .link-fourth {
  background: url('imgs/icons4.png') no-repeat;
  background-size: 53px 54px;
  background-position: center 54px;
}
.donate-thanks .donate-container .relate-left .relate-container .link-fourth {
  border: none;
}
/*.donate-thanks .donate-container .relate-left .relate-container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 76px;
  width: 6px;
  height: 171px;
  background-color: #3D598F;
  border-radius: 3px;
}*/
.donate-thanks .donate-container .thanks-right {
	margin-left: 88px;
}
.donate-thanks .donate-container .thanks-right .thanks-container {
  width: 364px;
  height: 215px;
  box-shadow: 0px 5px 5px 0px rgba(61, 89, 143, 0.05);
  background: url('imgs/texturelogo.png') no-repeat;
  background-size: 155px 156px;
  background-position: center 50px;
  background-color: #fff;
   overflow:hidden;
}
.donate-thanks .donate-container .thanks-right .thanks-container .thanks-border {
  box-sizing: content-box;
  border-top: 2px solid #3D598F;
  width: 364px;
  height: 2px;
  border-bottom: 1px solid #3D598F;
}
.donate-thanks .donate-container .thanks-right .thanks-container .table thead tr th {
  padding: 0;
  width: calc(364px / 3);
  text-align: center;
  font-size: 15px;
  height: 35px;
  line-height: 35px;
  border-color: #3D598F;
}
.donate-thanks .donate-container .thanks-right .thanks-container .table tbody tr td {
  padding: 0;
  text-align: center;
  font-size: 14px;
  height: 34px;
  line-height: 34px;
  border: none;
}
.bottom-banner {
  width: 100vw;
  height: 118px;
  background-color: #3D598F;
}
.bottom-banner .banner-container {
  width: 1200px;
  margin: 0 auto;
  height: 118px;
  background: url('imgs/logo_bottom.png') no-repeat;
  background-size: 487px 60px;
  background-position: left 33px;
  padding-top: 33px;
}
.bottom-banner .banner-container .bottom-links {
  margin-left: 620px;
}
.bottom-banner .banner-container .bottom-links div:nth-child(1) {
  font-size: 15px;
  color: #fff;
}
.bottom-banner .banner-container .bottom-links .link-line {
  margin-top: 10px;
}
.bottom-banner .banner-container .bottom-links .link-line a {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  height: 15px;
  line-height: 15px;
  width: 75px;
  border-right: 1px solid #fff;
}
.bottom-banner .banner-container .bottom-links .link-line a:last-child(1) {
  border: none;
}
.bottom-banner .banner-container .bottom-links .link-line .not-first {
  margin-left: 15px;
}
.bottom-banner .banner-container .bottom-links .link-line .last {
  border: none;
}
.donate-roll-up{
	animation: rollup-38 1s forwards;
	-moz-animation: rollup-38 1s forwards;
	-webkit-animation: rollup-38 1s forwards;
	-o-animation: rollup-38 1s forwards; 
}
@keyframes rollup-38
{
	from {margin-top: 0px;}
	to {margin-top: -34.29px;}
}

@-moz-keyframes rollup-38 
{
	from {margin-top: 0px;}
	to {margin-top: -34.29px;}
}

@-webkit-keyframes rollup-38 
{
	from {margin-top: 0px;}
	to {margin-top: -34.29px;}
}

@-o-keyframes rollup-38
{
	from {margin-top: 0px;}
	to {margin-top: -34.29px;}
}
