main .main{
  display: grid;
  grid-template-columns: repeat(11,1fr);
  grid-gap:0.1rem;
  justify-content: center;
  z-index: 9;
}
main .main a img{
  border-radius: 20px;
}

main .main div:nth-child(1){
  grid-row: 1/span 1;
  grid-column: 1/span 11;
}
main .main .shootng{
  margin: 40px 0 60px 0;
  z-index: 999;
  cursor: pointer;
}
main .main .shootng a{
  width: 200px;
  height: 80px;
  padding: 4px;
  background-color: #5146BF;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 7px 21px 0 hsla(0,0%,4%,.3);
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: #fff solid 2px;
  border-color:transparent;
}
main .main .shootng a img{
  width: 60px;
  height: 60px;
}

/* main .main .shootng a .img{
  background-color: #5F52E0;
} */
main .main .shootng a span{
  font-size: 16px;
  font-weight: 700;
}
/* main .main .main_item:nth-child(1){
  grid-row: 3/span 3;
  grid-column: 1/span 4;
}
main .main .main_item:nth-child(2){
  grid-row: 7/span 3;
  grid-column: 7/span 4;
}
main .main .main_item:nth-child(3){
  grid-row: 10/span 3;
  grid-column: 1/span 4;
}
main .main .main_item:nth-child(4){
  grid-row: 6/span 2;
  grid-column: 2/span 2;
}
main .main .main_item:nth-child(5){
  grid-row: 2/span 2;
  grid-column: 9/span 2;
}
main .main .main_item a{
  position: relative;
} */
main .main .main_item a p{
  position: absolute;
  bottom: 0;
  font-size: 12px;
  text-align: center;
  width: 100%;
  color: #fff;
  border-radius: 0 0 20px 20px;
  height: 50px;
  background: linear-gradient(transparent 25%,rgba(0,0,0,.5));
  word-wrap: break-word;
  display: none;
}
main .main .card{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-gap:0.1rem;
  justify-content: center;
  background-color: #443897;
  border-radius: 10px;
  padding: 20px;
}
main .main .card .card_intro{
  border-radius: 10px;
  background: linear-gradient(358.5deg,#8a7ffa .56%,#5443b4 98.01%);
  padding: 10px;
}
main .main .card .card_intro h3{
  margin:0;
  margin-bottom: 10px;
  color: #fff;
}
main .main .card .card_intro span{
  font-size: 12px;
  color: #fff;
}
main .main .card .card_intro button{
  border: #fff solid 1px;
  border-radius: 10px;
  background-color: #776AE1;
  color: #fff;
  margin-top: 20px;
  font-size: 12px;
}
main .main .card .item:nth-child(1){
  grid-row: 1/span 2;
  grid-column: 1/span 2;
}





main .main .main_item a img{
  width: 100%;
  box-shadow: 0 9px 35px 0 hsla(0,0%,4%,.3);
  /* border: 1px solid #34297E; */
}







@media screen and (min-width:1200px){
  main .main .main_item_hover:hover{
    transition: all 0.2s;
    transform: scale(1.2);
    z-index:2;
    visibility: visible;
  }
  main .main .main_item .card_game:hover{
    transition: all 0.2s;
    transform: scale(1.2);
    z-index:2;
    visibility: visible;
  }
  main .main .main_item_hover:hover p{
    display: block;
  }
  main .main .main_item .card_game:hover p{
    display: block;
  }
  main .main .shootng a:hover img{
    transition: all 0.2s;
    transform: scale(1.2);
    z-index:2;
    visibility: visible;
  }
  main .main .shootng a:hover{
    border: #fff solid 2px;
  }
}

@media screen and (max-width:700px) {
  main .main {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap:0.1rem;
    justify-content: center;
    padding: 6px;
  }
  main .main div:nth-child(1){
    grid-row: 1/span 1;
    grid-column: 1/span 4;
  }
  main .main .shootng{
    margin: 10px 0 20px 0;
    z-index: 999;
    cursor: pointer;
  }
  main .main .shootng a{
    width: 120px;
    height: 50px;
    padding: 4px;
    background-color: #5146BF;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 7px 21px 0 hsla(0,0%,4%,.3);
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  main .main .shootng a img{
    width: 30px;
    height: 30px;
  }
  main .main .shootng a span{
    font-size: 14px;
    font-weight: 700;
  }
  main .main .main_item a{
    position: relative;
  }
  main .main div:nth-child(1){
    grid-row: 1/span 1;
    grid-column: 1/span 4;
  }
}



@media screen and (min-width:700px) and (max-width:830px){
  main .main{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap:0.1rem;
    justify-content: center;
    padding: 6px;
  }
  main .main div:nth-child(1){
    grid-row: 1/span 1;
    grid-column: 1/span 5;
  }
}


@media screen and (min-width:830px) and (max-width:960px){
  main .main{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-gap:0.1rem;
    justify-content: center;
    padding: 6px;
  }
  main .main div:nth-child(1){
    grid-row: 1/span 1;
    grid-column: 1/span 6;
  }

}



@media screen and (min-width:960px) and (max-width:1220px){
  main .main{
    display: grid;
    grid-template-columns: repeat(8,1fr);
    grid-gap:0.1rem;
    justify-content: center;
    padding: 6px;
  }
  main .main div:nth-child(1){
    grid-row: 1/span 1;
    grid-column: 1/span 8;
  }
}