@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input,
button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

a {
  /* 去除默认的颜色和下划线 */
  color: inherit;
  /* 继承父元素的颜色 */
  text-decoration: none;
  /* 去除下划线 */
  cursor: pointer;
  /* 设置鼠标指针为手型，表示可点击 */
}

a:hover,
a:focus,
a:active {
  /* 去除鼠标悬停、焦点和激活状态的默认样式 */
  color: inherit;
  /* 继承父元素的颜色 */
  text-decoration: none;
  /* 去除下划线 */
  outline: none;
  /* 去除焦点状态的边框 */
}

.navtitle {
  padding: 0.2rem 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.32rem;
}

.navtitle > #triangle-facing-left {
  display: inline-block;
  border-left: 0.05rem solid;
  border-bottom: 0.05rem solid;
  width: 0.3rem;
  height: 0.3rem;
  transform: rotate(45deg);
}

.newdetail {
  padding: 0.2rem;
  box-sizing: border-box;
}

.newdetail .newdetail_title {
  text-align: center;
  font-size: 0.32rem;
  font-weight: bold;
}

.newdetail .newdetail_time {
  text-align: center;
  font-size: 0.24rem;
  margin-top: 0.4rem;
}

.newdetail .newdetail_content {
  margin-top: 0.4rem;
  font-size: 0.28rem;
}

.newdetail img {
  width: 100% !important;
}

.newdetail .gsnames {
  text-align: center;
  font-size: 0.28rem;
  margin-top: 0.4rem;
  font-weight: bold;
}

.newdetail .tel {
  text-align: center;
  font-size: 0.24rem;
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newdetail .tel > .phones {
  margin-right: 0.2rem;
}
