.main {
  min-width: 1200px;
}
.container {
  width: 1200px;
  margin: auto;
}
.header {
  height: 200px;
  background: url("../images/headerBg.png") no-repeat center center;
  background-size: cover;
}
.header .header-title {
  display: flex;
  align-items: center;
  color: #C81C1E;
}
.header .header-title img {
  width: 65px;
}
.header-title-text {
  margin-left: 20px;
}
.header .header-title-text-cn {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 8px;
}
.header .header-title-text-cn2 {
  letter-spacing: 20px;
}
.header .header-title-text-en {
  font-size: 14px;
}
.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-tools {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-tools-first {
  display: flex;
  align-items: center;
}
.header-tools-first-list {
  display: flex;
  color: #2A84E5;
  font-size: 14px;
}
.header-tools-first .wx-icon {
  width: 20px;
  cursor: pointer;
}
.header-tools-wx {
  position: relative;
}
.header-tools-wx:hover .wx-hover-img {
  display: block;
}
.wx-hover-img {
  display: none;
  position: absolute;
  left: -46px;
  top: 30px;
  width: 120px;
  height: 120px;
  z-index: 99;
}
.header-tools-first-list li {
  padding: 0 10px;
  cursor: pointer;
  position: relative;
}
.header-tools-first-list li::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background-color: #979797;
  position: absolute;
  top: 4px;
  right: 0;
}
.header-tools-first-list li:last-child::after {
  display: none;
}
.header-tools-second {
  margin-top: 10px;
  position: relative;
}
.header-tools-search {
  width: 200px;
  height: 32px;
  border: 1px solid #2A84E5;
  padding: 10px;
  padding-right: 30px;
  margin-right: 10px;
}
.header-tools-second .icon {
  position: absolute;
  width: 18px;
  top: 6px;
  right: 20px;
}

/* nav */
.nav {
  min-height: 60px;
  background: #1164BE;
}
.nav-scroll {
  overflow: auto;
}
.nav-list {
  display: flex;
  flex-wrap: nowrap;
  font-family: MicrosoftYaHei;
  font-size: 20px;
  color: #FFFFFF;
  font-weight: normal;
}
.nav-list .active, .nav-list li:hover {
  background: #FFAB48;
  font-weight: bold;
}
.nav-list a {
  padding: 18px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  display: block;
}

/* banner */
.banner-container {
  padding: 30px 0;
  overflow: hidden;
}
.swiper-container, .swiper-wrapper {
  /* width: 1200px; */
  width: 100%;
}
.banner img {
  width: 100%;
}

/* content */
.content {
  height: 460px;
  background: url("../images/contentBg.png") no-repeat center center;
  display: flex;
  align-items: center;
}
.content-container {
  background: #fff;
  height: 390px;
  display: flex;
  align-items: center;
}
.content-swiper {
  width: 500px;
  height: 366px;
  overflow: hidden;
  margin-left: 20px;
  position: relative;
}
.content-swiper img {
  width: 100%;
}
.content-swiper .swiper-pagination {
  left: unset !important;
  width: fit-content !important;
  right: 20px !important;
  bottom: 15px !important; 
}
.swiper-pagination-bullet {
  width: 20px !important;
  border-radius: 4px !important;
}

/* list */
.list-card {
  width: 100%;
}
.list-card-head {
  border-bottom: 1px solid #C5DDEC;
  padding-bottom: 2px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-card-head-title {
  font-size: 18px;
  width: fit-content;
  padding: 10px 24px;
  color: #fff;
  background: linear-gradient( 270deg, #81BEFF 0%, #006ADD 100%);
  position: relative;
}
.list-card-head-title::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient( 270deg, #81BEFF 0%, #006ADD 100%);
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: 0;
}
.list-card-head .more-btn {
  color: #768CA4;
  padding-right: 15px;
  position: relative;
  cursor: pointer;
}
.list-card-head .more-btn::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../images/right.png") no-repeat center center;
  background-size: cover;
  margin-left: 10px;
  position: absolute;
  top: 30%;
  right: 0;
}
.list-card-body {
  padding: 5px 0;
  /*border-bottom: 1px solid #ccc;*/
}
.list-card-scroll {
  overflow-y: auto;
  max-height: 300px;
  min-height: 300px;
}
.list-item {
  font-size: 14px;
  padding: 15px 20px 15px 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.list-item:hover {
  background: #1164BE;
  background-image: url("../images/hover-bg.png");
  background-repeat: no-repeat;
  background-size: 200px;
}
.list-item:hover .list-item-text {
  color: #fff;
}
.list-item:hover .list-item-time-left {
  color: #fff;
}
.list-item:hover .list-item-time {
  color: #fff;
}
.list-item:hover .list-item-text {
  transform: translateX(10px);
}
.list-item-text {
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  padding-left: 30px;
}
.list-item-text::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../images/listIcon.png") no-repeat;
  background-size: cover;
  position: absolute;
  left: 10px;
  top: 5px;
}
.list-item-time {
  color: #999999;
}
.list-item-time-left {
  color: #2A84E5;
  font-weight: bold;
  position: relative;
}
.list-item-time-left::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background-color: #979797;
  position: absolute;
  top: 4px;
  right: -10px;
}

.content-news {
  margin-left: 20px;
  width: 640px;
}
.content-news .list-item-text {
  width: 400px;
}

.list-container {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}
.list-container .list-card {
  width: 380px;
}
.list-container .list-card-body{
  background: #F5FAFF;
}
  
.list-container .list-item-text {
  width: 580px;
}

.list-2 .list-card {
  width: 580px;
}
.list-2 .list-item {
  justify-content: flex-start;
}
.list-2 .list-item-text {
  width: 580px;
  margin-left: 8px;
}


/* gsl */
.gsl {
  margin-top: 30px;
  max-height: 522px;
  background: url("../images/gslBg.png") no-repeat center center;
  background-size: cover;
  padding: 30px 0;
}
.gsl-nav-list {
  margin-top: 14px;
  display: flex;
  flex-wrap: nowrap;
  font-size: 17px;
  font-weight: bold;
  color: #6792C1;
  background: #DBEDFF;
}
.gsl-nav-list li {
  padding: 12px 58px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid #DBEDFF;
  border-bottom: none;
  box-sizing: border-box;
}
.gsl-nav-list .active, .gsl-nav-list li:hover {
  background: #ffffff;
  color:#2C85E5;
}
.gsl-nav-list li:hover {
  border: 1px solid #ccc;
  border-bottom: none;
}
.gsl-list {
}
.gsl-list .list-card {
}
.gsl-list-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gsl-list-item .list-item {
  width: 48%;
  background: #fff;
  margin: 10px 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.gsl-list .list-item-text {
  width: 85%;
}
.gsl-list .list-item:hover .list-item-text {
  color: #000;
}
.list-item-date {
  width: 50px;
  height: 50px;
  background: url("../images/dateBg.png") no-repeat center center;
  background-size: cover;
  text-align: center;
  line-height: 50px;
  color: #fff;
}
.gsl .list-card-scroll {
  max-height: 355px;
  min-height: 0;
}

/* 专题专栏 */
.ztzl {
  margin-top: 30px;
}
.ztzl-head {
  height: 140px;
  background: url("../images/ztzl-bg.png") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ztzl-head img {
  height: 70px;
}
.ztzl .list-card-scroll {
  min-height: 250px;
  max-height: 250px;
}
.ztzl-swiper {
  width: 378px;
  height: 272px;
  overflow: hidden;
  position: relative;
}
.ztzl-swiper img {
  width: 100%;
}
.ztzl-news {
  margin-left: 20px;
  width: 800px;
}
.ztzl-news .list-card-body {
  padding: 0 10px;
  background: #F5FAFF;
  margin-top: 10px;
}
.ztzl-news .list-item {
  border-bottom: 1px dashed #ccc;
}
.ztzl-news .list-item-text {
  width: 600px;
}

/* 会员风采 */
.hyfc {
  display: flex;
  background-color: #DEEFFF;
}
.hyfc-head {
  width: 130px;
  height: 210px;
  background: url("../images/hyfc.png") no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
}
.hyfc-head img {
  width: 90px;
  margin-top: 30px;
}
.hyfc-content {
  height: 210px;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.hyfc-scroll {
  max-width: calc(1200px - 170px);
  overflow-x: auto;
}
.hyfc .hyfc-list {
  display: flex;
  flex-wrap: nowrap;
}
.hyfc-list li {
  width: 190px;
  flex-shrink: 0;
  margin-right: 20px;
  text-align: center;
}
.hyfc-list img {
  height: 142px;
  width: 190px;
}
.hyfc-name {
  margin-top: 5px;
  color: #333;
}

/* 微信公众号推荐 */
.gzh {
  margin-top: 30px;
  height: 220px;
  background: url("../images/gzh-bg.png") no-repeat center center;
  background-size: cover;
  padding: 15px 0;
}
.gzh-list {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
}
.gzh-item {
  margin: 5px 5px 5px 0;
  color: #333;
  position: relative;
  cursor: pointer;
  font-size:14px;
  width: 190px;
}
.gzh-item:hover .gzh-qrcode {
  display: block;
}
.gzh-qrcode {
  display: none;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
.gzh-container {
  position: relative;
}
.gzh-img {
  width: 122px;
  height: 122px;
  position: absolute;
  right: 0;
  bottom: -95px;
}

/* 友情链接 */
.link {
  margin-top: 30px;
}
.link-list {
  display: flex;
  flex-wrap: wrap;
}
.link-item {
  width: 285px;
  height: 40px;
  background: #fff;
  border: 1px solid #3D98FA;
  margin: 15px 15px 15px 0px;
  color: #333;
  line-height: 40px;
  padding-left: 15px;
  box-sizing: border-box;
  position: relative;
}
.link-item::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 14px solid #006ADC;
  border-bottom: 10px solid transparent;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* footer */
.footer {
  min-height: 182px;
  margin-top: 30px;
  background: url("../images/footer-bg.png") no-repeat center center;
  background-size: cover;
  padding: 32px 0;
}
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
}
.tool-list {
  display: flex;
  justify-content: center;
}
.tool-item {
  position: relative;
  padding: 0 10px;
  cursor: pointer;
}
.tool-item::after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #fff;
  position: absolute;
  top: 5px;
  right: 0;
}
.tool-item:last-child::after {
  display: none;
}
.info-list {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  width: 600px;
  flex-wrap: wrap;
}
.info-item {
  margin-top: 5px;
}
.copyright {
  margin-top: 30px;
  color: #fff;
  text-align: center;
  opacity: .8;
}
.footer-qrcode {
  position: absolute;
  right: 0;
}
.qrcode-img {
  width: 100px;
  height: 100px;
}
.footer-qrcode p {
  text-align: center;
}

.slideBox{ width:500px; height:360px; overflow:hidden; position:relative; border:1px solid #ddd;  }
.slideBox .hd{ height:15px; overflow:hidden; position:absolute; right:5px; bottom:5px; z-index:1; }
.slideBox .hd ul{ overflow:hidden; zoom:1; float:left;  }
.slideBox .hd ul li{ float:left; margin-right:2px;  width:15px; height:15px; line-height:14px; text-align:center; background:#fff; cursor:pointer; }
.slideBox .hd ul li.on{ background:#f00; color:#fff; }
.slideBox .bd{ position:relative; height:100%; z-index:0;   }
.slideBox .bd li{ zoom:1; vertical-align:middle; }
.slideBox .bd img{ width:500px; height:360px; display:block;  }

/* 下面是前/后按钮代码，如果不需要删除即可 */
.slideBox .prev,
.slideBox .next{ position:absolute; left:3%; top:50%; margin-top:-25px; display:block; width:32px; height:40px; background:url(../images/slider-arrow.png) -110px 5px no-repeat; filter:alpha(opacity=50);opacity:0.5;   }
.slideBox .next{ left:auto; right:3%; background-position:8px 5px; }
.slideBox .prev:hover,
.slideBox .next:hover{ filter:alpha(opacity=100);opacity:1;  }
.slideBox .prevStop{ display:none;  }
.slideBox .nextStop{ display:none;  }
