html,body{
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  /* cursor: none; */
}
html{
  font-size: 10px;
  background-color: #fff;
}
a{
  text-decoration: none;
}

#all_wrap{
  position: relative;
  width: 100%;
  height: auto;
  min-width: 1200px;
  max-width: 1920px;
  min-height: 100vh;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  overflow: hidden;
  background-repeat: repeat;
  background-color: #f8f8f8;
}

#item{
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 500px;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center top;
}

#item > .headerBG{
  position: relative;
  width: 100%;
  height: 370px;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
}

#item > .itemWrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  width: 1200px;
  height: auto;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 130px;
  padding: 0;
}
#item > .itemWrap > .itemShop{
  display: inline-block;
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
  margin-left: 60px;
  margin-right: 60px;
  margin-bottom: 120px;
  padding: 0;
}
#item > .itemWrap > .itemShop > div{
  display: block;
  position: absolute;
  width: auto;
  height: auto;
  top: 400px;
  left: 0;
  margin: 0;
  padding: 0;
}
#item > .itemWrap > .itemShop > div > a{
  display: block;
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
  margin-top: 16px;
  padding: 0;
  transition-duration: 0.3s;
  transform: translateY(0px);
}
#item > .itemWrap > .itemShop > div > a:hover{
  transform: translateY(-3px);
}
#item > .itemWrap > .itemShop > div > a > div:nth-child(2){
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 236px;
  height: 24px;
  margin: auto;
  padding: 0;
}
#item > .itemWrap > .itemShop > div > a > div::before,
#item > .itemWrap > .itemShop > div > a > div::after{
  content: "";
  position: absolute;
  width: 30px;
  height: 20px;
  opacity: 0;
  transition-duration: 0.5s;
}
#item > .itemWrap > .itemShop > div > a > div::before {
 border-top: 6px ridge #ffffff;
 border-left: 6px ridge #ffffff;
 top: -25px;
 left: -25px;
}
#item > .itemWrap > .itemShop > div > a > div::after {
  border-bottom: 6px ridge #ffffff;
  border-right: 6px ridge #ffffff;
  bottom: -25px;
  right: -25px;
}
#item > .itemWrap > .itemShop > div > a:hover > div::before {
 top: -10px;
 left: -10px;
 opacity: 1;
}
#item > .itemWrap > .itemShop > div > a:hover > div::after {
  bottom: -10px;
  right: -10px;
  opacity: 1;
}
