* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll; /* 始终显示滚动条占位，防止页面跳转时宽度变化导致菜单栏抖动 */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 椤堕儴瀵艰埅 */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #1890ff;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #1890ff;
  background: #f1f5f9;
}

.nav-actions .hotline {
  color: #1890ff;
  font-weight: 600;
  font-size: 1.1rem;
  background: #f1f5f9;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
}

/* Hero 妯箙 */
.hero {
  background: linear-gradient(180deg, #1e88e5 0%, #00d4ff 100%);
  color: white;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

/* 有背景图片时覆盖默认渐变 */
.hero.hero-with-image {
  background: none !important;
}

/* 有背景图片时隐藏网格纹理 */
.hero.hero-with-image::before {
  display: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  opacity: 0.95;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 10px;
  opacity: 0.8;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn {
  padding: 12px 32px;
  border: none;
  border-radius: 6px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #1890ff;
  color: #fff;
}

.btn-primary:hover {
  background: #40a9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24,144,255,0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.hero-image {
  flex: 0 0 300px;
}

.hero-icon {
  width: 300px;
  height: 300px;
  text-align: center;
  opacity: 0.9;
}

/* 鏍稿績鏈嶅姟 */
.services {
  padding: 100px 20px;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-title {
  font-size: 2.25rem;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #1890ff;
  border-radius: 2px;
}

.more-link {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #1890ff;
  text-decoration: none;
  font-weight: 500;
}

.more-link:hover {
  text-decoration: underline;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(24, 144, 255, 0.2);
  border-color: #1890ff;
}

.service-icon {
  display: block;
  text-align: center;
  padding: 0;
  background: #f8fafc;
  width: 100%;
  min-height: 200px;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-icon svg {
  color: #1890ff;
  margin: 60px auto;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #1e293b;
  margin: 0;
  font-weight: 700;
  padding: 16px 18px 12px;
  line-height: 1.3;
}

.service-card > p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
  padding: 0 18px 6px;
  font-weight: 500;
  background: #fff;
}

.service-features {
  list-style: none;
  margin: 0;
  padding: 0 18px 12px;
  background: #fff;
}

.service-features li {
  padding: 2px 0;
  color: #475569;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  line-height: 1.5;
}

.service-link {
  display: block;
  color: #fff;
  background: #1890ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  padding: 11px 18px;
  text-align: center;
  border: none;
  margin-top: 0;
}

.service-link:hover {
  background: #40a9ff;
  box-shadow: 0 4px 12px rgba(24, 144, 255, 0.4);
}

.service-link:hover {
  color: #0050b3;
}

/* 鏈嶅姟浼樺娍 */
.advantages {
  padding: 100px 20px;
  background: #ffffff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.advantage-item {
  text-align: center;
  padding: 40px 30px;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.advantage-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #1890ff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.advantage-item:hover::after {
  transform: scaleX(1);
}

.advantage-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1890ff;
  opacity: 0.1;
  margin-bottom: 20px;
  line-height: 1;
}

.advantage-item h3 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 600;
}

.advantage-item p {
  color: #64748b;
  line-height: 1.6;
}

/* 鏂伴椈鍔ㄦ€?*/
.news-section {
  padding: 100px 20px;
  background: #f8fafc;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.news-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #1890ff;
}

.news-tag {
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  font-weight: 600;
  align-self: flex-start;
}

.news-card h3 {
  font-size: 1.35rem;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.news-card p {
  color: #64748b;
  margin-bottom: 25px;
  line-height: 1.7;
  flex: 1;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #94a3b8;
  font-size: 0.9rem;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.news-meta a {
  color: #1890ff;
  text-decoration: none;
  font-weight: 500;
}

.news-meta a:hover {
  text-decoration: underline;
}

/* 瀹㈡埛妗堜緥 */
.cases-section {
  padding: 100px 20px;
  background: #ffffff;
}

.cases-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.tab-btn {
  padding: 12px 36px;
  border: 2px solid transparent;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.tab-btn.active {
  background: #1890ff;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(24,144,255,0.3);
}

.cases-content {
  max-width: 900px;
  margin: 0 auto;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.chat-preview {
  background: #f8fafc;
  padding: 40px;
  border-radius: 16px;
  max-height: 600px;
  overflow-y: auto;
  border: 1px solid #e2e8f0;
}

.chat-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.chat-item.consultant {
  flex-direction: row-reverse;
}

.chat-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-bubble {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 12px;
  max-width: 75%;
  position: relative;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  color: #334155;
  line-height: 1.5;
}

.chat-item.consultant .chat-bubble {
  background: #1890ff;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(24,144,255,0.2);
}

.chat-time {
  font-size: 0.8rem;
  color: #94a3b8;
  display: block;
  margin-top: 8px;
}

.chat-item.consultant .chat-time {
  color: rgba(255,255,255,0.8);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.cert-item {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
}

.cert-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #1890ff;
}

.cert-image {
  margin-bottom: 25px;
  color: #1890ff;
  display: flex;
  justify-content: center;
}

.cert-item p {
  color: #1e293b;
  font-weight: 600;
  font-size: 1.1rem;
}

.public-list {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.public-item {
  padding: 25px 0;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.public-item:hover {
  background: #f8fafc;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -15px;
  margin-right: -15px;
  border-radius: 8px;
  border-bottom-color: transparent;
}

.public-item:last-child {
  border-bottom: none;
}

.public-item h4 {
  color: #1e293b;
  margin-bottom: 12px;
  font-size: 1.15rem;
  font-weight: 600;
}

.public-item p {
  color: #64748b;
  margin-bottom: 15px;
  line-height: 1.6;
}

.public-item a {
  color: #1890ff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.public-item a:hover {
  color: #0050b3;
}

/* 联系我们 */
.contact-section {
  padding: 100px 20px;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 25px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.contact-icon {
  flex-shrink: 0;
  color: #1890ff;
  display: flex;
  align-items: center;
  background: #e0f2fe;
  padding: 15px;
  border-radius: 50%;
}

.contact-item h4 {
  color: #1e293b;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-item p {
  color: #64748b;
  margin: 6px 0;
  line-height: 1.6;
}

.qrcode {
  text-align: center;
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.qr-placeholder {
  width: 160px;
  height: 160px;
  background: #ffffff;
  border: 2px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 0 auto 15px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  color: #1e293b;
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  background: #f8fafc;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1890ff;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(24,144,255,0.1);
}

.contact-form button {
  width: 100%;
}

/* 底部版权 */
.footer {
  background: #1890ff;
  color: #f8fafc;
  padding: 80px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.footer-section h4 {
  margin-bottom: 25px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
  font-size: 1rem;
}

.footer-section a:hover {
  color: #e0f2ff;
  text-decoration: underline;
}

.footer-section p {
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.6;
  font-weight: 500;
  font-size: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  color: #e0f2ff;
  text-decoration: underline;
}

/* 右侧悬浮窗 */
.float-panel {
  position: fixed;
  right: 30px;
  bottom: 100px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.float-item {
  background: #ffffff;
  color: #1e293b;
  padding: 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  min-width: 80px;
  border: 1px solid #e2e8f0;
}

.float-item:hover {
  background: #1890ff;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(24,144,255,0.2);
}

.float-icon {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

.float-item span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
}

/* 人员查询弹窗 */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.search-modal.active {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
  color: #1e293b;
  font-size: 1.5rem;
  font-weight: 700;
}

.close-btn {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.3s;
}

.close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-body {
  padding: 30px;
}

.search-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 25px;
  background: #f8fafc;
  transition: all 0.3s;
}

.search-input:focus {
  outline: none;
  border-color: #1890ff;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(24,144,255,0.1);
}

.search-result {
  margin-top: 30px;
}

.employee-info {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #1890ff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.employee-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #1890ff;
  box-shadow: 0 4px 12px rgba(24, 144, 255, 0.2);
}

.employee-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.employee-avatar-default {
  background: linear-gradient(135deg, #1890ff 0%, #0066cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.employee-avatar-default span {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.employee-info h4 {
  color: #1e293b;
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.info-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-label {
  font-weight: 500;
  color: #64748b;
  width: 100px;
  flex-shrink: 0;
}

.info-value {
  color: #1e293b;
  flex: 1;
  font-weight: 500;
}

.no-result {
  text-align: center;
  padding: 40px;
  color: #94a3b8;
  font-size: 1.1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-image {
    flex: 0 0 auto;
    margin-top: 40px;
  }

  .hero-icon {
    width: 120px;
    height: 120px;
  }

  .services-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .cases-tabs {
    flex-direction: column;
  }

  .chat-bubble {
    max-width: 85%;
  }

  .float-panel {
    right: 15px;
    bottom: 80px;
  }

  .float-item {
    padding: 12px;
    min-width: 60px;
  }

  .float-icon {
    display: flex;
    justify-content: center;
  }

  .float-item span {
    font-size: 0.75rem;
  }
}

/* 滚动条样式 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* 动画效果 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.news-card,
.advantage-item {
  animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


