@media screen and (min-width: 1680px) and (max-width: 1920px) {
  html {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1680px) {
  html {
    font-size: 18px;
  }
}
@media screen and (min-width: 1366px) and (max-width: 1440px) {
  html {
    font-size: 15px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1366px) {
  html {
    font-size: 13px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  html {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  html {
    font-size: 8px;
  }
}
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 0.8rem;
  vertical-align: baseline;
  outline: none;
  box-sizing: border-box;
  font-family: "Noto Sans SC", Arial, Tahoma, sans-serif;
  text-transform: capitalize;
}
body,
p {
  line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
a,
ol,
ul,
li {
  list-style: none;
  text-decoration: none;
  color: #000;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  border: unset;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}
.button {
  border-radius: 0;
}
button {
  cursor: pointer;
}
textarea {
  -webkit-appearance: none;
}
input,
select {
  outline: none;
  border: none;
  background-color: transparent;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.6);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #fff;
}
.dot {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dots {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.setBetween {
  display: flex;
  justify-content: space-between;
}
.setAlignCenter {
  display: flex;
  align-items: center;
}
.setCenter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-center {
  padding: 0 13%;
}
.pc-header {
  position: fixed;
  height: 5;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  z-index: 10 !important;
  background-color: rgba(255, 255, 255, 0);
  border-bottom: 0.01rem solid rgba(255, 255, 255, 0.2);
  background-color: #fff;
  transition: all 0.4s ease;
}
.pc-header .logo {
  width: 16rem;
  height: 4rem;
}
.pc-header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pc-header .navlist {
  right: 0;
}
.pc-header .navlist ul {
  display: flex;
  align-items: center;
}
.pc-header .navlist ul li {
  padding: 1.6rem 1.4rem;
  transition: all 0.4s ease;
  position: relative;
}
.pc-header .navlist ul li a {
  position: relative;
  font-size: 0.9rem;
  padding-bottom: 0.5rem;
  white-space: nowrap;
}
.pc-header .navlist ul li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #2b64a6;
  bottom: 0;
  left: 0;
  display: none;
}
.pc-header .navlist ul li:hover a {
  color: #2b64a6;
}
.pc-header .navlist ul li:hover a::before {
  display: block;
}
.pc-header .navlist ul li.active {
  color: #2b64a6;
}
.pc-header .navlist ul li.active a::before {
  display: block;
}
.pc-header .navlist ul li.one {
  position: relative;
}
.pc-header .navlist ul li.one .two {
  display: none;
  position: absolute;
  width: 100%;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  left: 0;
  top: 100%;
}
.pc-header .navlist ul li.one .two li {
  text-align: center;
  margin-right: unset;
  background-color: #2b64a6;
  position: relative;
  padding: 1rem 0rem;
}
.pc-header .navlist ul li.one .two li a {
  color: #fff;
}
.pc-header .navlist ul li.one .two li::before {
  position: absolute;
  width: 60%;
  height: 1px;
  background-color: #ebebeb;
  content: "";
  bottom: 0;
  left: 20%;
}
.pc-header .navlist ul li.one .two li:last-of-type::before {
  display: none;
}
.pc-header .navlist ul li.one:hover .two {
  display: block;
}
.pc-header .navlist ul a:last-of-type {
  margin-right: 0;
}
.pc-header .search {
  display: flex;
  align-items: center;
  border: 1px solid #ebebeb;
  border-radius: 1rem;
  overflow: hidden;
}
.pc-header .search input.ipt1 {
  padding: 0.3rem 0.6rem;
  width: 7rem;
  font-size: 12px;
}
.pc-header .search input.ipt2 {
  padding: 0.3rem 0.8rem;
  background-color: #2b64a6;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
}
.pc-header .search .button button {
  padding: 0.3rem 0.8rem;
  background-color: #2b64a6;
  border: unset;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
}
#mb-header {
  display: none;
}
.footer {
  display: flex;
  justify-content: space-between;
  background-color: #333333;
  padding: 2.5rem 13%;
  position: relative;
}
.footer .tit {
  display: none;
}
.footer .item:nth-of-type(1) {
  width: 30%;
}
.footer .item {
  border-right: 1px solid #3f3f3f;
  padding-right: 3rem;
  overflow: scroll;
}
.footer .item img {
  width: 100%;
  margin-top: 0.5rem;
}
.footer .item::-webkit-scrollbar {
  display: none;
}
.footer .item h1 {
  font-size: 0.8rem;
  line-height: 2.1rem;
  color: #fff;
  white-space: nowrap;
}
.footer .item p {
  font-size: 0.6rem;
  color: #fff;
  line-height: 1.5rem;
  white-space: nowrap;
}
.footer .item p span {
  color: #fff;
  font-size: 1rem;
}
.footer .item a p {
  font-size: 0.6rem;
  color: #fff;
  line-height: 1.5rem;
  transition: all 0.4s ease;
}
.footer .item a p:hover {
  color: #fff;
}
.footer .item a img:last-of-type {
  display: block;
  width: 15rem;
}
.footer .item a img:first-of-type {
  display: none;
}
.footer .item .icon {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
.footer .item .icon .con img {
  width: 4rem;
  height: 4rem;
}
.footer .item:last-of-type {
  border-right: unset;
}
.footer::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #3f3f3f;
}
.footer .item.mb {
  display: none;
}
.endnote {
  margin-top: 0;
  background-color: #333333;
}
.endnote p {
  text-align: center;
  font-size: 0.7rem;
  line-height: 2rem;
  color: #fff;
}
.endnote p a {
  color: #fff;
  font-size: 0.7rem;
  transition: all 0.4s ease;
}
.endnote p a:hover {
  color: #fff;
}
@media screen and (max-width: 1675px) {
  .pc-header .navlist ul li {
    padding: 1.6rem 0.6rem;
  }
  .pc-header .search input.ipt1 {
    width: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .pc-header {
    display: none !important;
  }
  #mb-header {
    display: flex !important;
    margin-bottom: 50px;
  }
  #mb-header #navbar-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.5);
    z-index: 99;
    padding: 0 2.5%;
    box-sizing: border-box;
  }
  #mb-header #navbar-main #logo {
    height: 90%;
  }
  #mb-header #navbar-main #logo img {
    height: 100%;
    object-fit: contain;
  }
  #mb-header #navbar-main #sidebar-main-trigger img {
    width: 100%;
  }
  #mb-header #sidebar-main {
    background-color: #fff;
    width: 40% !important;
  }
  #mb-header #sidebar-main li:last-of-type a {
    border-bottom: none;
  }
  #mb-header #sidebar-main a {
    display: block;
    text-align: center;
    border-bottom: 1px solid #ebebeb;
    padding: 16px 0;
  }
  #mb-header #sidebar-main-trigger {
    width: 30px;
    height: 24px;
    border-top: 4px solid #2b64a6;
    border-bottom: 4px solid #2b64a6;
    background-color: #2b64a6;
    padding: 6px 0;
    background-clip: content-box;
  }
  .footer {
    flex-wrap: wrap;
  }
  .footer .item:nth-of-type(1) {
    width: 100% !important;
  }
  .footer .item {
    align-items: center;
    padding-right: 0;
    border-right: unset;
    display: flex;
    width: 100%;
  }
  .footer .item h1 {
    margin-right: 0.8rem;
    white-space: nowrap;
  }
  .footer .item a {
    margin-right: 0.4rem;
  }
  .footer .item a p {
    text-align: center;
  }
  .footer .item a img {
    width: 100%;
  }
  .footer .item a img:nth-of-type(1) {
    display: none;
  }
  .footer .item a img:nth-of-type(2) {
    display: block;
    width: 10rem;
  }
  .footer .item a:last-of-type {
    margin-right: 0;
  }
  .footer .item.pc {
    display: none;
  }
  .footer .item.mb {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer .item.mb .fr {
    display: flex;
  }
  .footer .item.mb .fr .con img {
    width: 4rem;
    height: 4rem;
  }
  .footer .item.mb .fr .con p {
    text-align: center;
  }
  .footer .item.mb .fr .con:first-of-type {
    margin-right: 1rem;
  }
  .endnote p {
    padding: 0 2%;
    line-height: 1.5rem;
  }
}
