/* nav */
.mynav .area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mynav .navlist {
  width: 53.57%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navlist li {
  display: flex;
  align-items: center;
  font-size: 16px;
  height: 100%;
  color: #333333;
  position: relative;
}
.navlist li a {
  display: block;
}
.navlist > li::after {
  content: "";
  position: absolute;
  bottom: 22.5px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 2px;
  width: 0;
  background-color: #e71f19;
  transition: all 0.3s linear;
}
.navlist > li:hover::after {
  width: 100%;
}
.navlist a {
  display: block;
}
.navlist .n-active::after {
  width: 100%;
}
.navlist li ul {
  display: none;
  position: absolute;
  bottom: -123px;
  left: 0;
  z-index: 10;
  width: 130px;
  margin-left: -10px;
  background-color: #fff;
}
.navlist li ul li {
  color: #999999;
  font-size: 14px;
  padding: 11px 0;
  padding-left: 10px;
  transition: all 0.2s linear;
  border-bottom: 1px solid #a3b2c0;
}
.navlist li ul li:last-child {
  border-bottom: none;
}
.navlist li ul li:hover {
  background-color: #d9261c;
  color: #fff;
}
.navlist li:hover ul {
  display: block;
}
/* padpro端 */
@media screen and (min-width: 991px) and (max-width: 1366px) {
}
/* pad端 */
@media screen and (min-width: 768px) and (max-width: 991px) {
}
/* 移动端 */
@media (max-width: 767px) {
}
