* {
  margin: 0;
  padding: 0;
}

div {
  box-sizing: border-box;
}

.dis_jsb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner {
  /* position: relative;
  width: 100vw;
  overflow: hidden; */
}

.indSwiper_prev {
  cursor: pointer;
  position: absolute;
  top: calc(50% - 25px);
  left: 50px;
  z-index: 3;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.indSwiper_next {
  cursor: pointer;
  position: absolute;
  top: calc(50% - 25px);
  right: 50px;
  z-index: 3;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.indSwiper_prev:hover,
.indSwiper_next:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.contain {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  /* border: 1px solid #fff; */
  background: #f4f9fa;
  padding-top: 104px;
}

.logo img {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 396px;
  height: 69px;
}

.rightCode {
  position: absolute;
  top: 40px;
  right: 50px;
  font-weight: normal;
  font-size: 20px;
  color: #666666;
  line-height: 23px;
  text-align: center;
}

.rightCode img {
  width: 140px;
  height: 140px;
  margin-bottom: 15px;
}

.topThree {
  display: flex;
  justify-content: center;
  /* margin: 98px auto 0; */
}

.topThree .oneBox {
  position: relative;
  width: 310px;
  height: 260px;
  background: linear-gradient(180deg, #fff5da 0%, #fffdfa 100%);
  border-radius: 14px;
  margin: 0 30px;
}

.topThree .twoBox {
  position: relative;
  width: 310px;
  height: 250px;
  background: linear-gradient(180deg, #ebebeb 0%, #fefefe 100%);
  border-radius: 14px;
  margin-top: 34px;
}

.topThree .threeBox {
  position: relative;
  width: 310px;
  height: 220px;
  background: linear-gradient(180deg, #fff6f2 0%, #ffffff 100%);
  border-radius: 14px;
  margin-top: 54px;
}

.oneBox:nth-child(1) {
  animation: slideUpDown 3s infinite alternate 1s;
}

.oneBox:nth-child(2) {
  animation: slideUpDown 3s infinite alternate 0s;
}

.oneBox:nth-child(3) {
  animation: slideUpDown 3s infinite alternate 2s;
}

/* 定义动画 */
@keyframes slideUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.topThree .oneBox .avatar1 {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.topThree .oneBox .avatar1 .img1 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.topThree .oneBox .avatar1 .img2 {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 52px;
  height: 52px;
  z-index: -1;
}

.topThree .oneBox .num1 {
  position: absolute;
  top: 16px;
  right: 24px;
  width: 50px;
  height: 96px;
}

.topThree .oneBox .name {
  font-weight: bold;
  font-size: 26px;
  color: #252525;
  line-height: 36px;
  text-align: center;
  margin-top: 80px;
}

.topThree .oneBox .info {
  margin-top: 20px;
  padding: 0 20px;
}

.topThree .oneBox .info .association {
  font-weight: 500;
  font-size: 22px;
  color: #999999;
  line-height: 31px;
}

.topThree .oneBox .info .association_name {
  font-weight: bold;
  font-size: 24px;
  color: #252525;
  line-height: 34px;
}

.topThree .oneBox .info .jifen {
  font-weight: bold;
  font-size: 24px;
  color: #ffa500;
  line-height: 34px;
}

.topThree .twoBox .num2 {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 76px;
  height: 92px;
}

.topThree .threeBox .num3 {
  position: absolute;
  top: 17px;
  right: 19px;
  width: 70px;
  height: 96px;
}

.topThree .twoBox .name,
.topThree .threeBox .name {
  margin-top: 76px;
}

.table_box {
  margin: 15px 100px 0;
}

.table_box .list_th {
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 28px;
  color: #252525;
}

.table_box .list_th1 {
  width: 20%;
  text-align: center;
}

.list_heg {
  height: 84px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.table_box .list_td .list_th1 .avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.table_box .list_td .list_th1 .icon {
  vertical-align: middle;
}

.table_box .list_td .list_heg .num,
.table_box .list_td .list_heg .name,
.table_box .list_td .list_heg .jifen {
  font-weight: 500;
  font-size: 24px;
  color: #252525;
}

.table_box .list_td .list_heg .num {
  font-weight: bold;
}

.table_box .list_td .list_heg .jifen {
  color: #ffa500;
}

/* 显示一行 */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 显示两行 */
.ellipsis2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* .contain {
  position: relative;
  width: 100vw;
  height: 100vh;
  border: 1px solid #fff;
  background: #f4f9fa;
  padding-top: 104px;
} */

.logo2 img {
  position: absolute;
  top: 40px;
  left: 40px;
  /*width: 357px;*/
  /*height: 69px;*/
}

.list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 40px;
}

.list-item {
  display: flex;
  align-items: center;
  width: 48%;
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 15px 10px;
}

.list-item .leftImg {
  position: relative;
  width: 288px;
  height: 288px;
  border-radius: 12px;
  margin-right: 20px;
}

.list-item .leftImg img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.list-item .leftImg .preview {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  background: rgba(63, 191, 218, 0.9);
  border-radius: 0px 0px 12px 12px;
  text-align: center;
  line-height: 50px;
}

.list-item .rightContent {
  flex: 1;
}

.list-item .rightContent .title {
  width: 480px;
  font-family: PingFang SC, PingFang SC;
  font-weight: bold;
  font-size: 30px;
  color: #333333;
  line-height: 36px;
}

.list-item .rightContent .tag {
  display: inline-block;
  font-weight: 500;
  font-size: 22px;
  color: #3fbfda;
  line-height: 26px;
  background: rgba(63, 191, 218, 0.2);
  border-radius: 2px;
  margin: 10px 0 15px;
  padding: 0 5px;
}

.list-item .rightContent .time {
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  font-size: 24px;
  color: #999999;
  /* line-height: 22px; */
  margin-bottom: 10px;
}

.list-item .rightContent .time span {
  color: #252525;
}

.list-item .rightContent .points {
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  font-size: 24px;
  color: #ff8011;
}
