:root {
  --gray: #f7f7f7;
  --font-family--onest: Onest, sans-serif;
  --black: black;
  --white: white;
  --text: #333;
  --primary: #006fd4;
  --gray-700: #525252;
  --brand-800: #006fd4;
  --aqua: #2ff;
  --white-800: #fffc;
  --gray-950: #292929;
  --gray-200: gainsboro;
  --yellow: #eed404;
  --beige: #fdfee8;
  --brand-50: #e9f3ff;
  --bitter-lemon: #c8d608;
  --sky-blue: #9ad8ff;
  --brand-950: #0d1759;
  --white-200: #fff3;
  --gray-100: #efefef;
  --accent: #4a6fa5;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.pd-10 {
  padding: 10px 0px;
}
.pd-12 {
  padding: 12px 0px;
}
.pd-16 {
  padding: 16px 0px;
}
.shadow {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1), 0 1.5px 6px 0 rgba(0, 0, 0, 0.1);
}
.btn {
  cursor: pointer;
  border-radius: 100px;
  background: var(--primary);
  padding: 8px 16px 8px 24px;
  color: #fff;
  width: fit-content;
  font-size: 14px;
  display: flex;
  align-items: center;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn.br {
  border-radius: 6px;
}
.btn > div {
  position: relative;
  z-index: 2;
}
.btn i {
  margin-left: 4px;
  opacity: 0.6;
}
.btn::after {
  content: "";
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: -10%;
  bottom: 50%;
  transform: translate(0, 50%);
  z-index: 0;
  width: 0;
  height: 0;
  border-radius: 200%;
  background: var(--brand-800);
}
.btn:hover i {
  opacity: 1;
}
.btn:hover::after {
  width: 400px;
  height: 400px;
}
.btn.download {
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.btn.download:hover {
  color: #fff;
}
body {
  font-family: "Microsoft YaHei", sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC";
  color: var(--text);
  min-width: 1440px;
  font-size: 14px;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  min-width: 1300px;
  margin: 0 auto;
  max-width: 1600px;
  width: 100%;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
.header {
  background: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 800;
  padding: 0px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.02);
}
.header .header-top {
  background: var(--gray);
  font-size: 12px;
}
.header .header-top > .container {
  height: 30px;
}
.header .header-top > .container i {
  margin-right: 4px;
  color: var(--brand-800);
}
.header .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header .logo img {
  max-height: 60px;
  margin-right: 12px;
}
.header .logo .logo-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text);
}
.header .logo .logo-text b {
  font-weight: bold;
  font-size: 27px;
  letter-spacing: 0px;
}
.header .logo .logo-text span {
  letter-spacing: 1.3px;
}
.header nav {
  position: relative;
  z-index: 500;
}
.header nav .nav-links {
  display: flex;
  justify-content: space-around;
}
.header nav .nav-links > li {
  height: 70px;
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
}
.header nav .nav-links > li:not(:last-child) {
  margin-right: 2px;
}
.header nav .nav-links > li:hover ul {
  display: block;
}
.header nav .nav-links > li > ul {
  width: 120%;
  z-index: 120;
  position: absolute;
  background: #fff;
  border: 1px solid #eee;
  padding: 8px 0px;
  left: -10%;
  top: 69px;
  display: none;
  border-radius: 6px;
}
.header nav .nav-links > li > ul::before {
  content: "";
  display: block;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #eee;
  z-index: 121;
}
.header nav .nav-links > li > ul li {
  padding: 0px 12px;
}
.header nav .nav-links > li > ul li a {
  border-radius: 6px;
  font-size: 14px;
  display: block;
  padding: 8px 0px;
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid rgba(238, 238, 238, 0.7);
}
.header nav .nav-links > li > ul li a::after {
  position: absolute;
  bottom: -2px;
  transition: all 0.3s;
  content: "";
  height: 2px;
  width: 0%;
  background: var(--primary);
  display: block;
}
.header nav .nav-links > li > ul li a:hover {
  color: var(--primary);
}
.header nav .nav-links > li > ul li a:hover::after {
  width: 100%;
}
.header nav .nav-links > li.active > a {
  background: var(--beige);
  color: var(--primary);
}
.header nav .nav-links > li > a {
  padding: 0px 24px;
  color: var(--text);
  display: block;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.header nav .nav-links > li > a:hover {
  background: var(--beige);
  color: var(--primary);
}
.header .top-tel {
  font-size: 24px;
  color: var(--text);
}
.header .top-tel .top-tel-num b {
  font-size: 22px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--primary);
}
.header .top-tel .top-tel-num i {
  opacity: 0.5;
  font-size: 20px;
  transform: scaleY(-1);
}
.header .top-tel .top-tel-text {
  font-size: 12px;
  text-align: right;
  padding-bottom: 4px;
}
.header .top-tel i {
  color: var(--gray-700);
  margin-right: 4px;
}
.home-banner {
  width: 100%;
  background: linear-gradient(-135deg, var(--primary) 0%, var(--accent) 100%);
  height: 620px;
  background-image: url(../images/banner.jpg);
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.title {
  display: flex;
  flex-direction: column;
  padding: 52px 0px;
  justify-content: flex-start;
  gap: 8px;
}
.title b {
  font-size: 32px;
  font-weight: bold;
}
.title span {
  font-size: 40px;
  text-transform: uppercase;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: rgba(82, 82, 82, 0.1);
  text-shadow: 0 1px 0 #fff;
}
.title .des {
  max-width: 500px;
  font-size: 12px;
  color: rgba(82, 82, 82, 0.81);
  margin-bottom: 24px;
  text-transform: capitalize;
}
.mt20 {
  margin-top: 20px;
}
.about-num {
  padding: 32px 48px;
  border-radius: 8px;
  background-image: linear-gradient(180deg, #e9f3ff, var(--sky-blue));
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
.about-num .about-num-item {
  flex-direction: column;
  display: flex;
  align-items: baseline;
}
.about-num > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-num > div .num {
  color: var(--primary);
  font-size: 36px;
  font-family: Arial, Helvetica, sans-serif;
}
.about-num > div sup {
  color: var(--primary);
  font-family: impact;
  font-size: 24px;
  padding-left: 4px;
}
.about-num b {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.about-num b span {
  font-size: 32px;
  font-weight: 700;
}
.about-num.nobg {
  border: 1px solid #eee;
  background: none;
}
.about-content {
  gap: 20px;
  display: flex;
  align-items: stretch;
  padding-bottom: 80px;
}
.about-content .about-content-left {
  width: 50%;
  padding: 32px 20px 20px 20px;
  background-color: var(--white);
  border-radius: 8px;
  line-height: 1.6;
  background-image: linear-gradient(180deg, var(--yellow), var(--bitter-lemon));
}
.about-content .about-content-mid {
  opacity: 0.8;
  width: 15%;
  border-radius: 8px;
  background: url("../images/about.jpg") center center no-repeat var(--gray);
  background-size: cover;
}
.about-content .about-content-right {
  width: 35%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.about-content .about-content-right .about-other {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}
.about-content .about-content-right .about-other a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  height: 120px;
  position: relative;
}
.about-content .about-content-right .about-other a span {
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  font-size: 14px;
  padding: 2px 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 4px 0px 0px 0px;
}
.about-content .about-content-right .about-other a.culture {
  background: url("../images/culture.jpg") center center no-repeat var(--gray);
  background-size: cover;
}
.about-content .about-content-right .about-other a.honor {
  background: url("../images/honor.jpg") center center no-repeat var(--gray);
  background-size: cover;
}
.about-content .about-content-right .about-other a.contact {
  background: url("../images/contact.jpg") center center no-repeat var(--gray);
  background-size: cover;
}
.home-server {
  width: 100%;
  background: var(--gray);
}
.ny-server {
  padding-bottom: 40px;
}
.pro-list {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
  padding-bottom: 48px;
}
.pro-list.ny {
  padding-bottom: 0;
  padding-top: 60px;
}
.pro-list .pro-item {
  width: 32%;
  margin-bottom: 3%;
  box-sizing: border-box;
  transition: all 0.3s;
}
.pro-list .pro-item .pro-item-img {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}
.pro-list .pro-item .pro-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s;
}
.pro-list .pro-item .pro-item-text b {
  display: block;
  padding: 16px 0px;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pro-list .pro-item .pro-item-text p {
  min-height: 40px;
  font-size: 14px;
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
  color: var(--gray-700);
  opacity: 0.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.pro-list .pro-item .pro-item-text a {
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  border-radius: 100px;
  border: 1px solid #eee;
  padding: 8px 12px 8px 20px;
  background: #fff;
}
.pro-list .pro-item .pro-item-text a i {
  margin-left: 6px;
}
.pro-list .pro-item:hover .pro-item-img img {
  transform: scale(1.1);
}
.pro-list .pro-item:hover .pro-item-text b {
  color: var(--primary);
}
.pro-list .pro-item:hover .pro-item-text p {
  opacity: 1;
}
.pro-list .pro-item:hover .pro-item-text a {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.pro-list .pro-item:hover .pro-item-text a i {
  color: #fff;
}
.home-search {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: linear-gradient(to right, rgba(43, 147, 153, 0.1), rgba(74, 111, 165, 0.1));
  padding: 40px 0px;
  gap: 16px;
}
.home-search.ny {
  padding-bottom: 100px;
  border-radius: 8px;
  background: var(--beige);
}
.home-search .home-search-content {
  position: relative;
  max-width: 800px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  min-width: 600px;
}
.home-search .home-search-content .icon {
  font-size: 240px;
  position: absolute;
  z-index: 0;
  color: #98bac1;
  opacity: 0.05;
  right: -150px;
}
.home-search .home-search-content > b {
  font-size: 32px;
  text-align: center;
  color: var(--primary);
}
.home-search .home-search-content .des {
  font-size: 16px;
  text-align: center;
  color: #858383;
  padding: 16px 0px;
}
.home-search .home-search-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
}
.home-search .home-search-input {
  border: 2px solid #006fd4;
  border-radius: 8px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 110;
  gap: 0px;
}
.home-search .home-search-input .btn {
  border-radius: 0px 4px 4px 0px;
  text-align: center;
  min-width: 110px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-search .input-search {
  border: none;
  font-size: 15px;
  padding: 4px 12px;
  height: 44px;
  border-radius: 6px;
  width: 100%;
}
.home-news {
  padding-bottom: 72px;
}
.home-news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 24px;
}
.home-news-list .news-item {
  width: 100%;
  border-radius: 8px;
}
.home-news-list .news-item a {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}
.home-news-list .news-item a time {
  font-size: 14px;
  color: var(--gray-700);
  font-family: Arial, Helvetica, sans-serif;
}
.home-news-list .news-item a b {
  font-size: 18px;
}
.home-news-list .news-item a p {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.home-news-list .news-item a:hover b {
  color: var(--primary);
}
.home-news-list .news-item:hover {
  background: var(--beige);
}
.footer {
  background: linear-gradient(-135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 40px 0px 0px 0px;
}
.footer-down {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-down .footer-down-list {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.footer-down .footer-down-list a {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 4px;
  background: #0569c7;
  color: #fff;
}
.footer-down .footer-down-list a i {
  color: #fff;
}
.footer-down .footer-down-list a:hover {
  background: var(--primary);
}
.footer-down .footer-down-text {
  display: flex;
  color: #fff;
  gap: 0px;
  flex-direction: column;
}
.footer-down .footer-down-text b {
  font-size: 18px;
}
.footer-down .footer-down-text span {
  font-size: 14px;
  opacity: 0.5;
  text-transform: uppercase;
}
.footer-content {
  padding-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
}
.footer-content .footer-content-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 24px;
  color: #fff;
}
.footer-content .footer-content-logo img {
  max-height: 55px;
  margin-right: 16px;
}
.footer-content .footer-content-logo > div p {
  padding-top: 6px;
  font-size: 12px;
  opacity: 0.8;
}
.footer-content .footer-nav {
  flex: 1;
  min-width: 500px;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
  font-size: 14px;
}
.footer-content .footer-nav dl {
  width: 100%;
}
.footer-content .footer-nav dl dt {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  padding-bottom: 12px;
}
.footer-content .footer-nav dl dt span {
  font-size: 12px;
  opacity: 0.2;
}
.footer-content .footer-nav dl dd {
  padding-top: 10px;
}
.footer-content .footer-nav dl dd a {
  font-size: 14px;
  opacity: 0.8;
}
.footer-content .footer-nav dl dd a:hover {
  opacity: 1;
}
.footer-bottom {
  padding: 20px 0px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-icon {
  padding-top: 24px;
  display: flex;
  padding-left: 140px;
  gap: 12px;
}
.footer-icon a i {
  font-size: 36px;
  color: #7a96af;
}
.footer-icon a:hover i {
  color: #fff;
  opacity: 0.5;
}
.page-banner {
  width: 100%;
  background: linear-gradient(-135deg, var(--primary) 0%, var(--accent) 100%);
}
.page-banner .page-banner-content {
  min-width: 1300px;
  margin: 0 auto;
  max-width: 1600px;
  width: 100%;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  min-height: 260px;
}
.page-banner .page-banner-content .ny-title {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}
.page-banner .page-banner-content .ny-title b {
  font-size: 32px;
  font-weight: bold;
  color: #5ea1de;
}
.page-banner .page-banner-content .ny-title .des {
  max-width: 500px;
  font-size: 12px;
  color: #4d93d4;
  margin-bottom: 24px;
  text-transform: capitalize;
}
.page-banner .page-banner-img {
  position: absolute;
  right: 20px;
  bottom: 60px;
  z-index: 100;
}
.page-banner .page-banner-img .banner-about-img {
  display: grid;
  grid-template-columns: repeat(3, 200px);
  gap: 12px;
  justify-content: end;
  width: auto;
}
.page-banner .page-banner-img .banner-about-img .fan-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
  border-radius: 4px;
}
.page-banner .page-banner-img .banner-about-img .fan-item img {
  object-fit: cover;
  max-height: 120px;
}
.content-box {
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  padding: 60px 20px 80px 20px;
  gap: 3%;
}
.content-box .content-left {
  width: 260px;
}
.content-box .content-right {
  flex: 1;
}
.contents {
  line-height: 2;
}
.breadcrumb {
  border-radius: 0px 0px 4px 4px;
  font-size: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  height: 44px;
  border: 1px solid #f2f3e0;
  padding: 0px 16px;
  color: #888;
  border-top: none;
  background: var(--beige);
}
.breadcrumb i {
  font-size: 14px;
  opacity: 0.5;
}
.breadcrumb span {
  color: var(--primary);
}
.breadcrumb a {
  display: flex;
  align-items: center;
}
.breadcrumb a i {
  opacity: 0.8;
  font-size: 18px;
}
.breadcrumb a:hover {
  color: var(--primary);
}
.left-menu {
  width: 100%;
}
.left-menu ul li {
  padding-bottom: 8px;
}
.left-menu ul li a {
  border: 1px solid #eee;
  font-size: 14px;
  display: block;
  padding: 12px 16px;
  border-radius: 4px;
  transition: all 0.3s;
}
.left-menu ul li a:hover {
  border-color: #2c81cf;
  background: #2c81cf;
  color: var(--white);
}
.left-menu ul li.active a {
  border-color: #2c81cf;
  background: #2c81cf;
  color: var(--white);
}
.page {
  display: flex;
  padding: 24px 0px;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.page a,
.page span {
  min-width: 40px;
  height: 40px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  border-radius: 4px;
}
.page a i,
.page span i {
  font-size: 32px;
  color: #999;
}
.page a.active,
.page span.active,
.page a:hover,
.page span:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}
.page a.active i,
.page span.active i,
.page a:hover i,
.page span:hover i {
  color: #fff;
}
.ny-content {
  width: 100%;
  padding: 60px 20px 80px 20px;
}
.news-detail {
  width: 100%;
}
.news-detail .news-detail-header {
  padding-bottom: 24px;
}
.news-detail .news-detail-header h1 {
  padding-bottom: 16px;
}
.news-detail .news-detail-header .news-meta {
  color: #999;
}
.news-detail .news-detail-body {
  line-height: 2;
  padding-bottom: 24px;
}
.news-detail .news-detail-footer {
  padding: 8px;
  border: 1px solid #ededed;
  border-radius: 4px;
}
.news-detail .news-detail-footer .news-detail-nav {
  justify-content: space-between;
  align-items: center;
  display: flex;
  color: #666;
}
.news-detail .news-detail-footer .news-detail-nav a {
  display: flex;
  align-items: center;
}
.news-detail .news-detail-footer .news-detail-nav a i {
  font-size: 28px;
}
.news-detail .news-detail-footer .news-detail-nav a:hover {
  color: var(--primary);
}
.download-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.download-list .download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  background: #fff;
}
.download-list .download-item .download-info {
  max-width: 70%;
}
.download-list .download-item .download-info b {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}
.download-list .download-item .download-info p {
  font-size: 14px;
  color: var(--gray-700);
}
.home-about {
  padding: 60px 0px;
}
.home-about .contact-grid {
  padding: 30px;
  background: var(--beige);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-bottom: 60px;
}
.home-about h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary);
}
.home-about p {
  line-height: 1.8;
  margin-bottom: 8px;
  color: var(--gray-700);
}
.home-about .contact-qrcode {
  width: 140px;
  height: 140px;
  background: var(--gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
}
.home-about .contact-qrcode img {
  width: 100%;
  display: block;
}
.search-header {
  box-sizing: border-box;
  padding: 0px 32px;
  height: 44px;
  display: flex;
  align-items: center;
}
.search-header a {
  display: flex;
  align-items: center;
  background: var(--primary);
  border-radius: 4px;
  padding: 4px 12px 4px 6px;
  color: #fff;
}
.search-header a i {
  font-size: 24px;
}
.search-res {
  margin: 0px auto;
  background: url(../images/certificate.png) center top no-repeat;
  background-size: contain;
  width: 1200px;
  height: 1697px;
}
.search-res-logo {
  padding-top: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-res-logo img {
  max-height: 100px;
}
.search-res-logo > div {
  padding-left: 16px;
}
.search-res-logo > div b {
  font-size: 50px;
}
.search-res-info {
  margin: 0px auto;
  width: 80%;
  max-width: 1000px;
  max-height: 1100px;
  overflow: auto;
}
.search-res-info ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.search-res-info ul li {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.search-res-info ul li b {
  font-weight: normal;
  color: #222;
  min-width: 240px;
  display: inline-block;
}
.search-res-info ul li span {
  flex: 1;
}
.search-res-title {
  width: 100%;
  max-width: 1000px;
  margin: 0px auto;
  padding: 60px 0px;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
}
.main-banner {
  position: relative;
  max-width: 1600px;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  height: 620px;
}
.main-banner .main-banner-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 10;
}
.main-banner .main-banner-left h1 {
  font-size: 42px;
}
.main-banner .main-banner-left h1 span {
  color: #00bfd4;
}
.main-banner .main-banner-left h2 {
  font-size: 30px;
}
.main-banner .main-banner-left h3 {
  font-weight: normal;
  font-size: 18px;
}
.main-banner .main-banner-left .btns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.main-banner .main-banner-left .btns a {
  border-radius: 100px;
  font-size: 14px;
  color: #333;
  background: #fff;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 16px 0px 24px;
  transition: all 0.2s;
}
.main-banner .main-banner-left .btns a i {
  font-size: 32px;
}
.main-banner .main-banner-left .btns a:hover {
  color: #fff;
  background: #254f8d;
}
.banner-right {
  position: absolute;
  right: 0px;
  top: 0px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  max-width: 500px;
}
.banner-right img {
  height: 200px;
}
.banner-right .row1 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.banner-right .row1 > div {
  min-width: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
}
.banner-right .row1 > div span {
  font-size: 80px;
  color: #fff;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.banner-right .row1 > div.bg1 {
  background: var(--beige);
}
.banner-right .row1 > div.bg1 span {
  color: #587aac;
}
.banner-right .row1 > div.bg2 {
  background: #5bb5bb;
}
.banner-right .row1 > div.bg2 span {
  color: #fff;
}
.banner-right .row1 > div.bg3 {
  background: #fafbff;
}
.banner-right .row1 > div.bg3 img {
  max-height: 80px;
}
.banner-right .row1 > div.bg4 {
  background: #4a6fa5;
}
.banner-right .row1 > div.bg4 span {
  color: #7ba0d5;
}
