* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
}

body {
  font-family: "Microsoft YaHei", sans-serif;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 头部导航样式 */
.header-phone {
  width: 100%;
  position: relative;
}

.header-phone-container {
  background: url('../img/top-bg.png') no-repeat;
  background-size: 100% 100%;
  background-position: center;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
}

.logo-phone-container {
  display: flex;
  align-items: center;
}

.logo-phone-img {
  width: 100%;
}

.search-phone-container {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px;
}

.search-phone-input {
  background: #F5F0F0;
  border: none;
  width:250px;
  height: 40px;
  outline: none;
  padding: 0 10px;
  border-radius: 5px 0 0 5px;
}

.search-phone-button {
  height: 40px;
  background: #F5F0F0;
  border: none;
  cursor: pointer;
  padding-right: 10px;
    border-radius: 0 5px 5px 0;
}

.search-phone-icon {
  width: 23px;
  height: 23px;
}

.menu-phone-button {
  background: #fff;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.menu-phone-icon {
  width: 25px;
  height: 25px;
}

/* 导航菜单样式 */
.phone-nav {
  position: absolute;
  display: none;
  left: 0;
  top: 130px;
  width: 100%;
  height: 400px;
  background: #ab0306ee;
  overflow-y: auto;
  z-index: 100;
}

.nav-phone-container {
  width: 100%;
  overflow: hidden;
}

.menu-phone-prent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid #D6585C;
}

.menu-phone-prent-title {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

.menu-phone-prent-jia {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

.menu-phone-child {
  margin-left: 12px;
  width: calc(100% - 12px);
  border-bottom: 1px solid #D6585C;
  padding: 12px;
  font-size: 14px;
  color: #fff;
}



/* 标题栏 */
.title-phone-temp {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 12px;
}

.title-phone-text {
  font-weight: bold;
  font-size: 16px;
  color: #C13432;
}

.more-phone-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #D49F5A;
}

.more-phone-btn img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

/* 最新动态*/
.news-phone-container {
  margin: 0 12px;
  width: calc(100% - 24px);

}

.news-phone-container .phone-zsimg {
  width: 100%;
  height: 225px;
}

.bottom-phone-text-main {
  background: #C13432;
  height: 70px;
  padding: 12px;
  font-size: 16px;
  color: #FFFEFE;
  width: 100%;
    margin-bottom: 15px;
}

.bottom-phone-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  /* 限制为两行 */
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
  /* 文字溢出时显示省略号 */
}

.bottom-phone-text-time {
  display: flex;
  justify-content: space-between;
}

.page-title-hanberge {
  padding: 12px;
  margin: 0 12px;
  background: #B01A1A;
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

.page-title-hanberge-menu {
  display: none;
  padding: 0 12px;
  background: #fff;
  width: 100%;
  font-size: 14px;
  color: #333;
}

.page-title-hanberge-menu>div {
  border-bottom: 1px solid #ccc;
  padding: 12px 12px;

}

.page-title-hanberge-menu>div>a {
  /* 取消a标签默认样式 */
  text-decoration: none;
  color: #333;
}





@media screen and (min-width: 769px) {
  .footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: 192px;
    background: url('../img/bottom-bg.png') no-repeat 100% 100%;
  }

  .footer img {
    /*width: 70%;*/
  margin-top:10px;
  }

  .footer-text {
    display: flex;
    width: 100%;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    color: #F1C54C;
    margin-top:-38px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    width: 100%;
    height: 156px;
    background: url('../img/bottom-bg.png') no-repeat 100% 100%;
    padding: 15px;
  }

  .footer img {
    margin: 0 auto;
    width: 90%;
  }

  .footer-text {
    padding: 15px;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    color: #F1C54C;
  }

  .footer-text>div {
    margin-bottom: 10px;
  }
}