.video-traffic {
  padding: 60px 0;
  background-color: #fff;
}
.video-traffic .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.video-traffic .section-title {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 15px;
}
.video-traffic .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}
.video-traffic .feature-grid {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.video-traffic .feature-grid .feature-top {
  display: flex;
  justify-content: center;
}
.video-traffic .feature-grid .feature-bottom {
  display: flex;
  justify-content: space-between;
}
.video-traffic .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
}
.video-traffic .feature-item.item-1, .video-traffic .feature-item.item-2 {
  justify-content: center;
}
.video-traffic .feature-item.item-3, .video-traffic .feature-item.item-4 {
  justify-content: space-between;
}
.video-traffic .feature-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.video-traffic .feature-item .icon .number {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.video-traffic .feature-item.item-1 .icon {
  background-color: #4CD964;
}
.video-traffic .feature-item.item-2 .icon {
  background-color: #5AC8FA;
}
.video-traffic .feature-item.item-3 .icon {
  background-color: #007AFF;
}
.video-traffic .feature-item.item-4 .icon {
  background-color: #FF9500;
}
.video-traffic .feature-item .content {
  width: 250px;
}
.video-traffic .feature-item .content h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}
.video-traffic .feature-item .content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.video-traffic .illustration {
  text-align: center;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}
.video-traffic .illustration img {
  max-width: 60%;
  height: auto;
  margin-bottom: -30px;
}

@media (max-width: 768px) {
  .video-traffic .feature-grid {
    grid-template-columns: 1fr;
  }
  .video-traffic .feature-item .content {
    width: auto;
    flex-shrink: 1;
  }
  .video-traffic .illustration {
    margin-top: 0;
  }
  .video-traffic .illustration img {
    max-width: 100%;
  }
}
.more-features {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.more-features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.more-features .section-title {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 15px;
}
.more-features .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.more-features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.more-features .feature-item {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.more-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.more-features .feature-item .icon {
  width: 48px;
  height: 48px;
  margin-right: 16px;
  flex-shrink: 0;
}
.more-features .feature-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.more-features .feature-item .content h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
}
.more-features .feature-item .content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.more-features .download-btn {
    display: block;
  text-align: center;
  margin: 40px 0;
}
.more-features .download-btn button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 24px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 1s infinite;
}
.more-features .download-btn button:hover {
  background: #0056b3;
  transform: scale(1.1);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #30aefb;
  }
  100% {
    box-shadow: 0 0 0 10px #ffffff;
  }
}
.more-features .notice {
  text-align: center;
  color: #666;
  font-size: 14px;
}
.more-features .notice a {
  color: #007bff;
  text-decoration: none;
}
.more-features .notice a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .more-features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .more-features .features-grid {
    grid-template-columns: 1fr;
  }
  .more-features .feature-item {
    padding: 20px;
  }
}
.section-banner {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
}
.section-banner .banner {
  width: 100%;
  height: auto;
}

.tech-support {
  padding: 80px 0;
  background-color: #fafaff;
}
.tech-support .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.tech-support .section-title {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 15px;
}
.tech-support .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.tech-support .support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  row-gap: 20px;
}
.tech-support .support-item {
    cursor: pointer;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
   box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.tech-support .support-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.tech-support .support-item .icon {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f3ff;
  border-radius: 12px;
}
.tech-support .support-item .icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.tech-support .support-item .content h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
}
.tech-support .support-item .content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .tech-support .support-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tech-support .support-item {
    padding: 24px;
  }
  .tech-support .support-item .icon {
    width: 50px;
    height: 50px;
    margin-right: 16px;
  }
  .tech-support .support-item .icon img {
    width: 28px;
    height: 28px;
  }
  .tech-support .support-item .content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .tech-support .support-item .content p {
    font-size: 14px;
  }
}
.saas-features {
  padding: 80px 0;
  background-color: #fff;
}
.saas-features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.saas-features .section-title {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 15px;
}
.saas-features .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}
.saas-features .features-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}
.saas-features .features-list {
  flex: 1;
  max-width: 600px;
}
.saas-features .feature-item {
  display: flex;
  align-items: center;
  padding: 16px;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #666;
}
.saas-features .feature-item:hover, .saas-features .feature-item.active {
  background: linear-gradient(90deg, rgba(45, 140, 240, 0.9), rgba(45, 140, 240, 0.8));
  color: #fff;
}
.saas-features .feature-item:hover .content h3, .saas-features .feature-item.active .content h3 {
  color: #fff;
}
.saas-features .feature-item:hover .content h3 span, .saas-features .feature-item.active .content h3 span {
  color: #2d8cf0;
}
.saas-features .feature-item:hover .content p, .saas-features .feature-item.active .content p {
  color: #fff;
}
.saas-features .feature-item:hover .arrow, .saas-features .feature-item.active .arrow {
  opacity: 1;
  transform: translateX(0);
}
.saas-features .feature-item .content {
  flex: 1;
}
.saas-features .feature-item .content h3 {
  font-size: 20px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 600;
}
.saas-features .feature-item .content h3 span {
  color: #2d8cf0;
}
.saas-features .feature-item .content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.saas-features .feature-item .arrow {
  width: 30px;
  height: 30px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.saas-features .feature-item .arrow img {
  width: 24px;
  height: 24px;
}
.saas-features .feature-preview {
  flex: 1;
  max-width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.saas-features .feature-preview img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

@media (max-width: 992px) {
  .saas-features .features-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .saas-features .features-list {
    max-width: 100%;
  }
  .saas-features .feature-preview {
    max-width: 100%;
    order: -1;
  }
  .saas-features .feature-item:hover, .saas-features .feature-item.active {
    transform: translateX(0);
  }
}
@media (max-width: 576px) {
  .saas-features .feature-item {
    padding: 16px;
  }
  .saas-features .feature-item .number {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-right: 12px;
  }
  .saas-features .feature-item .content h3 {
    font-size: 16px;
  }
  .saas-features .feature-item .content p {
    font-size: 13px;
  }
}
.testimonials {
  padding: 80px 0;
  background-color: #fff;
  background-image: url(../images/swiper-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.testimonials .section-title {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 50px;
}
.testimonials .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}
.testimonials .testimonials-slider {
  position: relative;
  padding: 0;
  padding-bottom: 120px;
  overflow: visible;
}
.testimonials .testimonials-slider .swiper-slide {
  transition: all 0.3s ease;
  opacity: 0.5;
  transform: scale(1);
}
.testimonials .testimonials-slider .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(45deg, transparent 12px, #fff 12px), linear-gradient(-45deg, transparent 12px, #fff 12px), linear-gradient(135deg, transparent 12px, #fff 12px), linear-gradient(-135deg, transparent 12px, #fff 12px);
  background-position: top left, top right, bottom right, bottom left;
  background-size: 51% 51%;
  background-repeat: no-repeat;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  pointer-events: none;
  z-index: 1;
}
.testimonials .testimonials-slider .swiper-slide::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px dashed rgba(255, 107, 53, 0.2);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}
.testimonials .testimonials-slider .swiper-slide.swiper-slide-active::before {
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}
.testimonials .testimonials-slider .swiper-slide.swiper-slide-active::after {
  border-color: rgba(255, 107, 53, 0.4);
}
.testimonials .testimonials-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1.05);
  z-index: 2;
}
.testimonials .testimonials-slider .swiper-slide.swiper-slide-active .testimonial-card {
    width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.testimonials .testimonials-slider .swiper-slide.swiper-slide-prev, .testimonials .testimonials-slider .swiper-slide.swiper-slide-next {
  opacity: 0.8;
  transform: scale(0.7);
  z-index: 1;
}
.testimonials .testimonials-slider .swiper-button-prev,
.testimonials .testimonials-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  top: auto;
  bottom: 0;
  margin-top: 0;
}
.testimonials .testimonials-slider .swiper-button-prev.swiper-button-prev,
.testimonials .testimonials-slider .swiper-button-next.swiper-button-prev {
  left: 50%;
  margin-left: -50px;
}
.testimonials .testimonials-slider .swiper-button-prev.swiper-button-next,
.testimonials .testimonials-slider .swiper-button-next.swiper-button-next {
  right: 50%;
  margin-right: -50px;
}
.testimonials .testimonials-slider .swiper-button-prev::after,
.testimonials .testimonials-slider .swiper-button-next::after {
  font-size: 16px;
  color: #666;
}
.testimonials .testimonials-slider .swiper-button-prev:hover,
.testimonials .testimonials-slider .swiper-button-next:hover {
  background-color: #2d8cf0;
}
.testimonials .testimonials-slider .swiper-button-prev:hover::after,
.testimonials .testimonials-slider .swiper-button-next:hover::after {
  color: #fff;
}
.testimonials .testimonials-slider .all {
  position: absolute;
  right: 50px;
  bottom: 0;
  z-index: 10;
}
.testimonials .testimonials-slider .all .all-btn {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(90deg, rgba(45, 140, 240, 0.9), rgba(45, 140, 240, 0.8));
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 140, 240, 0.2);
}
.testimonials .testimonials-slider .all .all-btn span {
  color: #fff;
  font-size: 15px;
  margin-right: 8px;
}
.testimonials .testimonials-slider .all .all-btn img {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.testimonials .testimonials-slider .all .all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 140, 240, 0.3);
}
.testimonials .testimonials-slider .all .all-btn:hover img {
  transform: translateX(3px);
}
.testimonials .testimonial-card {
  background: transparent;
  box-shadow: none;
  position: relative;
  z-index: 2;
  margin: 15px;
  border-radius: 12px;
  padding: 30px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.testimonials .testimonial-card .user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.testimonials .testimonial-card .user-info .user-meta {
  flex: 1;
  display: flex;
  flex-direction: row;
}
.testimonials .testimonial-card .user-info .user-meta .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}
.testimonials .testimonial-card .user-info .user-meta .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials .testimonial-card .user-info .user-meta .name {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}
.testimonials .testimonial-card .user-info .company {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 5;
		overflow: hidden;
		height: 110px;
		
}
.testimonials .testimonial-card .signature {
  color: #999;
  font-size: 14px;
  text-align: right;
}
.testimonials .testimonial-card .signature .company-name {
  color: #2d8cf0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .testimonials .testimonials-slider {
    padding: 0 20px 50px;
  }
  .testimonials .testimonials-slider .swiper-button-prev,
  .testimonials .testimonials-slider .swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .testimonials .testimonials-slider .swiper-button-prev.swiper-button-prev,
  .testimonials .testimonials-slider .swiper-button-next.swiper-button-prev {
    margin-left: -40px;
  }
  .testimonials .testimonials-slider .swiper-button-prev.swiper-button-next,
  .testimonials .testimonials-slider .swiper-button-next.swiper-button-next {
    margin-right: -40px;
  }
  .testimonials .testimonials-slider .swiper-button-prev::after,
  .testimonials .testimonials-slider .swiper-button-next::after {
    font-size: 14px;
  }
  .testimonials .testimonials-slider .all {
    right: 20px;
  }
  .testimonials .testimonials-slider .all .all-btn {
    padding: 10px 20px;
  }
  .testimonials .testimonials-slider .all .all-btn span {
    font-size: 14px;
  }
  .testimonials .testimonials-slider .all .all-btn img {
    width: 16px;
    height: 16px;
  }
  .testimonials .testimonial-card {
    padding: 20px;
  }
  .testimonials .testimonial-card .user-info .avatar {
    width: 50px;
    height: 50px;
  }
  .testimonials .testimonial-card .user-info .user-meta .name {
    font-size: 16px;
  }
  .testimonials .testimonial-card .user-info .user-meta .company {
    font-size: 13px;
  }
}
@media (max-width: 1200px) {
  .testimonials .testimonials-slider .swiper-slide {
    opacity: 1;
    transform: none;
  }
  .testimonials .testimonials-slider .swiper-slide.swiper-slide-active {
    transform: none;
  }
  .testimonials .testimonials-slider .swiper-slide.swiper-slide-prev, .testimonials .testimonials-slider .swiper-slide.swiper-slide-next {
    opacity: 1;
    transform: none;
  }
}
.preview-section {
  padding: 80px 0;
  background-color: #fff;
}
.preview-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.preview-section .section-title {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}
.preview-section .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}
.preview-section .preview-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.preview-section .preview-tabs .tab-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  background-color: #fff;
  color: #666;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.preview-section .preview-tabs .tab-btn:hover {
  background-color: #f0f7ff;
  color: #2d8cf0;
}
.preview-section .preview-tabs .tab-btn.active {
  background-color: #2d8cf0;
  color: #fff;
}
.preview-section .preview-slider {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
}
.preview-section .preview-slider .swiper-container {
  display: none;
  overflow: hidden;
  padding: 20px 0;
}
.preview-section .preview-slider .swiper-container.active {
  display: block;
}
.preview-section .preview-slider .swiper-container .swiper-button-prev,
.preview-section .preview-slider .swiper-container .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.preview-section .preview-slider .swiper-container .swiper-button-prev::after,
.preview-section .preview-slider .swiper-container .swiper-button-next::after {
  font-size: 16px;
  color: #666;
}
.preview-section .preview-slider .swiper-container .swiper-button-prev:hover,
.preview-section .preview-slider .swiper-container .swiper-button-next:hover {
  background-color: #2d8cf0;
}
.preview-section .preview-slider .swiper-container .swiper-button-prev:hover::after,
.preview-section .preview-slider .swiper-container .swiper-button-next:hover::after {
  color: #fff;
}
.preview-section .preview-slider .swiper-container .swiper-button-prev {
  left: 0px;
}
.preview-section .preview-slider .swiper-container .swiper-button-next {
  right: 0px;
}
.preview-section .preview-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 15px;
}
.preview-section .preview-slider .swiper-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.preview-section .preview-slider .mobile-swiper .swiper-slide {
  max-width: 250px;
  margin: 0 auto;
}
.preview-section .preview-slider .mobile-swiper .swiper-button-prev {
  left: 0;
}
.preview-section .preview-slider .mobile-swiper .swiper-button-next {
  right: 0;
}
.preview-section .preview-slider .merchant-swiper .swiper-slide,
.preview-section .preview-slider .admin-swiper .swiper-slide {
  max-width: 1000px;
}

@media (max-width: 768px) {
  .preview-section .preview-tabs {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 10px;
  }
  .preview-section .preview-tabs .tab-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  .preview-section .preview-slider .swiper-slide.mobile-slide, .preview-section .preview-slider .swiper-slide.pc-slide {
    max-width: 100%;
  }
}
.update-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.update-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.update-section .section-title {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 15px;
}
.update-section .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}
.update-section .update-timeline {
  position: relative;
}
.update-section .update-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e8e8e8;
}
.update-section .update-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}
.update-section .update-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2d8cf0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #2d8cf0;
}
.update-section .update-item .version {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.update-section .update-item .version .number {
  font-size: 24px;
  color: #2d8cf0;
  font-weight: 600;
}
.update-section .update-item .version .tag {
  padding: 4px 12px;
  background: #2d8cf0;
  color: #fff;
  border-radius: 15px;
  font-size: 12px;
}
.update-section .update-item .update-content {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.update-section .update-item .update-content .title {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 500;
}
.update-section .update-item .update-content .detail p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}
.update-section .update-item .update-content .detail p:last-child {
  margin-bottom: 0;
}
.update-section .update-item .update-content .date {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #eee;
  color: #999;
  font-size: 14px;
}
.update-section .view-more {
  text-align: center;
  margin-top: 40px;
}
.update-section .view-more .more-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: linear-gradient(90deg, rgba(45, 140, 240, 0.9), rgba(45, 140, 240, 0.8));
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 140, 240, 0.2);
}
.update-section .view-more .more-btn span {
  color: #fff;
  font-size: 16px;
  margin-right: 8px;
}
.update-section .view-more .more-btn img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.update-section .view-more .more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 140, 240, 0.3);
}
.update-section .view-more .more-btn:hover img {
  transform: translateY(3px);
}
.view-more .more-link {
  display: none;
  align-items: center;
  padding: 12px 30px;
  background: linear-gradient(90deg, rgba(45, 140, 240, 0.9), rgba(45, 140, 240, 0.8));
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 140, 240, 0.2);
}
.update-section .view-more .more-link span {
  color: #fff;
  font-size: 16px;
  margin-right: 8px;
}
.update-section .view-more .more-link img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.update-section .view-more .more-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 140, 240, 0.3);
}
.update-section .view-more .more-link:hover img {
  transform: translateY(3px);
}
@media (max-width: 768px) {
  .update-section .update-timeline {
    padding-left: 20px;
  }
  .update-section .update-item {
    padding-left: 20px;
  }
  .update-section .update-item .version .number {
    font-size: 20px;
  }
  .update-section .update-item .update-content {
    padding: 15px;
  }
  .update-section .update-item .update-content .title {
    font-size: 15px;
  }
  .update-section .update-item .update-content .detail p {
    font-size: 13px;
  }
  .update-section .view-more .more-btn {
    padding: 10px 24px;
  }
  .update-section .view-more .more-btn span {
    font-size: 14px;
  }
  .update-section .view-more .more-btn img {
    width: 14px;
    height: 14px;
  }
  .update-section .view-more .more-link {
    padding: 10px 24px;
  }
  .update-section .view-more .more-link span {
    font-size: 14px;
  }
  .update-section .view-more .more-link img {
    width: 14px;
    height: 14px;
  }
}

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