.myhead {
  width: calc(100% - 20px);
  margin-top: 10px;
  padding: 0 10px;
}
@media (max-width: 750px) {
  .myhead {
    margin-top: 2vw;
    padding: 0;
  }
}
.myhead .head_box {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.myhead .head_box .head_left {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  margin: 5px;
  border-radius: 12px;
  box-shadow: 0 12px 10px 0 rgba(0, 0, 0, 0.2);
}
.myhead .head_box .head_left .left_top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 8px 8px;
  transition: transform 0.3s;
}
.myhead .head_box .head_left .left_top img {
  width: 80px;
}
.myhead .head_box .head_left .left_top:hover {
  transform: scale(1.1);
}
.myhead .head_box .head_left .left_bottom {
  border-top: 2px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
}
.myhead .head_box .head_left .left_bottom .bottom {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  padding-bottom: 5px;
}
.myhead .head_box .head_left .left_bottom .bottom img {
  margin-top: 5px;
  width: 33px;
  transition: transform 0.3s;
}
.myhead .head_box .head_left .left_bottom .bottom_l {
  border-right: 2px solid #ececec;
}
.myhead .head_box .head_left .left_bottom .bottom:hover {
  background: rgba(107, 186, 255, 0.2);
}
.myhead .head_box .head_left .left_bottom .bottom:hover img {
  transform: scale(1.2);
}
@media (max-width: 1000px) {
  .myhead .head_box .head_left {
    margin: 0.5vw;
    border-radius: 1.2vw;
    box-shadow: 0 1.2vw 1vw 0 rgba(0, 0, 0, 0.2);
  }
  .myhead .head_box .head_left .left_top {
    padding: 1.3vw 0.8vw 0.8vw;
  }
  .myhead .head_box .head_left .left_top img {
    width: 8.2vw;
  }
  .myhead .head_box .head_left .left_bottom {
    border-width: 0.2vw;
  }
  .myhead .head_box .head_left .left_bottom .bottom {
    padding-bottom: 0.6vw;
  }
  .myhead .head_box .head_left .left_bottom .bottom img {
    margin-top: 0.5vw;
    width: 3.5vw;
  }
  .myhead .head_box .head_left .left_bottom .bottom_l {
    border-width: 0.2vw;
  }
}
@media (max-width: 750px) {
  .myhead .head_box .head_left {
    margin: 0.8vw;
  }
  .myhead .head_box .head_left .left_top {
    padding: 1.5vw 1vw 1vw;
  }
  .myhead .head_box .head_left .left_top img {
    width: 12vw;
  }
  .myhead .head_box .head_left .left_bottom .bottom {
    padding-bottom: 1vw;
  }
  .myhead .head_box .head_left .left_bottom .bottom img {
    margin-top: 0.8vw;
    width: 4.5vw;
  }
}
.myhead .head_box .head_right {
  padding: 10px;
  width: calc(100% - 130px);
  height: 100px;
  display: flex;
  align-items: start;
  overflow-x: auto;
  overflow-y: hidden;
}
.myhead .head_box .head_right .head_item {
  flex-shrink: 0;
  width: 90px;
  margin: 0px 5px;
  box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2);
}
.myhead .head_box .head_right .head_item:hover {
  transform: scale(1.08) translateY(-3px);
  z-index: 1;
}
@media (max-width: 1000px) {
  .myhead .head_box .head_right {
    padding: 1vw;
    width: calc(100% - 13.5vw);
    height: 10vw;
  }
  .myhead .head_box .head_right .head_item {
    width: 9vw;
    margin: 0px 0.5vw;
    box-shadow: 0 1vw 1vw 0 rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 750px) {
  .myhead .head_box .head_right {
    width: calc(100% - 18.5vw);
    height: 13.5vw;
  }
  .myhead .head_box .head_right .head_item {
    width: 12.5vw;
  }
}
.myhead .head_box .head_right::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
.mybody {
  display: grid;
  grid-template-columns: repeat(8, 85px);
  grid-auto-flow: dense;
  grid-gap: 16px;
  justify-content: center;
}
@media (max-width: 900px) {
  .mybody {
    grid-template-columns: repeat(4, 90px);
    grid-gap: 3vw;
  }
}
@media (max-width: 750px) {
  .mybody {
    grid-template-columns: repeat(4, 1fr);
  }
}
.mybody .item_box {
  background: #fff;
  box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 15px;
  grid-gap: 16px;
  grid-row-end: span 4;
  grid-column-end: span 4;
  display: grid;
  grid-template-columns: repeat(3, calc(33.33% - 10.6656px));
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: dense;
  justify-content: center;
}
@media (max-width: 1000px) {
  .mybody .item_box {
    box-shadow: 0 0.3vw 1.8vw 0 rgba(0, 0, 0, 0.2);
    padding: 1.6vw;
    border-radius: 1.5vw;
    grid-template-columns: repeat(3, calc(32% - 1vw));
    grid-gap: 2vw;
  }
}
@media (max-width: 450px) {
  .mybody .item_box {
    box-shadow: 0 0.3vw 1.8vw 0 rgba(0, 0, 0, 0.2);
    padding: 3vw;
    border-radius: 1.5vw;
    grid-template-columns: repeat(3, calc(31% - 1vw));
    grid-gap: 3vw;
  }
}
.mybody .reco_box {
  background: #fff;
  box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 15px;
  grid-row-start: 13;
  grid-row-end: span 4;
  grid-column-end: span 4;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1000px) {
  .mybody .reco_box {
    box-shadow: 0 0.3vw 1.8vw 0 rgba(0, 0, 0, 0.2);
    padding: 1.6vw;
    border-radius: 1.5vw;
  }
}
@media (max-width: 450px) {
  .mybody .reco_box {
    box-shadow: 0 0.3vw 1.8vw 0 rgba(0, 0, 0, 0.2);
    padding: 3vw;
    border-radius: 1.5vw;
  }
}
.mybody .reco_box .reco_top {
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #cecece;
}
@media (max-width: 450px) {
  .mybody .reco_box .reco_top {
    font-size: 4.2vw;
    line-height: 6.2vw;
    padding-bottom: 3.5vw;
  }
}
.mybody .reco_box .reco_bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.mybody .reco_box .reco_bottom .reco {
  display: flex;
  text-decoration: none;
  margin-bottom: 8px;
}
.mybody .reco_box .reco_bottom .reco .reco_left {
  flex-shrink: 0;
  width: 80px;
  border-radius: 15px;
  margin-right: 15px;
}
.mybody .reco_box .reco_bottom .reco .reco_left img {
  width: 100%;
  border-radius: inherit;
}
.mybody .reco_box .reco_bottom .reco .reco_right {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 2px solid #cecece;
  overflow: hidden;
  white-space: nowrap;
}
.mybody .reco_box .reco_bottom .reco .reco_right .reco_name,
.mybody .reco_box .reco_bottom .reco .reco_right .reco_detail {
  overflow: hidden;
  text-overflow: ellipsis;
}
.mybody .reco_box .reco_bottom .reco .reco_right .reco_name {
  color: #000;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.mybody .reco_box .reco_bottom .reco .reco_right .reco_detail {
  color: #747474;
  font-size: 14px;
  line-height: 24px;
}
.mybody .reco_box .reco_bottom .reco .len {
  border-width: 0;
}
@media (max-width: 450px) {
  .mybody .reco_box .reco_bottom .reco {
    margin-bottom: 1.8vw;
  }
  .mybody .reco_box .reco_bottom .reco .reco_left {
    width: 16vw;
    border-radius: 2.5vw;
    margin-right: 3vw;
  }
  .mybody .reco_box .reco_bottom .reco .reco_right {
    border-bottom: 0.5vw solid #cecece;
  }
  .mybody .reco_box .reco_bottom .reco .reco_right .reco_name {
    font-size: 3.8vw;
    line-height: 4.2vw;
    margin-bottom: 1.2vw;
  }
  .mybody .reco_box .reco_bottom .reco .reco_right .reco_detail {
    font-size: 3vw;
    line-height: 4vw;
  }
}
.mybody .reco_box .reco_bottom .reco:last-child .reco_right {
  border-width: 0;
}
.mybody .about_box {
  grid-row-end: span 4;
  grid-column-end: span 4;
  overflow: hidden;
  height: 351px;
  background: #fff;
  box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 15px;
}
.mybody .about_box .about {
  height: 100%;
  overflow: auto;
}
.mybody .about_box .about h1 {
  font-size: 30px;
}
.mybody .about_box .about h2 {
  font-size: 22px;
}
.mybody .about_box .about p {
  font-size: 16px;
}
@media (max-width: 450px) {
  .mybody .about_box .about h1 {
    font-size: 6vw;
  }
  .mybody .about_box .about h2 {
    font-size: 4.8vw;
  }
  .mybody .about_box .about p {
    font-size: 3.6vw;
  }
}
.mybody .about_box .about::-webkit-scrollbar {
  width: 5px;
  height: 0px;
}
.mybody .about_box .about::-webkit-scrollbar-thumb {
  background: #86868660;
  border-radius: 15px;
  cursor: pointer;
}
@media (max-width: 450px) {
  .mybody .about_box {
    height: 81vw;
    box-shadow: 0 0.3vw 1.8vw 0 rgba(0, 0, 0, 0.2);
    padding: 3vw;
    border-radius: 1.5vw;
    grid-template-columns: repeat(3, calc(31% - 1vw));
    grid-gap: 3vw;
  }
  .mybody .about_box .about::-webkit-scrollbar {
    width: 1.5vw;
    height: 0px;
  }
}
.mybody .glint {
  position: relative;
  overflow: hidden;
}
@keyframes glintkey {
  0% {
    transform: translateX(-200%) skewX(50deg);
  }
  100% {
    transform: translateX(420%) skewX(50deg);
  }
}
.mybody .large {
  grid-row-end: span 2;
  grid-column-end: span 2;
}
.mybody .glint:after {
  width: 100%;
  height: 100%;
  filter: blur(10px);
  background: linear-gradient(90deg, #ffffff00 0%, #ffffff50 25%, #fff 50%, #ffffff50 75%, #ffffff00);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  animation: glintkey 5.5s infinite;
}
