﻿/*-----global CSS 清除浏览默认样式-----*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
img {
  border: none;
  vertical-align: bottom;
  display: inline-block;
}
.fl {
  float: left;
}

.fr {
  float: right;
}
ul,
li {
  overflow: hidden;
  zoom: 1;
}
/*------------------------头部 start--------------------------*/
.head,
.foot {
  width: 100%;
  text-align: center;
}

.content {
  padding: 0.5rem 3.6rem 0;
}
/*专题介绍*/
.intro-wrap{
  padding: 0.5rem 3.6rem 0;
}
.intro {
  width: 100%;
  box-sizing: border-box;
  font-size: 0.26rem;
  color: #333;
  line-height: 150%;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 0.08rem 0 #83caff;
  padding: 0.3rem 0.4rem;
  letter-spacing: var(--letter-spacing1);
  font-family: var(--font-family-content);
}

/* 01-首页人物列表 */
.img-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-bottom: 0.04rem;
}
.img-list li {
  background: #fff;
  width: 22%;
  margin-bottom: 0.4rem;
  padding: 0.2rem;
  border-radius: 0.2rem;
  margin-right: 3.75%;
  margin-top: 0.02rem;
  margin-left: 0.02rem;
  box-shadow: 0 0 0.04rem #e4f2f3;
}
.img-list li:hover {
  cursor: pointer;
  box-shadow: 2px 2px 4px #d4e7e8;
}
.img-list li a {
  display: block;
  text-align: center;
}
.img-list li:nth-child(4n) {
  margin-right: 0;
}
.img-list li:nth-last-child(-n + 4) {
  margin-bottom: 0;
}

.img-list li h3 {
  font-size: 0.3rem;
  color: #0092ff;
}
.img-list li h4 {
  color: #666;
  font-size: 0.2rem;
}
.img-wrap {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  height: 2.2rem;
  width: 100%;
  margin-bottom: 0.2rem;
}
.img-wrap img {
  position: absolute;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transition: all 1s ease;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
}
.img-list li a:hover .img-wrap img {
  transform: scale(1.04);
}

/* 02-人物栏目页面 */
/* 人物介绍 */
.person-intro {
  background: #fff;
  width: 100%;
  margin-bottom: 0.6rem;
  padding: 0.2rem;
  border-radius: 0.2rem;
  box-shadow: 0 0.08rem 0 #83caff, 0 0 0.04rem #e4f2f3;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.person-intro .img-wrap {
  width: 25%;
  height: 2.9rem;
  margin-right: 0.3em;
  margin-bottom: 0;
}
.person-intro-txt {
  flex: 1;
}
.person-intro-txt h3 {
  font-size: 0.3rem;
  color: #0092ff;
}
.person-intro-txt h4 {
  color: #666;
  font-size: 0.2rem;
}
.person-intro-txt h4:after {
  content: "";
  display: block;
  width: 0.4rem;
  height: 4px;
  background: #0092ff;
  margin: 0.1rem 0;
}
.person-intro-txt h5 {
  color: #333;
  font-size: 0.24rem;
}
/* 栏目 */
.col-tit {
  font-size: 0.4rem;
  color: #0092ff;
  margin-bottom: 0.3rem;
}
.col-tit::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 4px;
  background: #ccc;
  margin: 0.1rem 0;
}
.moda{ 
  margin-bottom: 1rem;
}
/* 文字列表 */
.news-list {
  width: 100%;
}
.news-list li {
  display: flex;
  align-items: center;
  padding-bottom: 0.3rem;
  margin-bottom: 0.3rem;
  border-bottom: 1px dashed #ddd;
}
.news-list li:last-child{
  margin-bottom: 0;
}
.news-list li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0092ff;
  margin-right: 0.2rem;
}
.news-list li a {
  font-size: 0.3rem;
  color: #333;
  display: block;
  flex: 1;
  height: 0.5rem;
  line-height: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}
.news-list li a:hover {
  color: #0092ff;
}
/* photos */
.modb{ 
  margin-bottom: 0.6rem;
}
.swiper-photo a {
  display: block;
  width: 100%;
}

.photo-wrap {
  height: 2.14rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.1rem;
}
.photo-wrap img {
  position: absolute;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transition: transform 0.3s;
}
.swiper-photo h3 {
  font-size: 0.24rem;
  text-align: center;
  color: #333;
  transition: color 0.3s;
}
.swiper-photo a:hover .photo-wrap img {
  transform: scale(1.02);
}
.swiper-photo a:hover h3 {
  color: #0092ff;
}
.swiper-button-next,
.swiper-button-prev {
  background: rgba(255, 255, 255, 0.5);
  padding: 0.1rem 0.05rem;
  box-sizing: content-box;
  top: 40%;
}
.swiper-button-next{
  border-radius: 8px 0 0 8px;
}
.swiper-button-prev{
  border-radius: 0 8px 8px 0;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  color: #0092ff;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev {
  left: 0;
}
/* video */
.swiper-video a {
  display: block;
  width: 100%;
  position: relative;
}

.swiper-video h3 {
  font-size: 0.24rem;
  text-align: center;
  color: #333;
  transition: color 0.3s;
}
.swiper-video a:hover .photo-wrap img {
  transform: scale(1.02);
}
.swiper-video a:hover h3 {
  color: #0092ff;
}
.icon-video {
  position: absolute;
  width: auto;
  z-index: 10;
  width: 0.64rem;
  height: 0.64rem;
  top: 30%;
  left: 50%;
  margin-left: -0.32rem;
}
.swiper-video .photo-wrap::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: absolute;
}
.swiper-video a:hover .photo-wrap::after{
  background: none;
}
/* 03-文章页 */
.article-container {
  width: 100%;
  margin-top: 0.3rem;
}

.article-container .biaoti {
  font-size: 0.78rem;
  font-family: var(--font-family-title);
  font-weight: bold;
  color: #020000;
  line-height: 0.84rem;
  margin-bottom: 0.19rem;
}

.article-container .lanmustyle {
  font-size: 0.2rem;
  font-family: var(--font-family-content);
  color: #959596;
  line-height: 0.26rem;
  margin-bottom: 0.62rem;
  font-weight: normal;
}

.article-container .article-detail {
  font-size: 0.21rem;
  font-family: var(--font-family-content);
  color: #403a3a;
  line-height: 0.35rem;
}

.article-container .article-detail p {
  font-family: var(--font-family-content);
}

.article-container .article-detail img {
  width: auto !important;
  max-width: 100%;
}

.article-container .tupian,
.article-container .shipin {
  width: 100%;
  margin: 0.51rem auto 0.63rem;
  text-align: center;
}

/*----底部 start--------*/
.foot {
  font-size: 0.2rem;
  text-align: center;
  background: #83caff;
  color: #fff;
  font-family: var(--font-family-content);
  padding: 0.8rem 0;
  margin-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  html,
  body {
    min-width: 100%;
    min-height: 100%;
  }
  .fl,
  .fr {
    float: none;
  }
  .intro {
    font-size: 0.3rem;
  }
  .content,.intro-wrap {
    padding: 0.3rem 0.35rem 0;
  }
  .img-list li {
    width: 47.5%;
  }
  .img-list li h4 {
    font-size: 0.26rem;
  }
  .img-list li:nth-child(2n) {
    margin-right: 0;
  }
  .img-wrap {
    height: 2.8rem;
  }
  .img-list li:nth-last-child(-n + 4) {
    margin-bottom: 0.4rem;
  }
  .img-list li:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }
  .foot {
    padding: 0.4rem 0;
  }
  /* 02-人物栏目页面 */
  /* 人物介绍 */
  .person-intro {
    flex-direction: column;
    align-items: start;
  }
  .person-intro .img-wrap {
    width: 100%;
    border-radius: 0.2rem;
    margin-bottom: 0.2rem;
    height: 5rem;
  }
  .person-intro-txt h3{
    font-size: 0.4rem;
  }
  .person-intro-txt h4{
    font-size: 0.3rem;
  }
  .person-intro-txt h5{
    font-size: 0.28rem;
  }
  .photo-wrap {
    height: 3.8rem;
  }
  .swiper-button-next,
  .swiper-button-prev {
    top:45%;
  }
  .swiper-photo h3,.swiper-video h3{
    font-size: 0.3rem;
  }
  .icon-video{
    width: 0.8rem;
    height: 0.8rem;
    margin-left: -0.4rem;
    top: 35%;
  }
  /* 03-文章页 */
  .article-container .biaoti {
    line-height: 0.86rem;
    margin-bottom: 0;
  }

  .article-container .biaoti::after {
    content: "";
    width: 1.45rem;
    height: 0.06rem;
    background: #0092ff;
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 0.6rem;
  }

  .article-container .lanmustyle {
    color: #959596;
    font-size: 0.22rem;
    line-height: 0.34rem;
    margin-bottom: 0.48rem;
  }

  .article-container .article-detail {
    font-size: 0.28rem;
    line-height: 0.44rem;
  }
}
/* ==针对大屏文章页图片显示问题 */
@media (min-width: 1921px) {
  .article-container .article-detail p strong {
    font-size: 0.21rem;
  }
  .article-container .article-detail img {
    width: 80% !important;
    display: block;
    margin: 0 auto;
  }
  .article-container .article-detail img.detail-ewm {
    width: auto !important;
  }
}
