/* 全局样式 */
/* 定义字体 */
@font-face {
  font-family: "Poppins";
  src: url("../Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../Poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
html {
  overflow-x: hidden;
}
html,
body {
  width: 100%;
  background: #fff;
  font-family: "Poppins";
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins";
  background: #fff;
  color: #222;
}
a {
  text-decoration: none;
  color: inherit;
}
a:focus-visible {
  outline: none;
}
li {
  list-style: none;
}
.container {
  max-width: 1208px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 16px;
  }
}
.header-content {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.tip {
  position: relative;
  background: #f1e6fc;
  width: 100%;
}
.tip .tip-content {
  text-align: center;
}
.tip .tip-content p {
  font-size: 1rem;
  color: #041e39;
  font-weight: 500;
}
.header {
  position: relative;
  background: #fff;
  width: 100%;
  height:72px;
}
.header .container {
  padding: 0.625rem 0;
}
.header .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 0;
  height: 72px;
}
.header .nav-container .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1ab394;
}
.header .nav-container .nav {
  flex: 1;
  display: flex;
  gap: 24px;
  margin-left: 37px;
}
.header .nav-container .nav ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header .nav-container .nav .nav-item {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}
.header .nav-container .nav .nav-item a {
  padding: 0;
  transition: background 0.2s;
  color: #041e39;
  font-weight: 500;
  line-height: normal;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header .nav-container .nav .nav-item a:hover {
  color: #008266;
  text-decoration: underline;
}
.header .nav-container .nav .nav-item .arrowIco {
  width: 0.875rem;
  margin-left: 4px;
  transition: transform 0.3s;
}
.header .nav-container .nav .nav-item:hover .arrowIco {
  transform: rotate(180deg);
}
.userdown {
  width: 14px;
  height: 14px;
  transition: all 0.3s ease;
  margin-left: 8px;
}
.user-menu :hover .userdown {
  transform: rotate(180deg);
}
.header .nav-container .nav a {
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s;
  color: #041e39;
  font-weight: 500;
  line-height: normal;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header .nav-container .nav a:hover {
  color: #008266;
  text-decoration: underline;
}
.header .nav-container .nav .nav-right {
  opacity: 0;
}
.header .nav-container .nav-right {
  display: flex;
  align-items: center;
}
.header .nav-container .nav-right .line {
  width: 2px;
  height: 16px;
  background: #dadcde;
  margin: 0 20px;
}
.header .nav-container .nav-right .language-selector {
  position: relative;
}
.header .nav-container .nav-right .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.header .nav-container .nav-right .dropdown-toggle .globe-icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.header .nav-container .nav-right .dropdown-toggle .arrow-down {
  width: 14px;
  height: 14px;
  transition: all 0.3s ease;
}
.header .nav-container .nav-right .dropdown:hover .dropdown-toggle .arrow-down {
  transform: rotate(180deg);
}
.header .nav-container .nav-right .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 105px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.header .nav-container .nav-right .dropdown:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible;
  transform: translateY(0);
}
.header .nav-container .nav-right .dropdown:active .dropdown-menu {
  opacity: 1 !important;
  visibility: visible;
  transform: translateY(0);
}
.header .nav-container .nav-right .dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: #041e39;
}
.header .nav-container .nav-right .dropdown-menu a:hover {
  color: #1ab394;
}
.header .nav-container .btn {
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.header .nav-container .btn.primary {
  background: #1ab394;
  color: #fff;
}
.header .nav-container .btn.primary:hover {
  background: #14866f;
}
.header .nav-container .btn.secondary {
  background: #ffbf69;
  color: #fff;
}
.header .nav-container .btn.secondary:hover {
  background: #ffa936;
}
.header .nav-container .btn.login {
  color: #041e39;
}
.header .nav-container .btn.login:hover {
  color: #008266;
  text-decoration: underline;
}
.header .nav-container .btn.signup {
  margin-left: 20px;
  background: #1ab394;
  color: #fff;
}
.header .nav-container .btn.signup:hover {
  background: #00cca3;
}
.header .nav-container .lang-switch {
  display: flex;
  gap: 4px;
}
.header .nav-container .lang-switch .lang-icon {
  width: 16px;
  height: 16px;
}
.header .nav-container .lang-switch .lang-btn {
  background: transparent;
  border: 1px solid #1ab394;
  color: #1ab394;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.header .nav-container .lang-switch .lang-btn.active,
.header .nav-container .lang-switch .lang-btn:hover {
  background: #1ab394;
  color: #fff;
}
.header .nav-container .lang-switch .lang-selector {
  border: none;
  background: transparent;
  color: #fff;
}
.header .nav-container .lang-switch .lang-selector.active,
.header .nav-container .lang-switch .lang-selector:hover {
  color: #1ab394;
  background: transparent;
}
.header .nav-container .lang-switch .lang-selector:focus-visible {
  outline: none;
  border: none;
}
.header .nav-container .lang-switch .lang-selector option {
  background-color: #071727;
  color: #fff;
}
.header .nav-container .menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}
.header .nav-container .nav.active {
  margin-left: 0;
  display: flex !important;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 99;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 20px 0;
  gap: 0;
}
.header .nav-container .nav.active ul {
  flex-direction: column;
}
.header .nav-container .nav.active .nav-right {
  margin-top: 0.625rem;
  border-top: 1px solid #e9eff1;
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 0.625rem;
  opacity: 1;
}
.header .nav-container .nav.active .nav-right .dropdown-menu {
  top: inherit;
  bottom: 0;
}
.footer {
  border-radius: 40px 40px 0px 0px;
  background-color: #071727;
  color: #fff;
  padding: 0 0 40px;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer .footer-top {
  padding: 80px 0 52px;
}
.footer .footer-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.footer .footer-cta-title {
  width: 80%;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 auto 10px;
}
.footer .footer-cta-title .highlight {
  color: #1ab394;
}
.footer .footer-cta-desc {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.footer .footer-cta-buttons {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.footer .footer-cta-buttons .btn {
  position: relative;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer .footer-cta-buttons .btn.btn-outline {
  border: 1px solid rgba(26, 179, 148, 0.5);
  color: #1ab394;
  background-color: transparent;
}
.footer .footer-cta-buttons .btn.btn-outline:hover {
  color: #00cca3;
  border-color: #00cca3;
}
.footer .footer-cta-buttons .btn.btn-primary {
  background-color: #1ab394;
  color: #fff;
}
.footer .footer-cta-buttons .btn.btn-primary:hover {
  background-color: #00cca3;
}
.footer .footer-cta-buttons .btn.btn-primary .btn-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.footer .footer-cta-buttons .point_to {
  position: absolute;
  right: -104px;
  display: block;
  width: 68px;
  margin-top: -32px;
}
.footer .footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-logo {
  flex: 0 0 240px;
}
.footer .footer-logo .logo_footer {
  height: 30px;
  margin-bottom: 40px;
}
.footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .footer-email {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
}
.footer .footer-email .email-icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
.footer .footer-email:hover {
  text-decoration: underline;
}
.footer .language-selector {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.footer .language-selector .lang-icon {
  width: 16px;
  height: 16px;
}
.footer .language-selector .lang-selector {
  border: none;
  background: transparent;
  color: #fff;
}
.footer .language-selector .lang-selector.active,
.footer .language-selector .lang-selector:hover {
  color: #1ab394;
  background: transparent;
}
.footer .language-selector .lang-selector:focus-visible {
  outline: none;
  border: none;
}
.footer .language-selector .lang-selector option {
  background-color: #071727;
  color: #fff;
}
.footer .footer-links {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-legal .policy{
  display: flex;
  gap: 14px;
  width: 320px;
}
.footer .footer-column {
  flex: 1;
  min-width: 160px;
}
.footer .footer-column .footer-column-title {
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #fff;
}
.footer .footer-column .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.footer .footer-column .footer-menu li {
  margin-bottom: 12px;
}
.footer .footer-column .footer-menu li a {
  color: #929ba5;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer .footer-column .footer-menu li a:hover {
  color: #fff;
}
.footer .footer-column .footer-menu .footer-column-child-title {
  margin-top: 24px;
}
.footer .footer-column .footer-menu .footer-column-child-title a {
  font-size: 0.875rem !important;
  font-weight: bold !important;
  color: #fff !important;
}
.footer .footer-bottom {
  padding-top: 30px;
}
.footer .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.footer .footer-legal a {
  color: #929ba5;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer .footer-legal a:hover {
  color: #fff;
}
.footer .footer-browsers {
  margin-bottom: 20px;
}
.footer .footer-browsers .browsers-text {
  font-size: 0.875rem;
  color: #929ba5;
  line-height: 1.5;
  word-break: break-all;
  font-weight: 500;
}
.footer .footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-copyright .copyright-text {
  font-size: 0.875rem;
  color: #929ba5;
  font-weight: 500;
}
.footer .footer-copyright .payment-methods {
  display: flex;
  gap: 12px;
}
.footer .footer-copyright .payment-methods .payment-icon {
  height: 24px;
}
.footer .language-selector.dropdown {
  margin-top: 24px;
  min-width: 120px;
}
.footer .dropdown-toggle {
  background: #202f3d;
  border-radius: 22px;
  padding: 7px 18px 7px 14px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  min-width: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
}
.footer .dropdown-toggle:hover,
.footer .dropdown-toggle:focus {
  border-color: #1ab394;
  background: rgba(38, 208, 124, 0.08);
}
.footer .dropdown-toggle .globe-icon {
  width: 18px;
  height: 18px;
}
.footer .dropdown-toggle .arrow-down {
  width: 16px;
  height: 16px;
  margin-left: 2px;
  transition: transform 0.2s;
}
.footer .dropdown.open .dropdown-toggle .arrow-down,
.footer .dropdown:hover .dropdown-toggle .arrow-down {
  transform: rotate(180deg);
}
.footer .dropdown-menu {
  background: #172233;
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.18);
  min-width: 200px;
  padding: 8px 0;
  position: absolute;
  left: 0;
  top: 110%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.18s;
  z-index: 100;
}
.footer .dropdown:hover .dropdown-menu,
.footer .dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.footer .dropdown-menu a {
  display: block;
  padding: 10px 28px 10px 20px;
  color: #929ba5;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}
.footer .dropdown-menu a.active,
.footer .dropdown-menu a:hover {
  color: #1ab394;
}
@media (max-width: 600px) {
  .footer .language-selector.dropdown {
    margin-top: 16px;
    min-width: 90px;
  }
  .footer .dropdown-toggle {
    font-size: 0.95rem;
    padding: 6px 12px 6px 10px;
  }
  .footer .dropdown-menu {
    min-width: 90px;
  }
}
@media screen and (max-width: 992px) {
  .header .nav-container .nav {
    display: none;
  }
  .header .nav-container .menu-toggle {
    display: block;
  }
  .header .nav-container .nav-right {
    display: none;
  }
  .footer .footer-cta-title {
    font-size: 2rem;
  }
  .footer .footer-main {
    flex-direction: column;
    gap: 30px;
    padding: 1.25rem;
  }
  .footer .footer-bottom {
    padding: 1.25rem;
  }
  .footer .footer-logo {
    flex: 0 0 100%;
  }
  .footer .footer-links {
    gap: 20px;
  }
  .footer .footer-column {
    min-width: 140px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-top {
    padding: 40px 0;
  }
  .footer .footer-cta-title {
    font-size: 1.75rem;
  }
  .footer .footer-cta-desc {
    font-size: 0.9375rem;
  }
  .footer .footer-links {
    gap: 0.25rem;
  }
  .footer .footer-column {
    margin-bottom: 20px;
  }
  .footer .footer-column-title {
    margin-bottom: 12px;
  }
  .footer .footer-menu {
    margin-bottom: 0;
  }
  .footer .footer-copyright {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 600px) {
  .footer .container {
    padding: 0 6px;
  }
}
@media screen and (max-width: 576px) {
  .footer {
    border-radius: 1.25rem 1.25rem 0 0;
  }
  .footer .footer-cta-title {
    font-size: 1.5rem;
  }
  .footer .footer-cta-buttons {
    gap: 12px;
  }
  .footer .footer-cta-buttons .btn {
    width: 100%;
    padding: 0.75rem 0.75rem;
  }
  .footer .footer-cta-buttons .point_to {
    margin-left: 0.625rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  .footer .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
}



/* 下拉菜单样式 */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .dropdown-menu {
  position: fixed;
  top: 110px;
  left: 0;
  background: #fff;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 200px;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  padding: 24px;
}


.nav-item.dropdown .dropdown-menu.show {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.dropdown .dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #4f5c65;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.nav-item.dropdown .dropdown-menu a:hover {
  background-color: #f7f9fc;
  color: #1ab394;
}

/* 确保箭头图标正确旋转 */
.nav-item.dropdown:hover img[alt="arrow"] {
  transform: rotate(180deg);
}

img[alt="arrow"] {
  transition: transform 0.3s ease;
}



.header_menu{
  width: 100vw;
  position: fixed;
  top: 95px ;
  left: 0;
  display: flex;
  justify-content: center;
  /* opacity:1 !important;
  visibility:visible !important; */
  box-shadow: 0px 2px 12px 0px rgba(146,155,165,0.1) !important;
  border: 0px solid #fff !important;
  cursor: auto;
}


.dropdown-menu-item{
  width: 1200px;
  /* padding-left: 149px; */
  /* padding-right: 149px; */
}
.pricingtilte{
  color: #4F5C65;
  font-size: 13px;
  font-weight: 500;
}
.pricingLine{
  width: 100%;
  height: 1px;
  border: 1px dashed #DFE6F3;
  margin-top: 13px;
  margin-bottom: 15px;
}
.pricingFlex{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.pricingBox:hover {
  background: #F7FAFC !important; 
}
.pricingBox{
   flex: 0 0 calc(50% - 20px);
  height: 66px;
  border-radius: 12px;
  padding: 14px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.pricing-icon{
  width: 38px;
  height: 38px;
  margin-right: 8px;
  flex-shrink: 0;
}
.pricingALltitle{
  display: flex;
  align-items: center;
  color: #041E39;
  font-size: 15px;
  font-weight: 500;
}
.pricingALlText{
  color: #4F5C65;
  font-size: 13px;
  font-weight: 400;
  margin-top: 4px;
}
.subscript{
  width: 66px;
  height: 20px;
  background: #FFF2EE;
  text-align: center;
  line-height: 20px;
  border-radius: 11px;
  color: #B43A1E;
  font-size: 12px;
  font-weight: 500;
}
.fromText{
  color: #929BA5;
  font-size: 12px;
}
.fromValue{
  display: flex;
  align-items: end;
   color: #041E39;
   font-size: 15px;
   font-weight: 600;
  margin-top: 4px;

}
.fromunit{
  color: #929BA5;
  font-size: 12px;
}
.friend{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  color: #929BA5;
  font-size: 14px;
  cursor: pointer;
}
.friend a:hover{
  color: #fff;
}

@media (max-width: 992px) {
  .header_menu {
    position: static !important;
    top: auto;
    left: auto;
    box-shadow: none !important;
    border: none !important;
    opacity:1;
    display: none;
    padding: 0 !important;
  }
  .nav-item.dropdown .dropdown-menu{
    position: static !important;
    top: auto;
    left: auto;
    box-shadow: none !important;
    border: none !important;
    opacity:1;
    display: none;
    padding: 0;
  }
  .header .nav-container .nav .nav-item{
    display: block !important;
  }
  .dropdown-menu-item{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .pricingBox{
    width: 100%;
    flex: 1 !important;
  }
  .pricingFlex{
    display: block !important;
  }
  .pricingBox{
    background: none !important;
  }
  .pricingLine{
    display: none!important;
  }
  .pricingtilte{
    display: none !important;
  }
  .pricing-icon{
    display: none !important;
  }
  .pricingTextALl{
    display: none !important;
  }
  .proxy_hero_bg{
    width: 100%;
  }
  .tip{
    display: none;
  }
  .header .nav-container{
    padding: 0px 16px !important;
  }
  .point_to{
    display: none !important;
  }
  .first-screen .line-right{
    left: 0px !important;
  }
  .header{
    top: 0 !important;
    left: 0 !important;
  }
  .header .nav-container .nav.active{
    top: 72px !important;
  }
  .first-screen .hero .hero-content{
    padding: 16px;
  }
  .orderTop{
    height: auto;
  }
  .btn1{
    font-size: 12px;
  }
  .btnBox{
    margin-bottom: 16px;
  }
  .header .nav-container .nav.active .nav-right{
  flex-wrap: wrap;
  }
  .dropdown-toggle{
    padding-left: 16px;
  }
}