* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

ul li {
  list-style: none;
}

a {
  font-weight: 500;
  color: rgb(255, 255, 255);
  text-decoration: none;
  overflow: hidden;
}
body {
  width: 100%;
  position: relative;
}

.w100 {
  width: 100% !important;
  height: 50vh !important;
  object-fit: fill !important;
}

img:not(.container .content img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.header {
  position: relative;
}
.header .bg{
  height: 8rem;
}
.header .top {
  position: absolute;
  top: 20px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 0.8rem;
  padding-right: 1.2rem;
  justify-content: space-between;
  z-index: 2;
}
.header .top .logo {
  width: 8.1rem;
}
.header .top .search {
  display: flex;
  align-items: center;
}
.header .top .search a {
  font-size: 0.14rem;
}
.header .top .search b {
  height: 20px;
  margin: 0 12px;
  width: 2px;
  color: #fff;
  font-weight: 400;
  background-color: #fff;
}
.header .top .search .input {
  background-color: #fff;
  border-radius: 5px;
  padding: 4px 0;
  padding-left: 20px;
  border: none;
}
.header .top .search .btn{
  width: 30px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-left: 5px;
}
.header .nav {
  position: absolute;
  top: 100px;
  right: 1.2rem;
  z-index: 2;
}
.header .nav ul {
  display: flex;
  align-items: center;
}
.header .nav ul li {
  position: relative;
  font-size: large;
  margin-left: 0.2rem;
}
.header .nav ul li:hover .content {
  opacity: 1;
  visibility: visible;
}
.header .nav ul li .content {
  position: absolute;
  /*width: 100%;*/
  text-align: center;
  padding-top: 15px;
  padding-bottom: 20px;
  background: linear-gradient(180deg, transparent 6px, #204184 6px, #204184 50%, transparent);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.header .nav ul li .content p {
  margin-bottom: 10px;
}
.header .nav ul li .content a {
  font-size: 0.18rem;
  font-weight: 500;
}
.header .nav ul a {
  font-size: 0.2rem;
  font-weight: bold;
  padding: 0 10px;
  transition: all 0 0.5s;
  padding-bottom: 6px;
  white-space: nowrap;
}
.header .nav ul a:hover {
  color: #f8ac00;
}
.header .nav ul a:hover img {
  transform: rotateX(180deg);
}
.header .nav ul a img {
  width: 16px;
  display: inline-block;
  margin-left: 5px;
}

.container .content .article-hd {
  margin-bottom: 20px;
}

.footer {
  height: 1.18rem;
  width: 100%;
  background-color: #1f4180;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-top: 1.2rem;
  align-items: center;
  color: #fff;
  padding: 10px 0;
}
.footer .info,.copyright {
  font-size: 0.14rem;
}
.footer .info span {
  margin-right: 0.45rem;
}

.swiper .swiper-pagination {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  bottom: 0 !important;
  padding-right: 10px;
}

.swiper .swiper-slide {
  position: relative;
}

.swiper .swiper-slide .title {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  position: absolute;
  bottom: 0;
  height: 40px;
  line-height: 40px;
  font-size: 0.16rem;
}

.swiper .swiper-pagination-bullet {
  opacity: 1 !important;
  background: #fff !important;
  width: 0.1rem;
  height: 0.1rem;
}

.swiper .swiper-pagination-bullet-active {
  background: #1f4180 !important;
}

.swiper .swiper-slide .title span {
  display: inline-block;
  width: 80%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-left: 0.10rem;
}