.template-header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 999;
  display: none;
}
.template-header .h5,
.template-header .pc {
  height: 65px;
  border-bottom: 1px solid #E6E6E6;
}
.template-header .h5 .logo,
.template-header .pc .logo {
  display: flex;
  align-items: center;
}
.template-header .h5 .logo img,
.template-header .pc .logo img {
  width: 28px;
  height: 28px;
}
.template-header .h5 .logo p,
.template-header .pc .logo p {
  font-size: 20px;
  margin-left: 10px;
  color: #D36641;
}
.template-header .pc {
  display: flex;
  justify-content: center;
}
.template-header .pc .header-pc {
  display: flex;
  justify-content: space-between;
  height: 65px;
  width: 1250px;
  padding: 0 25px;
}
.template-header .pc .header-pc .pc-right {
  display: flex;
  align-items: center;
}
.template-header .pc .header-pc .pc-right .navigateA,
.template-header .pc .header-pc .pc-right .navigatePack {
  position: relative;
  padding: 0 18px;
  color: #505050;
  font-size: 16px;
  cursor: pointer;
}
.template-header .pc .header-pc .pc-right .navigateA:hover {
  color: black;
  font-weight: 600;
  cursor: pointer;
}
.template-header .pc .header-pc .pc-right .active p {
  color: black;
  font-weight: 600;
}
.template-header .pc .header-pc .pc-right .active::after {
  content: '';
  width: 20px;
  height: 4px;
  border-radius: 10px;
  background: #FF8258;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
}
.template-header .pc .header-pc .pc-right .navigatePack {
  height: 65px;
  line-height: 65px;
}
.template-header .pc .header-pc .pc-right .navigatePack div {
  position: absolute;
  display: none;
  transition: 0.5s all;
  width: 120px;
  flex-direction: column;
  padding: 8px 0;
  background: #f5f2f0;
  border-radius: 5px;
  left: 50%;
  transform: translate(-50%, 0px);
  border: 1px solid #EDEAE9;
}
.template-header .pc .header-pc .pc-right .navigatePack div a {
  text-align: center;
  color: #505050;
  font-size: 15px;
  height: 42px;
  line-height: 42px;
}
.template-header .pc .header-pc .pc-right .navigatePack div a:hover {
  color: black;
  font-weight: 600;
}
.template-header .pc .header-pc .pc-right .down-center:hover div {
  display: flex;
}
.template-header .h5 {
  display: flex;
  align-items: center;
  width: 100%;
}
.template-header .h5 .header-h5 {
  display: grid;
  grid-template-columns: 20% 1fr 20%;
  align-items: center;
  padding: 0 10px;
  width: 100%;
}
.template-header .h5 .header-h5 .h5-center {
  display: flex;
  justify-content: center;
}
.template-header .h5 .header-h5 .h5-right {
  display: flex;
  justify-content: flex-end;
}
.template-header .h5 .header-h5 .h5-right i {
  width: 27px;
  height: 27px;
  font-size: 25px;
  color: #D36641;
  display: block;
}
.template-header .popup-menu {
  display: none;
}
.template-header .popup-menu .menu-background {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.template-header .popup-menu .menu-list {
  position: fixed;
  left: 100vw;
  top: 65px;
  z-index: 999;
  height: calc(100vh - 65px);
  width: 100vw;
  background: white;
  opacity: 1;
}
.template-header .popup-menu .menu-list .list-li {
  display: flex;
  flex-direction: column;
  z-index: 10;
  position: relative;
}
.template-header .popup-menu .menu-list .list-li .ul {
  border-bottom: 1px solid #F5F5F5;
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
}
.template-header .popup-menu .menu-list .list-li .ul p {
  font-size: 15px;
  color: #333333;
}
.template-header .popup-menu .menu-list .list-li .ul i {
  transition: 0.5s all;
  font-size: 18px;
}
.template-header .popup-menu .menu-list .list-li .li {
  height: 0;
  transition: 0.3s all;
  padding: 0 40px;
  opacity: 0;
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
}
.template-header .popup-menu .menu-list .list-li .li .li-children {
  padding: 15px 0px;
  border-bottom: 1px solid #F5F5F5;
  color: #777777;
}
.template-header .popup-menu .menu-list .list-li:first-child {
  border-top: none;
}
.template-header .popup-menu .menu-list .active .ul p {
  color: #D36641;
}
.template-header .popup-menu .menu-list .active .ul i {
  color: #D36641;
}
.template-header .popup-menu .menu-list .open .ul i {
  transform: rotate(90deg);
}
