.header {
  width: 100%;
  position: relative;
  box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.05);
}
.header:after {
  content: "";
  width: 100%;
  height: 35px;
  background: #007e9f;
  position: absolute;
  top: 0;
  z-index: -1;
}
.header .nav {
  max-width: 1170px;
  margin: 0 auto;
  text-align: right;
  position: relative;
  height: 35px;
  line-height: 35px;
}
.header .nav ul {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1170px) {
  .header .nav ul {
    margin-right: 30px;
  }
}
.header .nav ul li {
  margin-left: 8px;
}
.header .nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0 4px;
}
.header .nav ul li a:hover, .header .nav ul li a:focus {
  color: #ff0;
}
.header .h1 {
  max-width: 1170px;
  height: 100px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 1170px) {
  .header .h1 {
    padding: 0 30px;
  }
}
.header .h1 .logo {
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .header .h1 .logo {
    width: 400px;
  }
  .header .h1 .logo img {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .header .h1 .logo {
    width: 300px;
  }
}
.header .h1 .title {
  font-size: 2rem;
  letter-spacing: 1px;
  color: #333;
}
@media (max-width: 1170px) {
  .header .h1 .title {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .header .h1 .title {
    font-size: 1.5rem;
  }
}
@media (max-width: 400px) {
  .header .h1 .title {
    font-size: 1.25rem;
  }
}
.header .h1 .title a {
  color: #333;
  text-decoration: none;
}
.header .h1 .title a:hover, .header .h1 .title a:focus {
  color: #007e9f;
}

.main {
  max-width: 1170px;
  margin: 0 auto;
  padding: 60px 0;
}
@media (max-width: 1170px) {
  .main {
    padding: 30px;
  }
}
.main .content ul {
  display: flex;
  flex-direction: column;
}
.main .content ul li {
  border-radius: 6px;
  box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 48px;
}
@media (max-width: 1170px) {
  .main .content ul li {
    margin-bottom: 30px;
  }
}
.main .content ul li:last-child {
  margin-bottom: 0;
}
.main .content ul li a {
  display: block;
  text-decoration: none;
}
.main .content ul li a .block {
  padding: 20px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
@media (max-width: 500px) {
  .main .content ul li a .block {
    flex-direction: column;
  }
}
.main .content ul li a .block .blockPic {
  flex: 0 0 300px;
  margin-right: 2rem;
  aspect-ratio: 408/250;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .main .content ul li a .block .blockPic {
    flex: 0 0 200px;
  }
}
@media (max-width: 500px) {
  .main .content ul li a .block .blockPic {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 1rem;
  }
}
.main .content ul li a .block .blockPic img {
  width: 300px;
  height: auto;
}
@media (max-width: 768px) {
  .main .content ul li a .block .blockPic img {
    width: 200px;
  }
}
@media (max-width: 500px) {
  .main .content ul li a .block .blockPic img {
    width: 100%;
  }
}
.main .content ul li a .block .blockTxt {
  flex: 1 1 auto;
  font-size: 1.125rem;
  letter-spacing: 0.03rem;
  color: #333;
  line-height: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 940px) {
  .main .content ul li a .block .blockTxt {
    font-size: 1rem;
  }
}
.main .content ul li a .block .blockTxt .blockTitle {
  font-size: 1.75rem;
  color: #333;
  letter-spacing: 0.02rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 940px) {
  .main .content ul li a .block .blockTxt .blockTitle {
    font-size: 1.5rem;
  }
}
.main .content ul li a:hover .block {
  background: rgba(25, 126, 156, 0.03);
  border: 1px solid #197e9c;
}
.main .content ul li a:hover .block .blockTitle {
  color: #197e9c;
}

.footer {
  background: #197e9c;
  text-align: center;
  color: #fff;
  padding: 40px;
}
.footer p {
  margin-bottom: 12px;
  line-height: 160%;
}
.footer .copyright {
  text-align: center;
  margin-bottom: 1rem;
}
.footer .copyright ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer .copyright ul li {
  line-height: 160%;
}
.footer .copyright ul li:after {
  content: "|";
  margin: 0 4px;
}
.footer .copyright ul li:last-child::after {
  display: none;
}
.footer .copyright ul li a {
  color: #fff;
  padding: 0 8px;
  text-decoration: none;
}
.footer .copyright ul li a:hover, .footer .copyright ul li a:focus {
  color: #ff0;
}
.footer .mark {
  clear: both;
}
.footer .mark ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .mark ul li {
  margin: 0 8px;
}
@media (max-width: 500px) {
  .footer .mark ul li {
    margin: 0 4px;
  }
}
.footer .mark ul li a {
  display: block;
}/*# sourceMappingURL=medicine.css.map */