@import 'my_root.css';
html,
body {
  height: 100%;
  padding: 0px;
  margin: 0px;
  font-family: var(--my-font-family);
}
body {
  background-color: var(--my-body-bgcolor);
}
.big_box {
  height: 100%;
  margin: 0px;
  padding: 0px;
  display: flex;
}
.big_box .myhead {
  z-index: 1000;
  overflow: auto;
  background: var(--my-head-bgcolor);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.big_box .myhead .head_logo {
  cursor: pointer;
  width: 200px;
  min-width: 110px;
  margin: 0px 5px;
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.big_box .myhead .head_logo img {
  width: 100%;
  max-width: 200px;
}
.big_box .myhead .my_scroll {
  margin-top: 30px;
  height: 100%;
}
.big_box .myhead .my_scroll .menu_box {
  display: flex;
  flex-direction: column;
}
.big_box .myhead .my_scroll .menu_box .menu {
  cursor: pointer;
  min-width: 80px;
  padding: 3px 12px;
  background: var(--my-menu-bgcolor);
  display: flex;
  align-items: center;
  justify-content: center;
}
.big_box .myhead .my_scroll .menu_box .menu .menu_title {
  padding: 5px;
}
.big_box .myhead .my_scroll .menu_box .menu .menu_title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--my-menu-color);
}
.big_box .myhead .my_scroll .menu_box .menu_act {
  background: var(--my-menu-act-bgcolor);
  border-style: solid;
  border-color: var(--my-head-big-menu-border-color);
  border-width: var(--my-head-big-menu-border-width);
}
.big_box .myhead .my_scroll .menu_box .menu_act .menu_title span {
  color: var(--my-menu-act-color);
}
.big_box .myhead .my_scroll::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
.big_box .myhead .head_bottom {
  width: 100%;
  height: 26px;
  text-align: center;
  background: var(--my-bottom-bgcolor);
  border-top: var(--my-bottom-top-border);
}
.big_box .myhead .head_bottom span {
  font-size: 14px;
  margin: 3px;
  color: var(--my-bottom-color);
}
.big_box .myhead .head_bottom a {
  text-decoration: none;
}
.big_box .mybody {
  height: calc(100% - 4px);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.big_box .mybody .search_inp {
  min-width: 80px;
  margin: 8px 20px 6px;
  transition: width 0.5s;
  -webkit-transition: width 0.5s;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--my-head-search-inp-bgcolor);
  border: var(--my-head-search-inp-border);
  border-radius: 12px;
}
.big_box .mybody .search_inp .search_val {
  width: 100%;
  height: 40px;
  padding: 0px 15px;
  border: 0;
  outline: none;
  background: #ffffff00;
  color: var(--my-head-search-inp-color);
}
.big_box .mybody .search_inp .search_val::placeholder {
  color: var(--my-head-search-inp-plac-color);
}
.big_box .mybody .search_inp .inp_btn {
  cursor: pointer;
  border-width: 0px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff00;
}
.big_box .mybody .search_inp .inp_btn img {
  width: 28px;
  min-width: 28px;
  max-width: 28px;
}
.big_box .mybody .body_iframe {
  flex: 1 1 auto;
}
.big_box .mybody .body_iframe .my_iframe {
  width: 100%;
  height: 100%;
}
.big_box .mybody .body_iframe .myPalyIframe {
  background: var(--my-body-play-iframe-bgcolor);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.big_box .mybody .body_iframe .myPalyIframe .mybody_paly_iframe {
  width: 100%;
  height: 100%;
}
.big_box .mybody .body_iframe .myPalyIframe .goBack {
  cursor: pointer;
  position: absolute;
  top: 50px;
  left: 0px;
  background: var(--my-play-bgcolor);
  color: var(--my-play-color);
  padding: 3px 12px;
  opacity: 0.8;
  border-radius: 0px 8px 8px 0px;
}
@media screen and (max-width: 600px) {
  .big_box {
    display: block;
  }
  .big_box .myhead {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 30px);
    height: 70px;
    padding: 0px 15px;
    align-items: center;
    flex-direction: row;
    box-shadow: var(--my-head-shadow);
    border-bottom: var(--my-head-bottom-border);
  }
  .big_box .myhead .head_logo {
    width: 60%;
    max-width: 200px;
    margin-top: 0px;
  }
  .big_box .myhead .my_scroll {
    width: 100%;
    margin-top: 0px;
    display: flex;
    align-items: center;
  }
  .big_box .myhead .my_scroll .menu_box {
    margin: 0px 10px;
    height: 100%;
    align-items: center;
    flex-direction: row;
  }
  .big_box .myhead .my_scroll .menu_box .menu {
    margin: 0px 3px;
    height: 100%;
  }
  .big_box .myhead .head_bottom {
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 2;
    border-top: var(--my-bottom-top-big-border);
    background: var(--my-bottom-big-bgcolor);
    box-shadow: var(--my-bottom-shadow);
  }
  .big_box .mybody {
    padding-top: 70px;
    height: calc(100% - 95px);
  }
  .big_box .mybottom {
    display: block;
  }
}
