.w1400 {
  width: 1400px;
  margin: 0 auto;
}
.w1200 {
  width: 1200px;
  margin: 0 auto;
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-start {
  justify-content: flex-start;
}
.flex-center {
  justify-content: center;
}
body {
  background: #e9e9e9;
}
.gold {
  color: #e0d616;
}
a {
  transition: all 0.3s;
}
#app .header {
  width: 100%;
  height: 1rem;
  background: rgba(0, 0, 0, 0.3)
    url("https://d1wnf2otvqt7l7.cloudfront.net/bemadea/prelogin/images/pc/banner@2x.png")
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
#app .header .language-select {
  position: absolute;
  right: 2rem;
  top: 0.36rem;
}
#app .header .tabList {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 6.5rem;
  list-style: none;
}
#app .header .tabList li {
  position: relative;
  color: #fff;
  line-height: 1;
  transition: 0.2s all linear;
  cursor: pointer;
  font-size: 0.18rem;
}
#app .header .tabList li a {
  color: #fff;
}
#app .header .tabList li::before {
  content: "";
  position: absolute;
  left: 100%;
  width: 0;
  top: 0.39rem;
  height: 0.03rem;
  color: #ecb46a;
  background: url(https://static.xmwan.com/hldjsite/images/pc/detail/1.png)
    no-repeat;
  background-size: 100% 100%;
  transition: 0.2s all linear;
}
#app .header .tabList .active a {
  color: #e1b28d !important;
}
#app .header .tabList .active ~ li::before {
  left: 0;
}
#app .header .tabList .active::before {
  width: 100%;
  height: 0.03rem;
  left: 0;
  top: 0.34rem;
}
#app .m-header,
#app .mobile {
  display: none;
}
#app .news-list-container {
  padding-bottom: 20px;
}
#app .news-list-container .news-nav a {
  width: 120px;
  height: 35px;
  line-height: 35px;
  background: #ccc;
  color: #333;
  border-radius: 5px;
  text-align: center;
  margin-right: 15px;
}
#app .news-list-container .news-nav a.active {
  background: #333;
  color: #e1b28d;
}
#app .news-list-container .news-list ul li a {
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
  align-items: stretch;
}
#app .news-list-container .news-list ul li a .pic {
  width: 240px;
  height: 135px;
}
#app .news-list-container .news-list ul li a .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#app .news-list-container .news-list ul li a .title {
  max-width: 700px;
  flex: 1;
  /* 让中间部分自动填充剩余空间 */
  display: flex;
  flex-direction: column;
  /* 子元素垂直排列 */
  justify-content: flex-start;
  /* 标题靠顶部 */
}
#app .news-list-container .news-list ul li a .title h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  font-size: 24px;
  font-weight: 400;
}
#app .news-list-container .news-list ul li a .title .ftitle {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #999;
}
#app .news-list-container .news-list ul li a .time {
  width: 150px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  color: #999;
}
#app .news-content-container {
  padding-bottom: 20px;
}
#app .news-content-container .news-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  position: relative;
}
#app .news-content-container .news-box .page-navigation {
  position: absolute;
  left: 20px;
  top: 20px;
}
#app .news-content-container .news-box .page-navigation a:hover {
  color: #e0d616;
}
#app .news-content-container .news-box .title {
  width: 850px;
  font-size: 20px;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 auto;
}
#app .news-content-container .news-box .news-achor {
  width: 90%;
  margin: 10px auto;
  border-bottom: 1px dashed #eee;
  padding-bottom: 20px;
}
#app .news-content-container .news-box .news-achor p {
  margin: 0 15px;
}
#app .news-content-container .news-box .news-content {
  width: calc(100% - 40px);
  margin: 20px auto;
  text-indent: 2em;
  line-height: 25px;
}
#app .news-content-container .news-box .news-content img {
  max-width: 800px;
  height: auto;
  display: block;
  margin: 15px auto;
  object-fit: cover;
}
@media screen and (max-width: 580px) {
  #app .header {
    display: none;
  }
  #app .m-header {
    display: block;
    width: 100%;
    width: 7.5rem;
    height: 0.98rem;
    background-color: rgba(0, 0, 0, 0.58);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  }
  #app .m-header .icon {
    width: 1.68rem;
    height: 0.64rem;
    margin: 0 0 0 0.4rem;
  }
  #app .m-header .download_img {
    width: 0.42rem;
    height: 0.33rem;
    margin-right: 0.4rem;
  }
  #app .mobile {
    display: block;
  }
  #app .mobile .popup {
    position: fixed;
    height: 100vh;
    z-index: 99991;
    bottom: -100%;
    width: 100%;
    left: 0;
    background: #000000;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease-out;
    font-size: 28px;
    font-family: Source Han Serif CN;
    font-weight: 500;
    color: #97772c;
  }
  #app .mobile .popup .icon {
    width: 1.68rem;
    height: 0.64rem;
  }
  #app .mobile .popup .us {
    display: flex;
    justify-content: center;
    padding: 0 20px;
  }
  #app .mobile .popup .us .us-item .img2 a {
    width: 0.66rem;
    height: 0.66rem;
    margin-right: 0.5rem;
  }
  #app .mobile .popup .us .us-item .descript {
    margin-top: 5px;
    text-align: center;
  }
  #app .mobile .popup .alink {
    margin-top: 30vh;
  }
  #app .mobile .popup .close {
    width: 0.33rem;
    height: 0.33rem;
    background: url(https://d1wnf2otvqt7l7.cloudfront.net/bemadea/prelogin/images/mobile/close@2x.png)
      no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0.4rem;
    right: 0.2rem;
    z-index: 999;
    transform: translate(-50%, -50%);
    cursor: pointer;
  }
  #app .mobile .popup a {
    font-size: 13px;
    font-weight: bold;
    color: #97772c;
    line-height: 24px;
    height: 22px;
    text-align: center;
    margin: 40px auto;
    position: relative;
    display: block;
  }
  #app .mobile .popup .highlight {
    color: #fff;
    background: #000;
    border-radius: 12px;
  }
  #app .mobile .popup .a1::after {
    content: "";
    width: 6.87rem;
    height: 0.02rem;
    bottom: -20px;
    left: 0px;
    position: absolute;
    background: url(https://d1wnf2otvqt7l7.cloudfront.net/bemadea/prelogin/images/mobile/line@2x.png)
      no-repeat;
    background-size: contain;
  }
  #app .mobile .popup.show {
    transform: translateY(-100%);
  }
  #app .news-list-container,
  #app .news-content-container {
    margin-top: 1.3rem;
  }
  #app .news-list-container .w1200,
  #app .news-content-container .w1200 {
    width: 95%;
    margin: 0 auto;
  }
  #app .news-list-container .news-nav a {
    width: 80px;
    font-size: 13px;
  }
  #app .news-list-container .news-list ul li a {
    padding: 10px;
    margin-bottom: 10px;
  }
  #app .news-list-container .news-list ul li a .pic {
    display: none;
  }
  #app .news-list-container .news-list ul li a .title {
    max-width: calc(100% - 75px);
    flex: 1;
    /* 让中间部分自动填充剩余空间 */
    display: flex;
    flex-direction: column;
    /* 子元素垂直排列 */
    justify-content: flex-start;
    /* 标题靠顶部 */
  }
  #app .news-list-container .news-list ul li a .title h3 {
    font-size: 16px;
  }
  #app .news-list-container .news-list ul li a .title .ftitle {
    font-size: 12px;
  }
  #app .news-list-container .news-list ul li a .time {
    width: 75px;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 12px;
    text-align: center;
  }
  #app .news-content-container .news-box {
    padding: 20px 15px;
  }
  #app .news-content-container .news-box .page-navigation a:hover {
    color: #e0d616;
  }
  #app .news-content-container .news-box .title {
    width: 90%;
    font-size: 16px;
    margin: 30px auto 0;
  }
  #app .news-content-container .news-box .news-achor {
    font-size: 12px;
  }
  #app .news-content-container .news-box .news-content {
    width: calc(100% - 10px);
    margin: 15px auto;
    font-size: 12px;
  }
  #app .news-content-container .news-box .news-content img {
    max-width: 320px;
    height: auto;
    display: block;
    margin: 10px auto;
    object-fit: cover;
  }
}
