<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Microsoft YaHei;
  color: #333;
}

@font-face {
  font-family: SourceHanSerifCN-Bold;
  src: url(../font/SOURCEHANSERIFCN-BOLD-2.OTF);
}
@font-face {
  font-family: GothamMedium;
  src: url(../font/gotham-medium.otf);
}
@font-face {
  font-family: SOURCEHANSERIFCN-BOLD;
  src: url(../font/SOURCEHANSERIFCN-BOLD-2.OTF);
}
html {
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 12px;
  height: 100%;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.25);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

html::-webkit-scrollbar-thumb {
  background: var(--main-theme-color);
}

.swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: clip;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

:root {
  --main-theme-color: #007aaa;
  --main-subTheme-color: #ff7e00;
  --test: #fff ;
}

ul,
p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
}

.fs-7 {
  font-size: 0.875rem !important;
}

#main {
  position: relative;
  overflow-x: clip;
}

.h-underline-animation {
  display: inline;
  background: linear-gradient(to right, #fff, #fff) no-repeat right bottom;
  background-size: 0 2px;
  transition: background-size 1s;
}

.h-underline-animation:hover {
  background-position: left bottom;
  background-size: 100% 2px;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
  background: var(--main-theme-color);
  box-shadow: 0px 50px 12px rgba(0, 122, 170, 0.25);
  transition: all 1s ease;
}

@media (min-width: 768px) {
  header {
    position: fixed;
    background: linear-gradient(to bottom, #007aaa, rgba(0, 122, 170, 0.75), rgba(0, 122, 170, 0.55), rgba(0, 122, 170, 0.265));
  }
}
header .header-container a {
  color: #fff;
  font-size: 20px;
}

header .header-container a:hover {
  color: var(--main-subTheme-color) !important;
}

header .header-container .header-logo {
  display: flex;
}

header .header-container .header-logo a {
  display: flex;
  align-items: flex-end;
}

header .header-container .header-logo a img {
  height: auto;
}

@media (max-width: 575.98px) {
  header .header-container .header-logo a img {
    width: 75%;
  }
}
header .header-container .nav-web {
  white-space: nowrap;
}

header .header-container .nav-web .nav-menu .menu-list {
  position: relative;
}

header .header-container .nav-web .nav-menu .menu-list .sub-menu {
  position: absolute;
  top: 180%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.55s ease;
  opacity: 0;
  visibility: hidden;
  border-top: 2px solid var(--main-subTheme-color);
}

header .header-container .nav-web .nav-menu .menu-list .sub-menu::before {
  content: "\f0d8";
  font-family: fontAwesome;
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--main-subTheme-color);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

header .header-container .nav-web .nav-menu .menu-list .sub-menu a {
  padding: 5px 30px;
  color: #000;
  font-size: 16px;
  text-align: center;
  width: 100%;
}

header .header-container .nav-web .nav-menu .menu-list:hover &gt; a {
  color: var(--main-subTheme-color);
}

header .header-container .nav-web .nav-menu .menu-list:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 130%;
}

header .header-container .nav-web .m-nav-menu .offcanvas .offcanvas-header {
  background-color: var(--main-theme-color);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
}

header .header-container .nav-web .m-nav-menu .offcanvas .offcanvas-header .m-logo {
  padding: 10px;
}

@media (max-width: 575.98px) {
  header .header-container .nav-web .m-nav-menu .offcanvas .offcanvas-header .m-logo img {
    width: 75%;
  }
}
header .header-container .nav-web .m-nav-menu .offcanvas .offcanvas-header .btn-close {
  color: #fff;
  background-image: none;
  height: 100%;
  display: flex;
  align-items: flex-start;
}

header .header-container .nav-web .m-nav-menu .offcanvas .offcanvas-header .btn-close .fa {
  font-size: 20px;
}

header .header-container .nav-web .m-nav-menu .offcanvas .offcanvas-body {
  padding-left: 0;
  padding-right: 0;
  background-color: rgba(0, 122, 170, 0.75);
}

header .header-container .nav-web .m-nav-menu .offcanvas .offcanvas-body .mobile-nav-menu .nav-menu li {
  padding: 15px 0;
}

header .header-container .nav-web .m-nav-menu .offcanvas .offcanvas-body .mobile-nav-menu .nav-menu li .title {
  padding: 0 15px;
}

header .header-container .nav-web .m-nav-menu .offcanvas .offcanvas-body .mobile-nav-menu .nav-menu li.on .fa {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

header .header-container .nav-web .m-nav-menu .offcanvas .offcanvas-body .mobile-nav-menu .nav-menu li .fa {
  transition: all 0.35s ease;
}

header .header-container .nav-web .m-nav-menu .offcanvas .offcanvas-body .mobile-nav-menu .nav-menu li ul {
  display: none;
  padding-left: 15px;
}

header .header-container .nav-web .m-nav-menu .offcanvas .offcanvas-body .mobile-nav-menu .nav-menu li ul li {
  border-bottom: 1px solid #fff;
}

header .header-container .nav-web .m-nav-menu .offcanvas .offcanvas-body .mobile-nav-menu .nav-menu li ul li:nth-last-of-type(1) {
  border: none;
  padding-bottom: 0;
}

/*****      Footer      *****/
#footer-container {
  background-image: url(../images/footerbg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
#footer-container .footer {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}
#footer-container .footer a {
  font-size: 14px;
  color: #fff;
}
#footer-container .footer a:hover {
  text-decoration: underline;
}
#footer-container .footer .block-container {
  width: 100%;
  margin-bottom: 30px;
}
#footer-container .footer .block-container .foot-title {
  display: none;
}
@media (min-width: 768px) {
  #footer-container .footer .block-container .foot-title {
    display: block;
  }
  #footer-container .footer .block-container:nth-of-type(1), #footer-container .footer .block-container:nth-of-type(2) {
    width: 50%;
  }
  #footer-container .footer .block-container:nth-of-type(3), #footer-container .footer .block-container:nth-of-type(4) {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  #footer-container .footer .block-container:nth-of-type(1) {
    width: 35%;
  }
  #footer-container .footer .block-container:nth-of-type(2) {
    width: 26%;
  }
  #footer-container .footer .block-container:nth-of-type(3) {
    width: 20%;
  }
}
#footer-container .footer .block-container:nth-of-type(4) {
  width: 210px;
}
#footer-container .footer .block-container .link-orig {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  padding: 20px 12px;
  line-height: 1;
  background-color: rgba(0, 0, 0, 0.125);
  margin-right: 20px;
}
#footer-container .footer .block-container .title h4 {
  padding-bottom: 10px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#footer-container .footer .block-container .title h4::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #fff;
}
#footer-container .footer .block-container .foot-title {
  opacity: 0;
  visibility: hidden;
}
#footer-container .footer .block-container .footer-logo {
  display: flex;
}
@media (min-width: 1200px) {
  #footer-container .footer .block-container .footer-logo a {
    margin: 0 auto;
  }
}
#footer-container .footer .block-container .contact-infor li {
  font-size: 14px;
}
#footer-container .footer .block-container .social-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}
#footer-container .footer .block-container .social-list:nth-of-type(2) li:nth-of-type(1) {
  margin-right: 7px;
}
#footer-container .footer .block-container .social-list li img {
  width: 100%;
  height: auto;
}
#footer-container .footer .block-container .social-list li a {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

#footer-container .footer .block-container:not(:nth-of-type(4)) {
  display: flex;
  flex-direction: column;
}

#footer-container .footer .block-container:nth-of-type(4) {
  width: auto;
}

#footer-container .footer .block-containe .contact-infor ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#footer-container .footer .block-container:not(:nth-of-type(4)) &gt; ul {
  height: 100%;
}

.head .active.eng::before {
  background-color: #fff;
}

#sider-bar-container .sider-bar .sider-list ul li {
  position: relative;
}

#sider-bar-container .sider-bar .sider-list ul li &gt; img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: -157%;
  transform: scale(6.5);
}

#sider-bar-container .sider-bar .sider-list ul li:hover &gt; img {
  opacity: 1;
  visibility: visible;
}

.banner-container .banner .myBnnerSwiper .banner-search .container .search .fox .search-button:hover {
  background: rgba(255, 126, 0, 0.75);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 12px rgba(255, 126, 0, 0.95), 0 0 6px rgba(0, 0, 0, 0.5);
}

.myEnterpriseSwiper .swiper-btns {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  display: flex;
  z-index: 10;
  justify-content: center;
  gap: 62%;
}

.myEnterpriseSwiper .swiper-btns .swiper-btn-prev img {
  transform: rotateY(180deg);
}

.myEnterpriseSwiper .swiper-btns .swiper-btn-prev img, .myEnterpriseSwiper .swiper-btns .swiper-btn-next img {
  cursor: pointer;
}

#media-contribution-container .contribution-ranking .ranking #accordionFlushRank .accordion-item .accordion-header button .line {
  width: 24px;
  height: 3px;
  background: #fff;
  position: relative;
}

#media-contribution-container .contribution-ranking .ranking #accordionFlushRank .accordion-item .accordion-header button .line::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 24px;
  height: 3px;
  background: #fff;
  transition: all 0.25s linear;
}

#media-contribution-container .contribution-ranking .ranking #accordionFlushRank .accordion-item .accordion-header button[aria-expanded=true] .line::before {
  transform: rotate(90deg);
}

.player .view-more {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 30px;
  transform: translate(0, 10px);
  width: 100%;
}

.player .view-more a {
  border: 1px solid #fff;
  padding: 6px 26px;
  transition: all 0.65s ease;
  position: relative;
  z-index: 10;
  -webkit-transition: all 0.65s ease;
  -moz-transition: all 0.65s ease;
  -ms-transition: all 0.65s ease;
  -o-transition: all 0.65s ease;
  color: #fff;
  width: 100%;
  text-align: center;
}

.player .view-more a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--main-theme-color);
  z-index: -1;
  transition: all 0.65s ease;
  -webkit-transition: all 0.65s ease;
  -moz-transition: all 0.65s ease;
  -ms-transition: all 0.65s ease;
  -o-transition: all 0.65s ease;
}

.player .view-more a:hover {
  border-color: var(--main-theme-color);
}

.player .view-more a:hover::before {
  width: 100%;
}

.player .view-more a .fa {
  margin-left: 10px;
}

#theoretical-primay-container .head .title ul {
  padding: 20px;
  gap: 12px;
}

#theoretical-primay-container .head .title ul li {
  position: relative;
}

#theoretical-primay-container .head .title ul li .eng {
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  white-space: nowrap;
}

#footer-container .footer .block-container .social-list li {
  position: relative;
}

#footer-container .footer .block-container .social-list li &gt; img {
  position: absolute;
  top: -165%;
  left: 0;
  transform: scale(1.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s linear;
}

#footer-container .footer .block-container .social-list li:nth-of-type(3) &gt; img {
  transform: scale(1.75);
  top: -144%;
}

#footer-container .footer .block-container .social-list:nth-of-type(2) li:nth-of-type(2) img {
  top: auto;
  bottom: -225%;
  transform: scale(1);
}

#footer-container .footer .block-container .social-list li:hover &gt; img {
  top: -150%;
  opacity: 1;
  visibility: visible;
}

#footer-container .footer .block-container .social-list:nth-of-type(2) li:nth-of-type(2):hover &gt; img {
  top: auto;
  bottom: -200%;
}

#footer-container .footer .block-container:nth-of-type(1) .link-list li ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  white-space: nowrap;
}

#footer-container .footer-1 .block-container a {
  white-space: nowrap;
}

/**
@media (min-width: 768px){#footer-container .footer-1 .block-container .foot-title{display:block}#footer-container .footer-1 .block-container:nth-of-type(1),#footer-container .footer-1 .block-container:nth-of-type(2){width:50%}#footer-container .footer-1 .block-container:nth-of-type(3),#footer-container .footer-1 .block-container:nth-of-type(4){width:50%}}**/
#footer-container .footer-1 .container .block-container:nth-of-type(2) li {
  font-size: 14px;
}

@media (min-width: 320px) {
  #footer-container .footer-1 .block-container:nth-of-type(1), #footer-container .footer-1 .block-container:nth-of-type(2) {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  #footer-container .footer-1 .container .block-container:nth-of-type(3) {
    width: auto;
  }
  #footer-container .footer-1 .container .block-container:nth-of-type(2) {
    width: 38%;
  }
  #footer-container .footer-1 .block-container:nth-of-type(1) {
    width: 100%;
  }
  #footer-container .footer-3 .block-container:nth-of-type(1) {
    width: 100%;
  }
}
#footer-container .footer-1 .block-container:nth-of-type(4) {
  width: 210px;
}

#footer-container .footer-2 .block-container:nth-of-type(1) {
  order: 2;
}

#footer-container .footer-2 .block-container:nth-of-type(2) {
  order: 1;
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
}

#footer-container .footer-2 .block-container:nth-of-type(3) {
  order: 3;
}

#footer-container .footer-2 .block-container:nth-of-type(4) {
  order: 4;
}

@media (min-width: 1200px) and (max-width: 1919.98px) {
  #footer-container .footer-1 .block-container:nth-of-type(2) {
    transform: translateX(-100px);
  }
  #footer-container .footer-1 .block-container:nth-of-type(3) {
    transform: translateX(350px);
  }
  #footer-container .footer-1 .block-container:nth-of-type(4) {
    transform: translateX(360px);
  }
  #footer-container .footer-1 .container &gt; div {
    transform: scale(0.85);
  }
}
@media (min-width: 1680px) {
  #footer-container .footer-1 .container, #footer-container .footer-2 .container {
    max-width: 1500px;
  }
}
@media (min-width: 1920px) {
  #footer-container .footer-1 .container, #footer-container .footer-2 .container {
    max-width: 1880px;
  }
  #footer-container .footer-1 .container .block-container:nth-of-type(2) {
    width: auto;
  }
  #footer-container .footer-1 .container &gt; div {
    justify-content: space-evenly;
  }
}
/*****      Sider Bar      *****/
#sider-bar-container {
  position: fixed;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 20;
  filter: drop-shadow(4px 8px 8px rgba(0, 122, 170, 0.45)) drop-shadow(rgba(0, 122, 170, 0.45) 4px 8px 4px);
  -webkit-filter: drop-shadow(4px 8px 8px rgba(0, 122, 170, 0.45)) drop-shadow(rgba(0, 122, 170, 0.45) 4px 8px 4px);
}
#sider-bar-container .sider-bar {
  box-shadow: inset -1px 1px 8px 0px rgba(0, 122, 170, 0.125);
  padding: 20px 16px;
  background-color: #fff;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
@media (max-width: 575.98px) {
  #sider-bar-container .sider-bar {
    padding: 15px 8px;
  }
  #sider-bar-container .sider-bar .icon {
    display: flex;
    justify-content: center;
  }
  #sider-bar-container .sider-bar .icon img {
    width: 75%;
  }
}
#sider-bar-container .sider-bar .icon {
  cursor: pointer;
}
#sider-bar-container .sider-bar .sider-list ul {
  display: none;
}
#sider-bar-container .sider-bar .sider-list img {
  width: 20px;
  margin-bottom: 5px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
#sider-bar-container .sider-bar .sider-list img:hover {
  animation: siderBarAnimation 0.5s ease 1 alternate;
  -webkit-animation: siderBarAnimation 0.5s ease 1 alternate;
}
#sider-bar-container .sider-bar .sider-list span {
  font-size: 14px;
}
/*****      Scroll Top      *****/
#scroll-top-container {
  position: fixed;
  right: 5px;
  bottom: 10%;
  z-index: 9;
}
#scroll-top-container a {
  display: flex;
  background: #fff;
  width: 50%;
  padding: 10px;
  filter: drop-shadow(2px 4px 6px black);
  border-radius: 50%;
}

#in-page-banner .in-page-banner .banner-image {
  position: relative;
}
#in-page-banner .in-page-banner .banner-image .breadcrumb {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6.25rem;
  background-color: rgba(0, 122, 170, 0.75);
  margin-bottom: 0;
}
#in-page-banner .in-page-banner .banner-image .breadcrumb::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  height: calc(100% + 30px);
  background: url(../images/in_bg_37.png) no-repeat;
  background-size: cover;
  background-position: right;
}
#in-page-banner .in-page-banner .banner-image .breadcrumb .column-title {
  position: relative;
  display: flex;
  align-items: end;
  gap: 24px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#in-page-banner .in-page-banner .banner-image .breadcrumb .column-title h2 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--main-theme-color);
}
#in-page-banner .in-page-banner .banner-image .breadcrumb .column-title span {
  font-size: 1.625rem;
  color: var(--main-theme-color);
}
#in-page-banner .in-page-banner .banner-image .breadcrumb .cur-pos a, #in-page-banner .in-page-banner .banner-image .breadcrumb .cur-pos span {
  color: #fff;
}

.nav-image {
  position: relative;
  margin-bottom: 30px;
}
.nav-image img {
  width: 100%;
}
.nav-image .side-nav {
  position: absolute;
  top: 80px;
  right: 0;
}
.nav-image .side-nav ul {
  background-color: rgba(255, 255, 255, 0.75);
}
.nav-image .side-nav ul .item span {
  padding: 1rem 0;
  background-color: var(--main-theme-color);
}
.nav-image .side-nav ul .item a {
  padding: 0.75rem 2.25rem;
  width: 100%;
  text-align: center;
}
.nav-image .side-nav ul .item a:hover {
  background-color: rgba(0, 122, 170, 0.75);
  color: #fff;
}
.nav-image .side-nav ul .item:not(:nth-of-type(1)) {
  border-bottom: 1px dashed #ccccc9;
}/*# sourceMappingURL=common.css.map */</pre></body></html>