@charset "utf-8";

body {
  overflow-x: hidden;
}

@font-face {
  font-family: Source Han Serif CN-Bold;
  src:
    url('../fonts/sySong.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: Source Han Serif CN-Regular;
  src:
    url('../fonts/SOURCEHANSERIFCN-REGULAR.OTF');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: Butler-Regular;
  src:
    url('../fonts/zt.OTF');
  font-weight: normal;
  font-style: normal;
}

h3,
h4 {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin: 0;
}

.pic {
  padding-top: 75%;
  position: relative;
  overflow: hidden;
}

.pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  transition: all 1s;
}

.pich:hover .pic img {
  transform: scale(1.1);
}

.pic::before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  opacity: 0.25;
  pointer-events: none;
  background: -webkit-linear-gradient(left,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 53) 50%,
      rgba(255, 255, 255, 0) 70%);
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 53) 50%,
      rgba(255, 255, 255, 0) 70%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 3;
}

.pich:hover .pic:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.pic div.a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  transition: all 0.8s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.pich:hover .pic div.a {
  width: 110%;
  height: 110%;
}


.line1 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.line2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.line3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.line4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.slick-prev::before,
.slick-next::before {
  content: none;
}

.slick-slider {
  margin-bottom: 0;
}

a:hover,
a:focus {
  color: #660774;
}

.teacher-banner {
  text-align: center;
}

/* 分页 */
.fixed-bottom {
  position: fixed;
  bottom: 0;
  width: 100%;
}

.pagination {
  display: block;
  text-align: center;
  font-size: 0;
  padding-top: 27px;
  margin: 0;
}

.pagination a {
  display: inline-block;
  border: 1px solid rgba(102, 9, 117, 0.3);
  border-radius: 2px;
  padding: 0 12px;
  height: 35px;
  font-size: 14px;
  line-height: 35px;
  text-align: center;
  color: #666;
  margin: 0 7px;
}

.pagination a.active {
  background: linear-gradient(147deg, #660874 25%, #e5007f 119%);
  color: #fff;
  border: 1px solid rgba(102, 9, 117, 0.3);
}

.pagination a:hover {
  background: linear-gradient(147deg, #660874 25%, #e5007f 119%);
  color: #fff;
  border: 1px solid rgba(102, 9, 117, 0.3);
}

.pagination span {
  display: inline-block;
  font-size: 14px;
}

/* 主体 */
.nymain {
  position: relative;
  padding-top: 113px;
  padding-bottom: 140px;
  background: url(../images/main-bg.png) no-repeat center bottom / 100% auto;
}

.nymain .leftNav {
  float: left;
  width: 215px;
  height: 520px;
  position: relative;
  background: url(../images/left-bg.png) no-repeat center top / 100% auto;
  padding: 55px 0;
  font-family: Source Han Serif CN-Regular;
  margin-top: 90px;
}

.nymain .leftNav>h2 {
  line-height: 80px;
  color: #fff;
  font-size: 24px;
  font-weight: normal;
  overflow: hidden;
  text-align: center;
}

.nymain .leftNav>ul {}

.nymain .leftNav>ul>li {
  position: relative;
}

.nymain .leftNav>ul>li::before {
  /* content: ""; */
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-left: 3px solid #1050BB;
  transform: scaleY(0);
  z-index: 1;
  transition: all 0.3s;
}

.nymain .leftNav>ul>li:first-child {
  border-top: none;
}

.nymain .leftNav>ul>li>a {
  position: relative;
  z-index: 1;
  padding: 15px 10px;
  text-align: center;
}

.nymain .leftNav>ul>li>a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.2;
  z-index: -1;
  transition: all 0.5s;
}

.nymain .leftNav>ul>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.2;
}

.nymain .leftNav>ul>li:last-child>a::after {
  content: none;
}

.nymain .leftNav>ul>li.on>a::before,
.nymain .leftNav>ul>li.active>a::before {
  width: 100%;
}

.nymain .leftNav ul li a {
  display: block;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: normal;
  color: #FFFFFF;
  line-height: 34px;
}

.nymain .leftNav>ul>li.on>a,
.nymain .leftNav>ul>li.on:hover>a {
  color: #fff;
  font-weight: bold;
}

.nymain .leftNav>ul>li:hover>a {
  font-weight: bold;
}

.nymain .leftNav>ul>li.on::before,
.nymain .leftNav>ul>li:hover::before {
  transform: none;
}

.nymain .leftNav>ul>li.active>a {
  color: #fff;
  font-weight: bold;
}

.nymain .leftNav>ul>li>span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 56px;
  background: url(../images/left-sj1.png) no-repeat center;
  background-size: 11px 6px;
  z-index: 9;
  cursor: pointer;
  transition: all 0.5s;
}

.nymain .leftNav>ul>li.on>span,
.nymain .leftNav>ul>li.active>span {
  transform: rotate(-180deg);
  background-image: url(../images/left-sj2.png);
}

.nymain .leftNav ul li.active ul {
  display: block;
}

.nymain .leftNav>ul>li>ul {
  display: none;
  padding-top: 10px;
}

.nymain .leftNav>ul>li>ul>li>a {
  font-size: 15px;
  line-height: 26px;
  padding: 7px 10px;
  text-align: center;
  color: #787878;
}

.nymain .leftNav>ul>li>ul>li:hover a,
.nymain .leftNav>ul>li>ul>li.on a {
  color: #1050BB;
  font-weight: 600;
}

.ny-right {
  float: right;
  width: calc(100% - 275px);
  min-height: 550px;
}

.x-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.x-title .tit-c {
  display: flex;
  align-items: center;
}

.x-title .tit-c .icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(148deg, #6608741a 13%, #66087400 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 11px;
  margin-top: 10px;
}

.x-title .tit-c .icon::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 35px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: linear-gradient(148deg, #d9153000 13%, #d9153033 88%);
}

.x-title .tit-c .icon img {
  display: block;
  height: 34px;
}

.x-title .tit-c .r {}

.x-title .tit-c .r h3 {
  font-family: Source Han Serif CN-Bold;
  font-size: 36px;
  font-weight: bold;
  line-height: normal;
  letter-spacing: normal;
  color: #660874;
  background-image: -webkit-linear-gradient(0deg, #660874 30%, #e5007f 107%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0;
  margin-bottom: 0;
}

.x-title .tit-c .r p {
  font-family: Source Han Serif CN-Regular;
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: normal;
  color: #660774;
  opacity: 0.6;
  margin-bottom: 0;
}

.x-title .more {}

.x-title .more a {
  display: block;
  font-family: Source Han Serif CN-Regular;
  font-size: 18px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #660774;
  background: url(../images/more1.png) no-repeat right center / 22px auto;
  padding-right: 26px;
  transition: all 0.5s;
}

.x-title .more a:hover {
  transform: translateX(5px);
}

.position>div {
  position: relative;
  text-align: right;
  font-size: 0;
  line-height: 50px;
  padding-bottom: 10px;
  border-bottom: 1px solid #D8D8D8;
}

.position>div::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: -6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 1px solid #BFBFBF;
}

.position h3 {
  position: absolute;
  font-size: 28px;
  font-weight: normal;
  color: #2C2C2C;
  text-align: left;
  top: 0;
  left: 0;
  background: url(../images/ny-r1.png) no-repeat left center;
  background-size: 4px auto;
  padding-left: 22px;
}


.position span {
  color: #626262;
  font-size: 16px;
  vertical-align: middle;
}

.position img {
  height: 16px;
  vertical-align: middle;
  margin-right: 10px;
}

.position a {
  font-size: 16px;
  color: #626262;
  margin: 0 6px;
  vertical-align: middle;
}

.position a:last-child {
  margin-right: 0;
}

.position a:hover,
.position a.active {
  color: #1050BB;
}

/* 内容页 */
.art-main .art-tit h3 {
  text-align: center;
  color: #333;
  font-weight: normal;
  font-size: 24px;
  font-weight: 600;
  margin-top: 36px;
}

.art-main .art-body {
  padding-top: 30px;
}

.art-main .art-body p,
.art-main .art-body p * {
  color: #333333;
  text-indent: 2em;
  font-family: "微软雅黑" !important;
  font-size: 18px !important;
  line-height: 2 !important;
  margin-bottom: 25px;
}

.art-main .art-body p strong {
  font-weight: bold;
}

.art-main .art-body img,
.art-main .art-body video {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 10px auto;
}

.art-main .art-body iframe {
  max-width: 100% !important;
  display: block;
  margin: 10px auto !important;
}

.art-main .art-body table {
  max-width: 100%;
  margin: 0 auto !important;
  border-collapse: collapse;
  float: none;
}

.art-main .art-body table td {
  padding: 5px 10px;
  line-height: 30px;
  border: 1px #ddd solid;
}

.art-main .art-body table td p {
  text-indent: 0em !important;
  margin-bottom: 0px !important;
}

.art-main .cont-tit p {
  font-size: 0;
  text-align: center;
  background: #f5f5f5;
  margin-top: 24px;
  padding: 5px 10px;
}

.art-main .cont-tit p img {
  display: inline-block;
  vertical-align: middle;
  height: 16px;
  margin-right: 5px;
}

.art-main .cont-tit p span {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #999;
  margin: 5px 15px;
}

.art-main .cont-tit p span a:hover {
  color: #1050BB;
  font-weight: 600;
}

.art-info {
  border-top: 1px dashed #e0e0e0;
  margin-top: 25px;
}

.pnext {
  margin-top: 25px;
}

.pnext p {
  text-indent: initial;
  line-height: 34px;
  color: #555555;
  font-size: 18px;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.pnext p a {
  color: #555555;
}

.pnext p:hover {
  /* color: #96632C; */
}

.pnext p:hover a {
  color: #1050BB;
}

/* 新闻动态 */
.newsbox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.newsbox .jdt {
  width: 550px;
  margin-right: 34px;
  position: relative;
}

.newsbox .jdt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 347px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: -1;
}

.newsbox .jdt ul li a {
  display: block;
}

.newsbox .jdt ul li a .pic {
  padding-top: 347px;
}

.newsbox .jdt ul li a .pic::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.5;
}

.newsbox .jdt ul li a .tx {
  padding-top: 20px;
}

.newsbox .jdt ul li a .tx span {
  display: block;
  font-family: Butler-Regular;
  font-size: 36px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #660874;
  background-image: -webkit-linear-gradient(0deg, #660874 30%, #e5007f 107%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.newsbox .jdt ul li a .tx h3 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: normal;
  line-height: 30px;
  height: 60px;
  letter-spacing: normal;
  transition: all 0.5s;
}

.newsbox .jdt .slick-prev,
.newsbox .jdt .slick-next {
  top: auto;
  transform: none;
  bottom: 159px;
  margin-top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.5s;
  z-index: 1;
}

.newsbox .jdt .slick-prev {
  left: auto;
  right: 88px;
  background-image: url(../images/jdt-prev.png);
}

.newsbox .jdt .slick-next {
  right: 20px;
  background-image: url(../images/jdt-next.png);
}

.newsbox .jdt .slick-prev:hover {
  background-image: url(../images/jdt-prev2.png);
}

.newsbox .jdt .slick-next:hover {
  background-image: url(../images/jdt-next2.png);
}

.news-r {
  flex: 1;
  min-width: 0;
}

.news-r ul li a {
  display: block;
  padding: 15px 0;
  border-top: 1px solid #D8D8D8;
  transition: all 0.5s;
}

.news-r ul li:first-child a {
  border-top: 0;
}

.news-r ul li a h3 {
  font-size: 20px;
  font-weight: normal;
  line-height: 30px;
  height: 60px;
  letter-spacing: normal;
}

.news-r ul li a span {
  display: block;
  font-family: Source Han Serif CN-Regular;
  font-size: 19px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #999999;
  margin-top: 10px;
}

/* 活动公共 */
.notices {}

.notices ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.notices ul li {
  width: 47.68%;
  margin-bottom: 30px;
}

.notices ul li a {
  display: block;
  background: rgba(92, 48, 127, 0.06);
  padding: 17px 32px;
  position: relative;
}

.notices ul li a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(179deg, #660874 20%, #e5007f 130%);
  transition: all 0.5s;
}

.notices ul li a span {
  display: flex;
  align-items: center;
  font-family: Source Han Serif CN-Regular;
  font-size: 18px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #660874;
  background-image: -webkit-linear-gradient(0deg, #660874 30%, #e5007f 107%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.notices ul li a span img {
  display: block;
  margin-right: 9px;
}

.notices ul li a h3 {
  font-size: 18px;
  font-weight: normal;
  line-height: 26px;
  height: 52px;
  letter-spacing: normal;
  margin-top: 12px;
  transition: all 0.5s;
}

/* 百年回顾 */
.bnhg {
  padding-bottom: 20px;
  background: url(../images/bnhg-bg.png) no-repeat center bottom / 100% 48px;
}

.bnhg .slick-track {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.bnhg ul li {
  position: relative;
}

.bnhg ul li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 37px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(147deg, #660874 25%, #e5007f 119%);
  pointer-events: none;
}

.bnhg ul li a {
  display: block;
  padding-left: 20px;
  padding-right: 55px;
  position: relative;
  margin-left: 40px;
  transition: all 0.5s;
}

.bnhg ul li a::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 2px;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #660774 0%, rgba(102, 7, 116, 0) 100%);
  pointer-events: none;
}

.bnhg ul li a::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #660774;
  pointer-events: none;
}

.bnhg ul li.slick-current a {
  height: 360px;
}

.bnhg ul li.slick-current+li a {
  height: 420px;
}

.bnhg ul li.slick-current+li+li a {
  height: 480px;
}

.bnhg ul li a .date {
  padding-bottom: 10px;
  position: relative;
}

.bnhg ul li a .date::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, #660874 32%, #e5007f 103%);
}

.bnhg ul li a .date b {
  font-family: Butler-Regular;
  font-size: 36px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #660874;
  background-image: -webkit-linear-gradient(0deg, #660874 30%, #e5007f 107%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 6px;
}

.bnhg ul li a .date span {
  font-family: Source Han Sans CN-Regular;
  font-size: 14px;
  font-weight: normal;
  line-height: 32px;
  letter-spacing: normal;
  background: linear-gradient(156deg, #660874 23%, #e5007f 123%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.bnhg ul li a p {
  margin-top: 18px;
  font-family: Source Han Sans CN-Regular;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: normal;
  color: #333;
  overflow: hidden;
}

.bnhg ul li.slick-current a p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  max-height: 72px;
}

.bnhg ul li.slick-current+li a p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  max-height: 144px;
}

.bnhg ul li.slick-current+li+li a p {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  max-height: 192px;
}

.bnhg ul li a .picc {
  margin-top: 10px;
}

.bnhg ul li a .picc img {
  display: block;
  max-width: 100%;
}


.bnhg .slick-prev,
.bnhg .slick-next {
  top: auto;
  transform: none;
  bottom: 60px;
  margin-top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.5s;
  z-index: 1;
}

.bnhg .slick-prev {
  left: auto;
  right: 70px;
  background-image: url(../images/jdt-prev3.png);
}

.bnhg .slick-next {
  right: 0;
  background-image: url(../images/jdt-next3.png);
}

.bnhg .slick-prev:hover {
  background-image: url(../images/jdt-prev2.png);
}

.bnhg .slick-next:hover {
  background-image: url(../images/jdt-next2.png);
}

/* 校友风采 */
.xyfc .slick-slider {
  padding-bottom: 116px;
}

.xyfc ul li a {
  display: block;
  padding: 0 10px;
}

.xyfc ul li a .pic {
  width: 278px;
  height: 278px;
  margin: 0 auto;
  padding-top: 0;
  border-radius: 50%;
  background: transparent;
  transition: all 0.5s;
}

.xyfc ul li a .pic .a {
  border-radius: 50%;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}

.xyfc ul li a .tx {
  text-align: center;
  padding-top: 13px;
}

.xyfc ul li a .tx h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  letter-spacing: normal;
  color: #373737;
  transition: all 0.5s;
}

.xyfc ul li a .tx p {
  font-size: 18px;
  font-weight: normal;
  line-height: 26px;
  text-align: center;
  letter-spacing: normal;
  color: #373737;
  margin-top: 10px;
  transition: all 0.5s;
}

.xyfc .slick-prev,
.xyfc .slick-next {
  top: auto;
  transform: none;
  bottom: 0;
  margin-top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.5s;
  z-index: 1;
}

.xyfc .slick-prev {
  left: auto;
  right: 50%;
  margin-right: 10px;
  background-image: url(../images/jdt-prev3.png);
}

.xyfc .slick-next {
  right: auto;
  left: 50%;
  margin-left: 10px;
  background-image: url(../images/jdt-next3.png);
}

.xyfc .slick-prev:hover {
  background-image: url(../images/jdt-prev2.png);
}

.xyfc .slick-next:hover {
  background-image: url(../images/jdt-next2.png);
}

/* 联系我们 */
.lxwm {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.lxwm-l {
  width: 362px;
  margin-right: 78px;
}

.lxwm-l img {
  display: block;
  width: 100%;
}

.lxwm-r {
  flex: 1;
  min-width: 0;
}

.lxwm-r .t p {
  font-size: 18px;
  font-weight: normal;
  line-height: 36px;
  letter-spacing: normal;
}

.lxwm-r .t p img {
  vertical-align: middle;
  margin-right: 15px;
}

.lxwm-r .t+.t {
  margin-top: 26px;
  padding-top: 26px;
  position: relative;
}

.lxwm-r .t+.t::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: url(../images/lxwm-x.png) no-repeat center center / 100% 100%;
}

.lxwm-r .b {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.lxwm-r .b p {
  font-size: 24px;
  font-weight: normal;
  line-height: 30px;
  text-align: center;
  letter-spacing: normal;
  color: #660874;
  background-image: -webkit-linear-gradient(0deg, #660874 30%, #e5007f 107%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 44px;
}

.lxwm-r .b img {
  display: block;
  width: 118px;
}

/* 我要捐赠 */
.wyjz {}

.wyjz>h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  letter-spacing: normal;
  text-align: center;
  color: #660874;
  background-image: -webkit-linear-gradient(0deg, #660874 30%, #e5007f 107%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 38px;
}

.wyjz .con::-webkit-scrollbar {
  width: 6px;
  height: 8px;
}


.wyjz .con::-webkit-scrollbar-track {
  border-radius: 10px;
  border-radius: 30px;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px 0px rgba(106, 8, 117, 0.3);
}


.wyjz .con::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(179deg, #660874 20%, #e5007f 130%);
}

.wyjz .con p {
  font-size: 18px;
  font-weight: normal;
  line-height: 36px;
  /* text-transform: uppercase; */
  letter-spacing: normal;
  text-indent: 2em;
  margin-bottom: 30px;
}

.wyjz .con p.text0 {
  text-indent: 0;
}

.wyjz .con .txt {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 20px;
}

.wyjz .con .txt h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 36px;
  text-transform: uppercase;
  letter-spacing: normal;
  color: #660874;
  background-image: -webkit-linear-gradient(0deg, #660874 30%, #e5007f 107%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding-left: 15px;
  margin-right: 14px;
}

.wyjz .con .txt h4::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 3px;
  height: 26px;
  background: linear-gradient(90deg, #660874 32%, #e5007f 103%);
}

.wyjz .con .txt::after {
  flex: 1;
  min-width: 0;
  content: '';
  display: block;
  opacity: 0.5;
  border-top: 0.5px solid #A36AAC;
}

.jzsm {
  display: flex;
  align-items: center;
}

.jzsm>img {
  display: block;
  margin-right: 38px;
}

.jzsm .r {
  flex: 1;
  min-width: 0;
}

.jzsm .r p {
  text-indent: 0;
  margin-bottom: 0;
}

.jzsm .r p+p {
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #666666;
  margin-top: 13px;
}

.jzsm2 {}

.jzsm2 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px;
}

.jzsm2 ul li {
  width: 33.333%;
  margin-top: 50px;
}

.jzsm2 ul li .k {
  margin: 0 25px;
}

.jzsm2 ul li .tx {
  height: 70px;
  background: #FFFFFF;
  border: 1px solid #D1B5D6;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  position: relative;
}

.jzsm2 ul li .tx::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -11px;
  width: 11px;
  height: 26px;
  background: url(../images/jz-jt.png) no-repeat center center / 100% 100%;
}

.jzsm2 ul li .tx p {
  font-size: 16px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  margin-bottom: 0;
  text-indent: 0;
}

.jzsm2 ul li .k>img {
  display: block;
  width: 100%;
}

.jzsm2 ul li:nth-child(3)~li .tx {
  height: 166px;
}

.jzsm2 ul li:nth-child(7) {
  width: 100%;
}

.jzsm2 ul li:nth-child(7) .k {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.jzsm2 ul li:nth-child(7) .k .l {
  width: 288px;
  margin-right: 54px;
}

.jzsm2 ul li:nth-child(7) .k .l .txb p {
  margin-top: 60px;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  letter-spacing: normal;
  color: #666666;
  text-indent: 0;
}

.jzsm2 ul li:nth-child(7) .k>img {
  display: block;
  width: 391px;
}

.jzsm3 {
  margin-top: 132px;
  padding-top: 54px;
  border-top: 1px dashed rgba(163, 106, 172, 0.5);
}

.wyjz .con .jzsm3 p {
  text-indent: 0;
  margin-bottom: 0;
}

.wyjz .con .jzsm3 .box {
  margin: 30px 0;
}

.wyjz .con .jzsm3 .box p img {
  vertical-align: middle;
  margin-right: 20px;
}


@media (min-width: 1025px) {
  .newsbox .jdt ul li:hover a .tx h3 {
    font-weight: bold;
    color: #660874;
    background-image: -webkit-linear-gradient(0deg, #660874 30%, #e5007f 107%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .news-r ul li:hover a {
    padding: 15px 30px;
    background: url(../images/news-libg.jpg) no-repeat center center / cover;
  }

  .news-r ul li:hover a h3 {
    font-weight: bold;
    color: #fff;
  }

  .news-r ul li:hover a span {
    color: #fff;
  }

  .notices ul li:hover a h3 {
    font-weight: bold;
    color: #660874;
    background-image: -webkit-linear-gradient(0deg, #660874 30%, #e5007f 107%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .xyfc ul li:hover a .pic {
    background: linear-gradient(147deg, #660874 25%, #e5007f 119%);
  }

  .xyfc ul li:hover a .tx h3,
  .xyfc ul li:hover a .tx p {
    color: #660874;
    background-image: -webkit-linear-gradient(0deg, #660874 30%, #e5007f 107%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .wyjz .con {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 30px;
  }
}


@media (max-width: 1279px) {
  .nymain {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .container {
    width: auto !important;
  }

  .nymain .leftNav {
    margin-top: 25px;
  }

  .xyfc ul li a .pic {
    width: 240px;
    height: 240px;
  }

  .lxwm-l {
    margin-right: 36px;
  }
}

@media screen and (max-width: 1024px) {
  .nymain {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .nymain .leftNav>h2 {
    font-size: 24px;
    padding-left: 20px;
    line-height: 70px;
  }

  .nymain .leftNav>ul>li::before {
    border-left-width: 2px;
  }

  .ny-right {
    width: calc(100% - 255px);
  }

  .position>div {
    line-height: 50px;
  }

  .position h3 {
    font-size: 22px;
  }

  .position h3::after {
    height: 2px;
  }

  .pagination {
    padding-top: 20px;
  }

  .sjtw ul li a .tw-tx {
    width: calc(100% - 80px);
  }

  .list-ld ul li a::before,
  .list-ld ul li a::after {
    content: none;
  }

  .list-ld ul li .sz-pic {
    margin: 0 auto;
  }

  .list-ld ul li {
    margin-top: 30px;
  }

  .list-ld ul li a {
    display: block;
    padding-top: 20px;
  }

  .list-ld ul li .sz-tx {
    flex: none;
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }

  .list-ld ul li h3 {
    text-align: center;
  }

  .list-ld ul li h3 b {
    font-size: 20px;
    margin-right: 25px;
  }

  .sz-ty {
    padding-left: 50px;
  }

  .newsbox {
    flex-direction: column;
  }

  .newsbox .jdt {
    width: 100%;
    margin-right: 0;
  }

  .newsbox .jdt::after {
    height: 60%;
  }

  .newsbox .jdt ul li a .pic {
    padding-top: 63.09%;
  }

  .news-r ul li a h3 {
    height: auto;
  }

  .bnhg ul li a {
    padding-right: 10px;
  }

  .bnhg .slick-prev,
  .bnhg .slick-next {
    bottom: 40px;
  }

  .xyfc ul li a .pic {
    width: 180px;
    height: 180px;
  }

  .lxwm-r .b p {
    font-size: 20px;
    margin-right: 20px;
  }

  .lxwm-r .b img {
    width: 90px;
  }
}

@media screen and (max-width:920px) {
  .nymain .leftNav>h2 {
    height: inherit;
    line-height: 56px;
    font-size: 22px;
    text-align: left;
    padding-left: 15px;
    font-weight: 600;
    background: #1050BB;
  }

  .nymain .leftNav>h2::before,
  .nymain .leftNav>h2::after {
    display: none;
  }

  .nymain .leftNav>h2 span {
    float: right;
    width: 50px;
    height: 56px;
    background: url(../images/sub_left_down2.png) no-repeat center center;
    background-size: 14px 14px;
    cursor: pointer;
  }

  .nymain {
    padding-top: 15px;
    padding-bottom: 20px;
  }

  .nymain .leftNav {
    float: none;
    width: auto;
    background: linear-gradient(180deg, #5e1366 -4%, #e5007f 100%);
    margin-top: 0;
    padding: 10px;
    height: auto;
  }

  .nymain .leftNav>p {
    font-size: 18px;
    padding: 10px 0;
  }

  .nymain .leftNav>ul::before {
    background: #fff;
  }

  .nymain .leftNav>ul>li>a>span {
    top: 25px;
  }

  .nymain .leftNav>ul>li>ul>li>a {
    padding-left: 0;
    font-size: 18px;
  }

  .nymain .leftNav>ul>li>ul>li>a::after {
    left: -15px;
  }

  .nymain .leftNav ul {
    display: flex;
    flex-wrap: wrap;
  }

  .nymain .leftNav>ul>li {
    width: 33.333%;
  }

  .nymain .leftNav>ul>li>a {
    display: block;
    font-size: 18px;
    line-height: 30px;
    padding: 8px;
  }

  .nymain .leftNav>ul>li:last-child>a::after {
    content: ''
  }

  .nymain .leftNav>ul>li>ul {
    padding: 15px 0 15px 34px;
  }

  .ny-right {
    float: none;
    width: auto;
    margin-top: 20px;
  }

  .x-title {
    margin-bottom: 20px;
  }

  .x-title .tit-c .icon {
    width: 40px;
    height: 40px;
    margin-top: 5px;
    margin-right: 6px;
  }

  .x-title .tit-c .icon img {
    height: 22px;
  }

  .x-title .tit-c .icon::before {
    top: 25px;
    left: 25px;
    width: 15px;
    height: 15px;
  }

  .x-title .tit-c .r h3 {
    font-size: 24px;
  }

  .x-title .tit-c .r p {
    font-size: 12px;
  }

  .x-title .more a {
    font-size: 14px;
    background-size: 16px auto;
    padding-right: 20px;
  }

  .position {
    padding: 16px 0;
    margin-top: 0;
    margin-bottom: 0;
  }

  .position>div {
    text-align: left;
    line-height: 22px;
    padding-bottom: 10px;
  }

  .position h3 {
    left: 0;
    width: auto;
    height: 45px;
    font-size: 20px;
    line-height: 45px;
    position: relative;
    left: 0;
    margin-bottom: 10px;
    font-weight: 600;
    display: none;
  }

  .position h3::after {
    width: 37px;
    height: 37px;
    right: -10px;
    bottom: -15px;
  }

  .pagination {
    padding-top: 20px;
  }

  .pnext {
    float: none;
    border: none;
    width: auto;
  }

  .nymain .leftNav>h2 img {
    height: 20px;
  }

  .art-main .art-body {
    padding-top: 20px;
  }


  .xz-list-t ul li .pic {
    width: 220px;
    height: 147px;
  }

  .newsbox .jdt ul li a .tx {
    padding-top: 10px;
  }

  .newsbox .jdt ul li a .tx span {
    font-size: 20px;
  }

  .newsbox .jdt ul li a .tx h3 {
    font-size: 16px;
    line-height: 26px;
    height: 52px;
  }

  .newsbox .jdt .slick-prev,
  .newsbox .jdt .slick-next {
    bottom: 105px;
    width: 36px;
    height: 36px;
  }

  .newsbox .jdt .slick-prev {
    right: 56px;
  }

  .newsbox .jdt .slick-next {
    right: 10px;
  }

  .news-r {
    margin-top: 10px;
  }

  .news-r ul li a h3 {
    font-size: 16px;
    line-height: 26px;
  }

  .news-r ul li a span {
    font-size: 14px;
  }

  .news-r ul li a {
    padding: 10px 0;
  }

  .notices ul li {
    margin-bottom: 20px;
  }

  .notices ul li a {
    padding: 10px 20px;
  }

  .notices ul li a span {
    font-size: 14px;
  }

  .notices ul li a h3 {
    font-size: 16px;
    margin-top: 10px;
  }

  .bnhg .slick-prev,
  .bnhg .slick-next {
    width: 36px;
    height: 36px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .bnhg .slick-prev {
    left: -10px;
    right: auto;
  }

  .bnhg .slick-next {
    right: -10px;
  }

  .bnhg .slick-slider {
    padding: 0 20px;
  }

  .bnhg ul li::after {
    left: 12px;
  }

  .bnhg ul li a {
    margin-left: 15px;
    padding-bottom: 60px;
    height: auto !important;
  }

  .bnhg ul li a .date {
    padding-bottom: 2px;
  }

  .bnhg ul li a .date b {
    font-size: 24px;
  }

  .bnhg ul li a .date::after {
    width: 35px;
  }

  .bnhg ul li a p {
    margin-top: 10px;
  }

  .xyfc .slick-slider {
    padding-bottom: 60px;
  }

  .xyfc ul li a .tx h3 {
    font-size: 16px;
  }

  .xyfc ul li a .tx p {
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.2;
  }

  .xyfc ul li a .pic .a {
    width: 100%;
    height: 100%;
  }

  .xyfc .slick-prev,
  .xyfc .slick-next {
    width: 36px;
    height: 36px;
  }

  .lxwm-r .t p {
    font-size: 16px;
    line-height: 26px;
  }

  .lxwm-r .t+.t {
    margin-top: 20px;
    padding-top: 20px;
  }

  .lxwm-r .t p img {
    width: 16px;
    margin-right: 10px;
  }

  .lxwm-r .b {
    margin-top: 25px;
  }

  .lxwm-r .b p {
    font-size: 18px;
  }

  .wyjz>h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .wyjz .con p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  .wyjz .con .txt h4 {
    font-size: 18px;
    padding-left: 12px;
  }

  .wyjz .con .txt h4::before {
    height: 20px;
    width: 2px;
  }

  .jzsm>img {
    width: 100px;
    margin-right: 20px;
  }

  .jzsm .r p+p {
    margin-top: 0;
  }

  .jzsm2 ul li {
    margin-top: 20px;
  }

  .jzsm2 ul {
    margin: 0 -10px;
  }

  .jzsm2 ul li .k {
    margin: 0 10px;
  }

  .jzsm2 ul li .tx p {
    font-size: 14px;
  }

  .jzsm2 ul li .tx {
    padding: 0 10px;
    margin-bottom: 10px;
  }

  .jzsm3 {
    margin-top: 30px;
    padding-top: 20px;
  }

  .wyjz .con .jzsm3 .box {
    margin: 15px 0;
  }
}

@media(max-width: 767px) {
  .footer {
    margin-top: 0;
  }

}

@media screen and (max-width:640px) {
  .lxwm-l {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .lxwm-r {
    flex: none;
    width: 100%;
  }

  .jzsm2 ul li.last .k {
    flex-direction: column;
  }

  .jzsm2 ul li.last .k .l {
    width: 100%;
    margin-right: 0;
  }

  .jzsm2 ul li.last .k .l .txb p {
    margin-top: 20px;
  }
}

@media screen and (max-width:480px) {

  .art-main .cont-tit p .liulan {
    margin-left: 15px;
  }

  .nymain .leftNav ul li a {
    line-height: 24px;
    font-size: 15px;
  }

  .nymain .leftNav>ul>li>ul>li>a {
    font-size: 13px;
  }

  .notices ul li {
    width: 100%;
    margin-bottom: 15px;
  }

  .pagination a {
    padding: 0 8px;
    height: 28px;
    font-size: 13px;
    line-height: 28px;
    margin: 0 4px;
  }

  .bnhg {
    padding-bottom: 11px;
    background-size: 100% 30px;
  }

  .bnhg ul li a {
    padding-bottom: 40px;
  }

  .xyfc ul li a .pic {
    width: 120px;
    height: 120px;
  }

  .jzsm2 ul li {
    width: 100%;
  }

  .jzsm2 ul li .tx {
    min-height: 50px;
    height: auto !important;
    padding: 10px;
  }
}

@media screen and (max-width:320px) {

  .art-main .art-tit span {
    font-size: 12px;
    padding-bottom: 5px;
    line-height: 24px;
    height: 24px;
  }

  .art-main .art-body p {
    font-size: 15px;
  }

}