@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);
}
.myhead {
  z-index: 1000;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--my-head-bgcolor);
  box-shadow: var(--my-head-shadow);
  border-bottom: var(--my-head-bottom-border);
  width: calc(100% - 30px);
  height: 70px;
  padding: 0px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.myhead .head_menu {
  cursor: pointer;
  display: none;
  width: 40px;
  height: 45px;
  min-width: 40px;
}
.myhead .head_menu img {
  width: 100%;
}
.myhead .head_logo {
  cursor: pointer;
  width: 200px;
  min-width: 110px;
  margin: 0px 5px;
  display: flex;
  align-items: center;
}
.myhead .head_logo img {
  width: 100%;
  max-width: 200px;
}
.myhead .my_scroll {
  height: 100%;
  display: flex;
  align-items: center;
}
.myhead .my_scroll .menu_box {
  margin: 0px 10px;
  display: flex;
  align-items: center;
  height: 100%;
}
.myhead .my_scroll .menu_box .menu {
  height: 100%;
  margin: 0px 3px;
  padding: 0px 12px;
}
.myhead .my_scroll .menu_box .menu_act {
  border-style: solid;
  border-color: var(--my-head-big-menu-border-color);
  border-width: var(--my-head-big-menu-border-width);
}
.myhead .my_scroll::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
.myhead .search_inp {
  width: 80%;
  max-width: 380px;
  min-width: 80px;
  margin: 6px 8px;
  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;
}
.myhead .search_inp .search_val {
  width: 100%;
  height: 40px;
  padding: 0px 15px;
  border: 0;
  outline: none;
  background: #ffffff00;
  color: var(--my-head-search-inp-color);
}
.myhead .search_inp .search_val::placeholder {
  color: var(--my-head-search-inp-plac-color);
}
.myhead .search_inp .inp_btn {
  cursor: pointer;
  border-width: 0px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff00;
}
.myhead .search_inp .inp_btn img {
  width: 28px;
  min-width: 28px;
  max-width: 28px;
}
.myhead .head_show_search {
  display: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  height: 38px;
  border-radius: 50%;
  width: 38px;
  min-width: 38px;
  padding: 3px;
  background: var(--my-head-search-show-btn-bgcolor);
  border: var(--my-head-search-show-btn-border);
}
.myhead .head_show_search img {
  width: 100%;
}
.menu {
  cursor: pointer;
  min-width: 80px;
  padding: 3px 4px;
  background: var(--my-menu-bgcolor);
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu .menu_title {
  padding: 5px;
}
.menu .menu_title span {
  font-size: 18px;
  font-weight: 700;
  color: var(--my-menu-color);
}
.menu_act {
  background: var(--my-menu-act-bgcolor);
}
.menu_act .menu_title span {
  color: var(--my-menu-act-color);
}
.drawer_box {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: var(--my-drawer-box-bgcolor);
  transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
}
.drawer_box .drawer_menu_box {
  position: relative;
  top: -600px;
  margin-top: 70px;
  max-height: 380px;
  min-height: 50px;
  height: calc(100% - 170px);
  transition: top 0.7s;
  -webkit-transition: top 0.7s;
  background: var(--my-drawer-menu-box-bgcolor);
  padding: 15px 0px;
  overflow-y: auto;
}
.drawer_box .drawer_menu_box::-webkit-scrollbar {
  display: none;
}
.mybody {
  padding-top: 70px;
  height: calc(100% - 95px);
  display: flex;
  flex-direction: column;
}
.mybody .body_iframe {
  flex: 1 1 auto;
}
.mybody .body_iframe .my_iframe {
  width: 100%;
  height: 100%;
}
.mybody .body_iframe .myPalyIframe {
  background: var(--my-body-play-iframe-bgcolor);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.mybody .body_iframe .myPalyIframe .mybody_paly_iframe {
  width: 100%;
  height: 100%;
}
.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;
}
.mybottom {
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  width: 100%;
  height: 26px;
  text-align: center;
  box-shadow: var(--my-bottom-shadow);
  background: var(--my-bottom-bgcolor);
  border-top: var(--my-bottom-top-border);
}
.mybottom span {
  font-size: 14px;
  margin: 3px;
  color: var(--my-bottom-color);
}
.mybottom a {
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  .myhead .head_menu {
    display: flex;
  }
  .myhead .my_scroll {
    display: none;
  }
  .myhead .search_inp {
    width: 0px;
    display: none;
  }
  .myhead .head_show_search {
    display: flex;
  }
}
@media screen and (min-width: 600px) and (max-width: 750px) {
  .myhead .my_scroll {
    width: 60%;
  }
}
