@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
p {
  margin-bottom: 0;
}
a {
  color: #333;
}
a:hover {
  text-decoration: none;
  color: #055ead;
  cursor: pointer;
}
:focus {
  outline: 0 !important;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
.container {
  max-width: 1300px;
}
/* 减少间距  */
.cut-spac > [class^="col-"] {
  padding: 5px;
}
.cut-pad {
  padding-left: 15px;
  padding-right: 15px;
}
/* 导航 */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* 导航链接 */
.navbar-expand-lg .navbar-nav .nav-link {
  position: relative;
  color: #333;
  font-size: 17px;
  font-weight: 500;
  padding: 15px 25px;
}
/* 下划线动画 */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: #055ead;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #055ead;
}

/* 当前栏目 */
.navbar-nav .nav-link.active::after {
  width: 70%;
}
.navbar-nav .nav-link.active {
  color: #055ead !important;
}
/* 移动端当前栏目 */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link::after {
    display: none;
  }
  .navbar-nav .nav-link.active {
    background: #f5f5f7;
    color: #055ead !important;
    border-radius: 6px;
  }
}
.page-get-button a {
  border-radius: 50px;
  background: linear-gradient(135deg, #2d72d2, #0cb9ea);
  text-align: center;
  padding: 8px 20px !important;
  transition: all 0.3s;
  color: #fff !important;
  margin-top: 5px;
  margin-left: 15px;
}
.page-get-button a:hover {
  transform: translateY(-2px);
  color: #fff !important;
}
/* 内容区 */
.section {
  padding: 80px 10px;
  border-bottom: 1px solid #eee;
}
.page-title {
  width: 100%;
  margin-bottom: 50px;
}
.page-title h1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}
.page-title h2 {
  font-size: 35px;
  font-weight: 700;
  text-align: center;
}
.h2-color {
  background: linear-gradient(135deg, #055ead, #36bcff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-title p {
  width: 100%;
  text-align: center;
}
.h1-p {
  padding: 10px 80px;
  font-size: 18px;
  color: #4e4e4e;
  line-height: 30px;
}
.h1-color {
  display: inline-block;
  width: 100%;
  color: #055ead;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.about-text {
  width: 100%;
}
.about-text p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 25px;
  color: #4e4e4e;
}
.about-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}
.about-img {
  width: 100%;
}
.about-img img {
  border-radius: 10px;
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.about-data {
  width: 100%;
  margin-top: 30px;
}
.about-data ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.about-data ul li {
  width: 50%;
  padding: 25px;
  background-color: oklch(98.5% 0.002 247.839);
  border: 1px solid #eee;
  text-align: center;
}

.about-data ul li span {
  font-size: 25px;
  color: #055ead;
  font-weight: 600;
}
.about-data ul li p {
  font-size: 15px;
  color: #4e4e4e;
}
.page-product {
  width: 100%;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 10px;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  margin-bottom: 10px;
}
.product-img {
  width: 100%;
}
.product-img img {
  width: 100%;
  transition: transform 0.3s ease;
}
.product-img img:hover {
  transform: translateY(-10px);
}
.product-text {
  width: 100%;
}
.product-text h3 a {
  display: block;
  font-size: 17px;
  font-weight: 600;
}
.product-text p {
  font-size: 14px;
  color: #4e4e4e;
}
.product-info {
  width: 100%;
  margin-top: 15px;
}
.info-1 {
  display: block;
  width: 40%;
  float: left;
  margin-top: 10px;
  padding: 8px 0;
  text-align: center;
  background: linear-gradient(135deg, #2d72d2, #0cb9ea);
  color: #fff;
  font-size: 15px;
  transition: transform 0.3s ease;
}
.info-1:hover,
.info-2:hover {
  color: #f9f9f9;
  transform: translateY(-4px);
}
.info-2 {
  display: block;
  width: 100%;
  float: left;
  margin-top: 10px;
  padding: 8px 0;
  text-align: center;
  background: #055ead;
  color: #fff;
  font-size: 15px;
  transition: transform 0.3s ease;
}
/* banner */
.carousel,
.carousel-inner,
.carousel-item {
  height: 60vh;
}

/* 普通图片 */
.carousel-item img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  filter: brightness(0.75);
}
.carousel-control-next, .carousel-control-prev{
  top: 20% !important;
}
/* 文字层 */
.carousel-caption {
  bottom: 30%;
  left: 20%;
  right: auto;
  text-align: left;
  max-width: 600px;
  z-index: 2;
}

.carousel-caption h2 {
  font-size: 48px;
  font-weight: 700;
}

.carousel-caption p {
  font-size: 18px;
  opacity: 0.9;
}
.why-info {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  box-shadow:
    rgba(0, 0, 0, 0.12) 0px 1px 3px,
    rgba(0, 0, 0, 0.24) 0px 1px 2px;
  margin-bottom: 25px;
  background-color: #fff;
}
.why-info h3 {
  font-size: 20px;
}
.why-info p {
  font-size: 15px;
  color: #4e4e4e;
  padding-top: 10px;
  padding-bottom: 10px;
}
.why-info ul {
  width: 100%;
  padding-left: 20px;
  padding-top: 20px;
}
.why-info ul li {
  width: 100%;
  position: relative;
  padding-bottom: 10px;
  font-size: 15px;
  color: #4e4e4e;
  padding-left: 5px;
}
.why-info ul li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  left: -20px;
  color: #055ead;
}
.info-ul li::before {
  content: "\f061" !important;
}
.exh-info {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  margin-bottom: 20px;
}
.exh-info img {
  margin-bottom: 15px;
  width: 100%;
}
.con-info {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 25px;
  background-color: #fff;
  margin-bottom: 25px;
}
.con-info h3 {
  font-size: 25px;
  margin-bottom: 25px;
}
.con-ul-1 {
  width: 100%;
}
.con-ul-1 li {
  display: flex;
  margin-bottom: 25px;
}
.con-ul-1 i {
  font-size: 20px;
  background-color: #055ead;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 15px;
}
.con-text {
  padding-left: 10px;
}
.con-text a {
  display: block;
  width: 100%;
}
.con-ul-2 {
  width: 100%;
}
.con-ul-2 span {
  display: block;
  width: 100%;
  float: left;
  margin-bottom: 25px;
}
.con-ul-2 li {
  display: block;
  float: left;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
  text-align: center;
  transition: filter 0.3s; /* 平滑过渡效果 */
}
.con-ul-2 li:hover {
  filter: brightness(90%);
}
.con-ul-2 li i {
  font-size: 18px;
  line-height: 40px;
  color: #fff;
}
.facebookcolor {
  background-color: #155dfc;
}
.linkcolor {
  background-color: #1447e6;
}
.youtubecolor {
  background-color: #e60a0a;
}
.whatappcolor {
  background-color: #07b848;
}
.title_bottom {
  display: block;
  width: 200px;
  height: 2px;
  background-color: #055ead;
  margin-top: 15px;
}
.inq {
  width: 100%;
  margin-bottom: 25px;
}
/* footer */
footer {
  padding: 10px 0;
  background-color: #333;
}
.foot-info {
  width: 100%;
}
.foot-info p {
  color: #d1d1d1;
  font-size: 14px;
  text-align: center;
  line-height: 25px;
}

.modal-open .modal {
  background-color: rgb(0 0 0 / 50%);
}
