:root {
  --main-bg-color: #e7f5f9;
  --hover-color: #b0c0c0;
  --main-color: #a6dce7;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  /* overflow: hidden; */
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}


.none{
  display: none;
}
/* 头部部分----------------------- */
header {
  position: sticky;
  top: 0px;
  background-color: var(--main-bg-color);
  width: 100%;
  z-index: 1000;
  height: 65px;
  display: flex;
  align-items: center;
}

.container {
  display: flex;
  flex: 1;
}

/* 头部右侧logo---------------------------- */
#logo {
  flex: 2;
}

#logo a {
  display: flex;
  align-items: center;
  height: 65px;
  line-height: 65px;
  text-align: center;
}

#logo img {
  display: inline-block;
  width: 90%;
  padding: 5px;
}

/* 头部中间导航菜单------------------------------ */
#navbar {
  flex: 8;
  /* background: green; */
}

#navbar > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

#navbar > ul > li {
  position: relative;
  /* background: red; */
}

#navbar > ul > li > a {
  line-height: 65px;
  color: #000;
  padding: 0 6px;
  letter-spacing: 1px;
  transition: 0.5s;
}

#navbar > ul > li:hover {
  background: var(--hover-color);
  /* border-radius:10px 10px 0 0; */
}

#navbar > ul > li:hover > a {
  /* transform: scale(1.1); */
  /* color: #fff; */
  font-weight: 300;
  /* font-size: 17px; */
}
#navbar > ul > li > ul {
  display: none;
}

#navbar > ul > li:hover > ul {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 130px;
  background: var(--main-bg-color);

  /* transform: translateY(10px); */
  /* opacity: 0;
    pointer-events: none; */
  transition: 0.5s;
}

#navbar > ul > li:hover > ul > li {
  border-bottom: 1px solid #fff;
  padding: 12px 10px;
}
#navbar > ul > li:hover > ul > li > a {
  color: #000;
  /* padding: 6px,15px; */
}

#navbar > ul > li:hover > ul > li:hover {
  background: var(--hover-color);

  border-bottom: 2px solid blue;
  transition: 0.5s;
}

/* 头部右侧搜索--------------- */

#search {
  flex: 2;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
}

#search > .search-container {
  /* width:100px; */
  height: 2.5rem;
  /* background: slateblue; */
  padding-right: 5px;
}
#search > .search-container > img {
  width: 70%;
  margin-top: 5px;
}

#search form {
  position: relative;
  width: 190px;
  margin: 0 auto;
  padding-top: 5px;
  display: flex;
}
#search input,
button {
  border: none;
  outline: none;
}
#search input {
  width: 100%;
  height: 32px;
  padding-left: 13px;
  border: 2px solid var(--hover-color);
  border-radius: 5px 0 0 5px;
  background: var(--main-bg-color);
  color: #9e9c9c;
}
#search button {
  height: 32px;
  width: 50px;
  cursor: pointer;
  /* position: absolute; */
  top: 0;
  right: 0;
  background: var(--hover-color);
  border-radius: 0 5px 5px 0;
}

/* 汉堡菜单按钮-------------------- */

#search .hamburger-menu-container {
  display: none;
}
#search .hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  /* background: chartreuse; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* display: none; */
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: #000;
  position: relative;
  z-index: 1001;
  transition: 0.5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #000;
  border-radius: 3px;
  transition: 0.5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  top: 50%;
  right: 1px;
  transform: translateY(-50%);
  /* width: 2.5rem;
    height: 2.5rem; */
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  /* display: none; */
}

#check:checked ~ #search .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked ~ #search .hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ #search .hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}


/* 末学推荐 -------------------------------------*/

.amtf-box-width {
  max-width: 2392px;
  /* width: calc(100% - 160px); */
  margin: 0 20px;
}

.amtf-box-head {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.amtf-head-h {
  font-weight: 700;
  font-size: 28px;
  font-style: normal;
  line-height: 40px;
  /* padding: 5px 20px; */
  /* background: greenyellow; */
}

.box-more {
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  text-transform: uppercase;
  position: relative;
  display: block;
  text-align: center;
  cursor: pointer;

  font-weight: 700;
  border-radius: 6px;
  color: #fff;
  background: var(--main-color);
}

.box-more:hover {
  opacity: 0.8;
  color: #f5f5f1 !important;
}

.amtf-box-7,
.amtf-box-8,
.amtf-box-5,
.amtf-box-zf-8,
.amtf-box-lb-6 {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-right: -26px;
}

.amtf-box-list {
  margin-bottom: 18px;
  margin-top: 18px;
  padding-right: 18px;

  display: flex;
  flex-direction: column;
}

.amtf-box-7 .amtf-box-list {
  /* flex: 0 0 14.277777777%; */
  width: 14.277777777%;
}
.amtf-box-8 .amtf-box-list {
  width: 12.49999%;
}
.amtf-box-zf-8 .amtf-box-list {
  width: 12.49999%;
}
.amtf-box-5 .amtf-box-list {
  width: 19.9888888%;
}

.amtf-list-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.amtf-box-7 .amtf-list-img {
  padding-bottom: 62%;
}
.amtf-box-8 .amtf-list-img {
  padding-top: 135.74%;
}
.amtf-box-zf-8 .amtf-list-img {
  padding-top: 100%;
}
.amtf-box-5 .amtf-list-img {
  padding-bottom: 62%;
}
.amtf-lb-title .amtf-list-img {
  padding-top: 75%;
}

.amtf-list-exp {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;

  background: #fff;
}
.amtf-lb-title .amtf-list-exp {
  border-radius: 0;
}

.lazyload-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;

  display: block;

  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.amtf-jishu {
  position: absolute;

  right: 5px;
  bottom: 5px;
  color: #fff;
}

.amtf-list-btn {
  display: flex;
  flex-direction: column;
}

.amtf-list-title {
  margin-top: 5px;
  margin-left: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  /* color: #000; */
}
.amtf-list-title:hover {
  color: #26b2ff;
  /* font-weight: 700; */
}

.amtf-list-btn a:nth-child(2) {
  font-weight: 600;
  margin: 5px auto;
  color: #000;
}
.amtf-list-btn a:nth-child(2):hover {
  color: #26b2ff;
  /* font-weight: 700; */
}

@font-face {
  font-family: "iconfont";
  src: url("./assets/fonts/font_4029079_pgf078ctg5o.woff2") format("woff2"),
    url("./assets/fonts/font_4029079_pgf078ctg5o.woff") format("woff"),
    url("./assets/fonts/font_4029079_pgf078ctg5o.ttf") format("truetype");
}
.fa {
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.amtf-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0;
}

.amtf-play i {
  text-transform: uppercase;
  position: relative;
  font-weight: 400;
  background: var(--main-color);
  color: hsla(0, 0%, 100%, 0.87);
  font-size: 16px;
  vertical-align: middle;
  border: none;
  overflow: hidden;
  padding: 0;
  width: 60px;
  height: 60px;
  opacity: 0;
  display: inline-block;
  line-height: 60px;
  text-align: center;
  -webkit-border-radius: 900px;
  -moz-border-radius: 900px;
  border-radius: 900px;
}

.amtf-box-list:hover .amtf-play,
.amtf-box-list:hover .amtf-play i {
  opacity: 1;
}
.lazyload-img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.amtf-box-list:hover .lazyload-img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  overflow: hidden;
}

/* 专题 5个 横向略图----------- */
.amtf-zhuanti-bottom {
  padding: 15px 15px;
  opacity: 1;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
}
.amtf-zhuanti-bottom h1 {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.amtf-zhuanti-bottom p {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: #dfdfdf;
}

.amtf-box-link {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-top: 20px;
  margin-right: -26px;
}

.amtf-box-link a {
  margin-right: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #000;
}

.amtf-box-link a:hover {
  color: var(--main-color);
  /* font-weight: 700; */
}

/* 底部 ------------*/

.amtf-footer {
  margin-top: 40px;
  width: 100%;
  text-align: center;
  position: relative;
  padding: 58px 20px;
}
.amtf-footer-title {
  font-size: 26px;
  line-height: 26px;
  text-align: center;
  font-weight: 700;
}
.amtf-footer-title p:nth-child(1) {
  margin-bottom: 10px;
}

.amtf-footer-desc {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  height: 14px;
  line-height: 24px;
  margin-top: 16px;
}

.top-back{position:fixed;bottom:75px;right:12px;z-index:999}
.top-back a{font-size:18px;width:42px;height:42px;text-align:center;line-height:42px;display:block;margin-top:10px}

/* 面包屑导航 -----------------*/
.amtf-box-width .amtf-gray {
  margin: 20px 0;
  /* padding: 55px; */
}
.amtf-gray a {
  color: #000;
  font-size: 16px;
}
.amtf-gray a:hover {
  font-weight: 400;
  color: var(--main-color);
}
.amtf-gray i {
  text-transform: uppercase;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  vertical-align: middle;
  border: none;
  overflow: hidden;
  padding: 0;
  display: inline-block;
  text-align: center;
}
.amtf-gray a:last-child i {
  display: none;
}

/* 列表页 ------------------------------*/

.amtf-box-lby {
  max-width: 2392px;
  margin: 0 20px;
  display: flex;
  flex-wrap: wrap;
}
.amtf-lb-left {
  width: 20%;
  display: flex;
  flex-direction: column;

  padding-right: 15px;
}
.amtf-lb-right {
  width: 80%;
  padding-left: 10px;
}
.amtf-lb-left .amtf-lb-title {
  position: relative;
  display: block;
  /* width: 100%; */
  /* height: 100px; */
  /* margin-right: 20px; */
  margin: 15px 0;
  background: #fff;
}
.amtf-lb-left .amtf-lb-nav {
  position: relative;
  display: block;
}
.amtf-item {
  display: flex;
}
.amtf-item-sg {
  width: 15px;
  height: 40px;
  margin-right: 10px;
  background-color: #a6dce7;
}
.amtf-item-nr {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 40px;
  /* color: #6d6e71; */
}

/* 列表页侧导航 ==========================*/
.amtf-lb-navbar {
  margin: 15px 0;
  font-size: 14px;
  color: #000;
}
.amtf-tree li {
  margin: 0;
}

.amtf-tree i {
  text-transform: uppercase;
  position: relative;
  font-weight: 400;

  font-size: 11px;
  vertical-align: middle;
  border: none;
  overflow: hidden;
  padding: 0;
  width: 24px;
  height: 24px;
  opacity: 0;
  display: inline-block;
  line-height: 24px;
  text-align: center;
  transition: 0.5s;
}

.amtf-tree > ul > li {
  cursor: pointer;
}
.amtf-tree > ul > li > span {
  display: flex;
  justify-content: space-between;
}

.amtf-tree > ul > li > ul {
  background: #fff;
  transition: 0.5s;
  display: none;
}
.amtf-tree > ul > li > ul > li {
  padding-left: 15px;
  height: 24px;
  line-height: 24px;
}

.amtf-tree li:hover {
  background: var(--hover-color);
}

.amtf-tree .on {
  transform: rotate(-180deg);
}

/* 列表页侧导航 ==========================*/

.amtf-lb-right .amtf-box-head {
  margin-top: 20px;
  display: flex;
}

.amtf-box-lb-6 .amtf-box-list {
  width: 16.666666666%;
}
.amtf-box-lb-6 .amtf-list-img {
  padding-bottom: 62%;
}

/* 分页 ===============*/

.amtf-pages {
  width: 100%;
  display: flex;
  justify-self: center;
}

.amtf-pages .amtf-page-info {
  margin: 15px auto;
}
.amtf-page-info > span {
  padding-right: 8px;
}
.amtf-page-info a {
  color: #000;
  padding-left: 5px;
}
.amtf-page-info a:hover {
  color: #26b2ff;
}

/* 播放页 ===============================*/

.amtf-player-bj {
  background: #000;
  width: 100%;
  /* padding-bottom: 42.37%; */
  padding-bottom: 43%;
  overflow: hidden;
  position: relative;
}
.amtf-player-bj .amtf-this-bj {
  /* -webkit-filter: blur(10px);
  filter: blur(10px); */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}


.amtf-player-bj .amtf-this-bj img {
  -webkit-filter: blur(10px);
  filter: blur(10px);
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.amtf-player-bj .amtf-this-bj .amtf-this-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(left, #0a0c0f 0, rgba(10, 12, 15, 0.1) 100%);
  background: -webkit-linear-gradient(
    left,
    #0a0c0f 0,
    rgba(10, 12, 15, 0.1) 100%
  );
  background: linear-gradient(to right, #0a0c0f 0, rgba(10, 12, 15, 0.1) 100%);
}

.amtf-player-style {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.amtf-player-style .amtf-player-top {
  width: 70%;
  padding-bottom:39%;
  position: relative;
  margin: 20px auto;
  height: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
}

/* #dplayer2{

  height: 100%;
  width: 100%;
  object-fit: cover;
} */


.amtf-player-info {
  margin: 0 auto;
  width: 70%;
}
.amtf-dianbo{
  margin-top: 20px;
  
}
.amtf-player-list-box{
  margin-top: 20px;

}
.amtf-player-info ul{
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 282px;
  margin-right: -8px;
  /* background: #666; */

}
.amtf-player-info li{
  position: relative;
  display: inline-block;
  /* width: calc(10% - 8px); */
  min-width: 75px;
  height: 50px;
  line-height: 50px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  margin: 0 8px 8px 0;
   background:var(--main-bg-color); 
  padding: 0 8px;
}

.amtf-player-info li:hover{
  color: #e50916;
  font-weight: 700;
}
.amtf-player-info li.on {
  color: #e50916;
  font-weight: 700;
}

.play-on {
  display: block;
  height: 8px;
  position: absolute;
  left: calc(50% - 11px);
  bottom: 0;
}
.play-on i {
  width: 4px;
  height: 6px;
  border-radius: 4px 4px 0 0;
  background-color: #e50916;
  position: absolute;
  bottom: 0;
  left: 0;
}
.play-on i:nth-last-child(1) {
  animation: playon 0.8s 0.3s infinite;
}
.play-on i:nth-last-child(2) {
  animation: playon 0.8s 0.1s infinite;
  left: 6px;
}
.play-on i:nth-last-child(3) {
  animation: playon 0.6s 0.2s infinite;
  left: 12px;
}
.play-on i:nth-last-child(4) {
  animation: playon 1s 0.3s infinite;
  left: 18px;
}
@keyframes playon {
  0% {
    height: 70%;
  }
  50% {
    height: 100%;
  }
  100% {
    height: 35%;
  }
}

.amtf-player-info-text{
  margin-top: 20px;
}
.amtf-player-content{
  margin-top: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 360px;
  margin-right: -8px;
  /* background: #666; */

}


.all-fields{
  display:none;
}


/* 播经机详情页 =============================== */


.amtf-canpin-info {
  margin: 0 auto;
  width: 750px;
}
#amtf-bjj{
  margin-top: 10px;

  display: flex;
  flex-wrap: wrap;
}

.amtf-canpin {
  width: 50%;
  display: flex;
 
  flex-direction: column;

  padding-right: 15px;
}
.amtf-jianjie {
  width: 50%;
  padding-left: 10px;
}

#bigImg{
  width: 100%;
}

.amtf-canpin ul{
  list-style: none;
  /*overflow: hidden;*/
}
.amtf-canpin li{
  float: left;
  width: 18%;
  
  margin-right: 2%;
  margin-top: 12px;
  border: 2px solid #ffffff;
}
.amtf-canpin  ul .active{
  border-color: rgb(196, 106, 106);
}

.amtf-bjj-img {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 100%;
}

.amtf-bjj-img a{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;

}


.amtf-bjj-img img{
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;

  display: block;
}

.amtf-jianjie li{
  list-style: none;
  /*overflow: hidden;*/
}
.amtf-jianjie hr{
  margin-top: 5px;
  margin-bottom: 5px;
}
.amtf-jianjie p{  
  margin-bottom: 5px;
}

.amtf-product_title {
  font-size: 16px;
  font-weight: bold;
  color: rgb(40, 40, 40);
} 

.amtf-fengexian1 {
  font-weight: normal;
  width: 80px;
  background-color: #dddddd;
  display: block;
  height: 3px;
  margin: 15px 0;

}
.amtf-amount{
  font-size: 20px;
    font-weight: normal;
    color: #191919;
    
    line-height: 32px;
}
.amtf-descr{
  font-size: 14px;
  font-weight: normal;
  color: rgb(119, 119, 119);
}
.amtf-jj2{
  margin-top: 15px;
  border-top: 1px dotted #ddd;
  display: block;
  padding: 7px 0;
}
.amtf-bjj-button{
  width: 126px;
  line-height:44px;
  height:44px;
  /* color:aqua; */
  border-radius: 8px;
  background-color:#86c8ca!important;
}
.amtf-bjj-button a{
  color:white;
}
.amtf-bjj-weixin{
  margin-top: 25px;
  border-bottom:3px  solid #ddd ;
}
.amtf-bjj-xq{
  margin-top: 50px;
  width: 100%;
  border-top: 1px solid #eee;
  
}
.amtf-bjj-ms{
  margin-bottom: 15px;
  width: 66px;
  line-height:44px;
  height:44px;
  
  border-top: 4px solid #070606;
  display: block;
  
}

.amtf-bjj-nr{
  font-size: 16px;
  font-weight: normal;
  color: rgb(119, 119, 119);
  border-bottom:  1px solid #eee;
  padding-bottom: 12px;
}
/* 手机端显示设置-=================================----------- */

@media (max-width: 375px) {
  #check:checked ~ #navbar {
    transform: translateX(0);
  }
  #logo {
    display: none;
  }
}
@media (max-width: 559px) {
  .amtf-lb-left {
    width: 100%;
    padding-right: 0;
  }
  .amtf-lb-right {
    width: 100%;
    padding-left: 6px;
  }
  .amtf-lb-title .amtf-list-img {
    padding-top: 35%;
  }

  .amtf-box-7 .amtf-box-list,
  .amtf-box-lb-6 .amtf-box-list {
    width: 49.9999999%;
  }
  .amtf-box-7 .amtf-box-list:nth-child(n + 7) {
    display: none;
  }

  .amtf-box-8 .amtf-box-list {
    width: 33.33333333%;
  }
  .amtf-box-zf-8 .amtf-box-list {
    width: 33.33333333%;
  }

  .amtf-box-5 .amtf-box-list:nth-child(n + 3) {
    display: none;
  }

  .amtf-head-h {
    font-size: 18px;
    line-height: 26px;
  }

  .box-more {
    height: 26px;
    line-height: 26px;
    padding: 0 8px;
    font-size: 12px;
  }

  
}

/* 列表页---------- */
@media (max-width: 1200px) {

  /* 新版样式---------------------- */

 
}

@media (min-width: 560px) and (max-width: 992px) {
  .amtf-lb-left {
    width: 100%;
    margin: 15px auto;

    padding-right: 0;
  }
  .amtf-lb-right {
    width: 100%;

    padding-left: 0;
  }
  .amtf-lb-title .amtf-list-img {
    padding-top: 35%;
  }

  .amtf-box-7 .amtf-box-list,
  .amtf-box-lb-6 .amtf-box-list {
    width: 33.3333333%;
  }
  .amtf-box-7 .amtf-box-list:nth-child(n + 7) {
    display: none;
  }

  .amtf-box-8 .amtf-box-list {
    width: 24.99999999%;
  }
  .amtf-box-zf-8 .amtf-box-list {
    width: 24.99999999%;
  }
  .amtf-box-5 .amtf-box-list {
    width: 33.3333333%;
  }
  .amtf-box-5 .amtf-box-list:nth-child(n + 3) {
    display: none;
  }
  .amtf-tree {
    width: 200px;
  }

  /* 新版样式---------------------- */
  
}

@media (max-width: 767px) {
  a {
    font-size: 14px !important;
  }
  #logo {
    flex: 1;
  }
  #search {
    flex: 2;
  }

  #search .hamburger-menu-container {
    display: flex;
  }
  #navbar {
    position: fixed;
    height: calc(100vh-65px);
    top: 65px;
    left: 0;
    width: 60%;
    background: var(--main-bg-color);
    transform: translateX(200%);
    transition: 0.7s;
  }

  #check:checked ~ #navbar {
    transform: translateX(90%);
  }

  #navbar > ul {
    position: fixed;
    left: 0;
    width: 100%;
    background: var(--main-bg-color);

    /* margin-left: 20px; */
    flex-direction: column;
    justify-self: start;
    align-items: flex-start;
  }

  #navbar ul,
  #navbar li {
    width: 100%;
  }

  #navbar > ul > li:hover > ul {
    position: relative;
    width: 100%;
    left: 0;
    /* padding-left: 40px; */
  }
  #navbar > ul > li > a {
    text-indent: 2em;
    padding-left: 20px;
  }
  #navbar > ul > li > ul > li > a {
    padding-left: 40px;
  }
  #navbar > ul > li:hover > ul > li:hover {
    border-bottom: 0px;
  }

  .amtf-box-width {
    margin: 0 8px;
  }

  .amtf-box-7,
  .amtf-box-8,
  .amtf-box-5,
  .amtf-box-zf-8,
  .amtf-box-lb-6 {
    margin-right: -6px !important;
  }
  .amtf-box-list {
    margin-bottom: 0px !important;
    padding-right: 6px !important;
  }

  .amtf-head-h {
    font-size: 22px;
    line-height: 30px;
  }

  .box-more {
    height: 30px;
    line-height: 30px;
    padding: 0 16px;
  }

  .amtf-box-5 .amtf-box-list {
    width: 100%;
  }

  .amtf-box-link a {
    font-size: 14px;
  }
  .amtf-footer-title {
    font-size: 18px;
    line-height: 18px;
  }
  .amtf-box-lby {
    margin: 0 8px;
  }
  .amtf-page-info > span {
    font-size: 14px;
    padding-right: 5px;
  }


  
  /* 播放页==================== */
  .amtf-player-bj {
    padding-bottom: 0;
  }
  .amtf-player-style{
    position: relative;
    padding: 0;
  }
  .amtf-player-style .amtf-player-top {
    width: 100%;
    padding-bottom: 56.25%;
    margin: 0 auto;
  }

 
  .amtf-player-info {
    width:100%;
  }

  .top-back a{font-size:18px;width:34px;height:34px;line-height:34px;margin-top:4px;border-radius:50%}


/* 播经机详情页======================= */
  .amtf-canpin-info {
    margin: 0 auto;
    width: 100%;
  }
  #amtf-bjj{
    margin-top: 10px;

    display: flex;
    flex-wrap: wrap;
  }

  .amtf-canpin {
    width: 100%;
    display: flex;
  
    flex-direction: column;

    /* padding-right: 15px; */
  }
  .amtf-jianjie {
    margin-top: 20px;
    width: 100%;
    /* padding-left: 10px; */
  }


}

@media (min-width: 768px) and (max-width: 992px) {
  .amtf-box-5 .amtf-box-list {
    width: 49.9999999%;
  }

  /* 播放页 =================*/
  .amtf-player-bj {
    /* padding-bottom: 0; */
    /* height: 596px; */
    width: 100%;
    padding-bottom: 55%;
  }

  .amtf-player-style .amtf-player-top,
  .amtf-player-info {
    width:90%;
  }

  .amtf-player-style .amtf-player-top {
    /* padding-bottom: 0; */
    width: 90%;
    padding-bottom: 50%;
    margin: 20px auto;
  }
  
}

@media (min-width: 993px) and (max-width: 1200px) {
  .amtf-box-7 .amtf-box-list {
    width: 24.99999999%;
  }
  .amtf-box-7 .amtf-box-list:nth-child(n + 5) {
    display: none;
  }
  .amtf-box-8 .amtf-box-list {
    width: 19.99999999%;
  }
  .amtf-box-8 .amtf-box-list:nth-child(n + 6) {
    display: none;
  }
  .amtf-box-zf-8 .amtf-box-list {
    width: 19.99999999%;
  }
  .amtf-box-zf-8 .amtf-box-list:nth-child(n + 6) {
    display: none;
  }
  .amtf-box-5 .amtf-box-list {
    width: 33.33333333%;
  }
  .amtf-box-5 .amtf-box-list:nth-child(n + 4) {
    display: none;
  }

  .amtf-box-lb-6 .amtf-box-list {
    width: 33.3333333%;
  }
  /* 播放页 =====================*/



  
}

@media (min-width: 1201px) and (max-width: 1329px) {
  .amtf-box-7 .amtf-box-list {
    width: 19.99999999%;
  }
  .amtf-box-7 .amtf-box-list:nth-child(n + 6) {
    display: none;
  }
  .amtf-box-8 .amtf-box-list {
    width: 16.6666666%;
  }
  .amtf-box-8 .amtf-box-list:nth-child(n + 7) {
    display: none;
  }
  .amtf-box-zf-8 .amtf-box-list {
    width: 16.6666666%;
  }
  .amtf-box-zf-8 .amtf-box-list:nth-child(n + 7) {
    display: none;
  }
  .amtf-box-5 .amtf-box-list {
    width: 24.9999999%;
  }
  .amtf-box-5 .amtf-box-list:nth-child(n + 5) {
    display: none;
  }

  .amtf-box-lb-6 .amtf-box-list {
    width: 24.99999999%;
  }

  /* 新版样式---------- */
  
}
@media (min-width: 1330px) and (max-width: 1691px) {
  .amtf-box-7 .amtf-box-list {
    width: 19.99999999%;
  }
  .amtf-box-7 .amtf-box-list:nth-child(n + 6) {
    display: none;
  }
  .amtf-box-8 .amtf-box-list {
    width: 16.6666666%;
  }
  .amtf-box-8 .amtf-box-list:nth-child(n + 7) {
    display: none;
  }
  .amtf-box-zf-8 .amtf-box-list {
    width: 16.6666666%;
  }
  .amtf-box-zf-8 .amtf-box-list:nth-child(n + 7) {
    display: none;
  }
  .amtf-box-5 .amtf-box-list {
    width: 24.9999999%;
  }
  .amtf-box-5 .amtf-box-list:nth-child(n + 5) {
    display: none;
  }
  .amtf-box-lb-6 .amtf-box-list {
    width: 24.99999999%;
  }

  /* 新版样式--------------------- */

}
@media (min-width: 1692px) and (max-width: 1933px) {
  .amtf-box-7 .amtf-box-list {
    width: 16.666666666%;
  }
  .amtf-box-7 .amtf-box-list:nth-child(n + 7) {
    display: none;
  }
  .amtf-box-8 .amtf-box-list {
    width: 14.2222222%;
  }
  .amtf-box-8 .amtf-box-list:nth-child(n + 8) {
    display: none;
  }
  .amtf-box-zf-8 .amtf-box-list {
    width: 14.2222222%;
  }
  .amtf-box-zf-8 .amtf-box-list:nth-child(n + 8) {
    display: none;
  }
  .amtf-box-5 .amtf-box-list {
    width: 24.9999999%;
  }
  .amtf-box-5 .amtf-box-list:nth-child(n + 5) {
    display: none;
  }
  .amtf-box-lb-6 .amtf-box-list {
    width: 19.99999999%;
  }

  /* 新版样式--------------------- */
}
@media (max-width: 1934px) {

   /* 新版样式--------------------- */
}
