html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0
}

main {
  display: block
}

h1 {
  font-size: 2em;
  margin: .67em 0
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible
}

pre {
  font-family: monospace, monospace;
  font-size: 1em
}

a {
  background-color: transparent
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted
}

b,
strong {
  font-weight: bolder
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

img {
  border-style: none
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0
}

button,
input {
  overflow: visible
}

button,
select {
  text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText
}

fieldset {
  padding: .35em .75em .625em
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal
}

progress {
  vertical-align: baseline
}

textarea {
  overflow: auto
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

details {
  display: block
}

summary {
  display: list-item
}

template {
  display: none
}

[hidden] {
  display: none
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Source Han Sans SC, Source Han Sans CN, Noto Sans SC, Source Han Sans CN VF, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-variant: tabular-nums;
  font-feature-settings: "tnum";
  font-size: 14px;
  line-height: 1.6;
  background-color: #fff;
  color: rgba(0, 0, 0, .65);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body * {
  box-sizing: border-box;
  flex-shrink: 0;
}

input {
  background-color: transparent;
  border: 0;
}

button {
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  outline: none;
  background-color: transparent;
}

button:active {
  opacity: 0.6;
}

ul,
ol,
li,
menu {
  padding: 0;
  list-style-type: none
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

img[src=""],
img:not([src]) {
  opacity: 0;
}

button {
  border: 0;
  outline: 0;
  background: 0
}

textarea {
  resize: vertical;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table th {
  font-weight: normal;
}

.clearfix:after {
  content: "";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}

.text-overflow {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}

.d-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.d-flex-c {
  display: flex;
  justify-content: center;
  align-items: center;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-corner {
  background: #f6f6f6;
}

::-webkit-scrollbar-thumb {
  background: #cdcdcd;
}

::-webkit-scrollbar-track {
  background: #f6f6f6;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

@-moz-document url-prefix() {
  * {
    scrollbar-width: thin;
    scrollbar-color: #cdcdcd #f6f6f6;
  }
}

html.sr [data-scroll-reveal] {
  visibility: hidden;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.justify-start {
  display: flex;
  justify-content: flex-start;
}

.justify-center {
  display: flex;
  justify-content: center;
}

.justify-end {
  display: flex;
  justify-content: flex-end;
}

.justify-evenly {
  display: flex;
  justify-content: space-evenly;
}

.justify-around {
  display: flex;
  justify-content: space-around;
}

.justify-between {
  display: flex;
  justify-content: space-between;
}

.align-start {
  display: flex;
  align-items: flex-start;
}

.align-center {
  display: flex;
  align-items: center;
}

.align-end {
  display: flex;
  align-items: flex-end;
}

body {
  animation: fadein 0.8s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.eNm7BI3wS {
  position: absolute;
  z-index: -1;
  top: 2.3rem;
  left: -1rem;
  box-shadow: 3px 4px 30px 0px rgba(30, 110, 230, 0.4);
  background-color: #fff;
  border-radius: 10px;
  width: 5.334rem;
  height: 10.667rem;
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity, transform 0.2s;
  pointer-events: none;
}

.c2H8xonkH:hover .eNm7BI3wS {
  z-index: 30;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.Ns80E9uwN {
  padding: 0 0.5rem;
  width: 100%;
  overflow-wrap: break-word;
  font-size: 0;
  text-align: left;
  line-height: 1.6rem;
}

.mP2CTGUDR {
  display: block;
  padding: 0 0.5rem;
  overflow-wrap: break-word;
  color: rgba(102, 102, 102, 1);
  font-size: 0.48rem;
  text-align: left;
  cursor: pointer;
  background-color: transparent;
  transition: color, background-color 0.2s;
}

.mP2CTGUDR.gjsEwWBiW,
.mP2CTGUDR:hover {
  display: block;
  overflow-wrap: break-word;
  color: rgba(33, 120, 255, 1);
  font-size: 0.48rem;
  text-align: left;
  background-color: rgba(244, 246, 250, 1);
  border-radius: 6px;
  padding: 0 0.5rem;
}

.LH8hSjNwA {
  box-shadow: 1px 2px 4px 0px rgba(138, 198, 255, 0.55);
  background-color: rgba(255, 255, 255, 1);
  height: 2.294rem;
  width: 51.2rem;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
}

.ItZjhIbc4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 32rem;
  height: 100%;
  margin: 0.8rem 0 0 9.6rem;
}

.luvuLsjRb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a2e5f;
  font-size: max(0.5rem, 15px);
  font-weight: 500;
}

.fdkUwOapJ {
  width: 2px;
  height: 0.5rem;
  background: #f1f1f1;
}

.bsu45DnUP {
  width: auto;
  height: 1rem;
  margin-top: 0.08rem;
}

.KHyhRCXwI {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 15rem;
  height: 100%;
  overflow-wrap: break-word;
  font-size: 0;
  text-align: left;
  white-space: nowrap;
  line-height: 0.694rem;
  margin: 0 0 0 1.227rem;
}

.P16mSz2J7 {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  overflow-wrap: break-word;
  color: rgba(51, 51, 51, 1);
  font-size: 0.533rem;
  text-align: left;
  white-space: nowrap;
  line-height: 0.587rem;
}

.P16mSz2J7>a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.P16mSz2J7:hover,
.JazmATVwf {
  color: rgba(33, 120, 255, 1);
}

.JazmATVwf::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.08rem;
  background-color: rgba(33, 120, 255, 1);
}

.bnVhpJRO5 {
  width: 0.667rem;
  height: 0.667rem;
  margin-left: 2.854rem;
}

.PpmESs83R {
  width: 4.587rem;
  height: 0.507rem;
  overflow-wrap: break-word;
  color: rgba(33, 120, 255, 1);
  font-size: 0.64rem;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  line-height: 0.64rem;
  margin: -0.15rem 0 0 0.24rem;
}

.FmRCdoHh4 {
  width: 0.96rem;
  height: 0.8rem;
  margin-left: 1.147rem;
  margin-top: 0.4rem;
}

.f34gRB4HK {
  position: relative;
  margin-left: 0.2rem;
  padding-right: 1rem;
}

.f34gRB4HK .FmRCdoHh4 {
  margin-left: 1rem;
}

.Hp0appMn1 {
  position: absolute;
  z-index: -1;
  top: 1.63rem;
  left: -0.9rem;
  margin: 0 !important;
  opacity: 0;
  transform: rotate(-90deg) translateX(10px);
  transition: opacity, transform 0.3s;
  pointer-events: none;
}

.GCc3l9QrN {
  display: none;
}

.f34gRB4HK:hover .Hp0appMn1 {
  z-index: 22;
  opacity: 1;
  transform: rotate(-90deg) translateX(0);
  pointer-events: all;
}

.f34gRB4HK:hover .GCc3l9QrN {
  display: inline-block;
}

.f34gRB4HK:hover .arAoZ7JJd {
  display: none;
}

.Hp0appMn1 .ZJcd5NRl9 {
  transform: rotate(90deg);
}

.If0MkQ6SD {
  display: none;
  width: 1.494rem;
  height: 0.08rem;
  margin: 0.614rem 0 0 13.76rem;
  opacity: 0;
  visibility: hidden;
}

.MB0MMKOrU {
  background-color: rgba(33, 120, 255, 1);
  width: 1.494rem;
  height: 0.08rem;
}

.Ezp3JQraq {
  height: 4.534rem;
  background: url(/statics/hp/img/psvjpll3xn5wjw2b5h8dl2ino0svn4drpea5de2f08d-b401-4c26-8730-517bbd1e206a.png) -0.08rem -0.08rem no-repeat;
  background-size: 5.094rem 4.747rem;
  width: 4.934rem;
  margin: 0.987rem 0 0 3.174rem;
}

.IOCZBMFZQ {
  position: fixed;
  z-index: 100;
  right: 0.18rem;
  top: 15rem;
  display: flex;
  flex-direction: column;
  gap: 0.29rem;
}

#contactBar {
  opacity: 0;
  transition: 0.2s;
}

#contactBar.show {
  opacity: 1;
}

.WbwwFDJFJ,
.MRLjspjjt,
.W5n2PeKfk {
  position: relative;
  box-shadow: 0px 2px 3px 0px rgba(221, 221, 221, 1);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 6px;
  height: 1.867rem;
  border: 1px solid rgba(238, 238, 238, 1);
  width: 1.867rem;
}

.WbwwFDJFJ:hover {
  background-color: rgba(249, 249, 249, 1);
}

.WbwwFDJFJ:hover .Nu9Lmr2dS {
  display: none;
}

.WbwwFDJFJ:hover .NQf5gDiTQ {
  display: block;
}

.MRLjspjjt:hover {
  background-color: rgba(249, 249, 249, 1);
}

.MRLjspjjt:hover .kEvqgPohe {
  display: none;
}

.MRLjspjjt:hover .ZGJXr0u2A {
  display: block;
}

.W5n2PeKfk:hover {
  background-color: rgba(249, 249, 249, 1);
}

.W5n2PeKfk:hover .LuFrQFxOW {
  display: none;
}

.W5n2PeKfk:hover .bfDxwo9f2 {
  display: block;
}

.MRLjspjjt .HEf5Hcsnk {
  right: 2.2rem;
  top: -1.2rem;
  left: unset;
  transform: translateX(20px);
  opacity: 0;
  transition: 0.2s;
  visibility: hidden;
}

.MRLjspjjt .ZJcd5NRl9 {
  transform: none;
}

.MRLjspjjt:hover .HEf5Hcsnk {
  z-index: 22;
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}


.Nu9Lmr2dS {
  width: 0.774rem;
  height: 0.774rem;
  margin: 0.56rem 0 0 0.56rem;
}

.NQf5gDiTQ {
  display: none;
  width: 0.774rem;
  height: 0.774rem;
  margin: 0.56rem 0 0 0.56rem;
}

.kaEanobvD {
  height: 1.867rem;
  background: url(/statics/hp/img/ps5pjrabawyqh233g2h4e2jbtm6iuwsmrqdee1cb743-2478-41ae-bb0e-5e1045ba0645.png) -0.08rem -0.08rem no-repeat;
  background-size: cover;
  width: 4.934rem;
  position: absolute;
  z-index: -1;
  right: 2rem;
  top: 0rem;
  transform: translateX(20px);
  opacity: 0;
  transition: 0.2s;
  visibility: hidden;
}

.WbwwFDJFJ:hover .kaEanobvD {
  z-index: 22;
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.YteJo63T7 {
  width: 3.814rem;
  height: 1.067rem;
  overflow-wrap: break-word;
  color: rgba(33, 120, 255, 1);
  font-size: 0.48rem;

  font-weight: 700;
  text-align: left;
  line-height: 0.64rem;
  margin: 0.3rem 0 0 0.374rem;
}

.kEvqgPohe {
  width: 0.96rem;
  height: 0.8rem;
  margin: 0.534rem 0 0 0.454rem;
}

.ZGJXr0u2A {
  display: none;
  width: 0.96rem;
  height: 0.8rem;
  margin: 0.534rem 0 0 0.454rem;
}

.LuFrQFxOW {
  width: 0.56rem;
  height: 0.747rem;
  margin: 0.587rem 0 0 0.667rem;
}

.bfDxwo9f2 {
  display: none;
  width: 0.56rem;
  height: 0.747rem;
  margin: 0.587rem 0 0 0.667rem;
}


.ZAIQcbbls {
  width: 2.4rem;
  height: 2.4rem;
  margin-top: 0.534rem;
}

.PTNYgqJqs {
  height: 0.32rem;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.32rem;


  text-align: left;
  white-space: nowrap;
  line-height: 0.32rem;
  margin: 0.614rem 0 0 0.08rem;
}

.NgSZTuE2b {
  width: 31.2rem;
  height: 0.027rem;
  margin: 1.3rem 0 0 10rem;
}

.koiC00ztp {
  width: 23.734rem;
  margin: 0.64rem 0 1.494rem 9.974rem;
  align-items: center;
}

.fTYuaaQxQ {
  width: 1.92rem;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.453rem;
  text-align: left;
  white-space: nowrap;
}

.ZjGmw1IA7 {
  width: 19.68rem;
  overflow-wrap: break-word;
  font-size: 0;
  text-align: left;
  white-space: nowrap;
}

.jjDxN24GC {
  width: 19.68rem;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.4rem;
  text-align: left;
  white-space: nowrap;
}

.ktrbP1TBt {
  width: 19.68rem;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.4rem;
  text-align: left;
  white-space: nowrap;
}

.W0vDRs2OK {
  width: 19.68rem;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.4rem;
  text-align: left;
  white-space: nowrap;
}

.Tm3nKOzKq {
  width: 19.68rem;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.4rem;
  text-align: left;
  white-space: nowrap;
}

.fnfyGjx0n {
  background-color: rgba(22, 24, 26, 1);
  height: 2.5rem;
  margin-bottom: 0.027rem;
  width: 51.2rem;
}

.I3chZC3Mv {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.346rem;
  text-align: center;
  white-space: nowrap;
  line-height: 1.8;
}

.mPctcmiGt {
  width: 6.747rem;
  height: 4.347rem;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.346rem;


  text-align: left;
  line-height: 0.774rem;
}

.aazKPDPVx {
  width: 3.5rem;
  height: 4.347rem;
  margin: 0.25rem 0 0 1.307rem;
  justify-content: center;
  align-items: center;
}

.JOsSzSXfL {
  height: 0.48rem;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.453rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  line-height: 0.454rem;
}

.WucxuldhG {
  width: 6.747rem;
  height: 4.347rem;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.346rem;


  text-align: left;
  line-height: 0.774rem;
}

.Wa6CUyMzp {
  background-color: rgba(0, 0, 0, 0.8);
  width: 51.2rem;
  height: 9.627rem;
}

.NUtibmPag {
  width: 31.227rem;
  min-height: 4.4rem;
  margin: 1.547rem 0 0 9.974rem;
}

.cDplEMthY {
  width: 2rem;
  height: 4.347rem;
  margin-top: 0.027rem;
}

.nNoCxgMfS {
  width: 1.894rem;
  height: 0.48rem;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: max(0.453rem, 14px);
  text-align: left;
  white-space: nowrap;
  line-height: 0.454rem;
}

.hl0f7Sp4v {
  overflow-wrap: break-word;
  color: #bfbfbf;
  font-size: max(0.4rem, 13px);
  text-align: left;
  line-height: 1.8;
  margin: 0.507rem 0 0 0.027rem;
}

.PHdlSUVvz {
  width: 1.894rem;
  height: 2.827rem;
  margin: 0.027rem 0 0 2.107rem;
}

.fKd5ByGco {
  width: 1.894rem;
  height: 0.48rem;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.453rem;


  text-align: left;
  white-space: nowrap;
  line-height: 0.454rem;
}

.LefN65yyB {
  overflow-wrap: break-word;
  color: #bfbfbf;
  font-size: 0.4rem;
  text-align: left;
  line-height: 1.8;
  margin: 0.507rem 0 0 0.027rem;
}

.RQuksKVzF {
  width: 1.92rem;
  height: 2.107rem;
  margin: 0.027rem 0 0 2.134rem;
}

.msmAzrVnZ {
  width: 1.92rem;
  height: 0.48rem;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.453rem;


  text-align: left;
  white-space: nowrap;
  line-height: 0.454rem;
}

.QulpTGDkl {
  overflow-wrap: break-word;
  color: #bfbfbf;
  font-size: 0.4rem;
  text-align: left;
  line-height: 1.8;
  margin: 0.507rem 0 0 0.027rem;
}

.OYDInXFei {
  width: 1.867rem;
  height: 2.854rem;
  margin: 0.027rem 0 0 2.107rem;
}

.OHJ99EyK7 {
  width: 1.867rem;
  height: 0.48rem;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.453rem;


  text-align: left;
  white-space: nowrap;
  line-height: 0.454rem;
}

.bLIRIaO4m {
  overflow-wrap: break-word;
  color: #bfbfbf;
  font-size: 0.4rem;
  text-align: left;
  line-height: 1.8;
  margin: 0.507rem 0 0 0.027rem;
}

.MThw8O8fa {
  width: 6.747rem;
  height: 4.347rem;
  overflow-wrap: break-word;
  font-size: 0;
  text-align: left;
  line-height: 0.8rem;
  margin-left: 5.9rem;
}

.j605GNZjj {
  display: flex;
  align-items: flex-end;
}

.hBZOGJcfy {
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.346rem;
  text-align: left;
  line-height: 0.827rem;
}

.oR3zGAuPV {
  display: flex;
}

.PkvMvhMnH {
  width: 5.2rem;
  display: block;
  white-space: pre-wrap;
}

.Zq7xEgWJ8 {
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.613rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
}

.NjlBdKUlV {
  width: 6.8rem;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 0.346rem;
  text-align: left;
  line-height: 1.8;
  margin: 0.5rem 0;
}


.ZJcd5NRl9 {
  width: 3.947rem;
  height: 3.947rem;
  margin: 0.294rem 0 0 0.32rem;
}

.page {
  margin-top: 2.294rem;
}

.ZKiE5oYmb {
  width: 5rem;
  height: 5rem;
  position: absolute;
  z-index: -1;
  top: -5.8rem;
  left: -0.85rem;
  margin: 0;
  padding: .5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0 0 1rem 0 rgba(17, 20, 24, .1);
  border-radius: 0.64rem;
}

.ZKiE5oYmb::after {
  position: absolute;
  z-index: 2;
  content: '';
  bottom: -0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: .5rem solid #fff;
  border-right: .5rem solid transparent;
  border-left: .5rem solid transparent;
  filter: drop-shadow(0 .5rem .5rem rgba(17, 20, 24, .1));
}

.fXQ1JkZIw:hover .ZKiE5oYmb {
  z-index: 99;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.Wa6CUyMzp,
.NUtibmPag,
.NUtibmPag>div {
  height: auto;
}

.NUtibmPag>div {
  justify-content: flex-start;
}

.koiC00ztp {
  margin-bottom: 0.64rem;
}

.P16mSz2J7 {
  font-size: max(0.533rem, 15px);
}

.nNoCxgMfS,
.fKd5ByGco,
.msmAzrVnZ,
.OHJ99EyK7,
.fTYuaaQxQ,
.JOsSzSXfL {
  font-size: max(0.453rem, 16px);
}

.hl0f7Sp4v,
.LefN65yyB,
.QulpTGDkl,
.bLIRIaO4m {
  width: 2.2rem;
}

.hl0f7Sp4v,
.LefN65yyB,
.QulpTGDkl,
.bLIRIaO4m,
.hBZOGJcfy,
.NjlBdKUlV,
.WucxuldhG,
.mPctcmiGt,
.PTNYgqJqs,
.jjDxN24GC,
.W0vDRs2OK,
.Tm3nKOzKq,
.I3chZC3Mv {
  font-size: max(0.4rem, 14px);
}

footer a:hover {
  text-decoration: underline;
}

.I3chZC3Mv span,
.I3chZC3Mv a {
  color: rgba(255, 255, 255, 0.6);
}
