* {
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  margin: 0;
  padding: 0;
}
:root {
  font-size: 10px;
}
.row {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", STHeiti, "Microsoft Yahei", Tahoma, Simsun, sans-serif;
}
.adsHeight {
  width: 100%;
  height: 252px;
}
@media (min-width: 356px) {
  .adsHeight {
    width: 100%;
    height: 312px;
  }
}
@media (min-width: 748px) {
  .adsHeight {
    width: 100%;
    height: 280px;
  }
}
.head {
  width: 100%;
  background: #FDE71B;
  z-index: 3;
  box-shadow: 0 0 0.8rem rgba(236, 8, 113, 0.3);
}
.head .headCont {
  max-width: 130rem;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.head .headCont .navLeft {
  display: flex;
  align-items: center;
}
.head .headCont .navLeft .menu {
  cursor: pointer;
}
.head .headCont .navLeft .sitelogo {
  height: 100%;
}
.head .headCont .navRight {
  height: 100%;
  display: flex;
  align-items: center;
}
.head .headCont .navRight .navRightList {
  display: flex;
  align-items: center;
}
.head .headCont .navRight .navRightList .nav-item {
  display: flex;
  align-items: center;
  margin-left: 1.6rem;
  position: relative;
  padding: 0.8rem 1.6rem;
}
.head .headCont .navRight .navRightList .nav-item .coverlink {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.head .headCont .navRight .navRightList .nav-item .nav-item-icon {
  height: 3.2rem;
  margin-top: -1.3rem;
}
.head .headCont .navRight .navRightList .nav-item .nav-item-title {
  margin-left: 0.5rem;
  font-weight: 500;
  font-size: 1.6rem;
  color: #FFFFFF;
}
.head .headCont .navRight .navRightList .nav-item:nth-child(1) {
  background: #FF563F;
  box-shadow: 0 0.3rem 0 #EBDCDC, 0 0.6rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 2.4rem;
}
.head .headCont .navRight .navRightList .nav-item:nth-child(2) {
  background: #D458FF;
  box-shadow: 0 0.3rem 0 #EBDCDC, 0 0.6rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 2.4rem;
}
.head .headCont .navRight .navRightList .nav-item:nth-child(3) {
  background: #FC9A06;
  box-shadow: 0 0.3rem 0 #EBDCDC, 0 0.6rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 2.4rem;
}
.head .headCont .navRight .navRightList .nav-item:nth-child(4) {
  background: #03C3FF;
  box-shadow: 0 0.3rem 0 #EBDCDC, 0 0.6rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 2.4rem;
}
.sidebar_wrap {
  display: none;
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.15);
  overflow: scroll;
}
.sidebar_wrap .closeBtn {
  display: flex;
  justify-content: flex-end;
  padding: 3rem;
  font-size: 2.4rem;
  font-weight: bold;
  color: #222;
}
.sidebar_wrap ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sidebar_wrap ul .item {
  box-sizing: border-box;
  width: 85%;
  padding: 0.5rem;
  margin-bottom: 2.4rem;
  border-radius: 5rem;
  background-color: #EEF6FD;
}
.sidebar_wrap ul .item a {
  display: flex;
  align-items: center;
}
.sidebar_wrap ul .item a .nav-icon {
  height: 5.6rem;
  width: 5.6rem;
  margin-right: 1rem;
}
.sidebar_wrap ul .item a span {
  min-width: 6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.8rem;
  color: #2399F9;
}
.sidebar_wrap ul .item:hover {
  background-color: #00AAFF;
}
.sidebar_wrap ul .item:hover span {
  color: #FFFFFF;
}
.sidebar_Bgc {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 4;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 320px) {
  .head {
    height: 5.2rem;
  }
  .head .headCont {
    height: 100%;
    padding: 0 1rem;
  }
  .head .headCont .navLeft {
    width: 100%;
  }
  .head .headCont .navLeft .sitelogo {
    flex-grow: 1;
    display: block;
    text-align: center;
  }
  .head .headCont .navLeft .sitelogo .coverlink {
    display: block;
    height: 100%;
  }
  .head .headCont .navLeft .sitelogo .coverlink .logoImg {
    height: 3.6rem;
    width: 14.7rem;
  }
  .head .headCont .navRight {
    display: none;
  }
  .sidebar_wrap {
    width: 70%;
  }
  .sidebar_wrap .closeBtn img {
    width: 2rem;
    height: 2rem;
  }
}
@media only screen and (min-width: 321px) and (max-width: 500px) {
  .head {
    height: 5.2rem;
  }
  .head .headCont {
    height: 100%;
    padding: 0 1rem;
  }
  .head .headCont .navLeft {
    width: 100%;
  }
  .head .headCont .navLeft .sitelogo {
    flex-grow: 1;
    display: block;
    text-align: center;
  }
  .head .headCont .navLeft .sitelogo .coverlink {
    display: block;
    text-align: center;
  }
  .head .headCont .navLeft .sitelogo .coverlink .logoImg {
    height: 3.6rem;
    width: 14.7rem;
  }
  .head .headCont .navRight {
    display: none;
  }
  .sidebar_wrap {
    width: 70%;
  }
  .sidebar_wrap .closeBtn img {
    width: 2rem;
    height: 2rem;
  }
}
@media only screen and (min-width: 501px) and (max-width: 767px) {
  .head {
    height: 5.2rem;
  }
  .head .headCont {
    height: 100%;
    padding: 0 1rem;
  }
  .head .headCont .navLeft {
    width: 100%;
  }
  .head .headCont .navLeft .sitelogo {
    flex-grow: 1;
    display: block;
    text-align: center;
  }
  .head .headCont .navLeft .sitelogo .coverlink {
    display: block;
    height: 100%;
  }
  .head .headCont .navLeft .sitelogo .coverlink .logoImg {
    height: 3.6rem;
    width: 14.7rem;
  }
  .head .headCont .navRight {
    display: none;
  }
  .sidebar_wrap {
    width: 26rem;
  }
  .sidebar_wrap .closeBtn img {
    width: 2rem;
    height: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .head {
    height: 6rem;
  }
  .head .headCont {
    height: 100%;
    padding: 0 1rem;
  }
  .head .headCont .navLeft {
    width: 100%;
  }
  .head .headCont .navLeft .sitelogo {
    margin-left: 1rem;
  }
  .head .headCont .navLeft .sitelogo .coverlink .logoImg {
    height: 3.6rem;
    width: 14.7rem;
  }
  .head .headCont .navRight .navRightList .nav-item {
    margin-left: 0.8rem;
  }
  .head .headCont .navRight .navRightList .nav-item .nav-item-title {
    margin-left: 0.3rem;
  }
  .sidebar_wrap {
    width: 32rem;
  }
  .sidebar_wrap .closeBtn img {
    width: 3rem;
    height: 3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .head {
    height: 6rem;
  }
  .head .headCont {
    height: 100%;
    padding: 0 1rem;
  }
  .head .headCont .navLeft .sitelogo {
    margin-left: 1rem;
  }
  .head .headCont .navLeft .sitelogo .coverlink .logoImg {
    height: 3.6rem;
    width: 14.7rem;
  }
  .sidebar_wrap {
    width: 32rem;
  }
  .sidebar_wrap .closeBtn img {
    width: 4rem;
    height: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .head {
    height: 6rem;
  }
  .head .headCont {
    height: 100%;
  }
  .head .headCont .navLeft .sitelogo {
    margin-left: 1rem;
  }
  .head .headCont .navLeft .sitelogo .coverlink .logoImg {
    height: 4rem;
    width: 16.388rem;
  }
  .sidebar_wrap {
    width: 32rem;
  }
  .sidebar_wrap .closeBtn img {
    width: 4rem;
    height: 4rem;
  }
}
.footerwrap {
  background-color: #009EE7;
  width: 100%;
  padding: 3rem 0;
}
.footerwrap .navBox {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.footerwrap .navBox .logo a img {
  height: 4rem;
  width: 16.388rem;
}
.footerwrap .navBox .foot-con {
  margin: 1.5rem 0;
  display: flex;
}
.footerwrap .navBox .foot-con a {
  color: #FFFFFF;
}
.footerwrap .copyright {
  max-width: 130rem;
  margin: 0 auto;
  margin-top: 1rem;
  color: #FFFFFF;
  padding: 0 2rem;
}
.footerwrap .cookie-notice-container {
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  color: #6f6f6f;
  text-align: center;
  z-index: 999999;
  -webkit-box-shadow: 0 0.1rem 0.2rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.1rem 0.2rem 0 rgba(0, 0, 0, 0.1);
}
.footerwrap .cookie-notice-container .container {
  min-height: 3rem;
  z-index: 2;
  position: relative;
  text-align: center;
  padding: 1.6rem;
  padding-right: 11rem;
}
.footerwrap .cookie-notice-container .container a,
.footerwrap .cookie-notice-container .container button,
.footerwrap .cookie-notice-container .container video {
  -webkit-tap-highlight-color: transparent;
  outline: 0;
  text-decoration: none;
}
.footerwrap .cookie-notice-container .container button {
  position: absolute;
  top: 50%;
  transform: translate(-0.8rem, -50%);
  display: block;
  padding: 0 3rem;
  height: 3rem;
  line-height: 3rem;
  background: #37aafd;
  border: none;
  color: #fff;
  margin: 0 auto;
  -moz-border-radius: 1.5rem;
  -webkit-border-radius: 1.5rem;
  border-radius: 1.5rem;
  cursor: pointer;
}
.footerwrap .cookie-notice-container:before {
  content: '';
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
  z-index: -1;
  box-shadow: 0 0.2rem 0.3rem 0 rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 320px) {
  .footerwrap .navBox .foot-con {
    display: flex;
    flex-wrap: wrap;
  }
  .footerwrap .navBox .foot-con a {
    margin-right: 1.4rem;
    font-size: 1.5rem;
  }
  .footerwrap .navBox .logo a img {
    height: 3.6rem;
    width: 14.7rem;
  }
  .footerwrap .foot-con {
    font-size: 1.2rem;
  }
  .footerwrap .cookie-notice-container .container {
    font-size: 1.4rem;
  }
  .footerwrap .cookie-notice-container .container button {
    right: 0;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 321px) and (max-width: 767px) {
  .footerwrap .navBox .foot-con {
    display: flex;
    flex-wrap: wrap;
  }
  .footerwrap .navBox .foot-con a {
    margin-right: 1.4rem;
    font-size: 1.6rem;
  }
  .footerwrap .navBox .logo a img {
    height: 3.6rem;
    width: 14.7rem;
  }
  .footerwrap .foot-con {
    font-size: 1.2rem;
  }
  .footerwrap .cookie-notice-container .container {
    font-size: 1.4rem;
  }
  .footerwrap .cookie-notice-container .container button {
    right: 0;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footerwrap .navBox .foot-con {
    display: flex;
    flex-wrap: wrap;
  }
  .footerwrap .navBox .foot-con a {
    margin-left: 1.6rem;
    font-size: 1.6rem;
  }
  .footerwrap .navBox .logo a img {
    height: 3.6rem;
    width: 14.7rem;
  }
  .footerwrap .foot-con {
    font-size: 1.4rem;
  }
  .footerwrap .cookie-notice-container .container {
    font-size: 1.6rem;
  }
  .footerwrap .cookie-notice-container .container button {
    right: 0;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footerwrap .navBox .foot-con {
    display: flex;
    flex-wrap: wrap;
  }
  .footerwrap .navBox .foot-con a {
    margin-left: 1.8rem;
    font-size: 1.8rem;
  }
  .footerwrap .navBox .logo a img {
    height: 4rem;
    width: 16.388rem;
  }
  .footerwrap .foot-con {
    font-size: 1.6rem;
  }
  .footerwrap .cookie-notice-container .container {
    font-size: 1.6rem;
  }
  .footerwrap .cookie-notice-container .container button {
    right: 0;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .footerwrap .navBox .foot-con {
    display: flex;
    flex-wrap: wrap;
  }
  .footerwrap .navBox .foot-con a {
    margin-right: 2rem;
    font-size: 2rem;
  }
  .footerwrap .navBox .logo a img {
    height: 4rem;
    width: 16.388rem;
  }
  .footerwrap .copyright {
    font-size: 1.4rem;
  }
  .footerwrap .foot-con {
    font-size: 1.4rem;
  }
  .footerwrap .cookie-notice-container .container {
    font-size: 1.8rem;
  }
  .footerwrap .cookie-notice-container .container button {
    right: 8%;
    font-size: 1.8rem;
  }
}
.contentWrap {
  width: 100%;
}
.contentWrap .top-content {
  background-color: #FDE71B;
}
.contentWrap .top-content .top-box {
  margin: 0 auto;
  max-width: 130rem;
  display: flex;
  box-sizing: border-box;
}
.contentWrap .top-content .top-box .top-cont-left {
  width: 23.5%;
  box-sizing: border-box;
  padding: 1.5rem;
  background: #DED02B;
  border-radius: 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.contentWrap .top-content .top-box .top-cont-left .top-item-a {
  display: block;
  width: 100%;
  z-index: 1;
}
.contentWrap .top-content .top-box .top-cont-left .topImg {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  aspect-ratio: 800/419;
  border-radius: 2rem;
  border: 0.4rem solid #FFFFFF;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.contentWrap .top-content .top-box .top-cont-middle {
  display: flex;
  align-items: center;
}
.contentWrap .top-content .top-box .top-cont-middle .top-item-a {
  display: block;
  width: 98%;
  z-index: 1;
  animation: middleBigImg 4s infinite 5s;
  -webkit-animation: middleBigImg 4s infinite 5s;
  /* Safari 与 Chrome */
}
.contentWrap .top-content .top-box .top-cont-middle .top-item-a .topImg {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  aspect-ratio: 800/419;
  border-radius: 2rem;
  border: 0.4rem solid #FFFFFF;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.contentWrap .top-content .top-box .top-cont-right {
  width: 23.5%;
  padding: 1.5rem;
  box-sizing: border-box;
  background: #DED02B;
  border-radius: 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.contentWrap .top-content .top-box .top-cont-right .top-item-a {
  display: block;
  width: 100%;
  z-index: 1;
}
.contentWrap .top-content .top-box .top-cont-right .topImg {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  aspect-ratio: 800/419;
  border-radius: 2rem;
  border: 0.4rem solid #FFFFFF;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.contentWrap .table-top-content {
  background-color: #15C1FF;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.contentWrap .table-top-content .table-list {
  margin: 0 auto;
  max-width: 130rem;
  box-sizing: border-box;
  padding: 1rem;
  display: grid;
  align-items: center;
  justify-content: space-around;
  background: #13AEF0;
  border-radius: 3.2rem;
}
.contentWrap .table-top-content .table-list .table-item .top-item-a {
  display: block;
  width: 100%;
  z-index: 1;
}
.contentWrap .table-top-content .table-list .table-item .topImg {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  aspect-ratio: 800/419;
  border-radius: 2rem;
  border: 0.4rem solid #FFFFFF;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.contentWrap .categoryWrap {
  background: url("../images/Combined-Shape_1_.webp") #15C1FF;
  height: 100%;
}
.contentWrap .categoryWrap .category {
  max-width: 130rem;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 3rem 0;
}
.contentWrap .categoryWrap .category .ads-li {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.contentWrap .categoryWrap .category .category-list {
  margin-top: 2.4rem;
}
.contentWrap .categoryWrap .category .category-list .category-item {
  background: #13AEF0;
  border-radius: 2rem;
  padding: 1rem;
}
.contentWrap .categoryWrap .category .category-list .category-item .category-title {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.contentWrap .categoryWrap .category .category-list .category-item .category-title .coverlink {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.contentWrap .categoryWrap .category .category-list .category-item .category-title .category-title-left {
  display: flex;
  align-items: center;
}
.contentWrap .categoryWrap .category .category-list .category-item .category-title .category-title-left .category-title-icon {
  height: 4rem;
}
.contentWrap .categoryWrap .category .category-list .category-item .category-title .category-title-left .category-name {
  margin-left: 0.5rem;
  font-size: 2.2rem;
  color: #FFFFFF;
  font-weight: 500;
}
.contentWrap .categoryWrap .category .category-list .category-item .category-title .category-title-right .category-more {
  height: 4rem;
}
.contentWrap .categoryWrap .category .category-list .category-item .category-ul-list {
  margin-bottom: 2rem;
  display: grid;
}
.contentWrap .categoryWrap .category .category-list .category-item .category-ul-list .category-item-li {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 1.2rem;
  border: 0.4rem solid #FFFFFF;
  box-shadow: 0 0.6rem 0 #EBDCDC, 0 1.2rem 0 rgba(0, 0, 0, 0.1);
  position: relative;
}
.contentWrap .categoryWrap .category .category-list .category-item .category-ul-list .category-item-li .coverlink {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.contentWrap .categoryWrap .category .category-list .category-item .category-ul-list .category-item-li .category-item-li-img {
  width: 100%;
  height: auto;
  aspect-ratio: 800/419;
  max-height: 20rem;
  border-radius: 1.2rem 1.2rem 0 0;
}
.contentWrap .categoryWrap .category .category-list .category-item .category-ul-list .category-item-li .category-item-li-text {
  width: 97%;
  margin: 0 0.5rem;
  box-sizing: border-box;
  font-weight: 500;
  font-size: 1.6rem;
  color: #00ACF0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: normal;
}
@keyframes middleBigImg {
  2.5% {
    transform: rotate(-3deg);
  }
  5% {
    transform: rotate(3deg);
  }
  7.5% {
    transform: rotate(-4deg);
  }
  10% {
    transform: rotate(4deg);
  }
  12.5% {
    transform: rotate(-3deg);
  }
  15% {
    transform: rotate(3deg);
  }
  17.5% {
    transform: rotate(0);
  }
}
@media only screen and (max-width: 320px) {
  .contentWrap {
    display: none;
  }
}
@media only screen and (min-width: 321px) and (max-width: 500px) {
  .categoryWrap {
    display: none;
  }
}
@media only screen and (min-width: 501px) and (max-width: 767px) {
  .contentWrap .top-content {
    display: none;
  }
  .contentWrap .table-top-content .table-list {
    grid-template-columns: repeat(3, calc((100% - 3rem)/3));
  }
  .contentWrap .categoryWrap .category .category-list .category-item .category-ul-list {
    grid-template-columns: repeat(3, calc((100% - 9rem) / 3));
    grid-gap: 2rem 3rem;
  }
  .contentWrap .categoryWrap .category .category-list .category-item .category-ul-list .ads-li {
    display: grid;
    grid-column: span 3;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contentWrap .top-content {
    display: none;
  }
  .contentWrap .table-top-content .table-list {
    grid-template-columns: repeat(3, calc((100% - 3rem)/3));
  }
  .contentWrap .categoryWrap .category .category-list .category-item .category-ul-list {
    grid-template-columns: repeat(4, calc((100% - 6rem) / 4));
    grid-gap: 2rem 1.6rem;
  }
  .contentWrap .categoryWrap .category .category-list .category-item .category-ul-list .ads-li {
    display: grid;
    grid-column: span 3;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .contentWrap .top-content {
    display: none;
  }
  .contentWrap .table-top-content .table-list {
    grid-template-columns: repeat(3, calc((100% - 3rem)/3));
  }
  .contentWrap .categoryWrap .category .category-list .category-item .category-ul-list {
    grid-template-columns: repeat(4, calc((100% - 6rem) / 4));
    grid-gap: 2rem 1.6rem;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) and (orientation: portrait) {
  .contentWrap .top-content {
    display: none;
  }
  .contentWrap .table-top-content .table-list {
    grid-template-columns: repeat(3, calc((100% - 3rem)/3));
  }
  .contentWrap .categoryWrap .category .category-list .category-item .category-ul-list {
    grid-template-columns: repeat(4, calc((100% - 6rem) / 4));
    grid-gap: 2rem 1.6rem;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) and (orientation: landscape) {
  .contentWrap .top-content {
    padding: 2rem;
  }
  .contentWrap .top-content .top-box .top-cont-middle {
    width: 53%;
    padding: 0 3.5rem;
  }
  .contentWrap .table-top-content {
    display: none;
  }
  .contentWrap .categoryWrap .category .category-list .category-item .category-ul-list {
    grid-template-columns: repeat(4, calc((100% - 12rem) / 4));
    grid-gap: 3rem 3rem;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1366px) {
  .contentWrap .top-content {
    padding: 2rem;
  }
  .contentWrap .top-content .top-box .top-cont-middle {
    width: 53%;
    padding: 0 3.5rem;
  }
  .contentWrap .table-top-content {
    display: none;
  }
  .contentWrap .categoryWrap .category .category-list .category-item .category-ul-list {
    grid-template-columns: repeat(4, calc((100% - 7rem) / 4));
    grid-gap: 3rem 2rem;
  }
}
@media only screen and (min-width: 1367px) {
  .contentWrap .top-content {
    padding: 2rem;
  }
  .contentWrap .top-content .top-box .top-cont-middle {
    width: 53%;
    padding: 0 3.5rem;
  }
  .contentWrap .table-top-content {
    display: none;
  }
  .contentWrap .categoryWrap .category .category-list .category-item .category-ul-list {
    grid-template-columns: repeat(4, calc((100% - 7rem) / 4));
    grid-gap: 3rem 2rem;
  }
}
