.content {
  width: 100%;
  padding-bottom: 100px;
  position: relative;
}

.content .bg {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.content .bg img {
  width: 100%;
}

.content .tabs {
  width: 1400px;
  margin: 0 auto;
  margin-top: 94px;
}

.content .tabs ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.content .tabs ul li {
  width: 48.6%;
  height: 212px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.content .tabs ul li .bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.content .tabs ul li .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content .tabs ul li .icon {
  width: 62px;
  height: 74px;
  margin-bottom: 16px;
  height: 0;
  overflow: hidden;
  transition: 0.5s;
}

.content .tabs ul li .icon img {
  width: 100%;
}

.content .tabs ul li .name {
  font-size: 26px;
  font-weight: bold;
  line-height: 26px;
  color: #ffffff;
}

.content .tabs ul li a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.content .tabs ul li.selectActive .icon {
  height: 74px;
}

.content .tabs ul li:hover .icon {
  height: 74px;
}

.content .list {
  width: 1400px;
  margin: 0 auto;
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.content .tab .top {
  width: 100%;
  display: flex;
  margin-top: 38px;
  align-items: center;
}

.content .tab .top .left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.content .tab .top .left .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.content .tab .top .left .icon img {
  width: 100%;
}

.content .tab .top .left .name {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 22px;
  color: #333333;
}

.content .tab .top .right {
  width: 100%;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.content .tab .top .right .line {
  width: 100%;
  height: 1px;
  background-color: #cfadb9;
}

.content .tab .top .right .icon {
  width: 44px;
  height: 16px;
  margin-left: 6px;
  flex-shrink: 0;
}

.content .tab .top .right .icon img {
  width: 100%;
}

.content .list .item {
  width: calc(20% - 31px);
  position: relative;
  margin-bottom: 38px;
  margin-right: 38px;
}

.content .list .item:nth-child(5n) {
  margin-right: 0;
}

.content .list .item .img {
  width: 100%;
  aspect-ratio: 250/375;
  overflow: hidden;
}

.content .list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.content .list .item .text {
  width: 100%;
  height: auto;
  background-color: #7D3F30;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 0;
}

.content .list .item .text .name {
  font-size: 20px;
  line-height: 20px;
  color: #ffffff;
  margin: 0 17px;
}

.content .list .item .text .other {
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  margin: 0 17px;
  margin-top: 4px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.content .list .item .text .teamName {
  font-size: 14px;
  line-height: 20px;
  color: #d3af7c;
  margin: 0 17px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.content .list .item .text2 {
  width: 100%;
  height: auto;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  position: absolute;
  left: 0;
  bottom: 64px;
  background-color: rgba(215, 169, 127, 0.6);
  transition: 0.5s;
}

.content .list .item a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.content .list .item:hover .img img {
  transform: scale(1.1);
}

@media screen and (max-width: 1560px) {
  .content .tabs {
    width: 90%;
    margin: 0 auto;
    margin-top: 94px;
  }

  .content .list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    padding-bottom: 42px;
  }
}

@media screen and (max-width: 1360px) {
  .content .list .item {
    width: calc(25% - 29px);
    position: relative;
    margin-bottom: 38px;
    margin-right: 38px;
  }

  .content .list .item:nth-child(5n) {
    margin-right: 38px;
  }

  .content .list .item:nth-child(4n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 1080px) {
  .content .list .item {
    width: calc(33.333% - 14px);
    position: relative;
    margin-bottom: 20px;
    margin-right: 20px;
  }

  .content .list .item:nth-child(5n) {
    margin-right: 20px;
  }

  .content .list .item:nth-child(4n) {
    margin-right: 20px;
  }

  .content .list .item:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 860px) {
  .content .tabs ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .content .tabs ul li {
    width: 100%;
    height: 160px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 20px;
  }

  .content .list .item .text .name {
    font-size: 20px;
    line-height: 20px;
    color: #ffffff;
    margin: 0 12px;
  }

  .content .list .item .text .other {
    font-size: 14px;
    color: #ffffff;
    margin: 0 12px;
    margin-top: 4px;
  }

  .content .list .item .text .teamName {
    font-size: 14px;
    margin: 0 12px;
    margin-top: 4px;
  }
}

@media screen and (max-width: 680px) {
  .content .tab .top {
    width: 100%;
    display: flex;
    margin-top: 20px;
    align-items: center;
  }

  .content .list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    padding-bottom: 0;
    margin-top: 20px;
  }

  .content .tabs {
    width: 90%;
    margin: 0 auto;
    margin-top: 40px;
  }

  .content .tab .top .left {
    display: flex;
    align-items: center;
    flex-shrink: inherit;
  }

  .content .tab .top .left .name {
    flex-shrink: inherit;
    font-size: 22px;
    line-height: 26px;
    color: #333333;
  }

  .content .list .item {
    width: calc(50% - 10px);
    position: relative;
    margin-bottom: 20px;
    margin-right: 20px;
  }

  .content .list .item:nth-child(5n) {
    margin-right: 20px;
  }

  .content .list .item:nth-child(4n) {
    margin-right: 20px;
  }

  .content .list .item:nth-child(3n) {
    margin-right: 20px;
  }

  .content .list .item:nth-child(2n) {
    margin-right: 0;
  }
}