/**
 * Global styles for the website
 * Contains variables, mixins, and common component styles
 */
/**
 * Hover slide effect mixin
 * Creates a sliding background effect on hover
 * @param {Color} @bg-color - Background color for the slide effect (default: white)
 * @param {Color} @text-color - Text color (default: black)
 */
/**
 * Utility Mixins
 */
.flex-center {
  display: flex;
  align-items: center;
}
/* ==========================================================================
   Component Styles
   ========================================================================== */
/* Header
   ========================================================================== */
.header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  z-index: 1000;
  /* Mobile Controls
   ========================================================================== */
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.header-logo img {
  height: 40px;
}
.header-nav {
  display: flex;
  align-items: center;
}
.header .header-mobile-controls {
  display: none;
  align-items: center;
}
/* Navigation
   ========================================================================== */
.header-nav-menu {
  display: flex;
  align-items: center;
}
.header-nav-item {
  position: relative;
  margin: 0 15px;
}
.header-nav-item:hover .header-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header-nav-item:hover .header-nav-link {
  color: #1e96ec;
}
.header-nav-item:hover .header-nav-link .icon-down-arrow {
  transform: rotate(180deg);
}
.header-nav-link {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}
.header-nav-link i {
  font-size: 12px;
}
.header-nav-link i.icon-down-arrow {
  margin-left: 5px;
  font-size: 12px;
  margin-top: 2px;
  transition: transform 0.3s ease;
}
.header-nav-link:hover {
  color: #1e96ec;
}
.header-nav-link.store-link {
  color: #fff;
  padding: 3px 10px;
  border-radius: 8px;
  background: linear-gradient(109deg, #FFAF50 -33.39%, #FF4CA0 32.2%, #7733FD 104.68%);
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  cursor: pointer;
  -webkit-mask-image: -webkit-radial-gradient(#fff, linear-gradient(109deg, #7733FD -33.39%, #FF4CA0 39.1%, #FFAF50 104.68%));
  border: 0 solid;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.header-nav-link.store-link:disabled {
  cursor: default;
}
.header-nav-link.store-link:-moz-focusring {
  outline: auto;
}
.header-nav-link.store-link svg {
  display: block;
  vertical-align: middle;
}
.header-nav-link.store-link [hidden] {
  display: none;
}
.header-nav-link.store-link span {
  position: relative;
  color: #fff;
  z-index: 1;
}
.header-nav-link.store-link:before {
  background: linear-gradient(109deg, #7733FD -33.39%, #FF4CA0 39.1%, #FFAF50 104.68%);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(var(--progress, -100%));
  transition: transform 0.2s ease;
}
.header-nav-link.store-link:hover:before {
  --progress: 0;
}
.header-nav-link.store-link .iconfont {
  font-size: 20px;
}
.header-nav-link.store-link span {
  display: flex;
  align-items: center;
  gap: 5px;
}
/* Submenu
   ========================================================================== */
.header-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  padding: 20px 10px 10px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transition: all 0.2s ease;
  z-index: 999;
}
.header-submenu-item {
  display: flex;
  align-items: flex-start;
  padding: 20px 10px 10px;
  border-radius: 8px;
  cursor: pointer;
  width: 300px;
  transition: background-color 0.3s ease;
}
.header-submenu-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.header-submenu-icon {
  width: 34px;
  height: 34px;
  margin-right: 12px;
  flex-shrink: 0;
}
.header-submenu-content {
  display: flex;
  flex-direction: column;
}
.header-submenu-title {
  margin: 0 0 5px;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}
.header-submenu-description {
  font-size: 12px;
  color: #808080;
  line-height: 1.5;
}
.header-submenu.support {
  display: flex;
  flex-direction: column;
}
.header-submenu-support-item {
  display: flex;
  align-items: center;
  padding: 27px 10px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  min-width: 200px;
  gap: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.header-submenu-support-item img {
  width: 27px;
  height: 27px;
}
.header-submenu-support-item span {
  display: inline-block;
  width: fit-content;
}
.header-submenu-support-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.header-search-container {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: 20px;
}
.header-search-container .header-login-btn {
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #061C3D;
  background: #FFF;
  text-decoration: none;
  padding: 3px 15px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  min-height: 28px;
  box-sizing: border-box;
}
.header-search-container .header-login-btn span {
  font-size: 14px;
  color: #061C3D;
  z-index: 1;
}
.header-search-container .header-login-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #061C3D;
  border-radius: 6px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.header-search-container .header-login-btn:hover:before {
  transform: translateX(0);
}
.header-search-container .header-login-btn:hover span {
  color: #fff;
}
.header-search-box {
  position: absolute;
  right: 55px;
  background: #fff;
  display: flex;
  align-items: center;
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease;
  z-index: 2;
}
.header-search-box.active {
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.header-search-box.active .search-close {
  display: block;
}
.header-search-input {
  width: 100%;
  padding: 8px 15px;
  border: none;
  outline: none;
  font-size: 14px;
}
.header-search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #333;
}
.header-search-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #666666;
  display: none;
}
.footer {
  background-color: #061C3D;
  padding: 60px 0 30px;
  color: #fff;
}
.footer-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 0.7fr 0.6fr 1.2fr;
  gap: 20px;
  margin-bottom: 40px;
}
.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.footer-header .icon-down-arrow {
  display: none;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  transition: transform 0.3s;
}
.footer-header p {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
}
.footer-col ul {
  transition: max-height 0.3s ease-out;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s;
  line-height: 1.4;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-col:nth-child(2) ul li a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.footer-col.newsletter .newsletter-content {
  transition: max-height 0.3s ease-out;
}
.footer-col.newsletter .newsletter-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.footer-col.newsletter .subscribe-btn {
  background: linear-gradient(93deg, #4596E5 -9.17%, #4539CC 105.48%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}
.footer-col.newsletter .subscribe-btn:hover {
  transform: translateY(-5px);
}
.footer-bottom {
  border-top: 1px solid rgba(215, 218, 237, 0.2);
  padding-top: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  color: #eaeaea;
  font-size: 14px;
}
.footer .media-footer {
  width: 150px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.footer .media-icons {
  width: calc(33.33% - 10px);
  text-align: left;
}
.footer .media-icons img {
  width: 32px;
  height: 32px;
}
.footer .language-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 10%;
  position: relative;
}
.footer .language-box .lan-img {
  width: 17px;
  margin-right: 10px;
}
.footer .language-box .arrow {
  margin-left: 6px;
  width: 8px;
}
.footer .language-box .lan-text {
  font-size: 12px;
  color: #D7DAED;
  cursor: pointer;
}
.footer .language-box .language-list {
  position: absolute;
  background: #2C465C;
  border: 1px solid #415264;
  box-sizing: border-box;
  width: 122px;
  padding: 13px 0 8px 0;
  right: 0;
  bottom: 35px;
  display: none;
}
.footer .language-box .language-list ul {
  margin-top: 0;
}
.footer .language-box .language-list ul li:not(:first-child) {
  margin-top: 8px;
}
.footer .language-box .language-list ul li a {
  color: #D7DAED;
  font-size: 12px;
  line-height: 1.4;
}
/* Back to top button */
.back-to-top {
  bottom: 10%;
  cursor: pointer;
  height: 50px;
  width: 50px;
  background-color: #4D6C82;
  color: #fff;
  position: fixed;
  right: 1%;
  text-align: center;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top img {
  width: 24px;
  height: 29px;
  object-fit: cover;
}
.back-to-top:hover {
  background-color: #000;
}
/* Responsive Styles
   ========================================================================== */
@media screen and (max-width: 1200px) {
  .footer-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .header-submenu-item {
    width: 280px;
  }
}
@media screen and (max-width: 996px) {
  .header-submenu-item {
    width: 220px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    position: relative;
  }
  .header-logo img {
    height: 32px;
  }
  .header-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .header-nav.active {
    transform: translateX(0);
  }
  .header .header-mobile-controls {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header-nav {
    overflow-y: auto;
  }
  .header-nav-menu {
    flex-direction: column;
    width: 100%;
  }
  .header-nav-item {
    width: 100%;
  }
  .header-nav-item .header-submenu {
    display: none;
    position: static;
    transform: unset;
    box-shadow: none;
    width: 100%;
    box-shadow: unset;
    opacity: 1;
    visibility: visible;
    transition: unset;
  }
  .header-nav-item .header-submenu .header-submenu-item {
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }
  .header-nav-item .header-submenu .header-submenu-title {
    margin-bottom: 0;
  }
  .header-nav-item .header-submenu .header-submenu-description {
    display: none;
  }
  .header-nav-item .header-submenu .header-submenu-support-item {
    padding: 15px 20px;
  }
  .header-nav-item:hover .header-submenu {
    transform: unset;
  }
  .header-nav-item:hover .header-nav-link .icon-down-arrow {
    transform: unset;
  }
  .header-nav-item.active .header-nav-link .icon-down-arrow {
    transform: rotate(180deg);
  }
  .header-nav-link {
    padding: 15px 20px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    justify-content: space-between;
    box-sizing: border-box;
  }
  .header-nav-link.store-link {
    display: none;
  }
  .header-menu-toggle {
    display: block;
    background: none;
    border: none;
    padding: 10px;
    margin-left: 10px;
    cursor: pointer;
  }
  .header-menu-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
  }
  .header-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .header-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .header-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  .header-mobile-login {
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #061C3D;
    background: #FFF;
    color: #061C3D;
    text-decoration: none;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
  }
  .header-search-container {
    position: static;
    margin-left: 0;
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap: 0;
  }
  .header-search-container .header-login-btn {
    display: none;
  }
  .header-search-box {
    position: relative;
    right: auto;
    width: 100%;
    order: 2;
  }
  .header-search-box.active {
    width: 100%;
  }
  .header-search-toggle {
    order: 1;
  }
  .footer {
    padding: 0;
  }
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 20px;
    padding-top: 20px;
  }
  .footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 15px;
  }
  .footer-col h3 {
    margin: 0;
    padding: 15px 0;
  }
  .footer-col ul,
  .footer-col .newsletter-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  }
  .footer-col li:last-child {
    margin-bottom: 0;
  }
  .footer-col.active ul,
  .footer-col.active .newsletter-content {
    max-height: 500px;
    padding: 0 0 15px 0;
  }
  .footer-col.active .footer-header .icon-down-arrow {
    transform: rotate(180deg);
  }
  .footer-header .icon-down-arrow {
    display: block;
    transition: transform 0.3s ease;
  }
  .footer-bottom {
    padding: 15px;
    text-align: center;
  }
  .footer-bottom p {
    font-size: 12px;
    line-height: 24px;
  }
  .footer-bottom .language-box {
    display: none;
  }
  .nav-link.store-link {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .footer-header h3 {
    font-size: 16px;
  }
  .footer-col ul li a,
  .footer-col p {
    font-size: 14px;
  }
}
body.header-menu-open {
  overflow: hidden;
}
/* product  navigation*/
.tf-navigation {
  display: none;
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 8px 0;
  z-index: 2024;
}
.tf-navigation.is-fixed {
  position: fixed;
  display: block;
  top: 0;
}
.tf-navigation .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tf-navigation .navigation-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tf-navigation .navigation-logo_image {
  margin-right: 8px;
}
.tf-navigation .navigation-logo .info-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}
.tf-navigation .navigation-logo .info-text {
  font-size: 12px;
  font-weight: 400;
  color: #828282;
  line-height: 1.5;
}
.tf-navigation .navigation-content {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.tf-navigation .navigation-content_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tf-navigation .navigation-content_nav li {
  list-style: none;
  margin-right: 36px;
  cursor: pointer;
}
.tf-navigation .navigation-content_nav li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #797979;
}
.tf-navigation .navigation-content_nav li a:hover {
  color: #37bba1;
}
.tf-navigation .navigation-content .nav-icon {
  margin-right: 30px;
  color: #797979;
  font-size: 18px;
  font-weight: 500;
}
.tf-navigation .navigation-content .nav-icon .iconfont {
  font-size: 18px;
  font-weight: 500;
}
.tf-navigation .navigation-content .btn-group {
  gap: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.tf-navigation .navigation-content .btn-group .tf-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 141px;
  height: 42px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  background: #37bba1;
  border-radius: 4px;
  border: 1px solid transparent;
  gap: 10px;
  margin-right: 0;
}
.tf-navigation .navigation-content .btn-group .tf-btn .iconfont {
  font-size: 24px;
}
.tf-navigation .navigation-content .btn-group .buy-btn {
  color: #37bba1;
  background-color: #fff;
  border-color: #37bba1;
}
@media screen and (max-width: 996px) {
  .tf-navigation .navigation-logo_info {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .tf-navigation {
    padding: 8px 0;
  }
  .tf-navigation .navigation-content .nav-icon {
    margin-right: 0;
    margin-left: 30px;
  }
  .tf-navigation .navigation-mobile {
    display: none;
    position: absolute;
    width: 105px;
    text-align: center;
    right: 0;
    top: 100%;
    padding: 15px;
    border-radius: 0px 0px 5px 5px;
    background: #fff;
    border: 1px solid #f5f5f5;
  }
  .tf-navigation .navigation-mobile li {
    line-height: 1.5;
    list-style: none;
    cursor: pointer;
  }
  .tf-navigation .navigation-mobile li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    color: #797979;
  }
  .tf-navigation .navigation-mobile li a:hover {
    color: #37bba1;
  }
}
/* online-tool */
.online-tool {
  background: url(/uploads/page/online-tool/download-bg.webp) no-repeat top center;
  background-size: 100%;
  padding: 60px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  position: relative;
}
.online-tool:after{width: 100%;height: 100%;position: absolute;top: 0;left: 0;content:"";z-index:-1;background:linear-gradient(180deg, rgba(0, 0, 0, 0.20) 100%, rgba(255, 255, 255, 0.00) 20%), #000;}
.online-tool.online-tool-amc {
  background: url(https://img.tunefab.com/uploads/page/online-tool/download-amc-bg.png) no-repeat top center;
  background-size: 100%;
}
.online-tool.online-tool-ymc {
  background: url(https://img.tunefab.com/uploads/page/online-tool/download-ymc-bg.png) no-repeat top center;
  background-size: 100%;
}
.online-tool h1,
.online-tool h2, .online-tool p:nth-child(1) { /*zuo*/
  color: #fff;
  font-size: 36px;
  font-weight: bold;
}
.online-tool h2 span, .online-tool p:nth-child(1) span { /*zuo*/
  color: #2dc261;
}
.online-tool.online-tool-ymc h2 span{
  color: #ff0000;
}
.online-tool .down_desc {
  color: #ffffff;
  max-width: 580px;
  margin: 20px auto;
}
.online-tool .down_feature {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}
.online-tool .down_feature .feature_flex {
  background: #fff;
  position: relative;
  margin: 15px 0;
  max-width: 100%;
  border-radius: 4px;
  border: 1px #caddd3 solid;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.online-tool .down_feature .down_input {
  box-sizing: border-box;
  font-size: 14px;
  color: #7e7e7e;
  padding: 10px;
  flex: 0 0 75%;
  border: unset;
}
.online-tool .down_feature.error {
  border: 1px #f00 solid;
}
.online-tool .down_feature .error-text {
  text-align: left;
  margin: 15px 0;
  color: #e02020;
}
.online-tool.online-tool-amc .down_btn {
  background: #E73654;
}
.online-tool.online-tool-ymc .down_btn{
  background: #007BFF;
}
.online-tool.online-tool-amc .down_btn:hover {
  background: #E73654;
}
.online-tool.online-tool-ymc .down_btn:hover{
  background: #007BFF;
}
.online-tool .down_btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #2dc261;
  padding: 11px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: unset;
}
.online-tool .down_btn img {
  width: 16px;
  height: auto;
}
.online-tool .down_btn:hover {
  background: #00a63a;
}
.online-tool .down_jump {
  color: #2dc261;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.online-tool.online-tool-amc .down_jump {
  color: rgba(255, 255, 255, 0.6);
}
.online-tool .down_jump .arrow-icon {
  transition: all 0.5s;
  width: 16px;
  height: auto;
}
.online-tool .down_jump:hover {
  text-decoration: underline;
}
.online-tool .down_jump:hover .arrow-icon {
  transform: translateX(10px);
}
.online-tool .down_loading {
  display: none;
  text-align: center;
  margin: 40px auto 0;
}
.online-tool .down_loading img {
  width: 140px;
  height: auto;
}
.online-tool .down_loading .down_text {
  color: #888888;
}
.online-tool .down_loading .down_text span {
  position: relative;
  top: 0;
  display: inline-block;
  animation: toolbounce 0.3s ease infinite alternate;
}
.online-tool .down_loading .down_text span:nth-child(2) {
  animation-delay: 0.1s;
}
.online-tool .down_loading .down_text span:nth-child(3) {
  animation-delay: 0.2s;
}
.online-tool .down_exhibition {
  margin: 0 auto;
  max-width: 580px;
  display: flex;
  align-items: center;
  gap: 23px;
}
.online-tool .down_exhibition .exhibition_img {
  margin-top: 80px;
  width: 81px;
  height: 81px;
  object-fit: cover;
}
.online-tool .down_exhibition .exhibition_info {
  margin-top: 80px;
  flex: 0 0 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.online-tool .down_exhibition .info_title {
  color: #1db954;
  font-size: 20px;
  font-weight: 600;
}
.online-tool.online-tool-amc .down_exhibition .info_title,
.online-tool.online-tool-ymc .down_exhibition .info_title{
  color: #fff;
}
.online-tool.online-tool-amc .down_exhibition .info_btn {
  background: #E73654;
}
.online-tool.online-tool-ymc .down_exhibition .info_btn{
  background: #007BFF;
}
.online-tool.online-tool-amc .down_exhibition .info_btn:hover {
  background: #E73654;
}
.online-tool.online-tool-ymc .down_exhibition .info_btn:hover {
  background: #007BFF;
}
.online-tool.online-tool-amc .down_loading img,
.online-tool.online-tool-ymc .down_loading img{width: 70px;}
.online-tool.online-tool-amc .down-pop {
  background: linear-gradient(180deg, rgba(231, 54, 84, 0.20) 0%, rgba(255, 255, 255, 0.00) 100%), #FFF;
}
.online-tool.online-tool-ymc .down-pop{
  background: linear-gradient(180deg, rgba(255, 53, 235, 0.20) 0%, rgba(255, 255, 255, 0.00) 100%), #FFF;
}
.online-tool.online-tool-amc .down-pop .pop_btn {
  background: #E73654;
}
.online-tool.online-tool-ymc .down-pop .pop_btn{
  background: #3586FF;
}
.online-tool .down_exhibition .info_author {
  color: #767676;
}
.online-tool .down_exhibition .info_btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 16px;
  background: #24a659;
  border-radius: 67px;
  padding: 10px 26px;
}
.online-tool .down_exhibition .info_btn img {
  width: 19px;
  height: auto;
}
.online-tool .down_exhibition .info_btn:hover {
  background: #00a63a;
}
.online-tool .down-pop {
  display: none;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: linear-gradient(#d6f0e0, #ffffff 100%);
  box-shadow: 0 4px 31px rgba(151, 151, 151, 0.25);
  border-radius: 8px;
  border: 1px #ffffff solid;
  width: 231px;
  height: auto;
  padding: 16px 23px 34px;
  text-align: center;
}
.online-tool .down-pop .pop_close {
  width: 18px;
  height: auto;
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
}
.online-tool .down-pop .pop_title {
  color: #2e2e2e;
  font-size: 16px;
  font-weight: 600;
  margin: 7px 0;
}
.online-tool .down-pop .pop_desc {
  color: #2e2e2e;
}
.online-tool .down-pop .pop_btn {
  margin-top: 23px;
  display: block;
  color: #ffffff;
  font-size: 16px;
  background: #24a659;
  border-radius: 67px;
  padding: 10px 36px;
}
.overspread {
  display: none;
  width: 100%;
  height: 100%;
  background-color: #00000066;
  position: fixed;
  top: 0;
  z-index: 99;
}
@keyframes toolbounce {
  100% {
    top: -10px;
  }
}
.online-tool .down_feature .down_input:focus-visible {
  outline: unset;
}
.online-tool .container {
  display: block;
}
@media screen and (max-width: 1024px) {
  .promotion_banner .promotion_banner-box .container {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .promotion_banner .promotion_banner-box .container p {
    font-size: 12px !important;
  }
  .promotion_banner .promotion_banner-box .container p span {
    font-size: 18px !important;
  }
  .promotion_banner .promotion_banner-box .container p .promotion_banner-btn {
    width: 100px !important;
    height: 28px !important;
    font-size: 16px !important;
    margin-top: unset !important;
  }
}
@media (max-width: 768px) {
  .online-tool .down_jump {
    font-size: 12px;
  }
  .promotion_banner {
    position: sticky;
    height: auto;
    background-size: cover;
    bottom: unset;
    top: 0;
  }
  .online-tool {
    background: url(/uploads/page/online-tool/download-bg-mobile.webp) no-repeat top center;
    background-size: 100%;
    padding: 80px 0;
    font-size: 14px;
  }
  .online-tool.online-tool-amc {
    background: url(https://img.tunefab.com/uploads/page/online-tool/download-amc-bg-mobile.png) no-repeat top center;
    background-size: 100%;
  }
  .online-tool.online-tool-ymc{
    background: url(https://img.tunefab.com/uploads/page/online-tool/download-ymc-bg-mobile.png) no-repeat top center;
    background-size: 100%;
  }
  .online-tool h2, .online-tool p:nth-child(1) { /*zuo*/
    font-size: 28px;
  }
  .online-tool .down_desc {
    width: 100%;
    margin: 11px 0 45px;
  }
  .online-tool .down_feature {
    width: 100%;
  }
  .online-tool .down_feature .down_input {
    flex: 0 0 80%;
  }
  .online-tool .down_feature .down_paste {
    flex: 0 0 17%;
    background: rgba(201, 221, 211, 0.3);
    border-radius: 4px;
    border: 1px #d9e7e0 solid;
    padding: 10px;
    color: #676767;
  }
  .online-tool .down_feature .error-text {
    text-align: left;
    margin: 15px 0;
    color: #e02020;
  }
  .online-tool .down_btn {
    position: static;
    padding: 13px;
    width: 100%;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .online-tool .down_btn img {
    width: 20px;
  }
  .online-tool .down_loading {
    margin: 46px auto 0;
  }
  .online-tool .down_exhibition {
    gap: 20px;
    align-items: unset;
  }
  .online-tool .down_exhibition .exhibition_img {
    margin-top: 46px;
    width: 135px;
    height: 135px;
  }
  .online-tool .down_exhibition .exhibition_info {
    margin-top: 46px;
    flex: unset;
    align-items: flex-start;
    flex-direction: column;
  }
  .online-tool .down_exhibition .info_title {
    text-align: left;
  }
  .online-tool .down_exhibition .info_btn {
    padding: 10px 36px;
  }
  .online-tool-aio {
    background: unset;
  }
  .online-tool-aio h2 {
    color: #212121;
  }
  .online-tool-aio .down_desc {
    color: #676767;
    font-size: 12px;
  }
  .online-tool-aio .down_feature .feature_flex {
    border: 1px #e0edff solid;
  }
  .online-tool-aio .down_feature .down_paste {
    border: 1px #e0edff solid;
    background: #f5f9ff;
  }
  .online-tool-aio .down_feature .down_btn {
    background: #3586ff;
  }
  .online-tool-aio .down_feature .down_btn:hover {
    background: #0e67ec;
  }
  .online-tool-aio .down_exhibition .info_title {
    color: #3586ff;
  }
  .online-tool-aio .down_exhibition .info_btn {
    background: #3586ff;
  }
  .online-tool-aio .down_exhibition .info_btn:hover {
    background: #0e67ec;
  }
  .online-tool-aio .down-pop {
    background: linear-gradient(180deg, #d8e7ff 0%, #fff 100%);
  }
  .online-tool-aio .down-pop .pop_btn {
    background: #3586ff;
  }
}
.header-login-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  overflow: hidden;
}
.header-login-avatar img {
  width: 100%;
  height: 100%;
}
.streamer{display: none;}
@media screen and (max-width: 768px) {
  .streamer {
    position: sticky;
    bottom: 0;
    z-index: 99999;
  }
  .streamer img {
    width: 100%;
    height: auto;
  }
}

/*activity*/

 .activity-promotion{
   width:100%;
   display: none;
 }
.desktop-activity-img{
  width:100%;
  position:relative;
}
.desktop-close{
  position:absolute;
  right: 10%;
  top:2px;
  z-index:999;
}
.mobile-activity-img{
  width:100%;
}
.mobile-activity{
  display:none;
}
@media screen and (max-width: 768px) {
  .desktop-activity{
    display:none;
  }
  .mobile-activity{
    display:block;
  }
  .mobile-close{
    position: absolute;
    right: 5%;
    top: 1%;
    z-index: 999;
  }
  .mobile-activity-img{
    position:relative;
  }
}