@charset "UTF-8";
@import url("style.min.css");
.section-title-bold {
    color: #a33a5d !important; font-weight: bold; }

/* 仅主标题文字为白色 */
.hero-text h1 .section-title-bold {
    color: #ffffff !important; }

/* 导航栏按钮居中靠右样式 */
.m-hd .nav-center-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  max-width: 800px;
  width: 180%;
  padding: 0 20px;
  height: 100%;
}

.m-hd .nav-center-right li {
  margin-left: 15px;
  display: flex;
  align-items: center;
}

.m-hd .nav-center-right a {
  padding: 10px 15px;
  line-height: 1.5;
}

/* 导航栏按钮样式 */
.m-hd .navbar-btn {
  color: #ffffff !important;
  background-color: transparent;
  border-radius: 6px;
  padding: 10px 20px;
  margin-left: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.m-hd .navbar-btn:hover {
  background-color: rgba(163, 58, 93, 0.1);
  border-color: rgba(163, 58, 93, 0.3);
  transform: translateY(-2px);
}

/* 立即下载按钮样式增强 */
.m-hd .navbar-btn.download {
  background-color: #a33a5d !important;
  color: white !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.m-hd .navbar-btn.download:hover {
  background-color: #8e2a4a !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

/* 修复手机端第一板块与导航栏间隙 */
@media (max-width: 1100px) {
  .hero-section {
    margin-top: -36px !important;
  }
  .hero-section .hero-content {
    margin-top: 40px !important;
    padding-top: 0 !important;
  }
}

.live-download-btn {

    background-color: #9d4063 !important;
    color: black !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.live-download-btn:hover {
    background-color: #8a3654 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.live-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.live-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(157, 64, 99, 0.1), transparent);
    transition: left 0.6s ease;
}

.live-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    border-color: #9d4063;
}

.live-card:hover::before {
    left: 100%;
}

/* OBS版本选择模态框样式 */
#obsVersionsModal .am-modal-dialog {
    background-color: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #f0f0f0 !important;
}

#obsVersionsModal .am-modal-hd {
    background-color: #f8f9fa !important;
    border-bottom: 1px solid #eee !important;
    padding: 16px 24px !important;
    border-radius: 12px 12px 0 0 !important;
}

#obsVersionsModal .am-modal-hd h3 {
    color: #333333 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
}

#obsVersionsModal .am-modal-bd {
    padding: 24px !important;
    color: #666666 !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
}

#obsVersionsModal .am-modal-bd ul {
    padding-left: 0 !important;
}

#obsVersionsModal .am-modal-bd li {
    list-style: none !important;
    margin-bottom: 12px !important;
}

#obsVersionsModal .am-modal-bd a {
    display: block !important;
    background-color: #f8f9fa !important;
    color: #333333 !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    border: 1px solid #a33a5d !important;
}

#obsVersionsModal .am-modal-bd a:hover {
    background-color: #a33a5d !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    border-color: transparent !important;
}

#obsVersionsModal .am-close {
    color: #666 !important;
    font-size: 24px !important;
    opacity: 1 !important;
}

#obsVersionsModal .am-close:hover {
    color: #a33a5d !important;
}

/* 功能介绍专用卡片样式 */
.feature-card-row .feature-card {
    background-color: #1a1a1a !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto !important;
    min-height: 130px !important;
    max-height: 130px !important;
}

/* 功能卡片行容器样式 */
.feature-card-row {
    display: flex;
    flex-wrap: wrap;
}

.feature-card-row > div[class*="am-u-"] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(157, 64, 99, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    border-color: #9d4063;
}

.feature-card h4 {
    color: #ffffff !important;
}

.feature-card p {
    color: #e0e0e0 !important;
}

.feature-card:hover::before {
    left: 100%;
}

/* 首页轮播组件样式 */
.home-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 2px solid #a33a5d;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(163, 58, 93, 0.2);
    padding: 5px;
    transition: all 0.3s ease;
}

.home-carousel-container:hover {
    box-shadow: 0 12px 32px rgba(163, 58, 93, 0.3);
    border-color: #9d4063;
}

.home-carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.home-carousel-slide {
    min-width: 100%;
    display: none;
}

.home-carousel-slide.active {
    display: block;
}

.home-carousel-slide img {
    width: 100%;
    height: auto;
}

.home-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.home-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.home-carousel-dot.active {
    background-color: #9d4063;
    transform: scale(1.2);
}

body {
  color: #e0e0e0;
  background-color: #121212;
  padding-top: 70px;
  font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

@media (max-width: 768px) {
  body {
    padding-top: 0;
  }
  .m-hd {
    height: 70px !important;
  }
  .hero-section {
    padding-top: 70px;
    margin-top: 0 !important;
  }
}

a {
  color: #a33a5d;
}

a:hover {
  color: #00c8e6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.am-alert {
  margin-bottom: 0;
}

.m-hd ul,
.m-header-banner ul {
  padding: 0;
}
.m-hd ul li,
.m-header-banner ul li {
  list-style-type: none;
}

a,
a:hover,
.m-partner li img,
.m-partner li img:hover,
.m-contact-infobox,
.m-contact-infobox:hover,
.m-footer .ico i,
.m-footer .ico i:hover,
.m-service-page .ico ul li span,
.m-service-page .ico ul li span:hover,
.m-hd .am-sticky,
.m-service-list li:hover {
  -webkit-filter: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

[class*=am-u-] + [class*=am-u-]:last-child {
  float: left;
}

.m-images-container section img,
.m-news-container section img {
  max-width: 100%;
  height: auto;
}

.am-container {
  max-width: 1200px;
}

.am-g-fixed {
  max-width: 1200px;
}

/* 头部 */
.m-hd { width: 100%; position: absolute; z-index: 2; height: 130px; padding: 0; }
.m-hd ul {
  margin: 0;
}
.m-hd ul li {
  list-style-type: none;
}
.m-hd .am-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.m-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

/* LOGO左对齐样式 */
.m-hd .logo-left-align {
  margin-left: 0;
  position: absolute;
  left: 0;
}

.m-hd .am-container {
  position: relative;
  padding-left: 0 !important;
}

@media (max-width: 768px) {
  .m-hd .logo-left-align {
    margin-left: -15px;
  }
}

/* 640px-768px区间显示移动端导航 */
@media (max-width: 1100px) {
  body .m-hd .am-show-md-up { display: none !important; }
  body nav.am-show-sm-only { display: flex !important; }
  .m-hd { justify-content: space-between !important; } .m-hd .logo-left-align { position: static !important; margin: 0 !important; }
  .m-logo img { max-height: 40px !important; }
  button#mobile-menu-button { display: block !important; visibility: visible !important; margin-left: auto !important; }
}

.m-logo img {
  vertical-align: middle;
  max-height: 80px;
}

@media (max-width: 768px) {
  .m-logo img {
    max-height: 50px;
  }
}

.m-hd nav {
  height: 100%;
}
}
.m-hd .am-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  overflow: hidden;
  box-sizing: border-box;
  background: #1a1f2a;
  padding: 10px 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=95);
  opacity: 0.95;
  z-index: 1000;
  /* 底部装饰效果 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.m-hd .am-sticky::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a33a5d, transparent);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.m-hd .am-sticky:hover::after {
  opacity: 1;
}

/* 视频容器边框效果 */
.video-container {
  border: 2px solid #a33a5d;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  padding: 5px;
}

.video-container:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  border-color: #c25a7d;
}
.m-logo img {
  height: 50px; width: auto; max-width: 100%;
}
.m-hd .am-header a {
  color: #fff;
}
.m-hd .m-nav a {
  color: #fff;
}
.m-hd .m-nav a:hover {
  background: #a33a5d;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.m-hd .am-nav > li.am-active > a, .m-hd .am-nav > li.am-active > a:focus, .m-hd .am-nav > li.am-active > a:hover {
  color: #fff;
  background-color: #a33a5d;
  cursor: default;
  border-radius: 4px;
}
.m-hd .am-dropdown-content {
  background: #1e1e1e;
  border: 1px solid rgba(0, 168, 204, 0.2);
}
.m-hd .am-dropdown-content > li > a:hover {
  color: #fff;
}
.m-hd .am-dropdown-content:after, .m-hd .am-dropdown-content:before {
  border: 8px dashed #1e1e1e;
  filter: drop-shadow(0 -1px 0 rgba(0, 168, 204, 0.2));
}
.m-hd .am-dropdown-content > .am-active > a,
.m-hd .am-dropdown-content > .am-active > a:focus,
.m-hd .am-dropdown-content > .am-active > a:hover {  background-color: #8e2a4a; }

/* 首页英雄区样式 */
.hero-section {
  padding: 10rem 0;
  background-color: #131617;
  background-image: radial-gradient(circle at 10% 20%, rgba(0, 168, 204, 0.1) 0%, transparent 20%);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 0;
    margin-top: -30px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 0;
    margin-top: -50px;
  }
  .m-hd {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 360px) {
  .hero-section {
    padding: 0;
    margin-top: -90px;
  }
  .m-hd {
    min-height: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}
.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.hero-text {
  flex: 1;
  padding-right: 2rem;
}
.hero-text h1 {
  font-size: 4.5rem;
  margin-bottom: 1.8rem;
  color: #a33a5d;
  font-weight: 300;
  letter-spacing: -0.5px;
}
.hero-text .subtitle {
  font-size: 2rem;
  color: #a33a5d;
  margin-bottom: 2.8rem;
}

/* 服务板块标题颜色 */
.m-services h2 {
  color: #a33a5d !important;
}
  font-weight: 300;
}
.feature-list {
  margin-bottom: 2.5rem;
}
.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #b0b0b0;
}
.icon-check {
  color: #a33a5d;
  margin-right: 0.8rem;
  font-weight: normal;
  opacity: 0.9;
  text-shadow: 0 0 8px rgba(0, 168, 204, 0.3);
}
.hero-buttons {
    margin-top: 30px;
}

.hero-buttons .btn-primary {
  background-color: #a33a5d;
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 1.5rem;
  font-weight: 400;
  font-size: 1.8rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 168, 204, 0.2);
  transition: all 0.3s ease;
}
.hero-buttons .btn-secondary {
  color: #e0e0e0;
  padding: 1.2rem 3rem;
  border: 1px solid rgba(0, 168, 204, 0.3);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.8rem;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.hero-buttons .btn-secondary:hover {
  border-color: #a33a5d;
  color: #a33a5d;
  background-color: rgba(0, 168, 204, 0.05);
}
.hero-image {
  flex: 1;
}
.software-screenshot {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 168, 204, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .feature-item {
    justify-content: center;
  }
}

.m-logo { display: block; margin: 0 auto; font-size: 22px; line-height: 45px; width: 180px; height: 45px; color: #fff; text-indent: -9999px; background: url('../images/logo.png') no-repeat left center; -webkit-background-size: 140px 45px; background-size: 140px 45px; }

.m-about li {
  float: left;
  margin-left: 5px;
}

#r-nav .am-offcanvas-bar {
  width: 200px;
}
#r-nav .logo {
  margin-bottom: 20px;
}
#r-nav p {
  border-bottom: 1px solid #4F4F4F;
  padding-bottom: 20px;
}

/* 头部大banner */
.m-header-banner {
  height: auto;
  min-height: calc(100vh - 70px);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 260px;
  color: #fff;
  background-color: #131617;
}

.m-header-banner p {
  font-size: 20px;
}
.m-header-banner nav {
    display: inline-block;
}

.inline-no-wrap {
    display: inline-block;
    white-space: nowrap;
}
.m-header-banner nav li {
  float: left;
  margin-right: 10px;
  font-size: 12px;
}
.m-header-banner nav li a {
  color: #fff;
}
.m-header-banner nav li.am-active a {
  font-weight: bold;
}

.m-header-1 {
  height: 180px;
  padding-top: 145px;
  background: #131617;
}

.m-list-header {
  height: 550px;
}

@media screen and (min-width: 960px) and (max-width: 1199px) {
  .m-header-banner {
    height: 600px;
    padding-top: 240px;
  }
  .m-header-banner h2 {
    font-size: 46px;
    margin: 0;
  }
  .m-header-banner p {
    font-size: 20px;
    padding: 0;
    width: 70%;
  }

  .m-header-1 {
    height: 180px;
    padding-top: 145px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .m-hd .am-nav > li > a {
    position: relative;
    display: block;
    padding: 0.4em;
    font-size: 14px;
  }
  .m-hd .m-about li {
    float: left;
    margin-left: 5px;
    font-size: 14px;
  }
  .m-hd .am-btn {
    padding: 0.5em 0.4em;
  }

  .m-header-banner {
    height: auto;
    min-height: calc(100vh - 80px);
    padding-top: 220px;
    text-align: center;
  }
  .m-header-banner h2 {
    font-size: 30px;
    margin: 0;
  }
  .m-header-banner p {
    font-size: 20px;
    padding: 0;
    margin: 30px 0 15px 0;
  }

  .m-header-1 {
    height: 180px;
    padding-top: 145px;
    text-align: left;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .m-hd {
    padding: 0;
  }
  .m-hd .am-nav > li > a {
    position: relative;
    display: block;
    padding: 0.4em;
    font-size: 14px;
  }
  .m-hd .m-about {
    display: none;
  }
  .m-hd .m-about li {
    float: left;
    margin-left: 5px;
    font-size: 14px;
  }
  .m-hd .am-btn {
    padding: 0.5em 0.4em;
  }

  .m-header-banner {
    height: auto;
    min-height: calc(100vh - 70px);
    padding-top: 120px;
    text-align: center;
  }
  .m-header-banner h2 {
    font-size: 30px;
    margin: 0;
  }
  .m-header-banner p {
    font-size: 18px;
    padding: 0;
    margin: 20px 0 15px 0;
  }

  .m-header-1 {
    height: 120px;
    padding-top: 75px;
    text-align: left;
  }
}
@media screen and (max-width: 479px) {
  body {
    padding-top: 70px;
  }
  .m-hd {
    padding: 0;
  }
  .m-nav { display: none; }
  .am-header-right .am-icon-bars { display: block !important; }

  .m-header-banner {
    height: auto;
    min-height: calc(100vh - 80px);
    padding-top: 120px;
    text-align: center;
  }
  .m-header-banner h2 {
    font-size: 30px;
    margin: 0;
  }
  .m-header-banner p {
    font-size: 14px;
    padding: 0;
    margin: 0;
  }

  .m-header-1 {
    height: 120px;
    padding-top: 75px;
    text-align: left;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
  .m-logo {
    background: url('../images/logo@2x.png?1444011698');
    -webkit-background-size: 125px 40px;
    background-size: 125px 40px;
    background-repeat: no-repeat;
  }
}
.am-btn-danger {
  background: #d22e3e;
  border: 1px solid #d22e3e;
}
.am-btn-danger:hover {
  background: #ba1f2e;
  border: 1px solid #ba1f2e;
}

.m-home-box { padding-bottom: 50px; } .m-case-list ul.am-thumbnails { padding: 0 !important; margin: 0 !important; } .m-case-list ul.am-thumbnails li { list-style: none !important; padding: 15px !important; margin: 0 !important; display: flex !important; width: 33.33% !important; float: left !important; } body .m-home-box:first-child .m-case-list ul.am-thumbnails { display: block !important; } body .m-home-box:first-child .m-case-list > li > .effect-lily { position: relative !important; display: flex !important; flex-direction: column !important; width: 100% !important; box-sizing: border-box !important; min-height: 300px !important; overflow: hidden !important; padding: 20px !important; margin: 0 !important; border-radius: 8px !important; background: #fff !important; box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important; } body .m-home-box:first-child .m-case-list > li > .effect-lily img { position: relative !important; width: 100% !important; height: 180px !important; object-fit: contain !important; margin: 0 auto 15px !important; } body .m-home-box:first-child .m-case-list > li > .effect-lily figcaption { position: relative !important; z-index: 2 !important; width: 100% !important; padding: 15px !important; box-sizing: border-box !important; }
@media (max-width: 768px) {
  .m-home-box {
    padding-bottom: 20px;
  }
  .m-case-list ul.am-thumbnails li {
    width: 100% !important;
    display: block !important;
    float: none !important;
  }
}
.m-home-box h2 { margin: 40px 0 15px 0; font-size: 28px; color: #a33a5d; font-weight: 600; }
.m-home-box:nth-of-type(2) h2, .m-home-box:nth-of-type(3) h2 { color: #9d4063; }
.footer-copyright { text-align: center !important; }
@media (max-width: 768px) {
  .m-home-box h2 {
    margin-top: 20px;
  }
}
.m-home-box p { margin: 0 0 30px 0; font-size: 16px; color: #b0b0b0; line-height: 1.6; }
.m-home-box ul h2 {
  padding: 0;
  margin: 0;
}

.m-mn-box {
  position: relative;
  background-color: #131617;
  margin-bottom: 60px;
}
.m-mn-box section h2 {
  margin: 0;
  padding: 0;
}
.m-mn-box section h3 {
  margin: 20px 0 10px 0;
  padding: 0;
}
.m-mn-box section p {
  margin-top: 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { margin: 0; padding: 0; }
.m-hd { margin: 0; padding: 0; }
header { margin: 0; padding: 0; }
.m-hd section { margin: 0; padding: 0; }
.m-hd .am-container { margin: 0 auto !important; padding: 0 !important; }
.am-container { margin-top: 0 !important; }

.m-hd .am-show-md-up { position: fixed !important; width: 100% !important; height: 50px !important; align-items: center; justify-content: center; box-sizing: border-box !important; top: 0 !important; margin: 0; padding: 0 20px; background-color: #131617 !important; z-index: 9999 !important; }
.m-hd .am-header.am-show-sm-only { position: fixed !important; width: 100% !important; height: 50px !important; display: none !important; align-items: center; justify-content: center; box-sizing: border-box !important; top: 0 !important; margin: 0; padding: 0 20px; background-color: #131617 !important; z-index: 9999 !important; }

@media (max-width: 768px) {
    .m-hd .am-show-md-up { display: none !important; }
}

@media (min-width: 769px) {
    .m-hd .am-header.am-show-sm-only { display: none !important; }
}
.m-hd .am-header.am-show-sm-only .m-logo { height: 35px; background-size: contain; }
  @media (max-width: 768px) {
  
    .m-hd .am-show-md-up .m-logo { margin: 0; height: 45px; flex-shrink: 0; background: url('../images/logo.png') no-repeat center center; background-size: contain; }
}
body { padding-top: 90px; margin: 0; }
    .am-slider { margin-top: 0 !important; }
.am-slider.am-slider-i2 { margin-top: 0 !important; }
.am-slider-i2 .am-slider-images { min-height: calc(100vh - 90px) !important; margin-top: 0 !important; }
@media (max-width: 768px) {
  body { padding-top: 68px; }
  .am-slider-i2 .am-slider-images { min-height: calc(100vh - 80px) !important; }
}
.m-container {
  margin: 0 0 60px 0;
}
@media (max-width: 768px) {
  .m-container {
    margin-bottom: 20px;
  }
}

/*
 *首页幻灯片
*/
.am-slider-i2 .am-slider-images { min-height: 400px; height: 100vh; display: flex; align-items: center; background-size: 50% auto; background-image: url('../images/banner.jpg') !important; background-color: #131617 !important; background-position: right center !important; background-repeat: no-repeat !important; color: #fff !important; padding: 0 5%; }
.am-slider-i2 .am-slider-desc { position: relative; left: 0; top: auto; right: 0; color: #ffffff; text-align: left; transform: none; width: 100%; }
.am-slider-i2 .am-slider-content h2 {
  font-size: 50px;
  margin: 0;
  padding: 0;
}
.am-slider-i2 .am-slider-content p { margin: 0; display: block; font-size: 30px; }
.am-slider-i2 .am-slider-title {
  font-weight: normal;
  margin-bottom: 5px;
  display: block;
  word-wrap: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.am-slider-i2 .am-slider-en {
  font-size: 12px;
}
.am-slider-i2 .am-btn {
  margin-top: 20px;
  margin-right: 10px;
}
.am-slider-i2 .am-direction-nav, .am-slider-i2 .am-pauseplay {
  display: none;
}

@media screen and (min-width: 960px) and (max-width: 1199px) {
  .am-slider-i2 .am-slider-images {
    height: 480px;
  }
  .am-slider-i2 .am-slider-desc {
    top: 40%;
  }
  .am-slider-i2 .am-direction-nav, .am-slider-i2 .am-pauseplay {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .am-slider-i2 .am-slider-images {
    height: 480px;
  }
  .am-slider-i2 .am-slider-desc {
    top: 200px;
  }
  .am-slider-i2 .am-slider-content h2 {
    font-size: 40px;
  }
  .am-slider-i2 .am-slider-content p {
    font-size: 24px;
  }
  .am-slider-i2 .am-btn {
    margin-top: 10px;
  }
  .am-slider-i2 .am-direction-nav, .am-slider-i2 .am-pauseplay {
    display: none;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .am-slider-i2 .am-slider-images { min-height: 400px; height: 100vh; display: block; background-size: cover !important; background-position: top center !important; padding: 30vh 5% 5% 5% !important; background-color: #131617 !important; }
  .am-slider-i2 .am-slider-desc { text-align: center; position: relative; top: auto; transform: none; width: 100%; }
  .am-slider-i2 .am-slider-content h2 {
    font-size: 20px;
  }
  .am-slider-i2 .am-slider-content p {
    font-size: 14px;
  }
  .am-slider-i2 .am-btn {
    margin-top: 10px;
  }
  .am-slider-i2 .am-direction-nav, .am-slider-i2 .am-pauseplay {
    display: none;
  }
}
@media screen and (max-width: 479px) {
  .am-slider-i2 .am-slider-images { min-height: 400px; height: 100vh; display: block; background-size: cover !important; background-position: top center !important; padding: 25vh 5% 5% 5% !important; background-color: #131617 !important; }
  .am-slider-i2 .am-slider-desc { text-align: center; position: relative; top: auto; transform: none; width: 100%; }
  .am-slider-i2 .am-slider-content h2 {
    font-size: 20px;
  }
  .am-slider-i2 .am-slider-content p {
    font-size: 14px;
  }
  .am-slider-i2 .am-btn {
    margin-top: 10px;
  }
  .am-slider-i2 .am-direction-nav, .am-slider-i2 .am-pauseplay {
    display: none;
  }
}
.m-case-list li { margin-top: 0; margin-bottom: 0; padding-bottom: 5px; }
.m-case-list li figure { margin-bottom: 0; position: relative; z-index: 1; display: flex; flex-direction: column; overflow: hidden; background: #f8f9fa; text-align: center; cursor: pointer; border-radius: 8px; transition: transform 0.3s ease; } .m-case-list li figure:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important; } .m-case-list li {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.m-case-list li:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(163, 58, 93, 0.15); }
.m-case-list li figcaption { padding: 1.5rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.m-case-list li figcaption h3 { font-size: 22px; font-weight: 500; color: #ffffff; text-align: center; margin-bottom: 0.5rem; } .m-case-list li figcaption p { font-size: 14px; color: #b0b0b0; margin-bottom: 12px; line-height: 1.5; } .m-case-list li figcaption { text-align: center; }  .m-case-list .grid > div { background: #131617; border: 1px solid rgba(163, 58, 93, 0.3); } .m-case-list .grid > div .w-12 { background: rgba(163, 58, 93, 0.2); } .m-case-list .grid > div .text-purple-500, .m-case-list .grid > div .text-green-500, .m-case-list .grid > div .text-blue-500 { color: #a33a5d; } .m-case-list li figcaption a { display: inline-block; padding: 8px 20px; background: #a33a5d; color: white; border-radius: 6px; text-decoration: none; margin-top: 10px; transition: all 0.3s ease; border: none; box-shadow: 0 2px 8px rgba(163, 58, 93, 0.2); } .m-case-list li figcaption a:hover { background: #8e2a4a; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(163, 58, 93, 0.3); }

/* 移动端导航栏与内容间隙优化 */
@media only screen and (max-width: 640px) {
  .hero-section {
    margin-top: -40px !important;
  }
  .m-hd {
    padding-bottom: 0 !important;
  }
  .hero-content {
    padding-top: 20px !important;
  }
}

/* OBS版本选择模态框样式 */
#obsVersionsModal .am-modal-dialog {
    background-color: #f8f9fa !important;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
}
#obsVersionsModal .am-modal-hd {
    background-color: #000000 !important;
    color: #ffffff !important;

    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 15px;
}
#obsVersionsModal .am-modal-hd {
    background-color: #a33a5d !important;
    color: #fffcfc !important;
    padding: 15px;
    position: relative;
}
#obsVersionsModal .am-modal-hd .am-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff !important;
    font-size: 20px;
    opacity: 1;
}
#obsVersionsModal .am-modal-bd {
    background-color: #ffffff !important;
    color: #333333 !important;
    padding: 20px;
}

.version-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.version-list li {
    margin-bottom: 10px;
}
.version-list li a {
    width: 100%;
    border-radius: 4px;
    padding: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}
.version-list li a:hover {
    background-color: #dd514c;
    color: white;
    border-color: #dd514c;
}
.m-case-list li figure img {
  position: relative;
  display: block;
}
.m-case-list li figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  margin-top: 120px;
}
.m-case-list li figure figcaption::before, .m-case-list li figure figcaption::after {
  pointer-events: none;
}
.m-case-list li figure figcaption, .m-case-list li figure a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.m-case-list li figure a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}
.m-case-list li figure h3 {
  word-spacing: -0.15em;
  font-weight: 300;
}
.m-case-list li figure h3 span {
  font-weight: 800;
}
.m-case-list li figure h3, .m-case-list li figure p {
  margin: 0;
}
.m-case-list li figure p {
  letter-spacing: 5px;
  font-size: 85.5%;
}

figure.effect-lily img { width: -webkit-calc(100% + 50px); width: calc(100% + 50px); height: auto; margin-left: auto !important; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: translate3d(0,0,0) !important; transform: translate3d(0,0,0) !important; background: url('../images/loading.gif?1440224064') 50% 50% no-repeat; }
figure.effect-lily figcaption { top: auto; bottom: 0; text-align: left; }
figure.effect-lily h3, figure.effect-lily p {
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
}
figure.effect-lily h3 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
figure.effect-lily p {
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
  transition: opacity 0.2s, transform 0.35s;
}
figure.effect-lily:hover img, figure.effect-lily:hover p {
  opacity: 1;
}
figure.effect-lily:hover img, figure.effect-lily:hover h3, figure.effect-lily:hover p {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #fff;
}
figure.effect-lily:hover img {
  opacity: .4;
}
figure.effect-lily:hover p {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
}

.m-cat-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}
.m-cat-nav ul li {
  float: left;
  list-style-type: none;
  margin-right: 20px;
  padding-top: 20px;
}
.m-cat-nav ul li.am-active a {
  color: #dd514c;
}
.m-cat-nav p {
  font-size: 12px;
  margin-bottom: 60px;
}

/* 联系我们 */
.m-contact {
  background-color: #121212;
  padding: 30px 0 50px 0;
  color: #fff;
}
.m-contact p {
  color: #fff;
}

.m-contact-us {
  padding: 40px 0;
}
.m-contact-us span {
  padding-top: 10px;
}
.m-contact-us .am-btn {
  width: 100%;
}

.m-contact-infobox {
  border: 1px solid rgba(0, 168, 204, 0.3);
  background: #131617;
  border-radius: 5px;
  padding: 40px 0;
  text-align: center;
}
.m-contact-infobox:hover {
  border: 1px solid #0d121b;
  background: #1a1f2a;
  color: #fff;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .m-contact-us {
    text-align: center;
  }
}
@media screen and (max-width: 479px) {
  .m-contact-us {
    text-align: center;
  }
}
/* 协助伙伴 */
.m-partner li img {
  border: 1px solid #E9E9E9;
  -webkit-filter: grayscale(1);
}
.m-partner li img:hover {
  border: 1px solid #737b8a;
}
.m-partner p {
  margin: 0 0 30px 0;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .m-contact-us {
    text-align: center;
  }
}
@media screen and (max-width: 479px) {
  .m-contact-us {
    text-align: center;
  }
}
/*返回顶部*/
.m-top-cbbfixed {
  position: fixed;
  right: 10px;
  transition: bottom ease .3s;
  bottom: -85px;
  z-index: 3;
  cursor: pointer;
}

.m-top-cbbtn {
  width: 40px;
  height: 40px;
  display: block;
  background-color: #d22e3e;
}

.m-top-go {
  transition: background-color ease .3s;
  margin-top: 1px;
}
.m-top-go:hover {
  background-color: #ba1f2e;
}

.m-top-goicon {
  float: left;
  margin: 14px 0 0 9px;
  width: 23px;
  height: 12px;
  background: url('../images/side-icon02.png?1406598120');
}

.m-top-weixin {
  background: #333;
}
.m-top-weixin div {
  background: url('../images/weixin.png?1440917261');
  width: 194px;
  height: 199px;
  position: absolute;
  left: -194px;
  top: -115px;
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  transform-origin: 100% 70%;
  -webkit-transform-origin: 100% 70%;
  transition: transform ease .3s, opacity ease .3s;
  -webkit-transition: all ease .3s;
  display: none\0;
  *display: none;
}
.m-top-weixin:hover div {
  display: block;
  transform: scale(1);
  -webkit-transform: scale(1);
  opacity: 1;
  *display: block;
}

.m-top-weixin-icon {
  float: left;
  margin: 12px 0 0 11px;
  width: 18px;
  height: 18px;
  background: url('../images/side-icon01.png?1406598156');
}

/* 网站底部 */
.m-footer {
  background-color: #141414;
  padding: 50px 0 20px;
  color: #b0b0b0;
  font-size: 14px;
}
.m-footer a {
  color: #b0b0b0;
}
.m-footer a:hover {
  color: #a33a5d;
}
.m-footer a {
  color: #9f9f9f;
}
.m-footer a:hover {
  color: #d22e3e;
}
.m-footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.m-footer section h2 {
  font-size: 16px;
  margin-bottom: 20px;
}
.m-footer i {
  margin-left: 10px;
}

.m-footer-container,
.m-footer-flink {
  padding-bottom: 60px;
}

.m-footer-subnav a,
.m-footer-flink a {
  margin-right: 10px;
}

.m-footer-bottom {
  background: #121212;
  font-size: 12px;
  padding: 30px 0;
  color: #555d6d;
}
.security-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
    display: inline-block;
}

.services-background {
    background-image: url('../images/banner.jpg') !important;
    background-color: #131617 !important;
    background-size: cover !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
}

.footer-copyright {
    font-size: 16px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .footer-copyright {
        font-size: 14px;
        line-height: 1.5;
        white-space: normal;
    }
}
.security-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}
.security-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}
.security-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}
.security-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}
.security-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}
.security-icon {
    width: 16px;
    height: 16px;
    vertical-align:
