@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-weight: 300;
}

/* scroll bar */
::-webkit-scrollbar {
  width: 0;
}

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

img {
  max-width: 100%;
}

/* slide */
.swiper-slide {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide .slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.9);
}

.swiper-slide .s-fade-txt {
  width: 1100px;
  display: flex;
}

.swiper-slide .s-fade-txt .info {
  padding-right: 50px;
  color: #fff;
  font-size: 22px;
}

.swiper-slide .s-fade-txt h2 {
  margin-bottom: 0.5em;
  font-size: 58px;
}

.swiper-slide .s-fade-txt .product-img {
  width: 650px;
  border-radius: 50%;
  border: 15px solid #fff;
}

.slide-wrap img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
}

.slide-class {
  margin: 0 auto;
}

.animation-slide {
  position: relative;
}

.swiper-button-prev:after,
.swiper-container-rtl,
.swiper-button-next:after {
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
}

.mopen {
  background: rgba(255, 255, 255, 0);
  position: relative;
  z-index: 1000;
  flex-direction: column;
  cursor: pointer;
  height: 44px;
  display: none;
}
.mopen span {
  transition: all 0.3s;
  width: 50px;
  height: 2px;
  display: block;
  background: #ccc;
  transform-origin: center;
  position: relative;
}
.mopen.is-open {
  position: fixed;
  top: 20px;
  right: 20px;
}
.mopen.is-open .middle {
  background: transparent;
}
.mopen.is-open .top {
  transform: rotate(-45deg) translateY(0);
  top: 15px;
}
.mopen.is-open .bottom {
  transform: rotate(45deg) translateY(0);
  bottom: 15px;
}

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

/*page-header*/
.page-header {
  width: 100%;
  z-index: 999;
  transition: all 0.3s;
  position: fixed;
  left: 0;
  top: 0;
  padding: 20px;
  box-sizing: border-box;
}
.page-header.active {
  padding: 0;
}
.page-header.active nav {
  border-radius: 0;
}
.page-header .logo a {
  display: flex;
}
.page-header .logo img {
  height: 38px;
}
.page-header .navbar-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-header nav {
  background: #fff;
  box-shadow: 0 0 15px -10px #000;
  border-radius: 50px;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
}
.page-header a {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.page-header .menu {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.page-header .menu a {
  padding: 5px 30px;
}
.page-header .menu li {
  list-style: none;
}
.page-header .switch {
  border-radius: 40px;
  overflow: hidden;
  display: flex;
}
.page-header .switch a {
  background: #f6f6f6;
  padding: 3px 10px;
}
.page-header .switch .active {
  color: #fff;
  background: #0688be;
}

/* menu bg */
#overlay {
  visibility: hidden;
  display: flex;
  transition: 0.3s linear;
  position: fixed;
  z-index: 900;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: 0;
}
#overlay.open {
  visibility: visible;
  opacity: 0.95;
}
#overlay li {
  list-style: none;
}
#overlay a {
  line-height: 3;
  color: #fff;
  display: block;
  text-align: center;
}
#overlay .flex {
  flex-direction: column;
}

body.scroll-lock {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

.scroll-top {
  background-color: #0688be;
  text-align: center;
  color: #fff;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3rem;
  height: 3rem;
  z-index: 1000;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  cursor: pointer;
  border-radius: 4px;
  opacity: 0;
  transition: all 0.4s;
}
.scroll-top.active {
  opacity: 1;
}
.scroll-top:hover {
  opacity: 0.8;
}

/* form */
input[type=text],
textarea {
  width: 100%;
  max-width: 72em;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

input,
textarea {
  -webkit-appearance: none;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
}

span.begin-task-list + ul {
  padding-left: 0;
  list-style: none;
}

/* 分页按钮样式
---------------------------------------------------*/
.pagination {
  font-size: 14px;
  padding: 30px;
  text-align: center;
}

.pagination a,
.pagination span {
  display: inline-block;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  margin: 0 2px;
  transition: all 0.3s;
}

.pagination a:hover,
.pagination span {
  background-color: #0688be;
  color: #fff;
}

.pagination a {
  background: #f8f8f8;
  color: #454545;
}

/* toc */
#TableOfContents > ul {
  border: 1px solid #999;
  border-radius: 3px;
  padding: 0.5em 1em;
  line-height: 2;
}

#TableOfContents > ul:before {
  content: "Table of Contents";
  text-align: center;
  font-size: 1.5em;
  font-weight: 400;
}

#TableOfContents ul {
  list-style-type: none;
}

#TableOfContents li {
  padding-top: 0;
}

#TableOfContents li > ul {
  padding-left: 1em;
  width: 100%;
}

#TableOfContents a {
  display: block;
  border-bottom: dashed 1px lightgray;
}

/* hljs */
.hljs-ln-code {
  padding-left: 0.8em !important;
}

/* share */
.share-button {
  padding-top: 10px;
  padding-bottom: 8px;
  transition: all 0.3s;
}

.share-button:hover {
  opacity: 0.7;
}

.twitter {
  background-color: #1da1f2;
}

.line {
  background-color: #00c300;
}

.facebook {
  background-color: #3b5998;
}

.pocket {
  background-color: #ef4056;
}

.hatena {
  background-color: #00a4de;
}

.url {
  background-color: #222;
}

.d-flex {
  display: flex;
}

.btn {
  background: rgba(20, 183, 234, 0.65);
  padding: 15px 30px;
  display: inline-block;
  border-radius: 10px;
}

.echo-log {
  border: 1px solid #eee;
  padding: 50px;
  margin-bottom: 20px;
  box-sizing: border-box;
  min-height: calc(100vh - 550px);
}

.echo-log .title {
  font-size: 28px;
}

.echo-log .markdown {
  line-height: 2;
}

.echo-log .markdown p {
  margin: 1em 0;
}

.bread {
  margin-bottom: 15px;
}

.bread li {
  display: inline-block;
}

.bread li:after {
  display: inline-block;
  content: ">";
  margin-left: 5px;
}

.bread li a {
  font-size: 1.1em;
}

.bread li:last-of-type:after {
  display: none;
}

.bread li.no-arrow:after {
  content: "";
}

.flex-cards {
  display: flex;
  text-align: center;
  gap: 15px;
  padding: 0 !important;
  margin: 1em 0;
}

.flex-cards li {
  flex: 1;
  padding: 30px 15px;
  box-sizing: border-box;
  border-radius: 6px;
  transition: all 0.3s;
  list-style: none;
  background: #fff;
  box-shadow: 0 10px 30px -20px rgba(0, 36, 100, 0.3);
}

.flex-cards li:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
}

.flex-cards li .icon .iconfont {
  font-size: 42px;
}

.flex-cards li .icon img {
  margin: 0 auto;
  height: 50px;
  filter: grayscale(1);
  opacity: 0.3;
  transition: opacity 0.2s;
}

.flex-cards li:hover img {
  filter: brightness(1);
  opacity: 1;
}

.flex-cards li h4 {
  font-size: 1.5em;
  font-family: cursive, serif, monospace;
  line-height: 3;
  margin-bottom: 0;
}

.flex-cards li p {
  font-size: 14px;
  line-height: 1.8;
}

.contact-head {
  background-size: cover;
  background: #111214 url("../img/contact.jpg") -232px no-repeat;
  min-height: 500px;
  position: relative;
}

.contact-head .markdown {
  position: absolute;
  top: 236px;
  left: 66px;
  transform: rotate(358deg);
  font-weight: bold;
  background: url("../img/logo-icon.jpg") no-repeat 240px 40px;
  background-size: 50px;
  padding: 30px 0;
}

.contact-head p {
  font-weight: normal;
  color: #565656;
}

.contact-head h2 {
  position: absolute;
  right: 150px;
  top: 200px;
  color: #fff;
  font-size: 3em;
}

.section-title {
  font-size: 2em;
  font-weight: bold;
  line-height: 120px;
  text-align: center;
}

.section-title span {
  display: inline-block;
  position: relative;
}

.section-title span:after,
.section-title span:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -45px;
  transform: translateY(-5px);
  width: 30px;
  height: 5px;
  background: #04be0d;
  border-radius: 5px;
  opacity: 0.5;
}

.section-title span:after {
  right: -45px;
  left: initial;
}

.container {
  width: 1200px;
  margin: 0 auto;
  max-width: 100%;
}

.page-section {
  padding: 200px 0;
}

.page-img {
  max-height: 430px;
  min-height: 300px;
  overflow: hidden;
  position: relative;
  background: #0688be;
  display: flex;
}
.page-img h2 {
  position: absolute;
  top: 50%;
  left: 10%;
  font-size: 50px;
  color: #fff;
  z-index: 1;
}
.page-img img {
  width: 100%;
  height: auto;
  min-height: 300px;
  opacity: 0.8;
}

.product-banner {
  background-size: cover;
  text-align: center;
  color: #fff;
  font-size: 22px;
  padding: 250px 0 200px;
}
.product-banner h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.bg-blur {
  backdrop-filter: blur(16px);
}

.company-desc .logo {
  height: 40px;
  filter: brightness(0.1);
  display: block;
  margin: 50px auto 30px;
  opacity: 0.1;
}

.company-desc p {
  text-indent: 2em;
  margin-bottom: 1em;
  line-height: 2;
  font-size: 20px;
}

.company-cult {
  background: #f9f9f9;
}

.news,
.product-list {
  display: flex;
}
.news .news-item,
.news .product-item,
.product-list .news-item,
.product-list .product-item {
  list-style: none;
  width: 33.33%;
  padding: 5px;
}
.news .news-item a,
.news .product-item a,
.product-list .news-item a,
.product-list .product-item a {
  display: block;
  height: 100%;
}
.news .news-item .card,
.news .product-item .card,
.product-list .news-item .card,
.product-list .product-item .card {
  height: 100%;
}

.card {
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  border-radius: 4px;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  transform: translateY(-5px);
}
.card .card-image {
  display: flex;
  overflow: hidden;
}
.card .card-image img {
  width: 100%;
  height: 270px;
}
.card .card-body {
  background: #f9f9f9;
  padding: 15px;
  font-size: 14px;
  flex: 1;
}
.card h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
}
.card p {
  margin-bottom: 10px;
}

.news-card {
  padding-left: 80px;
  position: relative;
  border-bottom: 1px solid #eee;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: all 0.3s;
}
.news-card:hover {
  background: #f8f8f8;
}
.news-card .date {
  position: absolute;
  left: 0;
  top: 15px;
  text-align: center;
  width: 80px;
  line-height: 1;
  color: #676767;
}
.news-card .day {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 10px;
}
.news-card .info {
  padding-left: 15px;
  padding-right: 15px;
  border-left: 1px solid #eee;
  height: 60px;
  color: #676767;
}
.news-card h3 {
  margin-bottom: 10px;
  color: #232323;
}
.news-card h3, .news-card p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list-lite {
  background: #fff;
  height: 100%;
  padding: 15px;
}

.news-section {
  background: #f9f9f9;
}
.news-section .card .card-body {
  background: #fff;
}

.page-footer {
  padding: 80px 0;
  background: #373c40;
  color: #fff;
}
.page-footer .footer-section {
  display: flex;
}
.page-footer .footer-item {
  padding: 0 15px;
  flex: 1;
}
.page-footer p {
  color: #C9C9C9;
  line-height: 1.8;
}
.page-footer h3 {
  margin-bottom: 15px;
}
.page-footer .copyright {
  padding-top: 15px;
}

.news-list .news-list-item {
  border-bottom: 1px solid #eee;
  display: flex;
  padding: 15px 0;
}
.news-list h3 {
  margin-bottom: 15px;
}
.news-list p {
  margin-bottom: 10px;
}
.news-list .info {
  flex: 1;
  padding: 0 15px;
}
.news-list .cover {
  width: 180px;
  max-width: 25%;
}
.news-list .cover img {
  width: 100%;
}

.product-desc {
  font-size: 16px;
  line-height: 2;
  text-indent: 2em;
  letter-spacing: 2px;
}
.product-desc .fancybox {
  text-indent: 0;
}
.product-desc .title {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  text-indent: 0;
}
.product-desc .markdown {
  width: 60%;
  padding-right: 100px;
}

.feature {
  background: #f9f9f9;
}

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