body {
  background: #F0F2F5;
}

.container {
  padding: 7.3958333333vw 5.7291666667vw 3.8541666667vw 5.7291666667vw;
}

.container .p1 {
  color: #FF9600;
}

.container .t {
  margin: 0.625vw 0 1.0416666667vw 0;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
  color: #27265F;
}

.container .tip {
  color: #333;
}

.container .rec {
  display: flex;
  justify-content: space-between;
  gap: 5.4166666667vw;
  margin: 4.1666666667vw 0 3.125vw 0;
  align-items: center;
}

.container .rec .pic {
  width: 45.3125vw;
  border-radius: 10px;
  overflow: hidden;
}

.container .rec .pic img {
  width: 100%;
  height: 28.6458333333vw;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}

.container .rec .text {
  width: 100%;
  flex: 1;
}

.container .rec .text .tag {
  border-radius: 100px;
  background: #FFF;
  padding: 0.46875vw 0.8333333333vw;
  color: #333;
  line-height: 1.2;
  display: inline-block;
  text-transform: uppercase;
}

.container .rec .text .pt {
  color: #333;
  font-weight: 500;
  margin: 0.625vw 0 1.0416666667vw 0;
}

.container .rec .text .des {
  color: #666;
  line-height: 1.5;
  margin-bottom: 4.6875vw;
}

.container .rec:hover .pic img {
  transform: scale(1.05);
}

.container .tabs {
  padding: 2.34375vw 0 2.6041666667vw 0;
  border-top: 1px solid #DDD;
  display: flex;
  gap: 0.8333333333vw;
}

.container .tabs span {
  padding: 0.78125vw 1.1458333333vw;
  color: #666;
  line-height: 1;
  text-transform: capitalize;
  border-radius: 1.71875vw;
  transition: all 600ms;
  cursor: pointer;
}

.container .tabs span.on,
.container .tabs span:hover {
  background: #192E7A;
  color: white;
}

.container .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5vw;
}

.container .list a {
  display: block;
  border-radius: 10px;
  background: #FFF;
  padding: 1.5625vw;
  position: relative;
  transition: all 600ms;
  width: 100%;
}

.container .list a .tt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container .list a .tt .tag {
  color: #27265F;
  line-height: 1.2;
  border-radius: 100px;
  background: #FAFAFA;
  display: inline-block;
  padding: 0.46875vw 0.8333333333vw;
  transition: all 600ms;
  text-transform: uppercase;
}

.container .list a .tt span {
  color: #666;
  transition: all 600ms;
}

.container .list a .p1 {
  color: #333;
  font-weight: 500;
  line-height: 1.2;
  margin: 0.8333333333vw 0 0.7291666667vw 0;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  transition: all 600ms;
}

.container .list a .des {
  color: #666;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 2.8645833333vw;
  transition: all 600ms;
}

.container .list a .pic {
  margin-top: 1.5625vw;
  border-radius: 10px;
  overflow: hidden;
}

.container .list a .pic img {
  width: 100%;
  height: 17.1875vw;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}

.container .list a .icon {
  position: absolute;
  right: 2.6041666667vw;
  bottom: 2.6041666667vw;
  width: 3.4375vw;
  height: 3.4375vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #F26101;
  z-index: 10;
  opacity: 0;
  transition: all 600ms;
  transform: translateY(20px);
}

.container .list a .icon img {
  width: 0.8333333333vw;
}

.container .list a .hand {
  position: absolute;
  right: 6.25vw;
  bottom: 1.3541666667vw;
  width: 2.1875vw;
  opacity: 0;
  transition: all 600ms;
  transform: translateY(20px);
  display: none;
}

.container .list a:hover {
  background: #27265F;
}

.container .list a:hover .tt span {
  color: #fff;
}

.container .list a:hover .p1,
.container .list a:hover .des {
  color: #fff;
}

.container .list a:hover .pic img {
  transform: scale(1.05);
}

.container .list a:hover .icon,
.container .list a:hover .hand {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .container {
    padding: 80px 5%;
  }

  .container .p1 {
    font-size: 14px;
  }

  .container .t {
    margin: 10px 0;
    font-size: 24px;
  }

  .container .tip {
    font-size: 16px;
  }

  .container .rec {
    flex-direction: column;
    gap: 15px;
    margin: 20px 0 30px 0;
  }

  .container .rec .pic {
    width: 100%;
  }

  .container .rec .pic img {
    height: auto;
  }

  .container .rec .text .tag {
    padding: 8px 14px;
    font-size: 12px;
  }

  .container .rec .text .pt {
    margin: 10px 0 16px;
    font-size: 18px;
  }

  .container .rec .text .des {
    margin-bottom: 30px;
    font-size: 14px;
  }

  .container .tabs {
    padding: 30px 0;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .container .tabs span {
    padding: 12px 18px;
    font-size: 14px;
    white-space: nowrap;
    background: #e4dfdf;
  }

  .container .list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .container .list a {
    padding: 20px;
  }

  .container .list a .tt {
    gap: 10px;
  }

  .container .list a .tt .tag {
    padding: 8px 12px;
    font-size: 14px;
  }

  .container .list a .tt span {
    font-size: 14px;
  }

  .container .list a .p1 {
    margin: 12px 0 10px;
  }

  .container .list a .des {
    height: auto;
    -webkit-line-clamp: 3;
  }

  .container .list a .pic {
    margin-top: 15px;
  }

  .container .list a .pic img {
    height: 200px;
  }

  .container .list a .icon {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }

  .container .list a .icon img {
    width: 14px;
  }

  .container .list a .hand {
    right: 90px;
    bottom: 10px;
    width: 30px;
  }
}

/*# sourceMappingURL=news.css.map */