.main {
  padding-top: 0.9rem;
}
/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'MicrosoftYaHei', 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  font-size: 20px;
}

.content {
  padding-top: 0.4rem;
}

img {
  display: block;
  font-size: 0;
  line-height: 0;
  border-radius: 20px;
}

.df {
  display: flex;
}

.ffc {
  flex-flow: column nowrap;
  justify-content: center;
}

.ffrw {
  flex-flow: row wrap;
}

.acc {
  align-content: center;
  align-items: center;
}

.acb {
  align-content: space-between;
  align-items: baseline;
}

.ace {
  align-content: flex-end;
  align-items: flex-end;
}

.jcc {
  justify-content: center;
  justify-content: center;
}

.jcb {
  justify-content: space-between;
}

.jca {
  justify-content: space-around;
}

.jcs {
  justify-content: start;
}

.jce {
  justify-content: end;
  justify-content: flex-end;
}

/* banner */
.hero {
  width: 100%;
  height: 953px;
  position: relative;
}

.banner-img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.banner-text {
  position: absolute;
  top: 270px;
  left: 155px;
  width: 577px;
  /* height: 316px; */
}

/* 分页 */

.pagination {
  padding-top: 150px;
  padding-bottom: 90px;
}

.pagination a {
  display: block;
  border: 1px solid #c9caca;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  transition: background 0.5s ease;
}
.pagination a:hover,
.pagination a.active {
  background-color: rgba(0, 89, 161, 1);
  color: #fff;
}
