.mybody {
  background: #fff;
  padding: 15px 8px 20px;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(3, calc((100% - 16px * 2) / 3));
  grid-auto-flow: dense;
  justify-content: center;
}
@media screen and (max-width: 1025px) {
  .mybody {
    grid-template-columns: repeat(2, calc((100% - 16px) / 2));
  }
}
@media screen and (max-width: 768px) {
  .mybody {
    grid-template-columns: repeat(1, calc(100% - 8px));
    grid-gap: 8px;
    padding: 15px 3px 20px;
  }
}
@media screen and (max-width: 400px) {
  .mybody {
    grid-template-columns: repeat(1, calc(100% - 2vw));
    grid-gap: 2vw;
    padding: 4vw 1vw 5vw;
  }
}
.mybody .index_item {
  display: flex;
  flex-direction: column;
}
.mybody .index_item .item_title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-bottom: 1px solid #ccc;
}
.mybody .index_item .item_title span {
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #005c91;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.5s;
}
@media screen and (max-width: 400px) {
  .mybody .index_item .item_title {
    border-bottom-width: 0.25vw;
  }
  .mybody .index_item .item_title span {
    font-size: 6vw;
  }
}
.mybody .index_item .sta a {
  text-decoration: none;
}
.mybody .index_item .sta .stxt {
  text-decoration: underline;
  position: relative;
}
@keyframes st1 {
  0% {
    border-bottom-color: #ee690000;
    border-right-color: #ee690000;
  }
  25% {
    border-bottom-color: #ee6900a0;
    border-right-color: #ee6900a0;
  }
  50% {
    border-bottom-color: #ee6900;
    border-right-color: #ee6900;
  }
  100% {
    border-bottom-color: #ee6900;
    border-right-color: #ee6900;
  }
}
@keyframes st2 {
  0% {
    border-bottom-color: #ee690000;
    border-right-color: #ee690000;
  }
  25% {
    border-bottom-color: #ee690000;
    border-right-color: #ee690000;
  }
  50% {
    border-bottom-color: #ee6900a0;
    border-right-color: #ee6900a0;
  }
  75% {
    border-bottom-color: #ee6900;
    border-right-color: #ee6900;
  }
  100% {
    border-bottom-color: #ee6900;
    border-right-color: #ee6900;
  }
}
@keyframes st3 {
  0% {
    border-bottom-color: #ee690000;
    border-right-color: #ee690000;
  }
  25% {
    border-bottom-color: #ee690000;
    border-right-color: #ee690000;
  }
  50% {
    border-bottom-color: #ee690000;
    border-right-color: #ee690000;
  }
  75% {
    border-bottom-color: #ee6900a0;
    border-right-color: #ee6900a0;
  }
  100% {
    border-bottom-color: #ee6900;
    border-right-color: #ee6900;
  }
}
.mybody .index_item .sta a:hover .stxt {
  color: #ee6900;
}
.mybody .index_item .sta a:hover .stxt span {
  top: 18px;
  animation: st1 1.5s infinite;
}
.mybody .index_item .sta a:hover .stxt span,
.mybody .index_item .sta a:hover .stxt:after,
.mybody .index_item .sta a:hover .stxt:before {
  content: ' ';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ee690000;
  border-bottom: 2px solid #ee690000;
  position: absolute;
  transform-origin: top left;
  transform: rotate(-45deg);
  top: 18px;
}
.mybody .index_item .sta a:hover .stxt:after {
  right: -23px;
  animation: st2 1.5s infinite;
}
.mybody .index_item .sta a:hover .stxt:before {
  right: -33px;
  animation: st3 1.5s infinite;
}
@media screen and (max-width: 400px) {
  .mybody .index_item .sta a:hover .stxt span {
    top: 4.5vw;
  }
  .mybody .index_item .sta a:hover .stxt span,
  .mybody .index_item .sta a:hover .stxt:after,
  .mybody .index_item .sta a:hover .stxt:before {
    width: 2.5vw;
    height: 2.5vw;
    border-width: 0 0.5vw 0.5vw 0;
    top: 4.5vw;
  }
  .mybody .index_item .sta a:hover .stxt:after {
    right: -5vw;
  }
  .mybody .index_item .sta a:hover .stxt:before {
    right: -7vw;
  }
}
.mybody .index_item .item_grid {
  margin-top: 10px;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(3, calc((100% - 16px * 2) / 3));
  grid-auto-flow: dense;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .mybody .index_item .item_grid {
    grid-template-columns: repeat(3, calc((100% - 8px * 2) / 3));
    grid-gap: 8px;
  }
}
@media screen and (max-width: 400px) {
  .mybody .index_item .item_grid {
    margin-top: 2.5vw;
    grid-template-columns: repeat(2, calc((100% - 2vw) / 2));
    grid-gap: 2vw;
  }
}
.mybody .index_item2 {
  grid-column-end: span 2;
}
.mybody .index_item2 .item_grid {
  position: relative;
  grid-template-columns: repeat(6, calc((100% - 16px * 5) / 6));
}
.mybody .index_item2 .item_grid:after {
  content: '';
  width: 1px;
  height: 97%;
  position: absolute;
  top: 50%;
  right: -8px;
  background-color: #ccc;
  transform: translateY(-50%);
}
@media screen and (max-width: 1025px) {
  .mybody .index_item2 .item_grid:after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .mybody .index_item2 {
    grid-column-end: span 1;
  }
  .mybody .index_item2 .item_grid {
    grid-template-columns: repeat(3, calc((100% - 8px * 2) / 3));
    grid-gap: 8px;
  }
}
@media screen and (max-width: 400px) {
  .mybody .index_item2 .item_grid {
    grid-template-columns: repeat(2, calc((100% - 2vw) / 2));
    grid-gap: 2vw;
  }
}
.mybody .index_category {
  grid-column-end: span 3;
}
.mybody .index_category .category_title {
  border-radius: 6px;
  background: #e0e0e0;
  text-align: center;
  padding: 8px;
  margin: 12px 0;
  text-transform: uppercase;
  text-decoration: underline;
  color: #005c91;
  font-size: 24px;
  line-height: 2;
  transition: color 0.5s;
}
.mybody .index_category .category_title:hover {
  color: #ee6900;
}
.mybody .index_category .category_box {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(3, calc((100% - 16px * 2) / 3));
  grid-auto-flow: dense;
  justify-content: center;
}
@media screen and (max-width: 1025px) {
  .mybody .index_category {
    grid-column-end: span 2;
  }
  .mybody .index_category .category_box {
    grid-template-columns: repeat(2, calc((100% - 16px) / 2));
  }
}
@media screen and (max-width: 768px) {
  .mybody .index_category {
    grid-column-end: span 1;
  }
  .mybody .index_category .category_box {
    grid-template-columns: repeat(1, calc(100% - 8px));
    grid-gap: 8px;
  }
}
@media screen and (max-width: 400px) {
  .mybody .index_category .category_title {
    border-radius: 1.5vw;
    padding: 2vw;
    margin: 3vw 0;
    font-size: 6vw;
  }
  .mybody .index_category .category_box {
    grid-template-columns: repeat(1, calc(100% - 2vw));
    grid-gap: 2vw;
  }
}
.mybody .index_main {
  grid-row-start: 1;
  grid-column-start: 2;
}
.mybody .index_main .item_grid {
  position: relative;
}
.mybody .index_main .item_grid .main_box {
  flex-shrink: 0;
  width: calc(100% - 6px);
  height: calc(((100% - 16px) * 2) + 40px);
  border: 3px solid #fff;
  position: absolute;
  border-radius: 5px;
  box-shadow: 0 1px 6px 0 rgba(50, 50, 50, 0.45);
  overflow: hidden;
}
.mybody .index_main .item_grid .main_box .mb {
  width: 400%;
  height: 100%;
  display: flex;
  position: relative;
  left: 0%;
  transition: all 0.3s;
}
.mybody .index_main .item_grid .main_box .mb .main_item {
  width: 25%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mybody .index_main .item_grid .main_box .mb .main_item img {
  width: 100%;
  height: 100%;
}
.mybody .index_main .item_grid .main_box .mb .main_item .mtitle {
  position: absolute;
  bottom: 0;
  width: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 0;
}
.mybody .index_main .item_grid .main_box .mb .main_item .mtitle .txt {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 60%;
  color: #fff;
  font-size: 18px;
  padding: 10px;
}
.mybody .index_main .item_grid .main_box .mb .main_item .mtitle .txt span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.mybody .index_main .item_grid .main_box .mb .main_item .mtitle .playNow {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-right: 12px;
  padding: 8px 10px;
  text-decoration: none;
  background: #ee6900;
  border-radius: 5px;
  transition: all 0.3s;
}
.mybody .index_main .item_grid .main_box .mb .main_item .mtitle .playNow:hover {
  background: #d65f00;
}
.mybody .index_main .item_grid .main_box .mb_left,
.mybody .index_main .item_grid .main_box .mb_rigth {
  position: absolute;
  top: 50%;
  opacity: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 30px 10px;
  transition: all 0.3s;
}
.mybody .index_main .item_grid .main_box .mb_left img,
.mybody .index_main .item_grid .main_box .mb_rigth img {
  width: 60px;
}
.mybody .index_main .item_grid .main_box .mb_left {
  left: 0;
}
.mybody .index_main .item_grid .main_box .mb_rigth {
  right: 0;
}
.mybody .index_main .item_grid .main_box .mb_rigth img {
  transform: rotate(180deg);
}
@media screen and (max-width: 400px) {
  .mybody .index_main .item_grid .main_box {
    border-width: 0.625vw;
    border-radius: 1.25vw;
    box-shadow: 0 0.25vw 1.5vw 0 rgba(50, 50, 50, 0.45);
  }
  .mybody .index_main .item_grid .main_box .mb .main_item .mtitle {
    padding: 1.25vw 0;
  }
  .mybody .index_main .item_grid .main_box .mb .main_item .mtitle .txt {
    font-size: 4.5vw;
    padding: 2.5vw;
  }
  .mybody .index_main .item_grid .main_box .mb .main_item .mtitle .playNow {
    font-size: 4vw;
    margin-right: 3vw;
    padding: 2vw 2.5vw;
    border-radius: 1.25vw;
  }
  .mybody .index_main .item_grid .main_box .mb_left,
  .mybody .index_main .item_grid .main_box .mb_rigth {
    padding: 7.5vw 2.5vw;
  }
  .mybody .index_main .item_grid .main_box .mb_left img,
  .mybody .index_main .item_grid .main_box .mb_rigth img {
    width: 15vw;
  }
}
.mybody .index_main .item_grid .main_box:hover .mb_left,
.mybody .index_main .item_grid .main_box:hover .mb_rigth {
  opacity: 0.8;
}
.mybody .index_main .item_grid .grid_item {
  transform: translate(0, calc((100% * 2) + 32px));
}
.mybody .index_main .item_grid .grid4 {
  display: none;
}
@media screen and (max-width: 768px) {
  .mybody .index_main {
    grid-column-start: 1;
  }
  .mybody .index_main .item_grid {
    position: relative;
  }
  .mybody .index_main .item_grid .main_box {
    height: auto;
    grid-column-end: span 3;
    position: relative;
  }
  .mybody .index_main .item_grid .main_box .mb {
    height: auto;
  }
  .mybody .index_main .item_grid .grid_item {
    display: none;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 1025px) and (min-width: 768px) {
  .mybody .hot {
    grid-column-end: span 2;
  }
  .mybody .hot .item_grid {
    grid-template-columns: repeat(6, calc((100% - 16px * 5) / 6));
  }
  .mybody .hot .item_grid :nth-child(n + 7) {
    display: none;
  }
  .mybody .new {
    grid-column-end: span 2;
  }
  .mybody .new .item_grid {
    grid-template-columns: repeat(6, calc((100% - 16px * 5) / 6));
  }
}
@media screen and (max-width: 768px) {
  .mybody .one .item_grid :nth-child(n + 7) {
    display: none;
  }
  .mybody .hot .item_grid :nth-child(n + 10) {
    display: none;
  }
}
.myAbout {
  background: #0065a0;
  padding: 20px;
  color: #fff;
}
.myAbout .about_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  padding: 20px 0;
}
.myAbout .about_detail {
  font-size: 14px;
  line-height: 28px;
}
@media screen and (max-width: 400px) {
  .myAbout {
    padding: 5vw;
  }
  .myAbout .about_title {
    font-size: 5vw;
    padding: 5vw 0;
  }
  .myAbout .about_detail {
    font-size: 3.5vw;
    line-height: 7vw;
  }
}
