.mobile {
  display: none;
}

.banner {
  position: relative;
}

.banner .img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-position: center;
  object-fit: cover;
}

.banner .title {
  left: 50%;
  bottom: 27%;
  transform: translateX(-50%);
  position: absolute;
  text-align: center;
}

.banner .title .ch {
  font-family: OPPOSans-R;
  font-weight: bold;
  font-size: 60px;
  line-height: 1.33;
  color: #ffffff;
}

.banner .title .en {
  font-family: Gilroy-Regular;
  font-size: 24px;
  line-height: 1.25;
  color: #ffffff;
}

.myContent {
  padding: 100px 0 150px;
}

.myContent .selects {
  display: flex;
  border-left: 1px solid #dcdcdc;
  border-top: 1px solid #dcdcdc;
}

.myContent .selects .item {
  width: 20%;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: OPPSans-M;
  font-size: 20px;
  color: #313131;
  background: #f8f8f8;
}

.myContent .selects .item.active {
  background: var(--theme-color);
  color: #FFF;
}

.myContent .content {
  padding: 60px 0 86px;
  display: none;
}

.myContent .content .list {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  gap: 30px;
}

.myContent .content .list .item {
  width: calc((100% - 90px)/4);
  border: solid 1px #dcdcdc;
  border-radius: 5px;
}

.myContent .content .list .item .link {
  display: block;
  height: 100%;
}

.myContent .content .list .item .box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.myContent .content .list .item .box .imgBox {
  border-bottom: 1px solid #dcdcdc;
  aspect-ratio: 11 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.myContent .content .list .item .box .imgBox {
  position: relative;
}

.myContent .content .list .item .box .imgBox .brankLogo {
  max-width: 62.5%;
  max-height: 90px;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.myContent .content .list .item .box .imgBox:hover .brankLogo {
  animation: jump 1s ease-in-out infinite;
  max-width: 68.5%;
}

.myContent .content .list .item .box .imgBox:hover::after {
  content: '';
  width: 90%;
  position: absolute;
  bottom: 5%;
  left: 5%;
  height: 10px;
  width: 90%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  animation: opac 1s ease-in-out infinite;
}

@keyframes opac {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }


}

@keyframes jump {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);

  }

}


.myContent .content .list .item .box .describe {
  background: #f8f8f8;
  padding: 30px;
  flex: 1;
}

.myContent .content .list .item .box .describe .title {
  font-family: OPPOSans-M;
  font-size: 20px;
  text-align: center;
}

.myContent .content .list .item .box .describe .tag {
  display: flex;
  padding-top: 20px;
  color:#aeaeae;
  font-size:16px;
}

.myContent .content .list .item .box .describe .tag .b .e {
  font-family: OPPOSans-R;
  font-size: 14px;
  line-height: 2.1;
}

.myContent .content.active {
  display: block;
}

.filterBox .title {
  font-size: 18px;
  padding-bottom: 18px;
  line-height: 1;
  color:#aeaeae;
}
figure{
  margin: 0 !important; 
}
.pageNav .content .selects{
  margin-bottom: 0;
}
/* .filterBox:nth-child(2) {
  padding-bottom: 50px;
} */

.filterBox .country {
  width: 100%;
}

.filterBox .form-select:focus {
  box-shadow: none;
}

main ul {
  padding-left: 0;
}
main a{
  text-decoration: none;
  color: inherit;
}


.wordFilter {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  border-bottom: 1px solid #999;
  margin-bottom: 3%;
  /* width: fit-content; */
  /* gap: 10px 0; */
  border: 1px solid #dcdcdc;
  border-right: 0;
  border-bottom: 0;
}

.wordFilter .item {
  width: 50px;
  height: 50px;
  display: flex;
  flex: 1;
  max-width: 55px;
  min-width: 45px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #222;
  transition: all .3s;
  cursor: pointer;
  background: #f8f8f8;
  text-transform: uppercase;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;

}

.wordFilter .item a {
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 50px;
  text-align: center;
}

.wordFilter .item:hover {
  background-color: #006de8;
  color: #FFF;
}

.wordFilter .item.active {
  background-color: #006de8;
  color: #FFF;
}

@media (max-width: 1200px) {
  .banner .title .ch {
    font-size: 38px;
  }

  .banner .title .en {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .banner .title {
    bottom: 50%;
    transform: translate(-50%, 50%);
  }

  .banner .title .ch {
    font-size: 32px;
  }

  .banner .title .en {
    font-size: 16px;
  }

  .myContent {
    padding: 60px 0;
  }

  .myContent .content {
    padding: 60px 0;
  }

  .myContent .content .list {
    gap: 25px;
  }

  .myContent .content .list .item {
    width: calc(50% - 12.5px);
  }
}

@media (max-width: 768px) {
  .filterBox .title {
    font-size: 14px;
    padding-bottom: 10px;
  }

  .wordFilter .item {
    font-size: 12px;
    width: 35px;
    height: 35px;
  }

  .mobile {
    display: block;
  }

  .pc {
    display: none;
  }

  .banner .title .ch {
    font-size: 24px;
  }

  .banner .title .en {
    font-size: 15px;
  }

  .myContent {
    padding: 40px 0;
  }

  .myContent .selects {
    overflow-x: scroll;
  }

  .myContent .selects .item {
    font-size: 12px;
    height: 35px;
    width: 25%;
    flex-shrink: 0;
    cursor: pointer;
  }

  .myContent .selects::-webkit-scrollbar {
    display: none;
  }

  .myContent .content {
    padding: 20px 0 40px;
  }

  .myContent .content .list {
    gap: 10px;
  }

  .myContent .content .list .item {
    width: calc(50% - 5px);
  }

  .myContent .content .list .item .box .describe {
    padding: 10px;
  }

  .myContent .content .list .item .box .describe .title {
    font-size: 18px;
  }

  .myContent .content .list .item .box .describe .tag {
    padding-top: 10px;
    flex-direction: column;
  }

  .myContent .content .list .item .box .describe .tag .b .e {
    font-size: 12px;
    line-height: 1.5;
  }
}