html,
body {
  position: relative;
  height: 100%;
}

body {
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
line-height: 1.5;
}

a {
  text-decoration: none;
color: #000;
}

.swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-slide {
  /* text-align: center; */
  font-size: 18px;
  /* background: #fff; */
  /* background-size: cover; */
  position: relative;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  /* background-image: url(https://www.ts.cn/xwzx/gnxw/202306/W020230619340819281143.png); */
}

.bottomImg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  left: 0;
  z-index: 9999;
  transform: translate(-50%, 0%);
}

.bottomImgEnd {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  right: 0;
  z-index: 9999;
  transform: translate(50%, 0%);
}
.headerTextImg{
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 60%;
  height: auto;
}
/* 要闻 */
.ImportantNews {
  width: 70%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
border-radius: 20px;
padding: 5vh 2%;
}

.ImportantNews img {
  width: 100%;
  height: auto;
}
.ImportantNews p {
  margin: 0;
padding: 0;
}
.ImportantNews .left,
.ImportantNews .right {
  width: 50%;
  height: auto;
box-sizing: border-box;
}
.ImportantNews .right {
padding-left: 30px;
}
.ImportantNews .right .title{
  font-weight: 700;
font-size: 24px;
}
.ImportantNews .right .content{
font-size: 14px;
margin-top: 15px;

}
ul{
list-style-type: none;
padding: 0;
}
ul strong{
color: red;
margin: 0 5px;
}
li{
margin-bottom: 5px;
}

/* 开栏语 */
.OpeningSpeech {
  width: 60%;
  height: 70vh;
  background-size: 100% 100%;
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 8vh 5% 5vh 5%;
  box-sizing: border-box;
}

.OpeningSpeech .text {
  width: 70%;
  height: 50vh;
  float: right;
  overflow-y: auto;
  box-sizing: border-box;
  line-height: 1.5;
  padding-right: 5%;
}

.OpeningSpeech .text::-webkit-scrollbar {
  width: 5px;
  background-color: #e8f3ff
}

.OpeningSpeech .text::-webkit-scrollbar-button {
  border-radius: 50%;
  background-color: rgb(255, 0, 0);
  display: none;
}

.OpeningSpeech .text::-webkit-scrollbar-thumb {
  background: #9d9d9d;
  border-radius: 4px;
}

.OpeningSpeech .text .title {
  text-align: center;
}

/* 内容展示 */
.contBox {
  width: 65%;
  background-color: rgba(255, 255, 255, 0.7);
  height: 70vh;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  opacity: 0;
  padding: 0 40px 0 40px;
  box-sizing: border-box;
}

.contBox img {
  width: 100%;
  height: auto;
}

.contBox .title {
  display: flex;
  align-items: center;
  height: 10vh;
  font-size: 28px;
  font-weight: 700;
}

.leftImg {
  width: 35%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-50%, 0%);
  opacity: 0;
}

.contBox .leftBox {
  height: 45vh;
  width: 66%;
  float: left;
}

.contBox .videoBox {
  height: auto;
  width: 100%;
  display: block;

}

.contBox video {
  height: auto;
  width: 100%;
}

.contBox .leftBox .text {
  margin-top: 2vh;
}

.contBox .rightBox {
  height: 45vh;
  width: 32%;
  float: right;
}

.contBox .leftBox a {
  color: #000;
}

.logoImg {
  width: 30%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.animation {
  animation-name: identifier;
  animation-duration: 2s;
  animation-timing-function: linear;
  /* 定义动画速度 */
  animation-delay: 1.5s;
  /* 定义动画延迟 */
  animation-fill-mode: forwards;
  /* 定义动画结束时应用的样式 */
}

.animation1 {
  animation-name: identifier;
  animation-duration: 2s;
  animation-timing-function: linear;

  /* 定义动画速度 */
  animation-delay: 0s;
  /* 定义动画延迟 */
  animation-fill-mode: forwards;
  /* 定义动画结束时应用的样式 */
}

/* css动画 */
@keyframes identifier {
  0% {
    opacity: 0.1;
  }

  100% {
    opacity: 1;
  }
}