* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, "微软雅黑", PingFangSC-Regular, sans-serif;
}
a {
  text-decoration: none;
  color: #333;
}
ul,
ol {
  list-style: none;
}
img {
  object-fit: cover;
}
@font-face {
  font-family: mydin;
  src: url(../fonts/DIN-Bold.otf);
}
@keyframes myScale {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes myScale2 {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
@keyframes myRotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes myOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pubCon {
  width: 1500px;
  margin: 0 auto;
}
.pubTitle {
  text-align: left;
  color: #000;
}
.pubTitle .en {
  font-size: 16px;
  opacity: 0.6;
  text-transform: uppercase;
}
.pubTitle .cn {
  font-size: 50px;
  opacity: 0.8;
  font-weight: 600;
  padding: 10px 0;
}
.pubTitle .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background: #0028aa;
}
.pubsmalltitle {
  font-size: 30px;
  text-align: center;
  position: relative;
  font-weight: 600;
}
.pubsmalltitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #888;
  position: absolute;
  top: 50px;
  left: calc(50% - 30px);
}
.header {
  width: 100%;
  height: 130px;
  position: relative;
  z-index: 1000;
}
.header .hdTop {
  height: 30px;
  background: #06297c;
  padding: 0 100px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.header .hdTop a {
  color: #fff;
  opacity: 0.8;
}
.header .hdMain {
  height: 100px;
  background: #fff;
  width: 100%;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header .hdMain .nav ul {
  display: flex;
}
.header .hdMain .nav ul li > a {
  display: block;
  line-height: 100px;
  padding: 0 20px;
  color: #333;
  font-size: 18px;
  position: relative;
  white-space: nowrap;
}
.header .hdMain .nav ul li:hover > a {
  color: #0028aa;
}
.header .hdMain .nav ul li > a::after {
  display: block;
  content: "";
  width: 100%;
  height: 4px;
  background: #0028aa;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: 0.3s;
}
.header .hdMain .nav ul li:hover > a::after {
  transform: scaleX(1);
}
.header .hdMain .nav ul li:hover .down {
  transform: scaleY(1);
}
.header .hdMain .nav .down {
  position: absolute;
  border-top: 1px solid #eee;
  left: 0;
  top: 100px;
  line-height: 53px;
  height: 53px;
  background: #fff;
  width: 100%;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  transform: scaleY(0);
  transform-origin: top center;
}
.header .hdMain .nav .down .out {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
}
.header .hdMain .nav .down .out a {
  display: block;
  padding: 0 10px;
  color: #666;
  position: relative;
}
.header .hdMain .nav .down .out a::after {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  background: #0028aa;
  transition: 0.3s;
  position: absolute;
  left: 50%;
  bottom: 0;
}
.header .hdMain .nav .down .out a:hover {
  color: #0028aa;
}
.header .hdMain .nav .down .out a:hover::after {
  width: 100%;
  left: 0;
}
.header .hdMain .menuBtn {
  width: 40px;
  height: 40px;
  border: 1px solid #bbb;
  display: flex;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  display: none;
  cursor: pointer;
}
.header .hdMain .menuBtn .iconfont {
  font-size: 32px;
  color: #999;
}
.header .hdMain .phoneNav {
  width: 260px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 10;
  padding: 30px 20px;
}
.header .hdMain .phoneNav li {
  padding-bottom: 10px;
}
.header .hdMain .phoneNav .one {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .hdMain .phoneNav .one a {
  display: block;
  line-height: 40px;
  font-size: 18px;
  padding-right: 50px;
}
.header .hdMain .phoneNav .one .iconfont {
  font-size: 22px;
}
.header .hdMain .phoneNav .one .iconfont.active {
  transform: rotate(180deg);
}
.header .hdMain .phoneNav .down a {
  font-size: 14px;
  color: #666;
  display: block;
  line-height: 30px;
}
.header .hdMain .navMask {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
}
.header .hdMain .phoneNav {
  display: none;
}
.header .hdMain .navMask {
  display: none;
}
.banner {
  width: 100%;
  height: 800px;
  overflow: hidden;
  position: relative;
  background: #000;
}
.banner .swiper-slide {
  width: 100%;
  height: 800px;
  background: no-repeat center;
  overflow: hidden;
}
.banner .swiper-pagination-bullet-active {
  background: #fff;
}
.banner .vid {
  height: 800px;
  width: 1920px;
  position: absolute;
  top: 0;
  left: calc(50% - 960px);
  opacity: 0.6;
}
.banner .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/banner_bg.png) no-repeat left bottom;
}
.banner .pic {
  width: 596px;
  height: 370px;
  position: absolute;
  bottom: 140px;
  left: 210px;
}
.banner .pic img {
  width: 100%;
  height: 100%;
}
.smallBanner {
  width: 100%;
  height: 500px;
  background: url(../images/home-small-banner.jpg) no-repeat center;
  background-size: cover;
  display: none;
  text-align: center;
  color: #fff;
}
.smallBanner .title {
  font-size: 32px;
  padding-top: 100px;
  font-weight: 600;
  line-height: 1.6em;
}
.smallBanner .title .big {
  font-size: 46px;
}
.smallBanner .des {
  font-size: 20px;
  line-height: 1.6em;
  padding-top: 50px;
}
.smallBanner .line {
  display: inline-block;
  width: 10%;
  height: 3px;
  opacity: 0.6;
  background: #fff;
  margin-top: 40px;
}
.abtOut {
  width: 100%;
  position: relative;
  padding: 100px 0;
}
.abtOut .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.about {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.about .left {
  width: 790px;
}
.about .left .main {
  font-size: 18px;
  color: #666;
  line-height: 1.8em;
  padding-top: 40px;
}
.about .left .main .more {
  display: block;
  width: 180px;
  border: 1px solid #0028aa;
  border-radius: 5px;
  color: #0028aa;
  text-align: center;
  line-height: 46px;
  margin-top: 50px;
  transition: 0.5s;
}
.about .left .main .more:hover {
  background: #0028aa;
  color: #fff;
}
.about .left .pic {
  display: flex;
  justify-content: space-between;
  padding-top: 110px;
}
.about .left .pic .item {
  width: 384px;
  height: 237px;
  border-radius: 5px;
  overflow: hidden;
}
.about .left .pic .item img {
  width: 100%;
  height: 100%;
  transition: 1s;
}
.about .left .pic .item:hover img {
  transform: scale(1.1);
}
.about .right {
  width: 650px;
}
.about .right .pic {
  width: 650px;
  height: 600px;
  border-radius: 5px;
  overflow: hidden;
}
.about .right .pic img {
  width: 100%;
  height: 100%;
  transition: 1s;
}
.about .right .pic:hover img {
  transform: scale(1.1);
}
.about .right .num {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.about .right .num .item .top {
  color: #0028aa;
}
.about .right .num .item .big {
  font-family: mydin;
  font-size: 66px;
}
.about .right .num .item .btm {
  font-size: 16px;
  color: #888;
}
.business {
  width: 100%;
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.business .bg {
  width: 1920px;
  height: 600px;
  position: absolute;
  top: 0;
  left: calc(50% - 960px);
  background: #000;
  overflow: hidden;
}
.business .bg .vid {
  width: 100%;
  opacity: 0.5;
}
.business .busTitle {
  text-align: center;
  color: #fff;
  position: relative;
}
.business .busTitle .cn {
  opacity: 1;
}
.business .busTitle .line {
  background: #fff;
}
.busOut {
  position: relative;
  width: 100%;
  padding-top: 40px;
}
.busOut .busCon {
  position: relative;
  padding-top: 0;
}
.busOut .busCon .swiper {
  width: 80%;
  min-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
}
.busOut .busCon .swiper .wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.busOut .busCon .swiper .wrapper .slide .box {
  display: block;
  width: 100%;
  height: 423px;
  position: relative;
  background: #0028aa;
}
.busOut .busCon .swiper .wrapper .slide .box .pic {
  transition: 0.3s;
  height: 100%;
}
.busOut .busCon .swiper .wrapper .slide .box .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.busOut .busCon .swiper .wrapper .slide .box .text {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/bus_bg.png) no-repeat;
  background-size: cover;
  color: #fff;
  padding: 250px 0 0 20px;
  transition: 0.3s;
}
.busOut .busCon .swiper .wrapper .slide .box .text .iconfont {
  font-size: 50px;
  font-weight: 400;
}
.busOut .busCon .swiper .wrapper .slide .box .text h3 {
  padding: 20px 0;
  font-size: 26px;
  font-weight: 400;
}
.busOut .busCon .swiper .wrapper .slide .box .text .line {
  width: 40px;
  height: 2px;
  background: #fff;
  opacity: 0.6;
}
.busOut .busCon .swiper .wrapper .slide .box .mask {
  width: 90%;
  height: 90%;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  left: 5%;
  top: 5%;
  padding: 20px;
  overflow: hidden;
  transition: 0.3s;
  transform: scale(0);
}
.busOut .busCon .swiper .wrapper .slide .box .mask .title {
  color: #333;
  font-size: 28px;
}
.busOut .busCon .swiper .wrapper .slide .box .mask .title h4 {
  padding-bottom: 20px;
}
.busOut .busCon .swiper .wrapper .slide .box .mask .title .line {
  width: 40px;
  height: 2px;
  background: #666;
}
.busOut .busCon .swiper .wrapper .slide .box .mask .content {
  font-size: 14px;
  padding-top: 20px;
  color: #666;
  line-height: 1.8em;
  height: 250px;
}
.busOut .busCon .swiper .wrapper .slide .box .mask .more {
  color: #0028aa;
  font-size: 18px;
}
.busOut .busCon .swiper .wrapper .slide .box:hover .mask {
  transform: scale(1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
.busOut .busCon .swiper .wrapper .slide .box:hover .text {
  opacity: 0;
}
.busOut .busCon .swiper .wrapper .slide .box:hover .pic {
  opacity: 0.5;
}
.achievements {
  padding: 90px 0;
  background: url(../images/achievements.jpg) no-repeat center #F4F4F4;
  background-size: cover;
}
.achievements .achTop {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.achievements .achTop .list ul {
  display: flex;
}
.achievements .achTop .list ul a {
  display: block;
  padding: 3px 22px;
  font-size: 16px;
  border: 1px solid #0028aa;
  border-radius: 20px;
  color: #0028aa;
  transition: 0.5s;
  margin-left: 20px;
}
.achievements .achTop .list ul a:hover {
  color: #fff;
  background: #0028aa;
}
.achievements .achCon {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  font-family: 'Times New Roman', Times;
}
.achievements .achCon .item {
  display: block;
  height: 550px;
  background: rgba(255, 255, 255, 0.6);
  padding: 40px 20px;
  border-left: 1px solid #cfcfcf;
  position: relative;
  transition: 0.5s;
  width: 25%;
}
.achievements .achCon .item .time {
  font-size: 18px;
  color: #aaa;
}
.achievements .achCon .item h3 {
  font-size: 23px;
  color: #333;
  padding: 10px 0 20px;
  font-family: '宋体';
  height: 90px;
  line-height: 1.6em;
}
.achievements .achCon .item p {
  font-size: 14px;
  color: #999;
  line-height: 1.9em;
  height: 90px;
  width: 100%;
}
.achievements .achCon .item .pic {
  width: 100%;
  height: 200px;
  border-radius: 5px;
  overflow: hidden;
}
.achievements .achCon .item .pic img {
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.achievements .achCon .item .more {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  transform: rotate(-45deg);
  transition: 0.5s;
  border-radius: 50%;
}
.achievements .achCon .item .more .iconfont {
  font-size: 30px;
  color: #555;
}
.achievements .achCon .item .line {
  width: 0%;
  height: 4px;
  background: #0028aa;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.5s;
}
.achievements .achCon .item:last-child {
  border-right: 1px solid #cfcfcf;
}
.achievements .achCon .item:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
  background: #fff;
}
.achievements .achCon .item:hover .more {
  transform: rotate(0deg);
  background: #0028aa;
}
.achievements .achCon .item:hover .more .iconfont {
  color: #fff;
}
.achievements .achCon .item:hover .line {
  width: 100%;
}
.achievements .achCon .item:hover .pic img {
  transform: scale(1.1);
}
.personnel {
  padding: 180px 0 90px;
  width: 100%;
  overflow: hidden;
  background: #F7F8FA;
}
.personnel .perTitle {
  text-align: center;
}
.personnel .perCon {
  padding-top: 70px;
}
.personnel .perCon .swiper {
  width: 100%;
}
.personnel .perCon .box {
  width: 260px;
  height: 440px;
  display: block;
  position: relative;
  transition: 0.5s;
}
.personnel .perCon .box .pic {
  width: 260px;
  height: 344px;
}
.personnel .perCon .box .pic img {
  width: 100%;
  height: 100%;
}
.personnel .perCon .box .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/per_bg.png) no-repeat center bottom;
}
.personnel .perCon .box .mask .text {
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 20px 0 0 20px;
}
.personnel .perCon .box .mask .text .big {
  font-size: 26px;
}
.personnel .perCon .box .mask .text .small {
  opacity: 0.7;
  padding-top: 5px;
}
.personnel .perCon .box:hover {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}
.personnel .perCon .swiper-slide {
  transition: 0.3s;
  transform: scale(0.92);
}
.personnel .perCon .swiper-slide-prev,
.personnel .perCon .swiper-slide-next {
  transform: scale(1);
}
.personnel .perCon .swiper-slide-active {
  transform: scale(1.1);
}
.personnel .more {
  display: block;
  width: 180px;
  border: 1px solid #0028aa;
  border-radius: 5px;
  color: #0028aa;
  text-align: center;
  line-height: 46px;
  margin-top: 50px;
  transition: 0.5s;
  margin: 80px auto 0px;
}
.personnel .more:hover {
  background: #0028aa;
  color: #fff;
}
.partner {
  background: #eaeaef;
  padding: 90px 0;
  position: relative;
}
.partner .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.partner .partOut {
  position: relative;
  z-index: 10;
}
.partner .parTitle {
  text-align: center;
}
.partner .partCon {
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px;
  justify-content: space-between;
}
.partner .partCon .item {
  width: 286px;
  height: 130px;
  margin-bottom: 20px;
}
.partner .partCon img {
  display: block;
}
.news {
  padding: 110px 0;
}
.news .newsTitle {
  text-align: center;
  padding-bottom: 40px;
}
.news .nsCon {
  display: flex;
  justify-content: space-between;
}
.news .nsCon .left {
  width: 1050px;
}
.news .nsCon .left .top {
  line-height: 50px;
  border-bottom: 1px solid #e4e4e4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news .nsCon .left .top .nav {
  display: flex;
  font-size: 18px;
  font-weight: 600;
}
.news .nsCon .left .top .nav .box {
  position: relative;
  cursor: pointer;
  margin-right: 30px;
  color: #333;
}
.news .nsCon .left .top .nav .box.active {
  color: #0028aa;
}
.news .nsCon .left .top .nav .box.active::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #0028aa;
  position: absolute;
  left: calc(50% - 35px);
  bottom: 0;
}
.news .nsCon .left .main {
  height: 220px;
  position: relative;
}
.news .nsCon .left .main .out {
  width: 100%;
  height: 100%;
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  display: none;
}
.news .nsCon .left .main .out .hot {
  width: 340px;
  height: 220px;
  position: relative;
}
.news .nsCon .left .main .out .hot .pic {
  width: 100%;
  height: 100%;
}
.news .nsCon .left .main .out .hot .pic img {
  width: 100%;
  height: 100%;
}
.news .nsCon .left .main .out .hot .text {
  position: absolute;
  width: 100%;
  height: 110px;
  background: linear-gradient(rgba(0, 40, 170, 0), #0028aa);
  left: 0;
  bottom: 0;
  color: #fff;
  padding: 20px;
}
.news .nsCon .left .main .out .hot .text .time {
  font-size: 14px;
}
.news .nsCon .left .main .out .hot .text h5 {
  font-size: 16px;
  padding-top: 10px;
  line-height: 1.5em;
}
.news .nsCon .left .main .out .list {
  width: 660px;
}
.news .nsCon .left .main .out .list a {
  display: flex;
  justify-content: space-between;
  line-height: 2.38em;
}
.news .nsCon .left .main .out .list a h5 {
  color: #555;
}
.news .nsCon .left .main .out .list a .time {
  font-size: 14px;
  color: #999;
}
.news .nsCon .left .main .out .list a:hover h5 {
  text-decoration: underline;
}
.news .nsCon .left .main .live .item {
  width: 340px;
  height: 220px;
  background: #000;
  position: relative;
  transition: 0.3s;
}
.news .nsCon .left .main .live .item .pic {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.news .nsCon .left .main .live .item .pic img {
  width: 100%;
  height: 100%;
}
.news .nsCon .left .main .live .item .iconfont {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 66px;
}
.news .nsCon .left .main .live .item .text {
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 0;
  left: 0;
  color: #fff;
  background: linear-gradient(rgba(0, 40, 170, 0), #0028aa);
  font-size: 16px;
  padding: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news .nsCon .left .main .live .item:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.news .nsCon .right {
  width: 400px;
  height: 290px;
  border: 1px solid #e0e0e0;
}
.news .nsCon .right .top {
  background: #0028aa;
  line-height: 40px;
  border-top: 5px solid #0028aa;
  display: flex;
}
.news .nsCon .right .top .box {
  display: block;
  color: #fff;
  padding: 0 20px;
}
.news .nsCon .right .top .box.active {
  background: #fff;
  color: #0028aa;
}
.news .nsCon .right .main {
  padding: 20px;
}
.news .nsCon .right .main .out {
  display: none;
}
.news .nsCon .right .main li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 2.2em;
}
.news .nsCon .right .main li a .time {
  font-size: 14px;
  color: #999;
  width: 76px;
}
.news .nsCon .right .main li a .text {
  font-size: 16px;
  width: 270px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news .nsCon .right .main li a:hover .text {
  text-decoration: underline;
}
.homeYQCon {
  padding: 60px 0;
}
.homeYQCon img {
  width: 100%;
}
.footer {
  background: #0028aa;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}
.footer .video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.footer .video .vid {
  width: 100%;
  height: 100%;
  opacity: 0.26;
  object-fit: fill;
}
.footer .ftCon {
  position: relative;
  z-index: 10;
}
.footer .ftMain {
  padding: 30px 0 0;
  display: flex;
  justify-content: space-between;
}
.footer .ftMain .info {
  width: 330px;
}
.footer .ftMain .info .item {
  display: flex;
  color: #fff;
  font-size: 16px;
  padding-bottom: 10px;
}
.footer .ftMain .info .item .iconfont {
  font-size: 30px;
}
.footer .ftMain .info .item .text {
  padding-left: 10px;
}
.footer .ftMain .info .item .text p {
  padding-bottom: 10px;
  line-height: 1.6em;
}
.footer .ftMain .info .item .tel {
  font-size: 28px;
  font-weight: 600;
}
.footer .ftMain .info .item .mail {
  line-height: 30px;
}
.footer .ftMain .info .code {
  padding-left: 35px;
  flex-direction: column;
}
.footer .ftMain .info .code img {
  width: 100px;
  height: 100px;
}
.footer .ftMain .info .code .text {
  font-size: 12px;
}
.footer .ftMain .nav {
  display: flex;
}
.footer .ftMain .nav .item {
  padding-left: 30px;
}
.footer .ftMain .nav .item a {
  color: #fff;
  font-size: 14px;
  line-height: 2.2em;
}
.footer .ftMain .nav .item a:hover {
  text-decoration: underline;
}
.footer .ftMain .nav .item dt {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
}
.footer .ftMain .nav .item dd:first-of-type {
  padding-top: 10px;
}
.footer .ftMain .nav .item dt a {
  font-size: 16px;
}
.footer .ftMain .nav .item dd a {
  opacity: 0.6;
}
.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.footer .copyright a {
  color: rgba(255, 255, 255, 0.7);
}
.footer .copyright a:hover {
  text-decoration: underline;
}
.footer .copyright .left a {
  color: rgba(255, 255, 255, 0.9);
  padding: 0 10px;
}
.footer .copyright .left a:hover {
  color: #fff;
  text-decoration: underline;
}
.mypage {
  padding: 30px 0;
}
/*分页样式*/
.page_info {
  text-align: center;
  margin-top: 10px;
  color: #333;
}
.page_info span {
  padding: 0 2px;
  font-weight: bold;
}
.page_list {
  height: 24px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0;
  font-family: "Arial Black";
  font-size: 12px;
  margin-top: 20px;
}
.page_list a {
  display: inline-block;
  color: #898989;
  border: 1px solid #e8e8e8;
  background: #f8f8f8;
  text-align: center;
  padding: 0 8px;
  margin: 0 1px;
}
.page_list a:hover {
  color: #fff;
  border: 1px solid #898989;
  background: #898989;
}
.page_list a.on {
  color: #333;
  border: 1px solid #ccc;
  background: #E5EDF2;
}
.innerBanner {
  width: 100%;
  height: 440px;
  position: relative;
  overflow: hidden;
}
.innerBanner img {
  position: absolute;
  top: 0;
  left: calc(50% - 960px);
}
.innerNav {
  height: 60px;
  background: #eee;
}
.innerNav .ineCon {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.innerNav .ineCon ul {
  display: flex;
}
.innerNav .ineCon ul a {
  display: block;
  line-height: 60px;
  font-size: 16px;
  color: #666;
  padding: 0 10px;
  position: relative;
}
.innerNav .ineCon ul li:hover a,
.innerNav .ineCon ul li.active a {
  color: #0028aa;
}
.innerNav .ineCon ul li:hover a::after,
.innerNav .ineCon ul li.active a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #0028aa;
  position: absolute;
  bottom: 0;
  left: 0;
}
.innerNav .ineCon .link {
  font-size: 14px;
  color: #999;
}
.innerNav .ineCon .link a {
  color: #999;
}
.innerMain {
  min-height: 500px;
  position: relative;
}
.innerMain .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
}
.innerMain .innerCon {
  position: relative;
  z-index: 3;
  min-height: 300px;
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border: 1px solid #eee;
  margin-top: 50px;
  margin-bottom: 50px;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  min-height: 500px;
}
.innerAbout .title {
  font-size: 30px;
  color: #333;
  padding: 30px 0;
}
.inrAbtIntro .text p {
  font-size: 18px;
  color: #666;
  line-height: 1.8em;
  padding-bottom: 20px;
  text-indent: 2em;
}
.inrAbtIntro .text img {
  width: 100%;
  margin-bottom: 30px;
}
.inrAbtIntro .prize {
  width: 100%;
  background: url(../images/about_pic2.jpg) no-repeat center;
  background-size: cover;
  padding: 50px 0;
  color: #fff;
  margin-top: 50px;
}
.inrAbtIntro .prize h3 {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
}
.inrAbtIntro .prize p {
  text-align: center;
  padding: 0 100px;
  padding-top: 20px;
  font-size: 14px;
}
.inrAbtIntro .prize .itemout {
  padding: 60px 0 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.inrAbtIntro .prize .itemout .item {
  width: 33.3%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}
.inrAbtIntro .prize .itemout .item .left .iconfont {
  font-size: 60px;
}
.inrAbtIntro .prize .itemout .item .right {
  padding-left: 20px;
  text-align: center;
}
.inrAbtIntro .prize .itemout .item .right .top {
  display: flex;
  align-items: flex-end;
}
.inrAbtIntro .prize .itemout .item .right .top .big {
  font-family: mydin;
  font-size: 50px;
}
.inrAbtIntro .prize .itemout .item .right .top .small {
  font-size: 18px;
  padding-left: 5px;
  transform: translateY(-5px);
}
.inrAbtIntro .prize .itemout .item .right .btm {
  font-size: 14px;
  opacity: 0.7;
}
.inrAbtLingDao .abtLD {
  display: flex;
  justify-content: space-between;
}
.inrAbtLingDao .abtLD .left {
  width: 46%;
  min-height: 300px;
  background: url(../images/douhao.png) no-repeat bottom right;
  padding-top: 30px;
}
.inrAbtLingDao .abtLD .left img {
  width: 100%;
}
.inrAbtLingDao .abtLD .left .text {
  padding-top: 50px;
}
.inrAbtLingDao .abtLD .left .text h5 {
  font-size: 26px;
  padding-bottom: 20px;
  color: #555;
  font-weight: 400;
}
.inrAbtLingDao .abtLD .left .text li {
  line-height: 2.2em;
  font-weight: 600;
  padding-left: 15px;
  position: relative;
}
.inrAbtLingDao .abtLD .left .text li:after {
  content: "";
  display: block;
  width: 3px;
  height: 16px;
  background: #0028aa;
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
}
.inrAbtLingDao .abtLD .right {
  width: 50%;
  min-height: 400px;
  padding: 30px 0;
  background: url(../images/name_pic.png) no-repeat right bottom;
}
.inrAbtLingDao .abtLD .right h6 {
  font-size: 22px;
  color: #444;
}
.inrAbtLingDao .abtLD .right p {
  font-size: 18px;
  text-indent: 2em;
  line-height: 2em;
  padding: 15px 0 30px;
  color: #666;
}
.inrAbtKuangJia {
  padding: 50px 0;
}
.inrAbtKuangJia img {
  width: 100%;
}
.inrAbtZhanLue .text {
  font-size: 18px;
  color: #666;
  line-height: 2em;
}
.inrAbtZhanLue .serve {
  background: url(../images/about5_bg.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  margin-top: 50px;
}
.inrAbtZhanLue .serve .left {
  width: 40%;
}
.inrAbtZhanLue .serve .left h3 {
  font-size: 38px;
  font-weight: 300;
}
.inrAbtZhanLue .serve .left p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.9em;
  padding-top: 40px;
}
.zhanLueList {
  background: url(../images/about5_bg_2.jpg) no-repeat center;
  background-size: cover;
  display: flex;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}
.zhanLueList .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
  width: 25%;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  height: 500px;
  padding: 0 60px;
  transition: 0.3s;
}
.zhanLueList .box .iconfont {
  font-size: 80px;
}
.zhanLueList .box .title {
  font-size: 30px;
  padding: 30px 0;
}
.zhanLueList .box .des {
  font-size: 16px;
  line-height: 2em;
  opacity: 0.8;
  display: none;
}
.zhanLueList .box:hover {
  background: rgba(0, 0, 0, 0.6);
}
.zhanLueList .box:hover .des {
  display: block;
}
.zhanLueOut {
  margin-bottom: 60px;
  display: flex;
}
.zhanLueOut .box {
  width: 375px;
  height: 375px;
  border: 1px solid #eee;
  position: relative;
  background: #fff;
  margin-left: -1px;
}
.zhanLueOut .box .pic {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}
.zhanLueOut .box .pic img {
  width: 100%;
  height: 100%;
  display: block;
}
.zhanLueOut .box .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s;
}
.zhanLueOut .box .mask .iconfont {
  font-size: 100px;
}
.zhanLueOut .box .mask .text {
  font-size: 18px;
  padding: 30px 60px;
}
.zhanLueOut .box:hover {
  background: #0028aa;
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.zhanLueOut .box:hover .mask {
  color: #fff;
}
.zhanLueOut .box:hover .pic {
  opacity: 0.2;
}
.inrAbtZiZhi .out {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding-top: 40px;
}
.inrAbtZiZhi .out .box {
  width: 330px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  cursor: pointer;
}
.inrAbtZiZhi .out .box .pic {
  width: 100%;
  position: relative;
}
.inrAbtZiZhi .out .box .pic img {
  width: 100%;
  display: block;
}
.inrAbtZiZhi .out .box .pic .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}
.inrAbtZiZhi .out .box .pic .mask .iconfont {
  font-size: 60px;
  color: #fff;
  display: block;
}
.inrAbtZiZhi .out .box:hover .mask {
  opacity: 1;
}
.inrAbtZiZhi .out .box .text {
  text-align: center;
  padding: 20px;
  background: #fff;
  border: 1px solid #e4e4e4;
}
.shade {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 20;
  display: none;
}
.shade .pic {
  position: absolute;
  left: 30%;
  top: 20%;
  width: 100%;
}
.shade .pic img {
  width: 40%;
}
.shade .close {
  width: 60px;
  height: 60px;
  color: #eee;
  border: 2px solid #eee;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 5%;
  top: 5%;
  cursor: pointer;
}
.shade .close .iconfont {
  font-size: 36px;
}
.inrAbtLiCheng {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
}
.inrAbtLiCheng .center {
  width: 2%;
  position: relative;
  top: -30px;
}
.inrAbtLiCheng .center .triangle {
  width: 0px;
  height: 0px;
  border: 8px solid transparent;
  border-bottom-color: #ccc;
  position: absolute;
  left: calc(50% - 8px);
  top: -10px;
}
.inrAbtLiCheng .center .line {
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  background: #ccc;
}
.inrAbtLiCheng .out {
  width: 48%;
  padding: 0 60px;
}
.inrAbtLiCheng .out .box {
  padding-bottom: 60px;
  position: relative;
}
.inrAbtLiCheng .out .box .pic {
  width: 100%;
  height: 230px;
  border-radius: 5px;
  overflow: hidden;
}
.inrAbtLiCheng .out .box .pic img {
  width: 100%;
  height: 230px;
}
.inrAbtLiCheng .out .box h4 {
  font-size: 32px;
  color: #0028aa;
  padding: 15px 0 20px;
}
.inrAbtLiCheng .out .box p {
  color: #555;
  line-height: 2em;
}
.inrAbtLiCheng .out .box .spot {
  position: absolute;
  left: -92px;
  top: 80px;
  z-index: 30;
}
.inrAbtLiCheng .out .box .spot .circle {
  width: 10px;
  height: 10px;
  background: #0028aa;
  border-radius: 50%;
  position: relative;
}
.inrAbtLiCheng .out .box .spot .circle::after {
  content: "";
  display: block;
  border: 1px solid #0028aa;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  left: -4px;
  top: -4px;
}
.inrAbtLiCheng .out .box .spot .line {
  width: 40px;
  height: 1px;
  background: #0028aa;
  position: absolute;
  top: 6px;
  left: 20px;
}
.inrAbtLiCheng .out.left {
  padding-top: 0px;
}
.inrAbtLiCheng .out.left .box .spot {
  left: auto;
  right: -96px;
}
.inrAbtLiCheng .out.left .box .line {
  left: auto;
  right: 20px;
}
.inrAbtLiCheng .out.right {
  padding-top: 200px;
}
.innerTeam .nav {
  padding: 50px 0 10px;
  display: flex;
  justify-content: center;
}
.innerTeam .nav .box {
  display: block;
  border: 2px solid #0028aa;
  padding: 10px 30px;
  border-radius: 30px;
  color: #06297c;
  font-size: 18px;
  margin: 0 10px;
  transition: 0.3s;
  font-weight: 600;
}
.innerTeam .nav .box:hover,
.innerTeam .nav .box.active {
  background: #0028aa;
  color: #fff;
}
.innerTeam .tuanDuiTop {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}
.innerTeam .tuanDuiTop .item {
  display: flex;
  width: 50%;
}
.innerTeam .tuanDuiTop .item .pic {
  width: 320px;
  height: 423px;
}
.innerTeam .tuanDuiTop .item .pic img {
  width: 100%;
  height: 100%;
}
.innerTeam .tuanDuiTop .item .text {
  background: #f8f8f8;
  position: relative;
  flex: 1;
  padding: 30px;
  transition: 0.3s;
  color: #333;
}
.innerTeam .tuanDuiTop .item .text h5 {
  font-size: 44px;
}
.innerTeam .tuanDuiTop .item .text .line {
  width: 100px;
  height: 2px;
  background: #333;
  opacity: 0.8;
  margin: 10px 0 60px;
}
.innerTeam .tuanDuiTop .item .text .name {
  font-size: 32px;
  opacity: 0.8;
  padding-bottom: 30px;
}
.innerTeam .tuanDuiTop .item .text .post {
  font-size: 18px;
  opacity: 0.8;
  line-height: 1.8em;
}
.innerTeam .tuanDuiTop .item .text .iconfont {
  position: absolute;
  font-size: 40px;
  color: #0028aa;
  bottom: 30px;
  left: 30px;
}
.innerTeam .tuanDuiTop .item:hover .text {
  background-color: #0028aa;
  color: #fff;
}
.innerTeam .tuanDuiTop .item:hover .text .line {
  background: #fff;
}
.innerTeam .tuanDuiTop .item:hover .text .iconfont {
  color: #fff;
}
.innerTeam .tuanDuiTitle {
  font-size: 40px;
  color: #0028aa;
  border-bottom: 2px solid #0028aa;
  text-align: center;
  padding: 100px 0 20px;
  font-weight: 600;
}
.innerTeam .list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.innerTeam .list .box {
  display: block;
  width: 100%;
  border-radius: 5px;
  position: relative;
}
.innerTeam .list .box .pic {
  width: 100%;
  height: 423px;
}
.innerTeam .list .box .pic img {
  width: 100%;
  height: 100%;
}
.innerTeam .list .box .text {
  height: 100px;
  background: #f2f2f2;
  padding: 0px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s;
}
.innerTeam .list .box .text .title {
  font-size: 25px;
  color: #333;
  transition: 0.3s;
  padding-bottom: 5px;
}
.innerTeam .list .box .text .post {
  font-size: 16px;
  color: #999;
  transition: 0.3s;
  padding-right: 60px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.innerTeam .list .box .iconfont {
  font-size: 26px;
  color: #0028aa;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.innerTeam .list .box:hover .text {
  background: #0028aa;
}
.innerTeam .list .box:hover .text .title {
  color: #fff;
}
.innerTeam .list .box:hover .text .post {
  color: #fff;
  opacity: 0.6;
}
.innerTeam .list .box:hover .text .iconfont {
  color: #fff;
}
.inrTeamLSH .top {
  display: flex;
  justify-content: space-between;
  background: #f2f2f2 url(../images/douhao2.png) no-repeat right top;
  transition: 0.3s;
  border-radius: 5px;
  overflow: hidden;
}
.inrTeamLSH .top .left {
  width: 340px;
  height: 450px;
}
.inrTeamLSH .top .left img {
  width: 100%;
  height: 100%;
}
.inrTeamLSH .top .right {
  width: 1080px;
  padding: 30px;
}
.inrTeamLSH .top .right .title {
  font-size: 36px;
  color: #333;
}
.inrTeamLSH .top .right .en {
  text-transform: uppercase;
  font-size: 14px;
  color: #999;
  padding: 10px 0 20px;
}
.inrTeamLSH .top .right .line {
  width: 100px;
  height: 4px;
  background: #0028aa;
}
.inrTeamLSH .top .right .test {
  font-size: 16px;
  color: #666;
  line-height: 2em;
  padding-top: 50px;
}
.inrTeamLSH .top:hover {
  background-color: #0028aa;
}
.inrTeamLSH .top:hover .title {
  color: #fff;
}
.inrTeamLSH .top:hover .en {
  color: #fff;
  opacity: 0.9;
}
.inrTeamLSH .top:hover .test {
  color: #fff;
  opacity: 0.6;
}
.innerPlat .bigTitle {
  font-size: 32px;
  color: #0028aa;
  border-bottom: 2px solid #0028aa;
  padding: 40px 0 20px;
  text-align: center;
  margin-bottom: 30px;
}
.innerPlat .navlist {
  margin-bottom: 30px;
  padding: 10px 0;
  display: flex;
  justify-content: center;
}
.innerPlat .navlist .box {
  display: block;
  border: 1px solid #0028aa;
  padding: 6px 20px;
  border-radius: 30px;
  color: #06297c;
  font-size: 18px;
  margin: 0 10px;
  transition: 0.3s;
}
.innerPlat .navlist .box:hover,
.innerPlat .navlist .box.active {
  background: #0028aa;
  color: #fff;
}
.inrPtLingYu .des {
  line-height: 2em;
  font-size: 18px;
  color: #666;
}
.inrPtLingYu .pic1 {
  text-align: center;
  padding: 30px 0;
}
.LingYuList {
  position: relative;
  z-index: 20;
}
.LingYuList .item {
  position: relative;
  margin-bottom: 60px;
}
.LingYuList .item .pic {
  width: 50%;
  height: 600px;
  background: no-repeat center;
}
.LingYuList .item .text {
  width: 45%;
  position: absolute;
  left: 45%;
  top: 100px;
  background: #f5f5f5;
  padding: 50px 30px;
  color: #333;
  background: url(../images/lingyu_bg.png) no-repeat right bottom #f8f8f8;
  box-shadow: -10px 0px 30px rgba(0, 0, 0, 0.2);
}
.LingYuList .item .text h4 {
  font-size: 38px;
  font-weight: 400;
}
.LingYuList .item .text .line {
  width: 80px;
  height: 2px;
  background: #0028aa;
  margin: 10px 0 20px;
}
.LingYuList .item .text .des {
  font-size: 22px;
  opacity: 0.9;
}
.LingYuList .item .text .con {
  font-size: 18px;
  opacity: 0.7;
  padding-top: 30px;
  line-height: 2em;
}
.LingYuList .item:nth-child(2n) .pic {
  width: 100%;
  background-position: right center;
}
.LingYuList .item:nth-child(2n) .text {
  left: 5%;
  box-shadow: 10px 0px 30px rgba(0, 0, 0, 0.1);
}
.LingYuList .item:hover .text {
  background-color: #0028aa;
  color: #fff;
}
.inrPtYuYue .toppic {
  margin-bottom: 50px;
  border: 1px solid #eee;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.inrPtYuYue .toppic img {
  width: 100%;
  display: block;
}
.inrPtYuYue .list {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.inrPtYuYue .list .box {
  width: 260px;
  height: 380px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: 0.3s;
  margin-bottom: 30px;
}
.inrPtYuYue .list .box .pic {
  width: 100%;
  margin: 0px auto;
}
.inrPtYuYue .list .box .pic img {
  width: 100%;
}
.inrPtYuYue .list .box .name {
  font-size: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.inrPtYuYue .list .box .btngroup {
  display: flex;
  justify-content: center;
}
.inrPtYuYue .list .box .btngroup .btn {
  width: 100px;
  line-height: 38px;
  border: 1px solid #0028aa;
  color: #0028aa;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.inrPtYuYue .list .box .btngroup .btn .iconfont {
  font-size: 22px;
}
.inrPtYuYue .list .box .btngroup .btn:hover {
  color: #fff;
  background: #0028aa;
}
.inrPtYuYue .more {
  margin: 50px auto;
  width: 180px;
  line-height: 50px;
  border: 1px solid #0028aa;
  color: #0028aa;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.inrPtYuYue .more .iconfont {
  font-size: 25px;
}
.inrPtYuYue .more:hover {
  background: #0028aa;
  color: #fff;
}
.inrPtSheBei .list {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.inrPtSheBei .list .box {
  width: 330px;
  height: 490px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: 0.3s;
  margin-bottom: 30px;
}
.inrPtSheBei .list .box .name {
  font-size: 26px;
  padding-bottom: 5px;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.inrPtSheBei .list .box .info {
  color: #999;
  font-size: 16px;
  white-space: nowrap;
}
.inrPtSheBei .list .box .pic {
  width: 100%;
  margin: 20px auto;
  height: 269px;
}
.inrPtSheBei .list .box .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inrPtSheBei .list .box .btngroup {
  display: flex;
  justify-content: space-between;
}
.inrPtSheBei .list .box .btngroup .btn {
  width: 120px;
  line-height: 44px;
  border: 1px solid #0028aa;
  color: #0028aa;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.inrPtSheBei .list .box .btngroup .btn .iconfont {
  font-size: 26px;
}
.inrPtSheBei .list .box .btngroup .btn:hover {
  color: #fff;
  background: #0028aa;
}
.inrPtSheBei .list .box .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #0028aa;
  transition: 0.3s;
}
.inrPtSheBei .list .box:hover {
  border-color: #0028aa;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.inrPtSheBei .list .box:hover .line {
  width: 100%;
}
.inrPtTeSe .classify {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.inrPtTeSe .classify .box {
  width: 540px;
  height: 490px;
  margin-bottom: 60px;
  border: 1px solid #0028aa;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.inrPtTeSe .classify .box .top {
  width: 100%;
  height: 50px;
  background: #0028aa;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}
.inrPtTeSe .classify .box .top .title {
  font-size: 18px;
}
.inrPtTeSe .classify .box .top .iconfont {
  font-size: 26px;
}
.inrPtTeSe .classify .box .pic {
  width: 538px;
  height: 438px;
  position: relative;
  overflow: hidden;
}
.inrPtTeSe .classify .box .pic img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.inrPtTeSe .classify .box .pic .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 40, 170, 0.7);
  opacity: 0;
  transition: 0.3s;
  color: #fff;
  padding: 50px 30px;
  text-align: center;
}
.inrPtTeSe .classify .box .pic .mask p {
  font-size: 20px;
  line-height: 2em;
}
.inrPtTeSe .classify .box .pic .mask .more {
  margin: 0 auto;
  width: 160px;
  line-height: 50px;
  border: 1px solid #fff;
  color: #fff;
  margin-top: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.inrPtTeSe .classify .box .pic .mask .more .iconfont {
  font-size: 26px;
}
.inrPtTeSe .classify .box .pic .mask .more:hover {
  background: #fff;
  color: #0028aa;
}
.inrPtTeSe .classify .box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.inrPtTeSe .classify .box:hover .mask {
  opacity: 1;
}
.inrPtTeSe .classify .box:hover img {
  transform: scale(1.1);
}
.inrPtTeSe .list .item {
  display: flex;
  justify-content: space-between;
  background: #0028aa;
  margin: 50px auto;
  transition: 0.3s;
}
.inrPtTeSe .list .item .text {
  width: 50%;
  color: #fff;
  padding: 30px;
}
.inrPtTeSe .list .item .text .en {
  text-transform: uppercase;
  font-size: 18px;
  opacity: 0.6;
}
.inrPtTeSe .list .item .text h4 {
  font-size: 38px;
  padding: 5px 0 20px;
  font-weight: 400;
}
.inrPtTeSe .list .item .text .line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.inrPtTeSe .list .item .text .con {
  padding-top: 30px;
}
.inrPtTeSe .list .item .text .con p {
  line-height: 1.8em;
  padding-bottom: 20px;
  opacity: 0.8;
}
.inrPtTeSe .list .item .pic {
  width: 750px;
  height: 610px;
  padding: 30px;
}
.inrPtTeSe .list .item .pic img {
  width: 100%;
  height: 100%;
}
.inrPtTeSe .list .item:nth-child(2n) {
  background: #fff;
  border: 1px solid #0028aa;
}
.inrPtTeSe .list .item:nth-child(2n) .text {
  color: #0028aa;
}
.inrPtTeSe .list .item:nth-child(2n) .text .line {
  background: #0028aa;
}
.inrPtTeSe .list .item:nth-child(2n) .text .con img {
  height: 430px;
}
.inrPtTeSe .list .item:hover {
  box-shadow: 0 0 20px rgba(0, 40, 170, 0.4);
}
.inrPtZhiNeng .item {
  padding-bottom: 50px;
}
.inrPtZhiNeng h4 {
  font-size: 38px;
  padding: 5px 0 20px;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
}
.inrPtZhiNeng h4::after {
  display: block;
  content: "";
  width: 6px;
  height: 30px;
  background: #0028aa;
  position: absolute;
  left: 0;
  top: calc(50% - 18px);
}
.inrPtZhiNeng .con::after {
  content: "";
  display: block;
  clear: both;
}
.inrPtZhiNeng .con .left {
  width: 700px;
  float: left;
}
.inrPtZhiNeng .con .right {
  float: right;
  width: 700px;
}
.inrPtZhiNeng .con p {
  font-size: 18px;
  color: #666;
  line-height: 2em;
  text-indent: 2em;
  padding: 10px 0;
}
.inrPtZhiNeng .view {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}
.inrPtZhiNeng .view .text {
  width: 620px;
  background: #0028aa;
  color: #fff;
  padding: 50px 30px;
}
.inrPtZhiNeng .view .text h5 {
  font-size: 26px;
  padding-bottom: 30px;
}
.inrPtZhiNeng .view .text ul li {
  line-height: 2.5em;
  font-size: 18px;
}
.inrPtZhiNeng .view .pic {
  width: 880px;
  height: 500px;
}
.inrPtZhiNeng .view .pic img {
  width: 100%;
  height: 500px;
}
.inrPtChanYe h4.title {
  font-size: 38px;
  font-weight: 400;
  padding-bottom: 20px;
}
.inrPtChanYe .line {
  width: 80px;
  height: 4px;
  background: #0028aa;
}
.inrPtChanYe .item {
  margin: 40px 0 80px;
  position: relative;
  overflow: hidden;
}
.inrPtChanYe .item .pic {
  width: 700px;
  height: 500px;
  background: no-repeat center;
  float: right;
  border: 1px solid #0028aa;
}
.inrPtChanYe .item .text {
  width: 820px;
  height: 300px;
  background: #0028aa;
  color: #fff;
  position: absolute;
  left: 0;
  top: 100px;
  padding: 50px 30px;
  border-bottom-right-radius: 90px;
  box-shadow: 0 10px 20px rgba(0, 40, 170, 0.2);
}
.inrPtChanYe .item .text h5 {
  font-size: 28px;
  padding-bottom: 30px;
}
.inrPtChanYe .item .text p {
  font-size: 18px;
  line-height: 2em;
  opacity: 0.8;
}
.inrPtChanYe .item .text .num {
  position: absolute;
  font-size: 90px;
  font-family: mydin;
  opacity: 0.15;
  right: 30px;
  top: 10px;
}
.inrPtChanYe .item:nth-child(2n) .pic {
  float: left;
}
.inrPtChanYe .item:nth-child(2n) .text {
  left: auto;
  right: 0;
  background: #fff;
  border: 2px solid #0028aa;
  color: #0028aa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 90px;
}
.inrPtChanYe .item:nth-last-child(1) .text {
  height: 150px;
  top: auto;
  bottom: 0;
}
.inrPtChanYe .item:nth-last-child(1) .pic2 {
  background: no-repeat center;
  width: 500px;
  height: 320px;
  float: left;
  border: 1px solid #0028aa;
  margin-left: 30px;
}
.inrPtChanYe .item:nth-last-child(1) .text {
  border-bottom-left-radius: 0;
  border-top-left-radius: 90px;
}
.inrPtChanYe .out2 .con {
  padding: 20px 0;
}
.inrPtChanYe .out2 .con h6 {
  font-size: 25px;
  color: #333;
  padding-bottom: 20px;
}
.inrPtChanYe .out2 .con p {
  line-height: 2em;
  color: #666;
}
.inrPtChanYe .out2 .view {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}
.inrPtChanYe .out2 .view .box {
  width: 460px;
  height: 290px;
  overflow: hidden;
}
.inrPtChanYe .out2 .view .box img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.3s;
}
.inrPtChanYe .out2 .view .box:hover img {
  transform: scale(1.1);
}
.inrPtChanYe .out2 .view2 {
  text-align: center;
  padding-bottom: 50px;
}
.inrPtChanYe .out2 .view3 {
  display: flex;
  justify-content: space-between;
}
.inrPtChanYe .out2 .view3 .box {
  width: 330px;
  height: 390px;
  border: 1px solid #0028aa;
  padding: 10px;
  background: #fff;
  transition: 0.3s;
}
.inrPtChanYe .out2 .view3 .box .pic {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.inrPtChanYe .out2 .view3 .box .pic img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.inrPtChanYe .out2 .view3 .box ul {
  padding: 20px 0;
}
.inrPtChanYe .out2 .view3 .box ul li {
  line-height: 2em;
}
.inrPtChanYe .out2 .view3 .box:hover {
  box-shadow: 0 10px 20px rgba(0, 40, 170, 0.2);
}
.inrPtChanYe .out2 .view3 .box:hover .pic img {
  transform: scale(1.1);
}
.inrPtHeZuo .out .item {
  padding-bottom: 50px;
}
.inrPtHeZuo .out .item h4 {
  font-size: 26px;
  padding-bottom: 20px;
  color: #444;
}
.inrPtHeZuo .out .item h4 .iconfont {
  font-size: 26px;
  padding-right: 5px;
}
.inrPtHeZuo .out .item .line {
  width: 80px;
  height: 4px;
  background: #0028aa;
}
.inrPtHeZuo .out .item p {
  padding-top: 30px;
  font-size: 18px;
  color: #666;
  line-height: 2em;
}
.inrPtHeZuo .out .item ul {
  padding-top: 40px;
}
.inrPtHeZuo .out .item ul li {
  height: 200px;
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom-right-radius: 90px;
  background: #0028aa no-repeat right bottom;
  transition: 0.3s;
}
.inrPtHeZuo .out .item ul li .pic {
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.inrPtHeZuo .out .item ul li .pic .iconfont {
  font-size: 65px;
}
.inrPtHeZuo .out .item ul li .pic .font {
  text-align: center;
}
.inrPtHeZuo .out .item ul li .pic .font .big {
  font-size: 20px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 5px;
}
.inrPtHeZuo .out .item ul li .pic .font .small {
  font-size: 16px;
  opacity: 0.6;
}
.inrPtHeZuo .out .item ul li .tt {
  width: 1300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inrPtHeZuo .out .item ul li .tt h5 {
  font-size: 26px;
  padding-bottom: 10px;
}
.inrPtHeZuo .out .item ul li .tt .info {
  font-size: 20px;
  opacity: 0.8;
}
.inrPtHeZuo .out .item ul li:nth-child(2n) {
  background-color: #008ee5;
}
.inrPtHeZuo .out .item ul li:hover {
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.3);
}
.innerJiaoLiu .bigTitle .sub {
  font-size: 20px;
  color: #666;
  font-weight: 400;
  padding-top: 15px;
}
.innerJiaoLiu .list .item {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px dashed #0028aa;
  transition: 0.3s;
}
.innerJiaoLiu .list .item .pic {
  width: 180px;
  height: 180px;
}
.innerJiaoLiu .list .item .pic img {
  width: 100%;
  height: 100%;
}
.innerJiaoLiu .list .item .text {
  width: 1180px;
  height: 180px;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.innerJiaoLiu .list .item .text h4 {
  font-size: 22px;
  padding-bottom: 20px;
  opacity: 0.9;
}
.innerJiaoLiu .list .item .text p {
  font-size: 18px;
  opacity: 0.8;
  line-height: 1.8em;
}
.innerJiaoLiu .list .item:hover {
  background: #0028aa;
}
.innerJiaoLiu .list .item:hover .text {
  color: #fff;
}
.innerCG .top {
  padding: 20px 0;
  border-bottom: 1px solid #0028aa;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.innerCG .top h2 {
  font-size: 30px;
  padding-left: 20px;
  position: relative;
  color: #0028aa;
}
.innerCG .top h2::before {
  content: "";
  display: block;
  width: 6px;
  height: 26px;
  background: #0028aa;
  position: absolute;
  left: 0;
  top: 10px;
}
.innerCG .top .search {
  width: 300px;
  height: 30px;
  position: relative;
}
.innerCG .top .search .ipt {
  width: 300px;
  height: 30px;
  border: 1px solid #ccc;
  padding: 0 40px 0 10px;
  outline: none;
}
.innerCG .top .search .btn {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.innerCG .top .search .btn .iconfont {
  font-size: 26px;
  color: #666;
}
.innerCGHuoJiang .hot {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}
.innerCGHuoJiang .hot .pic {
  position: relative;
  width: 750px;
  height: 460px;
}
.innerCGHuoJiang .hot .pic img {
  width: 100%;
  height: 100%;
}
.innerCGHuoJiang .hot .pic .mask {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 40, 170, 0.8);
  padding: 50px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: 0.3s;
}
.innerCGHuoJiang .hot .pic .mask .time {
  font-size: 80px;
  opacity: 0.7;
  font-family: mydin;
}
.innerCGHuoJiang .hot .pic .mask h4 {
  font-size: 28px;
  padding: 20px 0;
  font-weight: 400;
}
.innerCGHuoJiang .hot .pic .mask .info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.innerCGHuoJiang .hot .pic .mask .info span {
  font-size: 18px;
  font-weight: 600;
}
.innerCGHuoJiang .hot .pic .mask:hover {
  opacity: 1;
}
.innerCGHuoJiang .hot .list {
  width: 750px;
}
.innerCGHuoJiang .hot .list .item {
  width: 100%;
  height: 153.3px;
  border-bottom: 1px solid #e4e4e4;
  border-right: 1px solid #e4e4e4;
  padding: 0 30px;
  background: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: 0.3s;
}
.innerCGHuoJiang .hot .list .item .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.innerCGHuoJiang .hot .list .item .title h4 {
  font-size: 18px;
}
.innerCGHuoJiang .hot .list .item .title .time {
  font-size: 28px;
  font-family: mydin;
  padding-left: 30px;
}
.innerCGHuoJiang .hot .list .item .info {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 14px;
  color: #999;
}
.innerCGHuoJiang .hot .list .item .info span {
  font-size: 18px;
  color: #666;
}
.innerCGHuoJiang .hot .list .item:nth-child(1) {
  border-top: 1px solid #e4e4e4;
}
.innerCGHuoJiang .hot .list .item:hover {
  background: #0028aa;
  color: #fff;
}
.innerCGHuoJiang .hot .list .item:hover .info {
  color: rgba(255, 255, 255, 0.6);
}
.innerCGHuoJiang .hot .list .item:hover .info span {
  color: #fff;
}
.innerCGHuoJiang .out {
  padding-top: 40px;
}
.innerCGHuoJiang .out .box {
  display: flex;
  justify-content: space-between;
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin-bottom: -1px;
  transition: 0.3s;
}
.innerCGHuoJiang .out .box .pic {
  width: 300px;
  height: 180px;
}
.innerCGHuoJiang .out .box .pic img {
  width: 100%;
  height: 100%;
}
.innerCGHuoJiang .out .box .text {
  flex: 1;
  padding-left: 30px;
  color: #333;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.innerCGHuoJiang .out .box .text .time {
  font-size: 36px;
  font-family: mydin;
  opacity: 0.6;
}
.innerCGHuoJiang .out .box .text .title {
  display: flex;
  justify-content: space-between;
  font-size: 26px;
  padding: 10px 0;
}
.innerCGHuoJiang .out .box .text .title h4 {
  font-weight: 400;
  opacity: 0.9;
}
.innerCGHuoJiang .out .box .text .title .r {
  font-size: 14px;
}
.innerCGHuoJiang .out .box .text .title .r span {
  font-size: 18px;
}
.innerCGHuoJiang .out .box .text .info {
  display: flex;
  justify-content: space-between;
  opacity: 0.8;
  font-size: 14px;
}
.innerCGHuoJiang .out .box .text .info span {
  font-size: 18px;
}
.innerCGHuoJiang .out .box:hover {
  background: #0028aa;
}
.innerCGHuoJiang .out .box:hover .text {
  color: #fff;
}
.innerCGLunWen .top h2 {
  display: flex;
}
.innerCGLunWen .top h2 .tabs {
  font-weight: 400;
  padding-left: 30px;
  display: flex;
  align-items: flex-end;
}
.innerCGLunWen .top h2 .tabs .btn {
  font-size: 15px;
  color: #666;
  padding: 0 6px;
  font-family: 'Georgia';
}
.innerCGLunWen .top h2 .tabs .btn:hover,
.innerCGLunWen .top h2 .tabs .btn.active {
  color: #0028aa;
  text-decoration: underline;
}
.innerCGLunWen .out {
  padding-top: 40px;
  font-family: 'Times New Roman', Times;
}
.innerCGLunWen .out .box {
  display: flex;
  justify-content: space-between;
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin-bottom: -1px;
  transition: 0.3s;
  background: #fff;
  color: #333;
}
.innerCGLunWen .out .box .pic {
  width: 300px;
  height: 180px;
}
.innerCGLunWen .out .box .pic img {
  width: 100%;
  height: 100%;
}
.innerCGLunWen .out .box .text {
  flex: 1;
  padding-left: 30px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.innerCGLunWen .out .box .text h4 {
  font-size: 25px;
  font-weight: 400;
}
.innerCGLunWen .out .box .text .sub {
  font-size: 18px;
  opacity: 0.8;
  padding-top: 10px;
}
.innerCGLunWen .out .box .text .info {
  display: flex;
  justify-content: space-between;
}
.innerCGLunWen .out .box .text .info .left {
  font-size: 20px;
}
.innerCGLunWen .out .box:hover {
  background: #0028aa;
  color: #fff;
}
.innerCGBaoGao .out {
  display: flex;
  justify-content: space-evenly;
  padding-top: 40px;
}
.innerCGBaoGao .out .box {
  display: block;
  width: 340px;
  height: 390px;
  border: 1px solid #e0e0e0;
}
.innerCGBaoGao .out .box .pic {
  width: 338px;
  height: 338px;
}
.innerCGBaoGao .out .box .pic img {
  width: 100%;
  height: 100%;
}
.innerCGBaoGao .out .box .text {
  line-height: 50px;
  background: #e4e4e4;
  text-align: center;
  transition: 0.3s;
}
.innerCGBaoGao .out .box .text h4 {
  font-weight: 400;
  font-size: 18px;
}
.innerCGBaoGao .out .box:hover .text {
  background: #0028aa;
  color: #fff;
}
.innerCGZhuanLi .out {
  padding: 40px 0;
}
.innerCGZhuanLi .out .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 120px;
  border-bottom: 1px solid #ccc;
  background: #fff;
  color: #333;
  transition: 0.3s;
  padding: 0 20px;
}
.innerCGZhuanLi .out .box .uper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}
.innerCGZhuanLi .out .box .uper h4 {
  font-size: 28px;
  font-weight: 400;
}
.innerCGZhuanLi .out .box .uper .time {
  font-size: 36px;
  font-family: mydin;
  opacity: 0.8;
}
.innerCGZhuanLi .out .box .info {
  font-size: 16px;
  opacity: 0.8;
}
.innerCGZhuanLi .out .box .info span {
  font-weight: 600;
  font-size: 18px;
}
.innerCGZhuanLi .out .box:hover {
  background: #0028aa;
  color: #fff;
}
.innerCGZhuanZhu .out {
  padding: 40px 0;
}
.innerCGZhuanZhu .out .box {
  display: flex;
  margin-bottom: 40px;
}
.innerCGZhuanZhu .out .box .pic {
  width: 250px;
  height: 250px;
  border: 1px solid #ccc;
  position: relative;
  flex-shrink: 0;
}
.innerCGZhuanZhu .out .box .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.innerCGZhuanZhu .out .box .pic .mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 40, 170, 0.7);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.innerCGZhuanZhu .out .box .pic .mask .iconfont {
  font-size: 50px;
}
.innerCGZhuanZhu .out .box .text {
  width: 1200px;
  padding-left: 40px;
}
.innerCGZhuanZhu .out .box .text h4 {
  font-size: 28px;
  font-weight: 400;
  padding-bottom: 26px;
}
.innerCGZhuanZhu .out .box .text p {
  font-size: 17px;
  color: #888;
  line-height: 2em;
}
.innerCGZhuanZhu .out .box:hover .mask {
  opacity: 1;
}
.innerUs {
  padding-top: 40px;
}
.innerUs .contact::after {
  content: "";
  display: block;
  clear: both;
}
.innerUs .contact .ctatLeft {
  float: left;
  width: 50%;
}
.innerUs .contact .ctatLxTxt h3 {
  font-size: 32px;
  color: #0028aa;
  font-weight: 400;
  padding-bottom: 30px;
  position: relative;
  padding-left: 20px;
}
.innerUs .contact .ctatLxTxt h3::after {
  display: block;
  content: "";
  width: 6px;
  height: 30px;
  background: #0028aa;
  position: absolute;
  left: 0;
  top: 8px;
}
.innerUs .contact .ctatLxTxtDes {
  font-size: 20px;
  color: #555;
  line-height: 2em;
}
.innerUs .contact .ctatLxTxtDes span {
  font-size: 16px;
  color: #888;
}
.innerUs .contact .ctatRit {
  float: right;
  width: 680px;
  position: relative;
}
.innerUs .contact .ewmBig {
  width: 180px;
  text-align: center;
  font-size: 14px;
  color: #666;
  padding-top: 30px;
}
.innerUs .contact .ewmBig img {
  width: 175px;
}
.innerMain .innerMessage {
  background: rgba(230, 230, 230, 0.7);
  padding: 60px 30px;
}
.innerMain .innerMessage h3.title {
  font-size: 32px;
  color: #0028aa;
  font-weight: 400;
  padding-bottom: 30px;
  position: relative;
  padding-left: 20px;
}
.innerMain .innerMessage h3.title::after {
  display: block;
  content: "";
  width: 6px;
  height: 30px;
  background: #0028aa;
  position: absolute;
  left: 0;
  top: 8px;
}
.innerMain .innerMessage .msgCon form {
  display: block;
}
.innerMain .innerMessage .msgCon form::after {
  display: block;
  content: "";
  clear: both;
}
.innerMain .innerMessage .msgCon .box {
  float: left;
  width: 100%;
  padding-bottom: 23px;
}
.innerMain .innerMessage .msgCon .box:nth-child(2) {
  float: left;
}
.innerMain .innerMessage .msgCon .row {
  display: block;
  width: 100%;
  height: 50px;
  background: #fff;
  border: 1px solid #dddddd;
  outline: none;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 16px;
  color: #555;
  transition: 0.3s;
}
.innerMain .innerMessage .msgCon .box:nth-child(3) {
  width: 100%;
}
.innerMain .innerMessage .msgCon .row2 {
  width: 100%;
  height: 100px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.innerMain .innerMessage .msgCon .row:focus {
  border-color: #0028aa;
}
.innerMain .innerMessage .msgCon .btn {
  width: 200px;
  height: 50px;
  border: 1px solid #0028aa;
  background: #fff;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}
.innerMain .innerMessage .msgCon .btn:hover {
  background: #0028aa;
  color: #fff;
}
.innerMain .innerMessage .msgCon em.error {
  font-style: normal;
  color: #c00;
  font-size: 14px;
  background: url(../images/error.png) no-repeat left center;
  padding: 5px 0;
  padding-left: 27px;
  background-size: 20px;
  display: block;
}
.innerMain .innerMessage .msgCon em.valid {
  background-image: url(../images/ok.png);
  color: #090;
}
.innerMain .innerMessage .msgCon .row.error {
  border-color: #c00;
}
.innerMain .innerMessage .msgCon .row.valid {
  border-color: #090;
}
.innerJoin .bigTitle {
  font-size: 32px;
  color: #0028aa;
  border-bottom: 2px solid #0028aa;
  padding: 40px 0 20px;
  text-align: center;
  margin-bottom: 50px;
}
.inrJNyingcai .top {
  font-size: 60px;
  background: #00216e;
  color: #fff;
  padding: 0 30px;
  line-height: 60px;
  display: flex;
  align-items: center;
}
.inrJNyingcai .top h4 {
  font-size: 26px;
  font-weight: 400;
  padding-left: 10px;
}
.inrJNyingcai .top .iconfont {
  display: block;
  font-size: 28px;
}
.inrJNyingcai .con .item {
  display: flex;
  justify-content: space-between;
  line-height: 56px;
  font-size: 14px;
  padding: 0 30px;
  background: #f6f6f6;
  border-bottom: 1px dotted #ccc;
  transition: 0.3s;
}
.inrJNyingcai .con .item .text {
  font-size: 18px;
  position: relative;
  transition: 0.3s;
}
.inrJNyingcai .con .item .text::after {
  content: ">";
  display: block;
  position: absolute;
  top: 0;
  left: -30px;
  font-size: 20px;
  color: #666;
  opacity: 0;
  transition: 0.3s;
}
.inrJNyingcai .con .item .time {
  color: #888;
}
.inrJNyingcai .con .item:nth-child(2n) {
  background: #e6e9f2;
}
.inrJNyingcai .con .item:hover .text {
  color: #0028aa;
  padding-left: 30px;
}
.inrJNyingcai .con .item:hover .text::after {
  opacity: 1;
  left: 0;
  color: #0028aa;
}
.inrJNyingcai .con .item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1) inset;
}
.MyYingCai {
  position: relative;
}
.MyYingCai .title {
  color: #333;
  text-align: center;
  font-size: 28px;
  color: #0028aa;
}
.MyYingCai .title h4 {
  font-weight: 400;
}
.MyYingCai .title .line {
  width: 60px;
  height: 3px;
  background-color: #0028aa;
  display: inline-block;
}
.MyYingCai .xuqiu {
  background: #f4f4f4;
  padding: 80px 0;
}
.MyYingCai .xuqiu .con {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.MyYingCai .xuqiu .con .item {
  width: 32%;
  height: 260px;
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  transition: 0.3s;
}
.MyYingCai .xuqiu .con .item h5 {
  font-size: 22px;
  position: relative;
  padding-left: 15px;
  padding-bottom: 30px;
}
.MyYingCai .xuqiu .con .item h5::after {
  content: "";
  display: block;
  width: 5px;
  height: 20px;
  background: #333;
  position: absolute;
  left: 0;
  top: 6px;
}
.MyYingCai .xuqiu .con .item .sub {
  font-size: 17px;
  color: #666;
}
.MyYingCai .xuqiu .con .item .sub .iconfont {
  font-size: 20px;
}
.MyYingCai .xuqiu .con .item ul {
  padding-top: 10px;
  color: #777;
  line-height: 2em;
}
.MyYingCai .xuqiu .con .item:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.MyYingCai .fuli {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.7);
}
.MyYingCai .fuli .con {
  padding-top: 40px;
}
.MyYingCai .fuli .con ul {
  display: flex;
  justify-content: space-between;
}
.MyYingCai .fuli .con ul li {
  width: 350px;
  height: 450px;
  position: relative;
  cursor: pointer;
}
.MyYingCai .fuli .con ul li .pic img {
  width: 100%;
  height: 100%;
}
.MyYingCai .fuli .con ul li .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  color: #fff;
  padding: 50px 30px;
  text-align: center;
  transition: 0.3s;
}
.MyYingCai .fuli .con ul li .mask .icon {
  position: absolute;
  left: calc(50% - 40px);
  top: 100px;
  transition: 0.3s;
}
.MyYingCai .fuli .con ul li .mask .icon .iconfont {
  font-size: 80px;
}
.MyYingCai .fuli .con ul li .mask .tit {
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  transition: 0.3s;
}
.MyYingCai .fuli .con ul li .mask .tit h4 {
  font-size: 26px;
  padding-bottom: 10px;
}
.MyYingCai .fuli .con ul li .mask .tit .line {
  width: 60px;
  height: 4px;
  background: #fff;
  display: inline-block;
}
.MyYingCai .fuli .con ul li .mask .des {
  width: 100%;
  font-size: 16px;
  line-height: 1.8em;
  position: absolute;
  padding: 30px;
  top: 300px;
  left: 0;
  opacity: 0;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.8);
}
.MyYingCai .fuli .con ul li:hover .mask {
  background: rgba(0, 40, 170, 0.7);
}
.MyYingCai .fuli .con ul li:hover .mask .icon {
  top: 50px;
}
.MyYingCai .fuli .con ul li:hover .mask .tit {
  top: 150px;
}
.MyYingCai .fuli .con ul li:hover .mask .des {
  top: 220px;
  opacity: 1;
}
.MyYingCai .jiaru {
  padding: 80px 0;
  background: url(../images/yingcai_bg.jpg) center no-repeat;
  background-size: cover;
}
.MyYingCai .jiaru .title {
  color: #fff;
}
.MyYingCai .jiaru .title .line {
  background: #fff;
}
.MyYingCai .jiaru .con {
  padding: 40px 0;
  color: #fff;
  line-height: 2em;
  font-size: 20px;
  opacity: 0.8;
  text-align: center;
}
.inrJNpeiyang .pymain .one {
  position: relative;
}
.inrJNpeiyang .pymain .one::after {
  display: block;
  content: "";
  clear: both;
}
.inrJNpeiyang .pymain .one .text {
  position: absolute;
  top: 150px;
  background: #0028aa;
  color: #fff;
  width: 600px;
  padding: 50px;
  box-shadow: 10px 0 20px rgba(0, 0, 0, 0.4);
}
.inrJNpeiyang .pymain .one .text h3 {
  font-size: 26px;
  padding-bottom: 15px;
}
.inrJNpeiyang .pymain .one .text .des {
  opacity: 0.9;
  line-height: 1.8em;
}
.inrJNpeiyang .pymain .one .pic {
  width: 880px;
  float: right;
}
.inrJNpeiyang .pymain .one .pic img {
  width: 100%;
}
.inrJNpeiyang .pymain .two {
  padding-top: 60px;
}
.inrJNpeiyang .pymain .two .title {
  color: #333;
  text-align: center;
  font-size: 28px;
  color: #0028aa;
  padding-bottom: 40px;
}
.inrJNpeiyang .pymain .two .title h4 {
  font-weight: 400;
}
.inrJNpeiyang .pymain .two .title .line {
  width: 60px;
  height: 3px;
  background-color: #0028aa;
  display: inline-block;
}
.inrJNpeiyang .pymain .two .title p {
  font-size: 18px;
  color: #666;
  padding-top: 20px;
}
.inrJNpeiyang .pymain .two .pic1 ul {
  display: flex;
  justify-content: space-between;
}
.inrJNpeiyang .pymain .two .pic1 ul li img {
  width: 100%;
  display: block;
}
.inrJNpeiyang .pymain .two .pic2 {
  padding-top: 40px;
}
.inrJNpeiyang .pymain .two .pic2 img {
  display: block;
  width: 100%;
}
.inrJNfengcai .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.inrJNfengcai .list:after {
  content: "";
  display: block;
  width: 330px;
}
.inrJNfengcai .list .box {
  width: 330px;
  cursor: pointer;
  margin-bottom: 30px;
  display: block;
}
.inrJNfengcai .list .box .pic {
  width: 100%;
  height: 275px;
  position: relative;
  overflow: hidden;
  background: no-repeat center;
  background-size: cover;
}
.inrJNfengcai .list .box .pic img {
  width: 100%;
  height: 100%;
  opacity: 0;
  display: block;
}
.inrJNfengcai .list .box .pic .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-direction: column;
  background: rgba(0, 40, 170, 0.8);
  opacity: 0;
  transition: 0.3s;
}
.inrJNfengcai .list .box .pic .mask .iconfont {
  font-size: 50px;
}
.inrJNfengcai .list .box .pic .mask .des {
  font-size: 18px;
  padding: 10px;
}
.inrJNfengcai .list .box .text {
  background: #EEEEEE;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  transition: 0.3s;
  color: #444;
}
.inrJNfengcai .list .box .text .small {
  font-size: 14px;
  color: #888;
}
.inrJNfengcai .list .box .text .big {
  padding-top: 5px;
}
.inrJNfengcai .list .box:hover .pic .mask {
  opacity: 1;
}
.inrJNfengcai .list .box:hover .text {
  background: #0028aa;
  color: #fff;
}
.inrJNfengcai .list .box:hover .text .small {
  color: #ccc;
}
.innerYw .bigTitle {
  font-size: 32px;
  color: #0028aa;
  border-bottom: 2px solid #0028aa;
  padding: 40px 0 20px;
  text-align: center;
  margin-bottom: 50px;
}
.innerYwLunTan .des {
  font-size: 18px;
  line-height: 2em;
  color: #555;
}
.LTliangdian {
  position: relative;
  background: url(../images/yewu1_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 80px 0 40px;
}
.LTliangdian .title {
  font-size: 26px;
  color: #fff;
  text-align: center;
  position: relative;
}
.LTliangdian .title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50px;
  left: calc(50% - 30px);
}
.LTliangdian .list {
  padding-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.LTliangdian .list .item {
  width: 30%;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.LTliangdian .list .item .iconfont {
  font-size: 50px;
}
.LTliangdian .list .item .text {
  padding-left: 30px;
  line-height: 2em;
  opacity: 0.8;
}
.LTanli {
  position: relative;
  padding: 80px 0;
  background: #f4f4f4;
}
.LTanli .title {
  font-size: 26px;
  color: #555;
  text-align: center;
  position: relative;
}
.LTanli .title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #555;
  position: absolute;
  top: 50px;
  left: calc(50% - 30px);
}
.LTanli .list {
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.LTanli .list .item {
  display: block;
  width: 49%;
  margin-bottom: 30px;
}
.LTanli .list .item .pic {
  width: 100%;
  height: 430px;
  overflow: hidden;
}
.LTanli .list .item .pic img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.LTanli .list .item .text {
  background: #fff;
  height: 100px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s;
  color: #333;
}
.LTanli .list .item .text .time {
  font-size: 14px;
  opacity: 0.7;
}
.LTanli .list .item .text .font {
  font-size: 18px;
  padding-top: 10px;
}
.LTanli .list .item:hover .pic img {
  transform: scale(1.05);
}
.LTanli .list .item:hover .text {
  background: #0028aa;
  color: #fff;
}
.innerYwChengGuo .one .item {
  display: flex;
  justify-content: space-between;
}
.innerYwChengGuo .one .item .pic {
  width: 50%;
}
.innerYwChengGuo .one .item .pic img {
  width: 100%;
  display: block;
}
.innerYwChengGuo .one .item .text {
  position: relative;
  padding: 50px;
  background: #fff;
  width: 50%;
  overflow: hidden;
}
.innerYwChengGuo .one .item .text .icon {
  position: absolute;
  color: rgba(0, 40, 170, 0.05);
  left: 0px;
  top: 0px;
}
.innerYwChengGuo .one .item .text .icon .iconfont {
  font-size: 150px;
}
.innerYwChengGuo .one .item .text h4 {
  font-size: 26px;
  font-weight: 400;
}
.innerYwChengGuo .one .item .text h4::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #0028aa;
  margin: 10px 0 30px;
}
.innerYwChengGuo .one .item .text p {
  font-size: 20px;
  line-height: 2em;
  opacity: 0.9;
}
.innerYwChengGuo .one .item:nth-child(2) .text .icon {
  left: auto;
  top: auto;
  right: 0px;
  bottom: 0px;
}
.innerYwChengGuo .one .item:hover .text {
  background: #0028aa;
  color: #fff;
}
.innerYwChengGuo .one .item:hover .text .iconfont {
  color: rgba(255, 255, 255, 0.3);
}
.innerYwChengGuo .two {
  padding: 80px 0 40px;
}
.innerYwChengGuo .two .title {
  font-size: 30px;
  text-align: center;
  position: relative;
  font-weight: 600;
}
.innerYwChengGuo .two .title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #888;
  position: absolute;
  top: 50px;
  left: calc(50% - 30px);
}
.innerYwChengGuo .two .con {
  width: 850px;
  height: 850px;
  margin: 80px auto 20px;
  position: relative;
}
.innerYwChengGuo .two .con .line {
  width: 100%;
  height: 100%;
  border: 2px dashed #0028aa;
  border-radius: 50%;
  animation: myRotate 70s infinite linear;
}
.innerYwChengGuo .two .con .center,
.innerYwChengGuo .two .con .center_bg {
  position: absolute;
  background: url(../images/cgCenter.png) no-repeat center;
  top: calc(50% - 160px);
  left: calc(50% - 160px);
  width: 320px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #ffff;
  font-size: 40px;
}
.innerYwChengGuo .two .con .center .iconfont,
.innerYwChengGuo .two .con .center_bg .iconfont {
  font-size: 80px;
}
.innerYwChengGuo .two .con .center_bg {
  animation: myScale 2s infinite;
}
.innerYwChengGuo .two .con .group .item {
  width: 250px;
  position: absolute;
}
.innerYwChengGuo .two .con .group .item h6 {
  font-size: 22px;
  font-weight: 400;
  padding-bottom: 10px;
}
.innerYwChengGuo .two .con .group .item p {
  font-size: 16px;
  color: #888;
  line-height: 1.6em;
}
.innerYwChengGuo .two .con .group .item .spot {
  width: 12px;
  height: 12px;
  background: #0028aa;
  border-radius: 50%;
  position: absolute;
}
.innerYwChengGuo .two .con .group .item .spot::after {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: #0028aa;
  border-radius: 50%;
  content: "";
  top: 0;
  left: 0;
  animation: myScale2 3s infinite forwards;
}
.innerYwChengGuo .two .con .group .item:nth-child(1) {
  top: 50px;
  left: -150px;
}
.innerYwChengGuo .two .con .group .item:nth-child(1) .spot {
  right: -23px;
  bottom: 0;
}
.innerYwChengGuo .two .con .group .item:nth-child(2) {
  top: 50px;
  right: -170px;
}
.innerYwChengGuo .two .con .group .item:nth-child(2) .spot {
  left: -44px;
  bottom: 0;
}
.innerYwChengGuo .two .con .group .item:nth-child(2) .spot::after {
  animation-delay: 0.5s;
}
.innerYwChengGuo .two .con .group .item:nth-child(3) {
  right: -280px;
  top: 50%;
}
.innerYwChengGuo .two .con .group .item:nth-child(3) .spot {
  left: -37px;
  top: 0;
}
.innerYwChengGuo .two .con .group .item:nth-child(3) .spot::after {
  animation-delay: 1s;
}
.innerYwChengGuo .two .con .group .item:nth-child(4) {
  top: 700px;
  right: -170px;
}
.innerYwChengGuo .two .con .group .item:nth-child(4) .spot {
  left: -34px;
  top: 0;
}
.innerYwChengGuo .two .con .group .item:nth-child(4) .spot::after {
  animation-delay: 1.5s;
}
.innerYwChengGuo .two .con .group .item:nth-child(5) {
  top: 700px;
  left: -150px;
}
.innerYwChengGuo .two .con .group .item:nth-child(5) .spot {
  right: -12px;
  top: 0;
}
.innerYwChengGuo .two .con .group .item:nth-child(5) .spot::after {
  animation-delay: 2s;
}
.innerYwChengGuo .two .con .group .item:nth-child(6) {
  top: 50%;
  left: -280px;
}
.innerYwChengGuo .two .con .group .item:nth-child(6) .spot {
  right: -36px;
  top: 0;
}
.innerYwChengGuo .two .con .group .item:nth-child(6) .spot::after {
  animation-delay: 2.5s;
}
.chengGuoLiYou {
  position: relative;
  z-index: 10;
  padding: 80px 0;
  background: linear-gradient(#2685c9, #25bdba);
}
.chengGuoLiYou .title {
  font-size: 30px;
  text-align: center;
  position: relative;
  font-weight: 600;
  color: #fff;
}
.chengGuoLiYou .title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #ccc;
  position: absolute;
  top: 50px;
  left: calc(50% - 30px);
}
.chengGuoLiYou .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 70px;
}
.chengGuoLiYou .con .item {
  width: 30%;
  color: #fff;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
}
.chengGuoLiYou .con .item .icon {
  padding-right: 10px;
}
.chengGuoLiYou .con .item .icon .iconfont {
  font-size: 60px;
}
.chengGuoLiYou .con .item .text h6 {
  font-size: 22px;
  font-weight: 400;
  padding-bottom: 10px;
}
.chengGuoLiYou .con .item .text p {
  font-size: 16px;
  opacity: 0.8;
}
.innerYwPeixun .pxType {
  display: flex;
  justify-content: space-between;
}
.innerYwPeixun .pxType .item {
  background: #fff;
  width: 30%;
  border: 1px solid #efefef;
  text-align: center;
  padding-bottom: 50px;
  color: #333;
  transition: 0.3s;
}
.innerYwPeixun .pxType .item .pic {
  padding: 50px;
}
.innerYwPeixun .pxType .item .pic img {
  width: 100%;
  transition: 0.3s;
}
.innerYwPeixun .pxType .item h4 {
  font-size: 26px;
  padding-bottom: 10px;
  font-weight: 400;
}
.innerYwPeixun .pxType .item p {
  font-size: 18px;
  opacity: 0.8;
}
.innerYwPeixun .pxType .item:hover {
  border-color: #0028aa;
  color: #0028aa;
}
.innerYwPeixun .pxType .item:hover .pic img {
  transform: scale(1.1);
}
.PXcourse {
  padding: 80px 0;
  position: relative;
  z-index: 10;
  background: #f4f4f4;
}
.PXcourse .title {
  font-size: 30px;
  text-align: center;
  position: relative;
  font-weight: 600;
}
.PXcourse .title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #888;
  position: absolute;
  top: 50px;
  left: calc(50% - 30px);
}
.PXcourse .con {
  padding-top: 60px;
}
.PXcourse .con .item {
  display: flex;
  color: #333;
}
.PXcourse .con .item .text {
  width: 50%;
  background: #fff;
  padding: 50px;
  position: relative;
}
.PXcourse .con .item .text h4 {
  font-size: 25px;
  opacity: 0.9;
  padding-bottom: 20px;
}
.PXcourse .con .item .text ul {
  opacity: 0.7;
  font-size: 18px;
}
.PXcourse .con .item .text ul li {
  padding: 5px 0;
  padding-left: 15px;
  position: relative;
}
.PXcourse .con .item .text ul li::after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  background: #666;
  position: absolute;
  left: 0;
  top: 15px;
}
.PXcourse .con .item .text .icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.PXcourse .con .item .text .icon .iconfont {
  font-size: 200px;
  color: rgba(0, 40, 170, 0.1);
}
.PXcourse .con .item .pic {
  width: 50%;
}
.PXcourse .con .item .pic img {
  display: block;
  width: 100%;
}
.PXcourse .con .item:hover .text {
  background: #0028aa;
  color: #fff;
}
.PXcourse .con .item:hover .text ul li::after {
  background: rgba(255, 255, 255, 0.7);
}
.PXcourse .con .item:hover .text .icon .iconfont {
  color: rgba(255, 255, 255, 0.3);
}
.MNliucheng {
  position: relative;
  z-index: 10;
  padding: 80px 0;
  background: url(../images/monibg.jpg) no-repeat center;
  background-size: cover;
}
.MNliucheng .title {
  font-size: 30px;
  text-align: center;
  position: relative;
  font-weight: 600;
  color: #fff;
}
.MNliucheng .title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #ccc;
  position: absolute;
  top: 50px;
  left: calc(50% - 30px);
}
.MNliucheng .con {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}
.MNliucheng .con .item {
  color: #fff;
  padding: 0 30px;
  text-align: center;
}
.MNliucheng .con .item .iconfont {
  font-size: 100px;
}
.MNliucheng .con .item .text {
  font-size: 22px;
  padding-top: 20px;
}
.MNliucheng .con .item:nth-child(2n) .iconfont {
  font-size: 30px;
}
.MNanli {
  position: relative;
  z-index: 10;
  padding: 80px 0;
}
.MNanli .title {
  font-size: 30px;
  text-align: center;
  position: relative;
  font-weight: 600;
  color: #333;
}
.MNanli .title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #888;
  position: absolute;
  top: 50px;
  left: calc(50% - 30px);
}
.MNanli .con {
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
}
.MNanli .con .item {
  width: 19%;
  border: 2px solid #eee;
  text-align: center;
  transition: 0.3s;
}
.MNanli .con .item .pic {
  padding: 20px;
}
.MNanli .con .item .pic img {
  width: 100%;
}
.MNanli .con .item .text {
  line-height: 3em;
  font-size: 20px;
}
.MNanli .con .item:hover {
  border: #0028aa 2px solid;
}
.MNanli .con .item:hover .text {
  color: #0028aa;
}
.rongziCase {
  position: relative;
  z-index: 10;
  background: #f8f8f8;
  padding: 80px 0;
}
.rongziCase .con {
  padding-top: 60px;
}
.rongziCase .con img {
  width: 100%;
}
.rongziFuwu {
  height: 483px;
  position: relative;
  z-index: 10;
  background: url(../images/rongzibg.jpg) no-repeat center;
}
.inrJNceshi .yewu .con {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.inrJNceshi .yewu .con .mask {
  width: 100%;
  height: 50px;
  background: rgba(0, 113, 193, 0.6);
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  flex-direction: column;
}
.inrJNceshi .yewu .con .mask .title {
  padding: 10px 0;
}
.inrJNceshi .yewu .con .left {
  width: 400px;
}
.inrJNceshi .yewu .con .left .link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 132px;
  cursor: pointer;
  background: #0071C1;
  font-size: 28px;
  color: #fff;
  border-top: 2px solid #fff;
  transition: 0.1s;
}
.inrJNceshi .yewu .con .left .link:first-child {
  background: #fff;
  color: #0071C1;
  cursor: auto;
}
.inrJNceshi .yewu .con .left .link:first-child:hover {
  font-size: 28px;
}
.inrJNceshi .yewu .con .left .link:hover {
  font-size: 30px;
}
.inrJNceshi .yewu .con .center ul {
  width: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.inrJNceshi .yewu .con .center ul li {
  width: 313px;
  height: 188px;
  overflow: hidden;
  position: relative;
}
.inrJNceshi .yewu .con .center ul li img {
  display: block;
  width: 100%;
  transition: 0.3s;
  object-fit: cover;
}
.inrJNceshi .yewu .con .center ul li:hover img {
  transform: scale(1.1);
}
.inrJNceshi .yewu .con .right {
  width: 300px;
  height: 390px;
  position: relative;
  overflow: hidden;
}
.inrJNceshi .yewu .con .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inrJNceshi .yewu .con .right .mask {
  height: 200px;
  bottom: -150px;
  align-items: flex-start;
  justify-content: flex-start;
}
.inrJNceshi .yewu .con .right .mask .title {
  line-height: 50px;
  padding: 0 20px;
}
.inrJNceshi .yewu .con .right .mask .data {
  padding: 20px;
  font-size: 18px;
  line-height: 1.6em;
}
.inrJNceshi .yewu .con .right:hover .mask {
  bottom: 0;
}
.HXceshi {
  height: 546px;
  position: relative;
  background: url(../images/ceshi2bg.jpg) no-repeat center;
}
.HXxuanze {
  position: relative;
  padding: 80px 0;
}
.HXxuanze .con {
  padding-top: 50px;
}
.HXxuanze .con img {
  width: 100%;
}
.inrJNqianyan .con img {
  width: 100%;
}
.QYtuandui {
  height: 515px;
  position: relative;
  background: url(../images/qianyan2.jpg) no-repeat center;
}
.QYyanjiu {
  position: relative;
  padding: 80px 0;
}
.QYyanjiu .con {
  padding-top: 50px;
}
.QYyanjiu .con img {
  width: 100%;
}
.teachOut .top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}
.teachOut .top .pic {
  position: relative;
}
.teachOut .top .pic img {
  width: 320px;
  position: relative;
  z-index: 2;
  display: block;
}
.teachOut .top .pic .mask {
  background: #4F9CEE;
  position: absolute;
  left: 15px;
  top: 15px;
}
.teachOut .top .pic .mask img {
  opacity: 0;
}
.teachOut .top .text {
  width: 1050px;
}
.teachOut .top .text .name {
  font-size: 40px;
}
.teachOut .top .text .info {
  padding: 10px 0;
  font-size: 23px;
  color: #888;
}
.teachOut .top .text .info span {
  padding-right: 10px;
}
.teachOut .top .text .mail {
  font-size: 16px;
  color: #666;
  display: flex;
  align-items: center;
  padding-bottom: 50px;
}
.teachOut .top .text .mail .iconfont {
  display: block;
  font-size: 20px;
  padding-right: 2px;
  transform: translateY(1px);
}
.teachOut .top .text .des {
  font-size: 18px;
  color: #555;
  line-height: 2em;
}
.teachOut .con .box {
  padding: 10px 0 40px;
}
.teachOut .con .box .title {
  position: relative;
}
.teachOut .con .box .title h3 {
  display: inline-block;
  position: relative;
  z-index: 2;
  font-size: 28px;
  color: #333;
  background: #fff;
  font-weight: 400;
  padding-right: 30px;
  line-height: 1em;
}
.teachOut .con .box .title h3::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 28px;
  background: #4F9CEE;
  left: -30px;
  top: 0;
}
.teachOut .con .box .title .line {
  width: 100%;
  height: 1px;
  background: #bbb;
  position: absolute;
  top: 50%;
}
.teachOut .con .box .main {
  font-size: 18px;
  padding: 20px 0;
  color: #555;
  line-height: 2em;
  text-indent: 2em;
  text-align: justify;
}
.teachOut .con .box .main p {
  padding: 5px 0;
}
.inrProOut {
  padding-bottom: 80px;
}
.inrProOut .top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}
.inrProOut .top .pic {
  width: 500px;
  height: 500px;
  position: relative;
}
.inrProOut .top .pic img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  border: 1px solid #4F9CEE;
}
.inrProOut .top .pic::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #4F9CEE;
  position: absolute;
  bottom: -15px;
  right: -15px;
}
.inrProOut .top .text {
  width: 870px;
}
.inrProOut .top .text h2 {
  font-size: 36px;
  font-weight: 400;
  padding-bottom: 20px;
  padding-top: 10px;
}
.inrProOut .top .text .info {
  display: flex;
  font-size: 16px;
  color: #888;
  padding: 15px 0;
  border-bottom: 1px solid #e4e4e4;
}
.inrProOut .top .text .info .item {
  padding-right: 50px;
}
.inrProOut .top .text .info .item span {
  color: #333;
  font-size: 20px;
  display: inline-block;
}
.inrProOut .top .text .des {
  padding: 15px 0;
  color: #888;
  font-size: 16px;
  display: flex;
  border-bottom: 1px solid #e4e4e4;
}
.inrProOut .top .text .des .left {
  width: 85px;
}
.inrProOut .top .text .des .rit {
  flex: 1;
  font-size: 20px;
  color: #333;
  line-height: 2em;
}
.inrProOut .top .text .btn {
  display: block;
  margin-top: 50px;
  width: 160px;
  height: 50px;
  background: #2685c9;
  color: #fff;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.inrProOut .top .text .btn .iconfont {
  font-size: 28px;
}
.inrProOut .top .text .btn:hover {
  background: #0028aa;
}
.inrProOut .con .navlist {
  height: 46px;
  width: 100%;
  background: #0028aa;
  border-left: 1px solid #0028aa;
  border-right: 1px solid #0028aa;
  display: flex;
}
.inrProOut .con .navlist .box {
  padding: 0 30px;
  line-height: 46px;
  color: #fff;
  cursor: pointer;
  position: relative;
}
.inrProOut .con .navlist .box.active {
  background: #fff;
  color: #0028aa;
}
.inrProOut .con .navlist .box.active::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: #0028aa;
  position: absolute;
  top: 0;
  left: 0;
}
.inrProOut .con .mainlist {
  padding: 30px;
  border: 1px solid #0028aa;
  border-top: none;
  line-height: 1.8em;
}
.inrProOut .con .mainlist .item {
  display: none;
  min-height: 300px;
}
.innStuOut .top {
  display: flex;
  justify-content: space-between;
}
.innStuOut .top .group {
  width: 600px;
  height: 600px;
}
.innStuOut .top .group .big {
  width: 100%;
  height: 100%;
  position: relative;
}
.innStuOut .top .group .big .swiper {
  width: 100%;
  height: 100%;
}
.innStuOut .top .group .big .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.innStuOut .top .group .big .swiper-slide div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: no-repeat center;
}
.innStuOut .top .group .big .swiper-slide div.top {
  background-size: cover;
  z-index: 1;
  filter: blur(60px);
  transform: scale(1.5);
}
.innStuOut .top .group .big .swiper-slide div.bottom {
  background-size: contain;
  z-index: 2;
}
.innStuOut .top .group .big .swiper-pagination {
  color: #fff;
  font-size: 18px;
}
.innStuOut .top .info {
  width: 800px;
  height: 600px;
  position: relative;
}
.innStuOut .top .info .name {
  font-size: 44px;
  color: #00B7FF;
  padding: 60px 0;
}
.innStuOut .top .info .listitem {
  padding-left: 40px;
}
.innStuOut .top .info .icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 11;
  opacity: 0.1;
}
.innStuOut .top .info .icon .iconfont {
  font-size: 250px;
  color: #00B7FF;
}
.innStuOut .top .info .color {
  width: 100px;
  height: 100px;
  background: #00B7FF;
  position: absolute;
  bottom: 0;
  right: 0;
}
.innStuOut .top .info .color::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: #fff;
}
.innStuOut .stumain {
  padding-top: 80px;
}
.innStuOut .stumain .listitem {
  padding-bottom: 40px;
}
.innStuOut .listitem .title {
  position: relative;
}
.innStuOut .listitem h3 {
  display: inline-block;
  position: relative;
  z-index: 2;
  font-size: 28px;
  color: #333;
  background: #fff;
  font-weight: 400;
  padding-right: 30px;
  line-height: 1em;
}
.innStuOut .listitem h3::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 28px;
  background: #00B7FF;
  left: -30px;
  top: 0;
}
.innStuOut .listitem .line {
  width: 100%;
  height: 1px;
  background: #bbb;
  position: absolute;
  top: 50%;
}
.innStuOut .listitem .con {
  padding-top: 30px;
  line-height: 1.8em;
  font-size: 18px;
}
.newsBanner {
  width: 100%;
  height: 180px;
  background: url(../images/news_banner.jpg) no-repeat center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.newsBanner h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  padding-bottom: 20px;
}
.newsBanner .line {
  width: 60px;
  height: 3px;
  background: #fff;
}
.inrNsCon {
  padding: 30px 80px;
}
.inrNsCon ul {
  min-height: 600px;
}
.inrNsCon li {
  border-bottom: 1px dashed #ccc;
  padding: 0 10px;
}
.inrNsCon li a {
  display: flex;
  height: 100px;
  align-items: center;
}
.inrNsCon li a .pic {
  width: 55px;
  height: 55px;
}
.inrNsCon li a .pic img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.inrNsCon li a .time {
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #0028aa;
}
.inrNsCon li a .time .big {
  font-size: 28px;
  font-weight: 600;
}
.inrNsCon li a .time .small {
  font-size: 14px;
  opacity: 0.7;
}
.inrNsCon li a .text {
  font-size: 18px;
  line-height: 1.8em;
  font-weight: 600;
  padding-left: 20px;
  width: 1000px;
}
.inrNsCon li:hover .text {
  color: #0028aa;
}
.inrNs2Con {
  padding: 30px 80px;
}
.inrNs2Con ul {
  min-height: 600px;
}
.inrNs2Con li {
  height: 180px;
}
.inrNs2Con li a {
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding: 10px;
  background: #fff;
  transition: 0.3s;
  border-bottom: 1px dashed #ccc;
  color: #333;
}
.inrNs2Con li a .pic {
  width: 300px;
  height: 100%;
}
.inrNs2Con li a .pic img {
  width: 100%;
  height: 100%;
}
.inrNs2Con li a .text {
  width: 920px;
}
.inrNs2Con li a .text .row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.inrNs2Con li a .text .row .title {
  font-size: 22px;
}
.inrNs2Con li a .text .row .time {
  font-size: 14px;
  opacity: 0.7;
}
.inrNs2Con li a .text .des {
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.8em;
}
.inrNs2Con li a:hover {
  background: #0028aa;
  border-bottom-color: #fff;
  color: #fff;
}
.yuyueBuZhou {
  position: relative;
  z-index: 11;
  width: 100%;
  height: 400px;
  background: url(../images/yuyuebuzhou.jpg) no-repeat center;
}
.detailcon {
  padding: 30px 150px;
}
.detailcon .title {
  font-size: 25px;
  line-height: 1.8em;
  padding: 20px 0;
  border-bottom: 1px dashed #ccc;
  text-align: center;
}
.detailcon .info {
  font-size: 14px;
  color: #999;
  text-align: center;
  padding: 10px 0;
}
.detailcon .info span {
  padding-right: 20px;
}
.detailcon .content {
  padding: 30px 0;
}
.detailcon .content img {
  max-width: 100%;
}
.pf3Fixed {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 101;
}
.pf3Fixed li .box {
  width: 170px;
  height: 50px;
  border-radius: 5px 0 0 5px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 1px;
  transition: 0.2s;
  transform: translateX(120px);
  cursor: pointer;
}
.pf3Fixed li .box .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf3Fixed li .box .icon .iconfont {
  font-size: 30px;
}
.pf3Fixed li .box .text {
  width: 120px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pf3Fixed li .box .text .small {
  font-size: 12px;
  opacity: 0.7;
  padding-bottom: 3px;
}
.pf3Fixed li .box .text .big {
  font-size: 14px;
  font-weight: 600;
}
.pf3Fixed li .box:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  transform: translateX(0px);
}
.innerPlatBZPT .top .pic {
  text-align: center;
}
.innerPlatBZPT .top .pic .img1 {
  max-width: 100%;
}
.innerPlatBZPT .top .content {
  font-size: 18px;
}
.innerPlatBZPT .top .content p {
  padding: 20px 0;
  line-height: 1.7em;
  text-indent: 2em;
}
.innerPlatBZPT .list {
  padding: 50px 0;
}
.innerPlatBZPT .list .item {
  padding: 40px 0;
  border-bottom: 1px dashed #ccc;
}
.innerPlatBZPT .list .item .title {
  border: 2px solid #0028aa;
  color: #0028aa;
  background: #fff;
  margin: 0 auto;
  width: fit-content;
  box-shadow: 0 10px 20px rgba(0, 40, 170, 0.2);
  padding: 12px 40px;
  font-weight: 600;
  font-size: 26px;
  border-radius: 10px 0 10px 0;
}
.innerPlatBZPT .list .item .content {
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
.innerPlatBZPT .list .item .content .row {
  padding: 15px 0;
  width: 50%;
  padding-right: 20px;
}
.innerPlatBZPT .list .item .content .row .subtitle {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
  color: #0028aa;
  line-height: 1em;
  padding-bottom: 15px;
}
.innerPlatBZPT .list .item .content .row .subtitle::after {
  content: "";
  display: block;
  width: 6px;
  height: 20px;
  background: #0028aa;
  position: absolute;
  top: 0;
  left: 0;
}
.innerPlatBZPT .list .item .content .row .text {
  padding: 10px 0;
}
.innerPlatBZPT .list .item .content .row .text p {
  font-size: 16px;
  color: #333;
  text-indent: 2em;
  line-height: 1.7em;
}
.innerPlatBZPT .list .item .content .row .pic {
  text-align: center;
}
.innerPlatBZPT .list .item .content .row .pic img {
  max-width: 100%;
}
.innerPlatBZPT .list .item .content .row ul {
  padding: 20px 0;
}
.innerPlatBZPT .list .item .content .row ul li {
  font-size: 16px;
  color: #333;
  text-indent: 2em;
  line-height: 1.7em;
  font-family: "Georgia";
}
.eduDetail .teachOut .top {
  gap: 40px;
}
.eduDetail .teachOut .top .pic img {
  width: 580px;
}
.eduDetail .teachOut .top .text {
  width: 100%;
}
.eduDetail .teachOut .top .text .name {
  font-size: 34px;
}
.eduDetail .teachOut .top .text .des {
  font-size: 14px;
  background: #F8F9FB;
  line-height: 1.8em;
  padding: 15px;
  margin-top: 20px;
}
.eduDetail .teachOut .top .text .btn {
  margin-top: 60px;
  width: 190px;
  height: 50px;
  border-radius: 50px;
  color: #fff;
  background: #4F9CEE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.MOOCjc .out .box .pic {
  flex-shrink: 0;
}
#top99 .pic {
  width: 400px;
  height: 400px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e4e4e4;
}
#top99 .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#top99 .pic .mask img {
  width: 100%;
  height: 100%;
}
#edu3 .top .content p {
  font-size: 20px;
  line-height: 2em;
}
#edu3 .list .picGroup {
  padding-top: 20px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
#edu3 .list .picGroup .pic {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
#edu3 .list .picGroup .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.15);
}
#edu3 .list .picGroup .pic:nth-child(1) {
  grid-row: 1/3;
  grid-column: 1/3;
}
#edu3 .list .picGroup .pic:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.eduPlatform .top {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 50px;
}
.eduPlatform .top .pic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 20px;
}
.eduPlatform .top .pic .box {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}
.eduPlatform .top .pic .box img {
  width: 100%;
  display: block;
}
.eduPlatform .top .pic .box:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.eduPlatform .top .content.link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.eduPlatform .top .content.link a {
  margin-top: 60px;
  width: 200px;
  height: 50px;
  border-radius: 50px;
  color: #fff;
  background: #4F9CEE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}
.eduPlatform .top .content.link a i {
  margin-right: 10px;
  font-size: 20px;
}
.eduPlatform .top .content.link a:hover {
  box-shadow: 0 0 20px rgba(79, 156, 238, 0.6);
}
.eduPlatform .list .content.txt {
  font-size: 18px;
  color: #666;
  line-height: 1.8em;
  padding-bottom: 40px;
}
.eduPlatform .list .content.jiagou {
  width: 100%;
  padding: 60px 0;
}
.eduPlatform .list .content.jiagou img {
  width: 100%;
}
.eduPlatform .list .content.tese ul li {
  font-size: 20px;
  line-height: 2.5em;
}
