

@Default Styles

Table of Content:
01/ variables
02/ predefine
03/ button
04/ header
05/ slider
06/ banner
07/ team
08/ portfolio
09/ blog
10/ products
11/ testimonial
12/ features
13/ video
14/ pricing
15/ contact 
16/ footer 
=====================================================================*/
/*=== fonts ====*/

@font-face {
  font-family: 'DroidSerif';
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/DroidSerif-Italic.ttf") format("truetype");
}

:root {
	--thm-font: 'Poppins', sans-serif;
	--thm-base: #6E6AFF;  /* 柔和高科技紫 */
--thm-color: #0F172A; /* 深太空蓝（文字/背景色） */
	--thm-color2: #fbac1c;
	--thm-black: #252c4b;
	--thm-white: #ffffff;
	--thm-ase: #afb2bf;
	--thm-gray: #8e8e8e;
	--thm-f6: #F1F8FF;
	--thm-fb: #f6f6f6;
	--thm-p: #737789;
	--thm-btn1: #737789;
	--thm-btn2: #9800d7;
	
    /* Primary Colors & variants */
    --primary-color    : #6495ed;
    --primary-color-5  : #90b4f4;
    --primary-color-10 : #ff0073;
    --primary-color-100: #6494edbf;
    --primary-color-200: #6494ed40;
    --primary-color-300: #6494ed1a;
    --primary-color-400: #3E58A0;
    --primary-color-500: #4B6DC1;

    /* Secondary Colors & variants */
    --secondary-color    : #090e21;
    --secondary-color-100: #778899;
    --secondary-color-200: #090e2199;

    /* Gray Colors & variants */
    --gray-100: #dadada;
    --gray-200: #ffffffbf;
    --gray-300: #8d97a9;
    --gray-400: #939393;

    /* Basic Colors */
    --white: #ffffff;
    --black: #000000;


    /*---- Global Font Sizes ----*/

    /* Font Sizes for Desktop */
    --primary-desktop-heading  : 64px;
    --secondary-desktop-heading: 48px;

    /* Font Sizes for Mobo */
    --primary-mobo-heading  : 42px;
    --secondary-mobo-heading: 36px;

    /* Font Sizes for Desktop & Mobo */
    --secondary-heading-desktop-and-mobo-1: 40px;
    --secondary-heading-desktop-and-mobo-2: 24px;
    --secondary-heading-desktop-and-mobo-3: 22px;
    --secondary-heading-desktop-and-mobo-4: 20px;
    --primary-body-font                   : 16px;
    --secondary-body-font                 : 16px;


    /*---- Global Spacing ----*/

    /* Section Spacing */
    --margin-bottom-large  : 64px;
    --margin-bottom-small  : 40px;
    --section-padding-large: 120px;
    --section-padding-small: 46px;


    /*---- Global Transition ----*/

    /* Smooth Transition */
    --smooth-transition: 0.3s ease-in-out;
}
/*===== color =====*/
/*====================================================*/
/*====================================================*/
.p0 {
  padding: 0px;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

/* 正常状态 */
a, .btn, button {
  color: var(--primary-color-400);
  text-decoration: none;
  outline: none;  /* 不去掉outline也可以，下面会覆盖 */
}

/* 鼠标悬停和键盘焦点颜色 */
a:hover, a:focus,
.btn:hover, .btn:focus,
button:hover, button:focus {
  color: var(--primary-color-500); /* 更深或更亮的颜色 */
  text-decoration: none;
  outline: none;
}

a:focus, .btn:focus, button:focus {
  outline: none;
  position: relative;
  z-index: 1;
  border-radius: 50px;
}

a:focus::after, .btn:focus::after, button:focus::after {
  content: "";
  position: absolute;
  top: -6px; bottom: -6px; left: -6px; right: -6px;
  border-radius: 12px;
  background: linear-gradient(
    270deg, 
    rgba(255, 60, 0, 0.4),    /* 淡橙红 */
    rgba(255, 153, 0, 0.3),   /* 淡橙黄 */
    rgba(255, 255, 0, 0.3),   /* 淡黄 */
    rgba(0, 255, 0, 0.2),     /* 淡绿 */
    rgba(0, 0, 255, 0.2),     /* 淡蓝 */
    rgba(138, 43, 226, 0.25), /* 淡紫 */
    rgba(255, 60, 0, 0.4)
  );
  background-size: 1400% 1400%;
  animation: glow 8s ease infinite;
  filter: drop-shadow(0 0 6px rgba(255, 100, 0, 0.3));
  z-index: -1;
}

@keyframes glow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* 全局排版 */
body {
  margin: 0;
  padding: 0;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0px;
  color: #6f7982;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 5px 0;
}

hr {
    border: 0;
    height: 1px;
    background-color: #ccc; /* 设置线的颜色 */
    margin: 10px 0; /* 设置上下的间距 */
}
.row.m0 {
  margin: 0px;
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

section.row, header.row, footer.row {
  margin: 0;
}
/*粒子束*/
 #particles-js {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.sec-pad {
  padding:0px 0px 100px;
}
.section-title.title-w .title {
  color: #000000;
}

.section-title.title-w p {
  color: #fff;
}

.title {
  font: 400 35px/45px "Poppins", sans-serif;
  color: #1e2d3c;
  padding-bottom: 32px;
}

.section-title {
  text-align: center;
  max-width: 770px;
  margin: 0 auto 76px;
}

.section-title p {
  color: #6f7982;
}

.sec-border {
  border-color: #e1e1e1;
  margin: 110px 0px 130px;
}

/*============ End header css ===========*/
.header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 25;
  padding: 0px 45px;
}

.main_menu_area_one .menu_logo {
  display: block;
  line-height: 80px;
  height: auto;
  padding: 0px;
}

.main_menu_area_one .menu_logo img {
  max-width:220px;
  display: inline-block;
}

.main_menu_area_one .menu_logo img + img {
  display: none;
}

/* Header
-------------------------------------------------------------- */

.header-fix {
    position     : fixed !important;
    top          : 8px !important;
    left         : 0;
    background   : rgba(19, 29, 59, 0.95);
    animation    : smoothScroll 1s forwards;
    border-radius: 16px;
    margin       : 0 30px;
    box-shadow   : 0px 5px 5px 0px rgb(22 46 115 / 35%);
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

.header-nav {
    position          : relative;
    top               : 0;
    z-index           : 1000;
    left              : 0;
    right             : 0;
    padding           : 5px 0 !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition   : position 10s;
    -ms-transition    : position 10s;
    -o-transition     : position 10s;
    transition        : all 0.5s ease;
    border-bottom     : 1px solid rgb(255 255 255 / 10%);
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); } /* 放大一点 */
  100% { transform: scale(1); }
}

#navbar ul li a.custom-btn-CTA {
  color           : var(--white) !important;
  padding         : 15px 34px;
  display         : inline-block;
  background-color: var(--primary-color-10);
  font-size       : var(--secondary-body-font);
  font-weight     : 700;
  border-radius   : 100px;
  letter-spacing  : 0.3px;
  text-decoration : none;
  text-transform  : uppercase;
  transition      : var(--smooth-transition);
  animation       : pulse 0.6s infinite ease-in-out; /* 放大缩小动画 */
}


#navbar ul li a.custom-btn-CTA:hover {
    background-color: var(--white);
    color           : var(--primary-color-10) !important;
}

nav {
    position: relative;
}

#navbar {
    padding-top   : 10px;
    padding-bottom: 18px;
    position      : absolute;
    top           : 0px;
    left          : 0px;
    right         : 0px;
    z-index       : 1041;
}

#navbar ul>li>a {
    padding       : 0px;
    font-size     : var(--primary-body-font);
    letter-spacing: 0.5px;
    transition    : var(--smooth-transition);
    font-weight   : 400;
    color: var(--white);
}

#navbar ul li {
    padding    : 10px 18px;
    display    : flex;
    align-items: center;
}

#navbar .navbar-toggler {
    color       : transparent;
    border-color: transparent;
}

#navbar ul>li:nth-last-child(1) {
    padding-right: 0px;
}

#navbar .icon-style-menu {
    color    : var(--primary-color);
    font-size: 32px;
}

#navbar .dropdown-menu {
    padding   : 0px;
    top       : 0px;
    left      : 20px;
    box-shadow: 0px 0px 10px -10px #000000;
}

.navbar-nav .nav-item .dropdown-menu {
    padding   : 0px 10px;
    margin-top: 0px;
    font-size : 14px;
}

.navbar-nav .nav-item .dropdown-menu .dropdown-item {
    padding    : 10px 10px;
    font-weight: 600;
    color      : #070c1f;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.navbar-nav .nav-item .nav-link.active {
    color: var(--primary-color) !important;
}
/* 鼠标悬停变色 */
.navbar-nav .nav-item .nav-link:hover {
    color: var(--white) !important;
}

.dropdown-menu li {
    color        : var(--primary-color);
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}

.dropdown-menu>li:nth-last-child(1) {
    border-bottom: 0px;
}

#navbar .dropdown-menu li a {
    color          : var(--secondary-color) !important;
    text-decoration: none;
}

#navbar .dropdown-menu li a:hover {
    color           : var(--primary-color) !important;
    background-color: transparent !important;
}

.navbar-toggler {
    padding: 0px !important;
}



.nav-bullets {
    position   : fixed;
    right      : 24px;
    top        : 88px;
    bottom     : 0;
    z-index    : 1000;
    display    : flex;
    align-items: center;
}

.nav-bullets>ul {
    background-color: transparent;
}

.nav-bullets>ul>li {
    background   : transparent !important;
    margin-bottom: 24px;
}

.nav-bullets>ul>li:nth-last-child(1) {
    margin-bottom: 0px;
}

.nav-bullets>ul>li>a {
    color        : var(--gray-300);
    border       : 1px solid transparent;
    border-radius: 100px;
    padding      : 0px;
}

.nav-bullets>ul>li>a:hover {
    color : var(--primary-color);
    border: 1px solid var(--primary-color);
}

.nav-bullets>ul>li>a>i {
    font-size      : 10px;
    width          : 16px;
    height         : 16px;
    border-radius  : 50px;
    display        : flex;
    justify-content: center;
    align-items    : center;
}

.tertiary-btn-custom {
    text-decoration : none;
    padding         : 8px 8px;
    margin: 8px;
    border-radius   : 4px;
    background-color: var(--white);
    display         : inline-block;
}
.tertiary-btn-custom h2 {
    color      : var(--secondary-color);
    font-size  : var(--secondary-heading-desktop-and-mobo-4);
    line-height: 1.55;
}

.tertiary-btn-custom h2:hover {
    color           : var(--primary-color);
}
.tertiary-btn-custom p {
    padding         : 5px 5px;
}

.tertiary-btn-custom:hover {
    color           : var(--white);
}
.tertiary-btn-custom-more {
    text-decoration : none;
    padding         : 8px 8px;
    margin: 8px;
    border-radius   : 4px;
    background-color: var(--white);
    border          : 1px solid var(--primary-color);
    display         : inline-block;
}
.tertiary-btn-custom-more:hover {
    color           : var(--white);
    text-decoration : none;
    padding         : 8px 8px;
    margin: 8px;
    border-radius   : 4px;
    background-color: var(--white);
    border          : 1px solid var(--primary-color);
    display         : inline-block;
}
/* Blog
-------------------------------------------------------------- */

.blog-bg .content-top h2 {
    font-size    : var(--secondary-desktop-heading);
    color        : var(--secondary-color);
    font-weight  : 700;
    margin-bottom: var(--margin-bottom-large);
}

.blog-bg .content-top h2 span::after {
    right: 41%;
}

.post-date {
    background-color: var(--primary-color);
    color           : var(--white);
    font-weight     : 400;
    padding         : 4px 14px;
    position        : absolute;
    top             : 10px;
    left            : 20px;
    border-radius   : 4px;
    font-size       : var(--secondary-body-font);
    z-index         : 5;
}

.blog-main .blog-inner {
     width: 100%;
    max-width: 600px; /* 你可以设个最大宽度 */
    max-height: 600px;
    margin: 0 auto;   /* 居中 */
    border-radius   : 8px;
    border          : 1px solid var(--primary-color-300);
    padding         : -50px 12px 12px 12px;
    margin-bottom: 20px;
    transition      : var(--smooth-transition);
    position        : relative;
    background-color: var(--primary-color-300);
}

.blog-main .blog-inner:hover {
    box-shadow: 0px 0px 30px -15px var(--primary-color);
    margin-top: -8px;
}

.blog-main .blog-inner:hover img {
    max-width    : 100%;
    box-shadow: 0px 5px 24px -15px rgba(4, 4, 4, 0.54);
    transform : rotate(1deg);
}

.blog-main .blog-inner img {
    max-width: 100%;    /* 不超过父容器宽 */
    width: 100%;        /* 宽度随容器缩放 */
    height: auto;       /* 高度自适应保持比例 */
    border-radius: 8px;
    transition: var(--smooth-transition);
}

.blog-main .blog-inner .post-info {
    margin-top: 14px;
}

.blog-main .blog-inner .post-info>span:nth-last-child(1) {
    padding-left: 24px;
}

.blog-main .blog-inner .post-info span {
    color: var(--gray-300);
}

.blog-main .blog-inner .post-info span i {
    margin-right: 4px;
    color       : var(--primary-color);
}


.blog-main .blog-inner a:hover {
    background-color: var(--primary-color);
}

.blog-main .blog-inner a i {
    margin-left: 4px;
}

.blog-main .blog-inner p {
   padding: 6px 10px;
}
/* Blog Grid
-------------------------------------------------------------- */

.header-top-bg {
    padding            : 160px 0 50px 0;
    display            : flex;
    align-items        : center;
  background: linear-gradient(90deg,var(--thm-color),var(--thm-base));
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% 50%;
}

.header-top-bg .home-content h1 {
    margin     : 0px 0 16px 0px;
    font-size  : var(--secondary-heading-desktop-and-mobo-1);
    color      : #ffffff;
    font-weight: 700;
}
.header-top-bg .home-content p {
    margin     : 0px 0 16px 0px;
    color      : #ffffff;
}

.header-top-bg .home-content .breadcrumb-style {
    background-color: transparent;
    margin          : 0;
    padding-bottom  : 0px;
}

.header-top-bg .home-content .breadcrumb-style .active {
    color: var(--primary-color);
}

.header-top-bg .home-content .breadcrumb-style .breadcrumb-item a {
    color          : #e6e6e6;
    text-decoration: none;
}

/* Media Queries */

@media (max-width: 580px) {
    .home-btns .custom-btn-primary:nth-last-child(1) {
        margin-top : 24px;
        margin-left: 0px;
    }

    .post-share-option {
        display: block;
    }

    .post-share-option h3 {
        margin-bottom: 8px;
    }
}
.navbar .navbar-toggler-icon i{
      font-size: 32px;   /* 之前是 32px，可按需调整 */
  }

    section {
        padding-top: var(--section-padding-small);
    }

 

@media (max-width: 776px) {

    /* --------Navbar-------- */
    .header-nav {
        padding: 12px 12px !important;
    }

    .header-fix {
        margin: 10px 12px;
    }

    .navbar-nav {
        background-color: var(--white);
    }
.navbar .navbar-toggler-icon i{
      font-size: 32px;   /* 之前是 32px，可按需调整 */
  }
    #navbar ul {
        margin-top   : 5px;
        border-radius: 8px;
        box-shadow   : 0px 20px 32px rgb(0 0 0 / 50%);
    }

    #navbar ul:first-child{
        height: 360px;
        overflow-y: scroll;
    }

    #navbar ul li {
        padding      : 10px;
        border-bottom: 1px solid rgba(30, 30, 30, 0.1);
        margin       : 0px;
        display      : block;
    }

    #navbar ul li:first-child {
        border-radius: 8px 8px 0px 0px;
    }

    #navbar ul>li:nth-last-child(1) {
        border       : none;
        border-radius: 0px 0px 8px 8px;
    }

    #navbar ul li a.custom-btn-CTA:hover {
        background-color: var(--primary-color);
        color           : var(--white) !important;
    }

    /* #navbar .navbar-nav .nav-item:nth-last-child(1){
        background-color: var(--white);
    } */

    #navbar .navbar-nav .nav-item:hover{
        background-color: var(--primary-color);
    }

    #navbar .navbar-nav .nav-item:hover .custom-btn-CTA{
        background-color: rgba(0, 0, 0, 0.25);
    }

    #navbar .navbar-nav .nav-item .custom-btn-CTA:hover {
        background-color: rgba(0, 0, 0, 0.35);
    }

    #navbar .navbar-nav .nav-item:hover .nav-link{
        color: var(--white) !important;
    }

    /* #navbar .navbar-nav .nav-item .nav-link:hover{
        color: var(--primary-color);
    } */

    .custom-btn-primary {
        color: var(--white) !important;
    }

    .custom-btn-primary:hover {
        color: var(--primary-color) !important;
    }

    #navbar ul li a {
        color: var(--secondary-color);
    }

    #navbar ul li .custom-btn-CTA {
        color: var(--white);
    }

    #navbar ul li .custom-btn-CTA:hover {
        color: var(--primary-color);
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #navbar .navbar-nav {
    flex-wrap: nowrap; /* 不允许换行 */
  }

  #navbar .navbar-nav .nav-item {
    white-space: nowrap;
    margin-right: 5px;
  }

  #navbar .navbar-nav .nav-link {
    font-size: 13px; /* 或更小，比如 13px */
    padding: 6px 3px; /* 缩小内边距 */
    white-space: nowrap; /* 防止文字换行 */
  }
  
}


/*================客服悬浮窗=====================*/
 .CustomeServiceWrapper__s8snq {
      align-items: center;
      bottom: 100px;
      display: flex;
      flex-direction: column;
      position: fixed;
      right: 20px;
      z-index: 9999;
    }

    .robotImage__dYoAj {
      background-repeat: no-repeat;
      background-size: contain;
      height: 183px;
      position: absolute;
      width: 160px;
    }

    .listDom__QsDJv {
      align-items: center;
      -webkit-backdrop-filter: blur(25px);
      backdrop-filter: blur(25px);
      background: linear-gradient(180deg, #6e12c5, #360475);
      border-radius: 100px;
      box-shadow: 0 50px 50px 0 #0003;
      display: flex;
      flex-direction: column;
      flex-shrink: 0;
      height: 300px;
      justify-content: space-evenly;
      margin-top: 45px;
      width: 70px;
    }

    .item__oCnuZ {
      background-repeat: no-repeat;
      background-size: contain;
      cursor: pointer;
      height: 45px;
      width: 45px;
    }

    .wechat__URxDR {
     background-image: url(../images/telegram-channel.png);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .wechat__URxDR:hover {
      transform: scale(1.2); /* 放大图标 */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); /* 加阴影效果 */
    }

    .whatsapp__lJzoL {
      background-image: url(../images/whatsapp--v1.png);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .whatsapp__lJzoL:hover {
      transform: scale(1.2); /* 放大图标 */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); /* 加阴影效果 */
    }

    .telegram__Xf46n {
      background-image: url(../images/telegram-app--v1.png);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .telegram__Xf46n:hover {
      transform: scale(1.2); /* 放大图标 */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); /* 加阴影效果 */
    }
    
    .telegram__tgss3 {
      background-image: url(../images/telegram-app-v2.png);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .telegram__tgss3:hover {
      transform: scale(1.2); /* 放大图标 */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); /* 加阴影效果 */
    }

    .gotop__Tk7ZC {
      background-image: url(../images/top.png);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gotop__Tk7ZC:hover {
      transform: scale(1.2); /* 放大图标 */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); /* 加阴影效果 */
    }

/*===== hero btn css =====*/
.pro_btn {
  font-size: 16px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 47px 8px;
  border-radius: 50px;
  margin-top: 45px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.pro_btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.pro_btn:hover {
  color: #243364;
  -webkit-box-shadow: 7.5px 12.99px 25px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 7.5px 12.99px 25px 0px rgba(0, 0, 0, 0.15);
}

.pro_btn:hover:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.green_btn {
  background: #8ec549;
  color: #fff;
  border: 0px;
}

.green_btn:before {
  background: #6dad29;
  border-color: #6dad29;
}

.green_btn:hover {
  color: #fff;
}

.btn_blue {
  color: #fff;
}

.btn_blue:hover {
  color: #0b3b7e !important;
}

.social-btn {
  border: 0px;
}

.social-btn:before {
  background-image: -moz-linear-gradient(165deg, #23ea8f 0%, #009efd 100%);
  background-image: -webkit-linear-gradient(165deg, #23ea8f 0%, #009efd 100%);
  background-image: -ms-linear-gradient(165deg, #23ea8f 0%, #009efd 100%);
  -webkit-border-image: -webkit-linear-gradient(185deg, #23ea8f 0%, #009efd 100%);
  -o-border-image: -o-linear-gradient(185deg, #23ea8f 0%, #009efd 100%);
  border-image: linear-gradient(-95deg, #23ea8f 0%, #009efd 100%);
  border-image-slice: 1;
  -webkit-transform: scaleX(0) !important;
  -ms-transform: scaleX(0) !important;
  transform: scaleX(0) !important;
}

.social-btn:hover {
  color: #fff;
  border: 0px;
  border-color: #009efd;
}

/*====================================================*/
/*====================================================*/
.hero_area {
  background: linear-gradient(90deg,var(--thm-color),var(--thm-base));
  padding: 190px 0px;
  position: relative;
}

.hero_area:before {
  content: "";
  position: absolute;
  bottom:-2px;
  background: url("../images/banner/shape-bg.png") no-repeat scroll center bottom;
  left: 0;
  width: 100%;
  height: calc(100% - 72px);
}

@media (min-width: 1921px) {
  .hero_area:before {
    background-size: cover;
    bottom: -3px;
  }
}

.hero_text {
  color: #fff;
  padding-top: 84px;
  padding-right: 57px;
}

.hero_text h2 {
  font-size: 42px;
  line-height: 50px;
  font-weight: 300;
  padding-bottom: 22px;
}
.hero_text h3 {
  color: var(--thm-color2);
}
.hero_text p {
  font-size: 22px;
  line-height: 35px;
  font-weight: 300;
}

.header_mac_img {
  position: absolute;
  left: -87px;
  width: auto;
}

.hero_text .hero_title {
  font-size: 58px;
  line-height: 80px;
}

/*==========Start perfect area css =============*/
.perfect-item .media .media-left {
  padding-right: 30px;
}

.perfect-item .media .media-body h3 {
  font-size: 24px;
  line-height: 30px;
  color: #1e2d3c;
  text-transform: capitalize;
  padding-bottom: 22px;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.perfect-item + .perfect-item {
  margin-top: 25px;
}

/*==========End perfect area css =============*/
/*==========Start seo-features css =============*/
.bg-color {
  background: #f5f7ff;
}
.bg-color_foot {
  background: #fef4e6;
}

.seo-features {
  padding: 50px 0px;
}

.seo-features-bg {
  background: url("../images/features/features-bg.jpg") no-repeat scroll center 0;
  background-size: cover;
 
}

.seo-features-bg .title .p {
  color: #000000;
}

.seo-features-bg img {
  padding-left: 70px;
}

.seo-features-bg .pro_btn {
  -webkit-box-shadow: 7.5px 12.99px 25px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 7.5px 12.99px 25px 0px rgba(0, 0, 0, 0.15);
  color: #8ec549;
}

.seo-features-bg .pro_btn:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.seo-features-bg .pro_btn:hover {
  color: #fff !important;
}

.seo-features-bg .pro_btn:hover:before {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

.seo-features-two {
  background: #0b3774;
  position: relative;
}

.seo-features-two:before {
  content: "";
  background: url("../images/features/analyzing-bg.png") no-repeat scroll center 0;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: calc(100% - 180px);
  bottom: 0px;
}

@media (min-width: 2000px) {
  .seo-features-two:before {
    height: 100%;
  }
}

.seo-features-two .btn_blue {
  color: #0b3b7e;
}

.seo-features-two .btn_blue:hover {
  color: #fff;
}
.features-content {
  padding: 12px 10px;
}
.features-content .title .p{
    color: #6f7982;
}

.features-content .ul {
     color: #6f7982;
}

.features-content .ul .li {
  position: relative;
  padding-left: 25px;
  padding-top: 14px;
   color: #6f7982;
}

.features-content .ul .li .i {
  color: #8ec549;
  position: absolute;
  left: 0;
  line-height: 28px;
}

/*==========End seo-features css =============*/
.seo-rang-area {
    padding: 60px 10px;
  text-align: center;
}

.seo-rang-area .range-content .title {
  padding-top: 30px;
}


/*====================================================*/
/* blog_area css
========================================*/
.blog_area {
  padding: 25px 0px;
}

.post-contents {
  margin-top: 50px;
}

.post-contents .post-title {
  font-size: 24px;
  line-height: 36px;
  color: #1e2d3c;
  text-transform: uppercase;
  font-weight: 500;
}

.post-contents p {
  letter-spacing: 0.30px;
  margin-bottom: 40px;
}

.post-contents blockquote {
  padding: 0px 0px 0px 60px;
  border: 0px;
  font-size: 14px;
  color: #6f7982;
  font-family: 'DroidSerif';
  font-weight: 400;
  margin-bottom: 40px;
}

.post-contents .post-meta {
  margin: 15px 0px 18px;
}


.article-navigation {
    margin: 20px 0;
    padding: 10px 0;
    text-align: center;
    border-radius: 5px; /* 圆角效果 */
    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1); /* 添加阴影 */
    position: relative; /* 为了让伪元素能够相对定位 */
}

/* 下方的伪元素，模拟立体效果 */
.article-navigation::after {
    content: "";
    position: absolute;
    top: 10px; /* 下方框错开 10px */
    left: 10px; /* 向右偏移 10px */
    right: 10px; /* 确保右边错开 10px */
    bottom: -10px; /* 下方框错开 10px */
    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1); /* 添加与上面一样的阴影 */
    border-radius: 5px; /* 保持圆角效果 */
    z-index: -1; /* 确保伪元素在底部 */
}

.navigation-list {
    list-style: none;
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center;     /* 垂直居中 */
    padding: 0;
    margin: 0;
    flex-wrap: wrap;         /* 允许换行 */
}

.navigation-list li {
    max-width: 500px;
    font-size: 16px;
    color: #333; /* 文字颜色 */
    padding: 0 10px; /* 每个项的左右内边距 */
    display: flex;
    align-items: center; /* 垂直居中 */
    margin: 10px 0; /* 上下间距，保证在小屏幕下不会紧凑 */
}

.navigation-list .label {
    font-size: 16px;
    color: #6c757d; /* 标签颜色 */
    margin-right: 8px; /* 标签和内容之间的间距 */
}

.navigation-list li .nav-item-box {
    display: inline-block;
    background-color: #fff; 
    padding: 10px;
    border: 1px solid #ced4da; /* 边框颜色 */
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1); /* 添加与上面一样的阴影 */
    border-radius: 8px;        /* 圆角 */
    font-size: 16px;
    max-width: 100%;           /* 不超出屏幕 */
    width: auto;
    white-space: normal;       /* 允许换行 */
    overflow: hidden;          /* 内容超出时隐藏 */
    text-overflow: ellipsis;   /* 超出文本显示省略号 */
    line-height: 1.3;          /* 行高，增加可读性 */
    word-break: break-word;    /* 防止长词溢出 */
}
.navigation-list li .nav-item-box a {
   color: #6c757d;   /* 链接颜色 */
}

.navigation-list .separator {
    font-size: 28px;   /* 更大的分隔符字体 */
    color: #adb5bd;    /* 分隔符颜色 */
    padding: 0 20px;   /* 增加左右内边距，使分隔符更长 */
}

/* 移动端适配 */
@media (max-width: 767px) {
    .navigation-list {
        flex-direction: column; /* 让导航项目纵向排列 */
    }

    .navigation-list li {
        width: 100%;            /* 每个项占满整行 */
        text-align: left;       /* 左对齐 */
        padding: 10px 20px;     /* 增加上下内边距 */
    }

    .nav-item-box {
        font-size: 14px; /* 移动端文字稍微小一点 */
        white-space: normal; /* 允许换行 */
    }

    .navigation-list .separator {
        display: none; /* 在小屏幕下不显示分隔符 */
    }
}


.blog-section-left {
  padding-top: 5px;
}

.blog-video iframe {
  border: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 100%;
  min-height: 375px;
}

.blog-items {
  margin-bottom: 30px;
}

.blog-items .blog-content {
  font-family: "Microsoft YaHei", sans-serif;
  background-color: #fff; /* 纸张的白色背景 */
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1); /* 轻微的阴影，模拟纸张浮动的效果 */
  padding: 30px 20px 20px; /* 内边距，增加内容的空间 */
  border-radius: 8px; /* 圆角边缘 */
  position: relative; /* 允许我们使用伪元素来添加折叠效果 */
  margin-top: 10px; /* 给纸张添加一些空隙 */
  overflow: hidden; /* 隐藏右上角的部分 */
}
.blog-items .blog-content::after {
  content: ''; /* 创建伪元素 */
  position: absolute;
  top: -25px; /* 提升折角，增加翘起的高度 */
  right: -25px; /* 调整折角的位置 */
  width: 50px; /* 折角的宽度，增大折角 */
  height: 50px; /* 折角的高度，增大折角 */
  background-color: #fff; /* 折角的背景颜色，和纸张的背景相同 */
  transform: rotate(45deg) translate(8px, -8px); /* 旋转45度，模拟翘起的效果 */
  box-shadow: -3px 3px 8px rgba(0, 0, 0, 0.15); /* 增加阴影，使折角更立体 */
  z-index: 1; /* 确保伪元素在最上层 */
}

.blog-items .blog-content img {
  max-width: 100%;         /* 图片不超过容器宽度 */
  height: auto;            /* 保持图片原始比例 */
  border-radius: 10px;     /* 保持与容器一致的圆角 */
  display: block;          /* 避免图片底部出现空隙 */
  object-fit: cover;       /* 可选：填充时保持图像完整 */
}

.blog-items .blog-content h1,
.blog-items .blog-content h2,
.blog-items .blog-content h3,
.blog-items .blog-content h4,
.blog-items .blog-content h5,
.blog-items .blog-content h6 {
  color: #575E66;
  padding-bottom: 10px;
}


.blog-items .blog-content p {
  color: #6f7982;
}

.post-info {
  padding-top: 5px;
  border-top: 1px solid #f0f0f0;
}

.post-info li {
  font: 400 13px/60px "Poppins", sans-serif;
  color: #9a9a9a;
  display: inline-block;
  font-style: normal;
}

.post-info li a, .post-info li span {
  color: #6f7982;
  font-style: italic;
}

.post-info li a:hover, .post-info li span:hover {
  color: #243364;
}

.post-info li + li {
  margin-left: 10px;
}

.post-info li + li:before {
  content: '';
  width: 1px;
  height: 15px;
  display: inline-block;
  background: #6f7982;
  vertical-align: middle;
  margin-right: 10px;
}


/*====================================================*/
/*====================================================*/
.footer-top {
  text-align: center;
  background: #1a2139;
}

.footer-top p {
  max-width: 796px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: rgba(255, 255, 255, 0.5);
  padding: 45px 0px 73px;
}



.footer_bottom {
  background: #161c31;
  font: 400 15px/21px "Poppins", sans-serif;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.3);
  padding: 30px 0px;
}

.footer_bottom a {
  color: #fff;
  opacity: 0.30;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.footer_bottom a:hover {
  opacity: 1;
}

.footer_bottom .footer-menu {
  text-align: right;
}

.footer_bottom .footer-menu li {
  display: inline-block;
}

.footer_bottom .footer-menu li + li {
  margin-left: 38px;
}


@media only screen and (max-width: 990px) {
  .progress {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 990px) {
  .blog_area {
    padding: 10px 0px;
  }
  .order_form {
    width: 100% !important;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.07);
  padding: 15px;
  border: 1px solid #ddd; /* 浅灰色边框 */
  border-radius: 5px;      /* 圆角 */
  }
  .contact_left {
    width: 100% !important;
    padding: 10px 5px;
    border-right: 1px dashed #eee;
    text-align: center;
  }
  .contact_right {
    width: 100% !important;
    padding: 5px 5px;
    border-right: 1px dashed #eee;
    text-align: center;
  }
  .contact_right p {
    text-decoration : none;
    font-size: 12px !important;
    width: 100%;
    text-align: left !important;
  }
  .contact_right p font {
    font-weight: 400;
    font-size: 14px !important;

  }
  
}
/*====================================================*/

/*附加CSS*/
.clear{
  clear: both;
}
.order_form {
  position: relative;
  top:auto;
  left: auto;
  margin: 0 auto;
  width: 920px;
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.07);
  padding: 15px;
  border: 1px solid #ddd; /* 浅灰色边框 */
  border-radius: 5px;      /* 圆角 */
}
.main_box{
  width: calc(100% - 24px);
  padding: 12px 0;
  margin: 12px auto;
  border-bottom:1px dashed rgba(0,0,0,0.14);
  border-radius: 3px;
}
.main_box h3{
  font-weight: lighter;
  font-size: 14px;
  color: #7b7b7b;
  margin-bottom: 12px;
}
.main_box h3 i{
  font-weight: bold;
  font-size: 18px;
  vertical-align: middle;
  margin-right: 8px;
  color: #51cfe4;
}
.main_box p{
  float: left;
  font-size: 14px;
  line-height: 32px;
  color: #474747;
  overflow: hidden;
  text-overflow: ellipsis;
  /*white-space: nowrap;*/
  margin-right: 24px;
  width:100%;
}

#cardinfo0,#tips0
{
   display: block;

}
.main_box:last-child{
  border-bottom: none;
  margin-bottom: 24px;
}
.main_box li img{
  height: 30px;
}
.main_box p a{
  color: #409ccf;
  font-weight: lighter;
}
.main_box p a:hover{
  text-decoration: underline;
}
.contact_left {
  float: left;
  padding: 40px 80px 40px 40px;
  border-right: 1px dashed #eee;
  text-align: center;
}
.contact_right {
  float: right;
  width: 450px;
  /*padding: 50px;*/
  color: #33334f;
}
.contact_right p {
  line-height: 28px;
  font-size: 16px;
}
.contact_right p font {
  font-size: 18px;
    display: inline-block; /* 使其可以应用 transform */
}
.contact_right p font:hover{
    transform: scale(1.1); /* 放大字体 */
    transition: transform 0.3s ease; /* 平滑过渡 */
}
.contact_right p span {
    display: flex;
  width: 200px;
}
.contact_right p i{
  font-size: 28px;
  margin-right: 10px;
  vertical-align: middle;
  color: #51cfe4;
}
.foot-auth {
  margin: 10px auto;
  text-align: center;
}

.foot-auth img {
  margin: 5px;
}

.main_box{
  width: calc(100% - 24px);
  padding: 12px;
  margin: 12px auto;
  border-bottom:1px dashed rgba(0,0,0,0.14);
  border-radius: 3px;
}
.main_box h3{
  font-weight: lighter;
  font-size: 14px;
  color: #767ead;
  margin-bottom: 12px;
}
.main_box h3 i{
  font-size: 16px;
  /* vertical-align: text-bottom; */
  margin-right: 8px;
  color: rgba(100,143,247,1);
}
.main_box p{
  float: left;
  font-size: 14px;
  line-height: 32px;
  color: #33334f;
  /*overflow: hidden;*/
  /*text-overflow: ellipsis;*/
  /*white-space: nowrap;*/
  margin-right: 24px;
}
.main_box:last-child{
  border-bottom: none;
  margin-bottom: 24px;
}
.main_box li img{
  height: 30px;
}
.main_box p a{
  color: rgba(100,143,247,1);
  font-weight: lighter;
}
.main_box p a:hover{
  text-decoration: underline;
}


@media screen and  (max-width: 768px) {
  .header {
    padding: 0 !important;
  }
  .navbar-default .navbar-brand {
    margin-top: 15px;
    text-align: left;
  }
  .hero_text {
    padding-top: 14px;
    padding-right: 0;
  }
  .hero_text .hero_title {
    font-size: 38px;
    line-height: 38px;
  }
  .service_item{
    padding: 15px 5px;
  }
  .footer_bottom .right {
    display: none;
  }
  .navbar-brand img {
    max-width: 100%;
    height: auto;
  }
}

/*分页*/
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
    font-family: "Segoe UI", sans-serif;
}

.page-link,
.page-num {
    padding: 8px 14px;
    background-color: #f7f7f7;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.page-link:hover,
.page-num:hover {
    background-color: #409EFF;
    color: #fff;
    border-color: #409EFF;
}

/* 当前页醒目显示 */
.page-num-current {
    background-color: #ff5722;
    color: #fff;
    font-weight: bold;
    border-color: #ff5722;
    box-shadow: 0 0 8px rgba(255, 87, 34, 0.6);
    pointer-events: none;
     transform: scale(1.1);
}




/* 弹窗公告 */
.myuki-gcard_mask {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.4);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Lato, Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  z-index: 9999;
  box-sizing: border-box;
  transition: opacity 0.5s ease;
  opacity: 0;
  perspective: 1000px;
}

.myuki-gcard_mask.show {
  display: flex;
  opacity: 1;
}
.myuki-gcard_mask.fade-out .myuki-gcard_box {
  animation: flyAway 0.7s forwards;
}
.myuki-gcard_mask.hidden {
	display: none;
}

.myuki-gcard_box {
  min-width: 320px;
  max-width: 480px;
  box-sizing: border-box;
  margin: 10% auto 0;
  background-color: #f1f2f6;
  padding: 12px;
  border-radius: 16px;
  z-index: inherit;
  animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
  transform-origin: top;
}
.myuki-gcard_box.fade-out {
  animation: flyAway 0.7s forwards;
}

.myuki-gcard_box * {
	box-sizing: border-box;
}

.myuki-gcard_box.closed {
	-webkit-animation: swing-out-top-bck 0.6s cubic-bezier(0.600, -0.280, 0.735, 0.045) both;
	animation: swing-out-top-bck 0.6s cubic-bezier(0.600, -0.280, 0.735, 0.045) both;
}

.myuki-gcard_box a {
	text-decoration: none;
}

.myuki-gcard_icon {
	margin: 0 auto 8px;
	height: 64px;
	width: 64px;
	overflow: hidden;
	transition: all 0.5s ease;

}

.myuki-gcard_icon:hover {
	transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
}

.myuki-gcard_icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.myuki-gcard_title {
	font-size: 1.3em;
	color: #fff;
	font-weight: bold;
	text-align: center;
	-webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

.myuki-gcard_title a {
	text-decoration: none;
	color: #2f3542;
	margin: 8px auto;
}

.myuki-gcard_info {
	text-align: center;
	color: #747d8c;
	font-size: 1em;
	-webkit-animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	margin: 8px auto;
}

.myuki-gcard_hitokoto {
	text-decoration: none;
	color: #70a1ff;
}

.myuki-gcard_hitokoto a {
	color: inherit;
	text-decoration: inherit;
}

/* 按钮样式 */
.myuki-gcard_btn-list {
  padding: 8px;
  white-space: nowrap;
  box-sizing: border-box;
}

.myuki-gcard_btn {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #2aa645;
  border-radius: 20px;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 1em;
  padding: 10px;
  border: none;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.myuki-gcard_btn:hover {
	background-image: linear-gradient(90deg, #00C0FF 0%, #FFCF00 49%, #FC4F4F 80%, #00C0FF 100%);
	animation: slidebg 2s linear infinite;
}
.myuki-gcard_btn.btn-primary {
  background-color: #0d6efd;
}
.myuki-gcard_btn.myuki-btn-close {
  background-color: #97a0aa;
  color: rgba(255, 255, 255, 0.8);
  border: none;
}

.myuki-gcard_btn.myuki-btn-close:hover {
  background: #57606f;
  color: #fff;
}


.btn-default:hover {
	box-shadow: 0px 0px 8px #57606f;
}

.btn-primary {
	color: #fff;
	background-color: #0d6efd;
	border-color: #0d6efd;
}


.btn-primary:hover {
	box-shadow: 0px 0px 8px #0d6efd;
}


@media (max-width: 768px) {
	.myuki-gcard_box {
		min-width: 80%;
		width: 80%;
		margin: 28% auto 0;
		max-width: 90%;
	}
}

@-webkit-keyframes slidebg {
	to {
		background-position: 20vw;
	}
}

@keyframes slidebg {
	to {
		background-position: 20vw;
	}
}

/**
			 * ----------------------------------------
			 * animation tracking-in-expand
			 * ----------------------------------------
			 */
@-webkit-keyframes tracking-in-expand {
	0% {
		letter-spacing: -0.5em;
		opacity: 0;
	}

	40% {
		opacity: 0.6;
	}

	100% {
		opacity: 1;
	}
}

@keyframes tracking-in-expand {
	0% {
		letter-spacing: -0.5em;
		opacity: 0;
	}

	40% {
		opacity: 0.6;
	}

	100% {
		opacity: 1;
	}
}

/**
			 * ----------------------------------------
			 * animation tracking-in-contract
			 * ----------------------------------------
			 */
@-webkit-keyframes tracking-in-contract {
	0% {
		letter-spacing: 1em;
		opacity: 0;
	}

	40% {
		opacity: 0.6;
	}

	100% {
		letter-spacing: normal;
		opacity: 1;
	}
}

@keyframes tracking-in-contract {
	0% {
		letter-spacing: 1em;
		opacity: 0;
	}

	40% {
		opacity: 0.6;
	}

	100% {
		letter-spacing: normal;
		opacity: 1;
	}
}

/**
			 * ----------------------------------------
			 * animation swing-out-top-bck
			 * ----------------------------------------
			 */
@-webkit-keyframes swing-out-top-bck {
	0% {
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
		-webkit-transform-origin: top;
		transform-origin: top;
		opacity: 1;
	}

	100% {
		-webkit-transform: rotateX(-120deg);
		transform: rotateX(-120deg);
		-webkit-transform-origin: top;
		transform-origin: top;
		opacity: 0;
	}
}

@keyframes swing-out-top-bck {
	0% {
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
		-webkit-transform-origin: top;
		transform-origin: top;
		opacity: 1;
	}

	100% {
		-webkit-transform: rotateX(-120deg);
		transform: rotateX(-120deg);
		-webkit-transform-origin: top;
		transform-origin: top;
		opacity: 0;
	}
}

/**
			 * ----------------------------------------
			 * animation swing-in-top-fwd
			 * ----------------------------------------
			 */
@-webkit-keyframes swing-in-top-fwd {
	0% {
		-webkit-transform: rotateX(-140deg);
		transform: rotateX(-140deg);
		-webkit-transform-origin: top;
		transform-origin: top;
		opacity: 0;
	}

	100% {
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
		-webkit-transform-origin: top;
		transform-origin: top;
		opacity: 1;
	}
}

@keyframes swing-in-top-fwd {
	0% {
		-webkit-transform: rotateX(-140deg);
		transform: rotateX(-140deg);
		-webkit-transform-origin: top;
		transform-origin: top;
		opacity: 0;
	}

	100% {
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
		-webkit-transform-origin: top;
		transform-origin: top;
		opacity: 1;
	}
}

.myuki-gcard_box.darkmode {
	background-color: #344466;
}

.myuki-gcard_box.darkmode .myuki-gcard_title {
	color: rgba(255, 255, 255, 0.7);
}

.myuki-gcard_box.darkmode .myuki-gcard_info {
	color: rgba(255, 255, 255, 0.5);
}

.myuki-gcard_box.darkmode .myuki-gcard_icon:hover {
}

.myuki-gcard_box.darkmode .myuki-gcard_btn.myuki-btn-close {
	background-color: #a4b0be;
	color: rgba(255, 255, 255, 0.8);
}

@media screen and (prefers-color-scheme:dark) {
	.myuki-gcard_mini:hover {
		box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.6);
	}
}
@keyframes scaleUpHideFromBottom {
  0% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    opacity: 0;
  }
}

.myuki-gcard_box.hide {
  animation: scaleUpHideFromBottom 0.4s ease forwards;
  transform-origin: bottom center;
}
@keyframes flyAway {
  0% {
    opacity: 1;
    transform: translateZ(0) translateY(0) scale(1) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: translateZ(-300px) translateY(-100px) scale(0.3) rotateX(45deg);
  }
}

@keyframes swing-in-top-fwd {
  0% {
    transform: rotateX(-140deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

/*右键自定义菜单*/
.right-click ul {
    margin: 0;
    padding: 5px 0;
    background: linear-gradient(135deg, #f9fafb, #e3e8ff);
    display: none;
    position: fixed;
    top: 100px;
    left: 100px;
    width: 180px;
    border: 1px solid #a0b4ff;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
}

.right-click li {
    padding: 0 20px;
    height: 45px;
    line-height: 45px;
    list-style: none;
    transition: background-color 0.25s ease, color 0.25s ease;
    cursor: pointer;
    color: #3a3a3a;
    border-bottom: 1px solid #d6d9f0;
}

.right-click li:last-child {
    border-bottom: none;
}

.right-click li:hover {
    background-color: #4b6ef6;
    color: #fff;
    box-shadow: 0 0 8px rgba(75, 110, 246, 0.6);
}

.right-click a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.right-click a:hover {
    color: #fff;
}

/* 鼠标悬浮时整个li变色，a继承颜色 */


/* ====== 首页价格套餐 ====== */
.pricing-section {
    padding-top: 80px;
}

.pricing-section .section-title {
    margin-bottom: 50px;
}

@media only screen and (min-width: 1400px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .pricing-section .section-title {
        padding: 0 40px;
    }
}

.pricing-section .section-title h2 {
    margin-bottom: 15px;
}

.single-pricing {
    background: #fff;
    box-shadow: 0 4px 60px rgba(183, 199, 240, 0.45);
    border-radius: 5px;
    border-top: 6px solid transparent;
    padding: 52px 30px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

/* Header */
.single-pricing .pricing-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.single-pricing .pricing-header h5 {
    font-size: 18px;
    margin-bottom: 20px;
}

.single-pricing .pricing-header h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.single-pricing .pricing-header h2 span {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

/* Body */
.single-pricing .pricing-body {
    font-size: 16px;
    padding-top: 30px;
    padding-bottom: 25px;
}

.single-pricing .pricing-body ul li {
    margin-bottom: 12px;
}

.single-pricing .pricing-body ul li p {
    text-align: left;
    margin-bottom: 0;
}

/* Footer */
.single-pricing .pricing-footer .border-btn {
    color: rgba(0, 0, 0, 0.9);
    background: transparent;
    border-color: rgba(0, 0, 0, 0.5);
}

.single-pricing .pricing-footer .border-btn:hover {
    color: #000;
}

.single-pricing .pricing-footer .border-btn:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

/* Variants */
.single-pricing.basic {
    border-color: #efb544;
}

.single-pricing.premium {
    border-color: #fb7370;
}

.single-pricing.standard {
    background:#fb7370;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    z-index: 2;
    border-color: #5f6fff;
}

.single-pricing.standard::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    top: 0;
    left: 0;
    background: #5f6fff;
    z-index: 1;
}

/* Standard variant colors */
.single-pricing.standard .pricing-header {
    border-color: rgba(255, 255, 255, 0.8);
}

.single-pricing.standard .pricing-header .package-name {
    color: #fff;
}

.single-pricing.standard .pricing-header .package-price {
    color: #fff;
}

.single-pricing.standard .pricing-header .package-price span {
    color: rgba(255, 255, 255, 0.8);
}

.single-pricing.standard .pricing-body ul li p {
    color: rgba(255, 255, 255, 0.8);
}

.single-pricing.standard .pricing-footer .main-btn {
    color: #fff;
    background: #ffa825;
}

.single-pricing.standard .pricing-footer .main-btn:hover::after {
    background: rgba(0, 0, 0, 0.05);
}
.main-btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 17px 35px;
    font-size: 18px;
    line-height: 1;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: all 0.4s ease-in-out;
    border: 2px solid transparent;
    background: #fb7370;
    overflow: hidden;
}

.main-btn:hover {
    color: #fff;
}

.main-btn.border-btn {
    border: 2px solid #5f6fff;
    background: transparent;
    color: #5f6fff;
}

.main-btn.border-btn:hover::after {
    background-color: rgba(95, 111, 255, 0.2);
}

.btn-hover {
    position: relative;
    overflow: hidden;
}

.btn-hover::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    top: 50%;
    left: 50%;
    padding: 50%;
    z-index: -1;
    transition: all 0.3s ease-out 0s;
    transform: translate3d(-50%, -50%, 0) scale(0);
}

.btn-hover:hover::after {
    transform: translate3d(-50%, -50%, 0) scale(1.3);
}

/* 页面主标题 */
.container h2 {
  color: #000000;
  font-size: 28px;
  margin-bottom: 10px;
}

/* 黄色跳转链接 */
.container h3 a {
  color: #facc15;
  font-weight: bold;
  text-decoration: none;
}
.container h3 a:hover {
  color: #fde047;
}

/* 整个英雄区背景与文字 */
.kt-hero-intro {
 
  padding: 40px 20px;
}

/* 英雄区卡片 */
.kt-hero-intro .kt-card {
  padding: 20px;
  border-radius: 10px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* 标题样式 */
.kt-hero-intro .kt-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* 段落文字 */
.kt-hero-intro  {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #ffffff;
}

/* 功能列表 */
.kt-hero-intro .kt-feature-list {
  list-style-type: none;
  padding-left: 20px;
}

.kt-hero-intro .kt-feature-list .li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
}

/* 邀请码 */
.kt-invite {
  margin: 20px 0;
  font-size: 16px;
}
.kt-invite .span{
     color: #fbac1c;
  font-weight: bold;
}
.kt-code {
  color: #007bff;
  font-weight: bold;
}
.kt-copy-btn {
  margin-left: 10px;
  background: #007bff;
  color: #fff;
  border: none;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
}
.kt-copy-btn:hover {
  background: #0056b3;
}
.kt-tip {
  margin-left: 10px;
  font-size: 14px;
}

/* 链接 */
.kt-links {
  margin-top: 15px;
}
.kt-link {
  display: block;
  margin: 6px 0;
  color: #007bff;
  text-decoration: none;
}
.kt-link:hover {
  text-decoration: underline;
  color: #0056b3;
}


 .container-down {
            position: relative;
            top: 80px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            color: white;
        }
