:root {
  --theme-color: #1D55B1;
  --accent-color: #1b3678;
  --accent-theme-color: #347DF0;
  --font-color: #000;
  --text-color: #666;
  --white: white;
  --black: black;
}

@font-face {
  font-family: "mi";
  src: url("./font/MiSans-Light.otf") format("truetype");
}
@font-face {
  font-family: "go";
  src: url("./font/Gotham-Medium.otf") format("truetype");
}
.font-mi, html, body, div, p, ul, ol, li,
h1, h2, h3, h4, h5, h6,
dd, dt, dl, table, tbody, tfoot, th, td,
img, video, audio, a, strong, b,
i, nav, small, span, select, option, section,
header, footer, main, aside,
form, button, input {
  font-family: mi, sans-serif;
  font-style: normal;
}

.font-go {
  font-family: go, sans-serif;
  font-style: normal;
}

html, body, div, p, ul, ol, li,
h1, h2, h3, h4, h5, h6,
dd, dt, dl, table, tbody, tfoot, th, td,
img, video, audio, a, strong, b,
i, nav, small, span, select, option, section,
header, footer, main, aside,
form, button, input {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html[lang=zh] {
  text-transform: uppercase;
}

html[lang=en] .none {
  display: none;
}

ul, ol {
  list-style: none;
}

a {
  color: var(--title-color);
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

.row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.app-header {
  background-color: #333;
  padding: 0 15px;
  height: 40px;
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
  text-align: center;
}
.app-header > span {
  width: 80px;
  color: #fff;
  cursor: pointer;
  line-height: 40px;
}
.app-header > span:hover ~ ul {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.app-header ul {
  width: 80px;
  text-align: center;
  position: absolute;
  top: 100%;
  right: 15px;
  z-index: 11;
  background: #333;
  color: #fff;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s linear;
}
.app-header ul > li {
  line-height: 30px;
  border-bottom: 1px solid #666;
  cursor: pointer;
  transition: 0.2s linear;
  user-select: none;
  text-transform: none;
}
.app-header ul > li:last-child {
  border-bottom: none;
}
.app-header ul > li.active, .app-header ul > li:hover {
  color: var(--theme-color);
}
.app-header ul:hover {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.qp-header {
  width: 100%;
  height: 95px;
  padding: 0 10vw;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  --menu-font-size: clamp(12px, 2vw, 21px);
}
.qp-header .top {
  position: relative;
  z-index: 9;
}
.qp-header .top-right {
  display: none;
  visibility: hidden;
}
.qp-header .top .logo {
  width: 140px;
}
.qp-header .nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: var(--menu-font-size);
  font-weight: 400;
}
.qp-header .nav ul li {
  margin-left: 2vw;
  cursor: pointer;
  position: relative;
}
.qp-header .nav ul li:first-child {
  margin-left: 0;
}
.qp-header .nav ul li.active:after {
  content: "";
  width: 100%;
  height: 4px;
  display: block;
  background: currentColor;
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 2;
  border-radius: 4px;
}
@media screen and (max-width: 1200px) {
  .qp-header {
    height: 60px;
    display: block;
  }
  .qp-header .top {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .qp-header .top-right {
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 9;
    visibility: visible;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .qp-header .top-right:after, .qp-header .top-right:before {
    content: "";
  }
  .qp-header .top-right span, .qp-header .top-right:after, .qp-header .top-right:before {
    width: 30px;
    height: 5px;
    display: block;
    background: currentColor;
    transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0ms;
  }
  .qp-header .top-right.active span {
    opacity: 0;
    visibility: hidden;
  }
  .qp-header .top-right.active:after {
    position: absolute;
    top: 50%;
    transform: rotateZ(45deg);
  }
  .qp-header .top-right.active:before {
    position: absolute;
    top: 50%;
    transform: rotateZ(-45deg);
  }
  .qp-header .top .logo {
    width: 120px;
  }
  .qp-header .nav {
    display: none;
  }
  .qp-header.mask {
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9) !important;
    overflow: hidden;
  }
  .qp-header.mask .nav {
    display: block;
  }
  .qp-header.mask .nav ul {
    padding: 5% 25%;
    display: block;
  }
  @keyframes fadeToY {
    0% {
      visibility: hidden;
      opacity: 0;
      transform: translateX(-8px);
    }
    100% {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }
  }
  .qp-header.mask .nav ul li {
    text-align: center;
    margin-bottom: 10px;
    margin-left: 0;
    font-size: 16px;
  }
  .qp-header.mask .nav ul li > a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 5% 0;
  }
  .qp-header.mask .nav ul li:nth-child(1) {
    animation: fadeToY 0.3s both linear 0.1s 1;
  }
  .qp-header.mask .nav ul li:nth-child(2) {
    animation: fadeToY 0.3s both linear 0.2s 1;
  }
  .qp-header.mask .nav ul li:nth-child(3) {
    animation: fadeToY 0.3s both linear 0.3s 1;
  }
  .qp-header.mask .nav ul li:nth-child(4) {
    animation: fadeToY 0.3s both linear 0.4s 1;
  }
  .qp-header.mask .nav ul li:nth-child(5) {
    animation: fadeToY 0.3s both linear 0.5s 1;
  }
  .qp-header.mask .nav ul li:nth-child(6) {
    animation: fadeToY 0.3s both linear 0.6s 1;
  }
  .qp-header.mask .nav ul li:nth-child(7) {
    animation: fadeToY 0.3s both linear 0.7s 1;
  }
  .qp-header.mask .nav ul li.active {
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    font-weight: bold;
  }
}

.qp-footer {
  width: 100%;
  position: relative;
}
.qp-footer-nav {
  position: absolute;
  top: 6vh;
  left: 10vw;
}
.qp-footer-nav ul {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.qp-footer-nav ul li {
  margin-right: 18px;
  font-size: 21px;
  cursor: pointer;
}
.qp-footer-nav ul li a {
  padding: 4px 10px;
  color: var(--white);
  background: transparent;
  transition: 0.3s linear;
  border: 1px solid var(--white);
  display: block;
  border-radius: 6px;
}
.qp-footer-nav ul li a:hover {
  background: var(--white);
  color: var(--black);
}
.qp-footer-nav ul li.active a {
  background: var(--white);
  color: var(--black);
}
.qp-footer-copyright {
  width: 100%;
  background: var(--white);
  font-size: 21px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2vh 10vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.qp-footer-copyright p {
  flex: 1;
}
@media screen and (max-width: 1200px) {
  .qp-footer-nav {
    top: 1vh;
  }
  .qp-footer-nav ul {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 1vw;
  }
  .qp-footer-nav ul li {
    margin: 0;
  }
  .qp-footer-nav ul li a {
    padding: 0.5vh 0.8vw;
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  .qp-footer-nav {
    display: none;
  }
  .qp-footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .qp-footer-copyright p {
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .qp-footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    font-size: 14px;
  }
}

html[lang=en] .qp-header .nav ul li {
  margin-left: 1vw;
}
html[lang=en] .qp-header .nav ul li a {
  text-transform: none;
}
@media screen and (max-width: 1650px) {
  html[lang=en] .qp-header .nav ul {
    font-size: 16px;
  }
}
@media screen and (max-width: 1300px) {
  html[lang=en] .qp-header {
    height: 60px;
    display: block;
  }
  html[lang=en] .qp-header .top {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  html[lang=en] .qp-header .top-right {
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 9;
    visibility: visible;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  html[lang=en] .qp-header .top-right:after, html[lang=en] .qp-header .top-right:before {
    content: "";
  }
  html[lang=en] .qp-header .top-right span, html[lang=en] .qp-header .top-right:after, html[lang=en] .qp-header .top-right:before {
    width: 30px;
    height: 5px;
    display: block;
    background: currentColor;
    transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0ms;
  }
  html[lang=en] .qp-header .top-right.active span {
    opacity: 0;
    visibility: hidden;
  }
  html[lang=en] .qp-header .top-right.active:after {
    position: absolute;
    top: 50%;
    transform: rotateZ(45deg);
  }
  html[lang=en] .qp-header .top-right.active:before {
    position: absolute;
    top: 50%;
    transform: rotateZ(-45deg);
  }
  html[lang=en] .qp-header .top .logo {
    width: 120px;
  }
  html[lang=en] .qp-header .nav {
    display: none;
  }
  html[lang=en] .qp-header.mask {
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9) !important;
    overflow: hidden;
  }
  html[lang=en] .qp-header.mask .nav {
    display: block;
  }
  html[lang=en] .qp-header.mask .nav ul {
    padding: 5% 25%;
    display: block;
  }
  @keyframes fadeToY {
    0% {
      visibility: hidden;
      opacity: 0;
      transform: translateX(-8px);
    }
    100% {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }
  }
  html[lang=en] .qp-header.mask .nav ul li {
    text-align: center;
    margin-bottom: 10px;
    margin-left: 0;
    font-size: 16px;
  }
  html[lang=en] .qp-header.mask .nav ul li > a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 5% 0;
  }
  html[lang=en] .qp-header.mask .nav ul li:nth-child(1) {
    animation: fadeToY 0.3s both linear 0.1s 1;
  }
  html[lang=en] .qp-header.mask .nav ul li:nth-child(2) {
    animation: fadeToY 0.3s both linear 0.2s 1;
  }
  html[lang=en] .qp-header.mask .nav ul li:nth-child(3) {
    animation: fadeToY 0.3s both linear 0.3s 1;
  }
  html[lang=en] .qp-header.mask .nav ul li:nth-child(4) {
    animation: fadeToY 0.3s both linear 0.4s 1;
  }
  html[lang=en] .qp-header.mask .nav ul li:nth-child(5) {
    animation: fadeToY 0.3s both linear 0.5s 1;
  }
  html[lang=en] .qp-header.mask .nav ul li:nth-child(6) {
    animation: fadeToY 0.3s both linear 0.6s 1;
  }
  html[lang=en] .qp-header.mask .nav ul li:nth-child(7) {
    animation: fadeToY 0.3s both linear 0.7s 1;
  }
  html[lang=en] .qp-header.mask .nav ul li.active {
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    font-weight: bold;
  }
}
@media screen and (max-width: 1800px) {
  html[lang=en] .qp-footer {
    width: 100%;
    position: relative;
  }
  html[lang=en] .qp-footer-nav {
    top: 2vh;
  }
  html[lang=en] .qp-footer-nav ul {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 1vw;
  }
  html[lang=en] .qp-footer-nav ul li {
    margin: 0;
  }
  html[lang=en] .qp-footer-nav ul li a {
    padding: 0.5vh 0.8vw;
    text-align: center;
  }
}
@media screen and (max-width: 1200px) {
  html[lang=en] .qp-footer-nav {
    display: none;
  }
  html[lang=en] .qp-footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    font-size: 14px;
  }
}

.qp-header li a, .qp-footer li a {
  width: 100%;
  height: 100%;
  user-select: none;
}

.ruici-banner-bottom {
  width: 100%;
  padding: 0 10% 82px;
  background: #A4CFE6;
}
.ruici-banner-bottom__body {
  width: 100%;
  background: var(--white);
  padding: 100px;
  margin-top: -7%;
  position: relative;
  z-index: 2;
}
.ruici-banner-bottom__body .title {
  border-top: 2px solid #A4CFE6;
  padding-top: 26px;
  margin-bottom: 85px;
}
.ruici-banner-bottom__body .title > div {
  font-size: 28px;
  color: #323232;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.ruici-banner-bottom__body .title > div img {
  width: 97px;
  height: 32px;
}
.ruici-banner-bottom__body .title p {
  font-size: 24px;
  color: #646464;
}
.ruici-banner-bottom__body .body {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
.ruici-banner-bottom__body .body > img {
  width: 30%;
}
.ruici-banner-bottom__body .body ul {
  flex: 1;
  margin-right: 10%;
  font-size: 20px;
  color: #323232;
}
.ruici-banner-bottom__body .body ul li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 110px;
}
.ruici-banner-bottom__body .body ul li p {
  width: 200px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  text-align: justify;
  text-align-last: justify;
}
.ruici-banner-bottom__body .body ul li img {
  width: 40px;
  height: 40px;
  margin-right: 25px;
}
.ruici-banner-bottom__bottom {
  font-size: 16px;
  color: #000;
  text-align: right;
  margin-top: 22px;
}
.ruici-banner-bottom__bottom p {
  white-space: nowrap;
  margin-top: 4px;
}
.ruici-body {
  padding: 8% 10%;
}
.ruici-body__module {
  border-top: 3px solid var(--theme-color);
  padding: 32px 0 130px;
}
.ruici-body__module h2 {
  margin-bottom: 50px;
}
.ruici-body__module:last-child {
  padding-bottom: 40px;
}
.ruici-body .product ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
}
.ruici-body .product ul li {
  border-bottom: 10px solid var(--theme-color);
  background: linear-gradient(to top, #F6F6F6 0%, #FFFFFF 40%);
}
.ruici-body .product ul li p {
  font-size: 24px;
  font-weight: 500;
  padding: 30px 0 10px 15px;
  border-bottom: 1px solid #D6D6D6;
  margin-bottom: 25px;
}
.ruici-body .product ul li span {
  display: block;
  font-size: 20px;
  color: #323232;
  padding: 0 15px;
  margin-bottom: 25px;
}
.ruici-body .intelligent h2 {
  margin-bottom: 24px;
}
.ruici-body .intelligent > span {
  font-size: 24px;
  color: #646464;
  display: block;
  margin-bottom: 54px;
}
.ruici-body .intelligent p {
  font-size: 26px;
  color: #323232;
  padding-bottom: 25px;
  border-bottom: 2px solid #D6D6D6;
  font-weight: bold;
}
.ruici-body .intelligent > ul {
  padding-top: 45px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 28px;
}
.ruici-body .intelligent > ul li {
  border-bottom: 14px solid var(--theme-color);
}
.ruici-body .intelligent > ol {
  font-size: 20px;
}
.ruici-body .intelligent > ol li {
  margin-top: 30px;
  color: #545454;
}
.ruici-body .intelligent > ol li i {
  color: #323232;
  font-style: normal;
  font-weight: bold;
}
.ruici-body .intelligent .ai {
  margin-top: 100px;
}
.ruici-body .intelligent .ai img {
  margin: 48px 0 37px;
  display: block;
  border-bottom: 14px solid var(--theme-color);
}
.ruici-body .intelligent .ai span {
  font-size: 20px;
  color: #545454;
}
.ruici-body .intelligent .ai span i {
  color: #323232;
  font-style: normal;
  font-weight: bold;
}
.ruici-body .hospital h2 {
  margin-bottom: 24px;
}
.ruici-body .hospital > span {
  font-size: 24px;
  color: #646464;
  display: block;
  margin-bottom: 54px;
}
.ruici-body .hospital ul {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 74px 120px;
}
.ruici-body .hospital ul li {
  border-top: 2px solid #D6D6D6;
  border-bottom: 2px solid #D6D6D6;
  font-size: 20px;
  color: #323232;
  padding: 60px 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.ruici-body .hospital ul li div {
  width: 44px;
  height: 44px;
  background: #C7E5F2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.ruici-body .hospital ul li div img {
  width: 25px;
}
.ruici-body .hospital ul li p {
  flex: 1;
  padding-left: 30px;
}
.ruici-body .hospital ul:after, .ruici-body .hospital ul:before {
  content: "";
  width: 23px;
  height: 23px;
  background: url("../image/ruici/j.png") no-repeat center;
  display: block;
  position: absolute;
  z-index: 1;
}
.ruici-body .hospital ul:after {
  top: 25%;
  left: 50%;
  transform: translateY(-100%) translateX(-50%);
}
.ruici-body .hospital ul:before {
  top: 75%;
  left: 50%;
  transform: translateY(50%) translateX(-50%);
}
@media screen and (max-width: 820px) {
  .ruici {
    padding-top: 60px;
  }
  .ruici-banner-bottom {
    padding: 0 4% 4%;
  }
  .ruici-banner-bottom__body {
    padding: 7% 5%;
  }
  .ruici-banner-bottom__body .title {
    margin-bottom: 20px;
    padding-top: 10px;
  }
  .ruici-banner-bottom__body .title > div {
    font-size: 15px;
  }
  .ruici-banner-bottom__body .title > div img {
    width: 68px;
    height: 22px;
  }
  .ruici-banner-bottom__body .title > div span {
    display: none;
  }
  .ruici-banner-bottom__body .title p {
    display: none;
  }
  .ruici-banner-bottom__body .body > img {
    width: 112.5px;
    height: 131.5px;
  }
  .ruici-banner-bottom__body .body ul {
    margin-right: 0;
    font-size: 10px;
  }
  .ruici-banner-bottom__body .body ul li {
    margin-bottom: 26px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .ruici-banner-bottom__body .body ul li p {
    width: 110px;
    margin-bottom: 2px;
    color: #323232;
    font-size: 13px;
  }
  .ruici-banner-bottom__body .body ul li img {
    width: 12px;
    height: 12px;
    margin-right: 10px;
  }
  .ruici-banner-bottom__body .body ul li span {
    display: none;
  }
  .ruici-banner-bottom__bottom {
    font-size: 8px;
  }
  .ruici-body {
    padding: 4%;
  }
  .ruici-body__module {
    border-top: none;
    padding: 10px 0 15px;
  }
  .ruici-body__module h2 {
    margin-bottom: 20px;
    font-size: 15px;
  }
  .ruici-body__module:last-child {
    padding-bottom: 20px;
  }
  .ruici-body .product ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 8px;
  }
  .ruici-body .product ul li {
    border-bottom: 5px solid var(--theme-color);
  }
  .ruici-body .product ul li p {
    font-size: 13px;
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
  }
  .ruici-body .product ul li span {
    font-size: 10px;
    margin-bottom: 10px;
    padding: 0 4px;
  }
  html[lang=en] .ruici-body .product ul {
    display: block;
  }
  html[lang=en] .ruici-body .product ul li {
    margin-bottom: 10px;
  }
  html[lang=en] .ruici-body .product ul li img {
    width: 100%;
    height: 140px;
    object-fit: cover;
  }
  .ruici-body .intelligent h2 {
    margin-bottom: 8px;
  }
  .ruici-body .intelligent > span {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .ruici-body .intelligent p {
    font-size: 13px;
    color: #323232;
    padding-bottom: 7px;
  }
  .ruici-body .intelligent > ul {
    padding-top: 14px;
    grid-column-gap: 5px;
  }
  .ruici-body .intelligent > ul li {
    border-bottom: 5px solid var(--theme-color);
  }
  .ruici-body .intelligent > ol {
    font-size: 12px;
  }
  .ruici-body .intelligent > ol li {
    margin-top: 12px;
  }
  .ruici-body .intelligent .ai {
    margin-top: 26px;
  }
  .ruici-body .intelligent .ai img {
    margin: 14px 0 12px;
    border-bottom: 5px solid var(--theme-color);
  }
  .ruici-body .intelligent .ai span {
    font-size: 12px;
  }
  .ruici-body .hospital h2 {
    margin-bottom: 8px;
  }
  .ruici-body .hospital > span {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .ruici-body .hospital ul {
    position: relative;
    display: block;
  }
  .ruici-body .hospital ul li {
    border-top: 0;
    border-bottom: 2px solid #D6D6D6;
    font-size: 12px;
    color: #323232;
    padding: 20px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .ruici-body .hospital ul li div {
    width: 25px;
    height: 23px;
  }
  .ruici-body .hospital ul li div img {
    width: 14px;
  }
  .ruici-body .hospital ul li p {
    padding-left: 15px;
  }
  .ruici-body .hospital ul:after, .ruici-body .hospital ul:before {
    display: none;
  }
}

.qp-copyright {
  padding: 18px 10px;
  text-align: center;
  background: var(--theme-color);
  color: var(--white);
  font-size: 14px;
}
.qp-copyright a {
  color: var(--white);
  padding-left: 8px;
}

@media screen and (max-width: 820px) {
  header {
    background: #fff !important;
  }
  .qp-copyright a {
    display: block;
  }
}

/*# sourceMappingURL=reechmerry.css.map */
