﻿/* 初始化样式 */
body {
  margin: 0;
  padding: 0;
  font-family: "微软雅黑", Arial, Helvetica, sans-serif;
  font-size: 12px;
  background: #fff;
}
ul,
ol,
li,
p,
h3,
dd,
dl,
dt,
span {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
a {
  text-decoration: none;
}
input:focus, textarea:focus, button:focus {
  outline: none;
  box-shadow: none;
}
/* 一行省略号 */
.ellipsis1 {
  white-space: nowrap; /* 不换行 */
  overflow: hidden;    /* 超出部分隐藏 */
  text-overflow: ellipsis; /* 超出部分显示省略号 */
}
/* 两行省略号 */
.ellipsis2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 限制为两行 */
  overflow: hidden;
}
/* 导航栏 */
.common-header-box {
  position: fixed;
  padding: 0 0.4rem;
  width: 100%;
  height: 1.17rem;
  line-height: 1.17rem;
  box-sizing: border-box;
  font-family: PingFang SC, PingFang SC;
  font-weight: bold;
  font-size: 0.48rem;
  color: #333333;
  text-align: center;
  background-color: #fff;
  z-index: 9;
}
.common-header-box .icon-back {
  position: absolute;
  left: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 0.64rem;
  height: 0.64rem;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("../../Images/icon_back.png");
}
.common-header-box .icon-news {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 0.64rem;
  height: 0.64rem;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("../../Images/news.png");
}
.common-header-box .title {
  padding: 0 0.9rem;
}
/* 底部 */
.school-detail-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 0 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: calc(1.17rem + constant(safe-area-inset-bottom));
  height: calc(1.17rem + env(safe-area-inset-bottom));
  background-color: #fff;
  box-sizing: border-box;
  padding-bottom: constant(safe-area-inset-bottom); /* 兼容 iOS < 11.2 */
  padding-bottom: env(safe-area-inset-bottom);     /* 兼容 iOS >= 11.2 */
}
.school-detail-footer .btn-buy {
  display: inline-block;
  width: 3.2rem;
  height: 0.8rem;
  background: #FF7C24;
  border-radius: 0.4rem;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 0.37rem;
  color: #FFFFFF;
  text-align: center;
  line-height: 0.8rem;
}

