* {
  margin: 0;
  padding: 0;
}
#home1 {
  height: 110vh;
  background: #0a0a1a;
  background-image: url("../assets/images/index/index-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#home1 .header {
  width: 100%;
  height: 100px;
  background: #0a0a1a;
  box-sizing: border-box;
  padding: 15px 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
#home1 .header .logo {
  width: 200px;
}
#home1 .header .nav {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
}
#home1 .header .nav .dropdown {
  position: relative;
  cursor: pointer;
}
#home1 .header .nav .dropdown .dropdown-trigger {
  width: 120px;
  color: #fff;
  padding: 10px 0;
  transition: all 0.3s ease;
}
#home1 .header .nav .dropdown .dropdown-trigger:hover {
  color: #85efee;
}
#home1 .header .nav .dropdown-menu {
  width: 90vw;
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: #0a0a1a;
  border: 1px solid #474656;
  padding: 60px;
  padding-bottom: 80px;
  display: none;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  border: 3px solid #85efee;
  border-radius: 8px;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  box-shadow: 0px 0px 16px 1px rgba(130, 233, 236, 0.6);
}
#home1 .header .nav .dropdown-menu .dropdown-title {
  font-size: 18px;
  padding-bottom: 20px;
  color: #fff;
  transition: all 0.3s ease;
}
#home1 .header .nav .dropdown-menu .dropdown-line {
  width: 100%;
  margin: 0 auto;
  height: 1px;
  margin-bottom: 40px;
  background: #85efee;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .dropdown-item {
  width: 49%;
  display: flex;
  border-radius: 10px;
  align-items: center;
  padding: 20px;
  margin-bottom: 30px;
  color: #c5c8ce;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .dropdown-item img {
  width: 48px;
  height: 48px;
  margin-right: 10px;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .dropdown-item .item-box {
  width: 340px;
  margin-left: 20px;
  padding-top: 20px;
  padding-right: 40px;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .dropdown-item .item-box .item-title {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  position: relative;
  margin-bottom: 20px;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .dropdown-item .item-box .item-title .normal-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #34a95f;
  width: 80px;
  height: 32px;
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
  position: absolute;
  left: 150px;
  top: 5px;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .dropdown-item .item-box .item-title .hot-tag-const {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0834d;
  width: 80px;
  height: 32px;
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
  position: absolute;
  left: 150px;
  top: 5px;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .dropdown-item .item-box .item-title .tag {
  font-size: 15px;
  margin-left: 10px;
  padding: 4px 15px;
  border-radius: 4px;
  background: linear-gradient(90deg, #3c56f0 0%, #85efee 100%);
  color: #fff;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .dropdown-item .item-box .item-desc {
  font-size: 14px;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .dropdown-item .item-price {
  flex: 1;
  text-align: center;
  border-left: 1px solid #85efee;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .dropdown-item .item-price .price-title {
  font-size: 16px;
  font-weight: 600;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .dropdown-item .item-price .price {
  font-size: 20px;
  color: #85efee;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .dropdown-item:hover {
  color: #85efee;
  background: rgba(133, 239, 238, 0.1);
  box-shadow: 0px 0px 16px 1px rgba(130, 233, 236, 0.6);
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .dropdown-item:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(90deg, #85efee 0%, #3c56f0 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .solutions-dropdown-item {
  width: 49%;
  display: flex;
  border-radius: 10px;
  align-items: center;
  color: #c5c8ce;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-bottom: 30px;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .solutions-dropdown-item .item-border {
  display: flex;
  align-items: center;
  padding: 15px 30px 15px 20px;
  position: relative;
  border-radius: 10px;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .solutions-dropdown-item .item-border:hover {
  background: rgba(133, 239, 238, 0.1);
  box-shadow: 0px 0px 16px 1px rgba(130, 233, 236, 0.6);
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .solutions-dropdown-item .item-border:hover .solutions-dropdown-item-title {
  color: #85efee;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .solutions-dropdown-item .item-border:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(90deg, #85efee 0%, #3c56f0 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .solutions-dropdown-item .item-border .solutions-dropdown-item-img {
  margin-right: 10px;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: #0a0a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #85efee 0%, #3c56f0 100%);
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .solutions-dropdown-item .item-border .solutions-dropdown-item-img img {
  width: 18px;
  height: 18px;
}
#home1 .header .nav .dropdown-menu .dropdown-item-box .solutions-dropdown-item .item-border .solutions-dropdown-item-title {
  color: #fff;
  transition: all 0.3s linear;
  font-size: 16px;
  font-weight: 500;
}
#home1 .header .login {
  margin-left: 200px;
  display: flex;
  align-items: center;
}
#home1 .header .login .login-item {
  width: 88px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  margin-right: 20px;
}
#home1 .header .login .login-item:hover {
  color: #85efee;
}
#home1 .header .login .login-item.login-btn {
  background: none;
  position: relative;
  color: #fff;
}
#home1 .header .login .login-item.login-btn:hover {
  color: #85efee;
}
#home1 .header .login .login-item.login-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(180deg, #85efee 0%, #3c56f0 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#home1 .header .login .login-item.register-btn {
  background: linear-gradient(270deg, #85efee 0%, #3c56f0 100%);
}
#home1 .space {
  height: 100px;
}
#home1 .main .banner-title {
  height: 440px;
  width: 1360px;
  margin: 0 auto;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}
#home1 .main .banner-title .banner-title-right {
  width: 550px;
  height: 440px;
}
#home1 .main .banner-title .banner-title-right img {
  width: 100%;
  height: 100%;
}
#home1 .main .banner-title .banner-title-left {
  width: 560px;
}
#home1 .main .banner-title .banner-title-left .title-one {
  font-size: 20px;
  font-weight: 700;
  font-weight: 400;
  height: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border: 1px solid #85efee;
  border-radius: 8px;
}
#home1 .main .banner-title .banner-title-left img {
  vertical-align: middle;
}
#home1 .main .banner-title .banner-title-left .title-two {
  font-weight: bold;
  font-size: 50px;
  color: #85efee;
  text-align: left;
  margin-top: 40px;
}
#home1 .main .banner-title .banner-title-left .title-three {
  font-size: 18px;
  color: #c5c8ce;
  text-align: left;
  margin-top: 40px;
  line-height: 30px;
}
#home1 .main .nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1360px;
  margin: 0 auto;
  margin-top: 70px;
}
#home1 .main .nav-list .nav-item {
  width: 300px;
  height: 144px;
  padding: 20px;
  background: #0a0a1a;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  transition: all 0.3s ease;
  cursor: pointer;
}
#home1 .main .nav-list .nav-item:hover {
  transform: scale(1.05);
}
#home1 .main .nav-list .nav-item.nav-item {
  position: relative;
  color: #fff;
}
#home1 .main .nav-list .nav-item.nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(180deg, #85efee 0%, #3c56f0 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#home1 .main .nav-list .nav-item-title {
  font-size: 20px;
  font-weight: 700;
  color: #c5c8d0;
}
#home1 .main .nav-list .nav-item-title img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-top: -2px;
}
#home1 .main .nav-list .nav-item-title span {
  padding-left: 12px;
}
#home1 .main .nav-list .nav-item-text {
  font-size: 20px;
  font-weight: 700;
  padding-left: 5px;
  background: linear-gradient(270deg, #85efee 0%, #4860e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#home6 {
  height: 110vh;
  background: #0a0a1a;
}
#home6 .footer-container {
  width: 1360px;
  margin: 0 auto;
  border-top: 1px solid #85efee;
  min-height: 400px;
}
#home6 .img-container {
  width: 200px;
  height: 70px;
  margin-top: 64px;
}
#home6 .footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 78px;
  border-bottom: 1px solid #85efee;
}
#home6 .footer-item {
  flex: 1;
  text-align: left;
}
#home6 .footer-item .title {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}
#home6 .footer-item .line-container {
  display: flex;
  gap: 23px;
  margin-top: 34px;
}
#home6 .footer-item .line {
  width: 30px;
  height: 30px;
}
#home6 .footer-item .footer-item-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 36px;
}
#home6 .footer-item .footer-item-content .proxy-item {
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  color: #c5c8ce;
  font-weight: 400;
}
#home6 .footer-item .footer-item-content .proxy-item:hover {
  color: #fff;
  font-weight: 500;
  transform: scale(1.2);
}
#home6 .const-footer-item {
  margin-left: 150px;
}
#home6 .footer-bottom {
  height: 300px;
  margin-top: 64px;
}
#home6 .footer-bottom .link-title {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}
#home6 .footer-bottom .link-content {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 120px;
}
#home6 .footer-bottom .link-content .link-item {
  width: 150px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  color: #c5c8ce;
}
#home6 .footer-bottom .link-content .link-item:hover {
  color: #fff;
  font-weight: 500;
  transform: scale(1.2);
}
#home6 .footer-bottom .footer-bottom-text {
  color: #fff;
  margin-top: 60px;
  display: flex;
  text-align: center;
}
.const-btn {
  height: 48px;
  width: 240px;
  text-align: center;
  line-height: 48px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(270deg, #85efee 0%, #3c56f0 100%);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.const-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #85efee 0%, #3c56f0 100%);
  box-shadow: 0 0 20px rgba(133, 239, 238, 0.3);
}
.const-btn:active {
  transform: scale(0.98);
}
.base-title {
  font-size: 36px;
  font-weight: 600;
  color: #85efee;
}
.base-sub-title {
  font-size: 16px;
  color: #c5c8d0;
  font-weight: 500;
  line-height: 24px;
}
.const-shadow-border {
  position: relative;
  border: 2px solid linear-gradient(90deg, #85efee 0%, #3c56f0 100%);
  box-shadow: 0 0 20px rgba(133, 239, 238, 0.3);
  transition: all 0.3s ease;
}
.const-shadow-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(270deg, #85efee 0%, #3c56f0 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.proxy-container {
  width: 1300px;
  margin: 0 auto;
  min-height: 500px;
}
.proxy-container .proxy-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  position: relative;
  text-align: center;
}
.proxy-container .proxy-title .normal-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #34a95f;
  width: 80px;
  height: 32px;
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
  position: absolute;
  right: 440px;
  top: 0;
}
.proxy-container .proxy-title .hot-tag-const {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0834d;
  width: 80px;
  height: 32px;
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
  position: absolute;
  right: 440px;
  top: 0;
}
.proxy-container .proxy-desc {
  font-size: 18px;
  font-weight: 500;
  color: #c5c8d0;
  text-align: center;
  margin-top: 40px;
}
.proxy-container .tag-input-content {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 160px;
}
.proxy-container .tag-input-content .tag-input-item {
  width: 300px;
  height: 590px;
  background: #182145;
  border-radius: 16px 16px 16px 16px;
  transition: all 0.3s linear;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.proxy-container .tag-input-content .tag-input-item .input-title {
  margin-top: 20px;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
}
.proxy-container .tag-input-content .tag-input-item .content {
  width: 200px;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  color: #fff;
}
.proxy-container .tag-input-content .tag-input-item .btn {
  color: #fff;
  height: 48px;
  width: 180px;
  background-color: #223744;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  background: linear-gradient(270deg, #85efee 0%, #3c56f0 100%);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  border: none;
  /* 移除可能的边框 */
}
.proxy-container .tag-input-content .tag-input-item .btn:hover {
  transform: scale(1.01);
  background: linear-gradient(90deg, #85efee 0%, #3c56f0 100%);
  box-shadow: 0 0 20px rgba(133, 239, 238, 0.3);
}
.proxy-container .tag-input-content .tag-input-item .info {
  font-size: 14px;
  color: #fff;
  margin-top: 24px;
}
.proxy-container .tag-input-content .tag-input-item .price {
  font-size: 14px;
  color: #85efee;
  font-weight: bold;
}
.proxy-container .tag-input-content .tag-input-item .price-org {
  width: 80px;
  font-size: 14px;
  color: #fff;
  padding-left: 20px;
  text-decoration: line-through;
}
.proxy-container .tag-input-content .tag-input-item .big-price {
  font-size: 24px;
  color: #85efee;
  font-weight: bold;
}
.proxy-container .tag-input-content .tag-input-item .hot-tag {
  color: #fff;
  position: absolute;
  top: -20px;
  right: 0;
  background-color: #223744;
  padding: 0 10px;
  border-radius: 0 0 16px 16px;
  width: 110px;
  height: 40px;
  background: linear-gradient(270deg, #d77c3a 0%, #7f225e 100%);
  border-radius: 20px 20px 20px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proxy-container .tag-input-content .ishot {
  height: 700px;
  position: relative;
  margin-top: -64px;
  padding-top: 64px;
}
.bg {
  width: 100%;
  background-color: #223744;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title-btn {
  height: 48px;
  width: 240px;
  text-align: center;
  line-height: 48px;
  margin-top: 64px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(270deg, #85efee 0%, #3c56f0 100%);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.title-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #85efee 0%, #3c56f0 100%);
  box-shadow: 0 0 20px rgba(133, 239, 238, 0.3);
}
.title-btn:active {
  transform: scale(0.98);
}
.kefu-side {
  position: fixed;
  top: 55%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 999;
}
.kefu-side .kefu-side-item {
  width: 80px;
  height: 100px;
  margin-bottom: 1.5px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  /* 原始图片 */
  /* hover时的图片 */
}
.kefu-side .kefu-side-item .qrcode-box {
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
}
.kefu-side .kefu-side-item .qrcode-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 5px;
  background: linear-gradient(270deg, #85efee 0%, #3c56f0 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.kefu-side .kefu-side-item .qrcode-box .qrcode {
  width: 120px;
  height: 120px;
}
.kefu-side .kefu-side-item:hover {
  background: linear-gradient(180deg, #85efee 0%, #3c56f0 100%);
}
.kefu-side .kefu-side-item:hover .kefu-side-item-title {
  color: #fff;
}
.kefu-side .kefu-side-item:hover .original-img {
  opacity: 0;
}
.kefu-side .kefu-side-item:hover .hover-img {
  opacity: 1;
}
.kefu-side .kefu-side-item:hover .qrcode-box {
  display: block;
  animation: fadeIn 0.3s ease;
}
.kefu-side .kefu-side-item .original-img {
  opacity: 1;
  transition: opacity 0.3s;
}
.kefu-side .kefu-side-item .hover-img {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.kefu-side .kefu-side-item .kefu-side-item-title {
  margin: 0;
  margin-top: 5px;
  font-size: 13px;
  color: #3c56f0;
}
.kefu-side .kefu-side-item:nth-child(1) {
  border-radius: 8px 8px 0 0;
}
.kefu-side .kefu-side-item:nth-child(4) {
  border-radius: 0 0 8px 8px;
}
.kefu-side .top {
  margin-top: 8px;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.kefu-side .top:hover {
  transform: scale(1.05);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(10px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
.ad {
  position: fixed;
  bottom: 5px;
  left: 5px;
  z-index: 9999;
  cursor: pointer;
}
.ad .ad-content {
  position: relative;
  width: 272px;
}
.ad .ad-content .close {
  font-size: 13px;
  position: absolute;
  top: 5px;
  right: 5px;
}
.ad .ad-content img {
  width: 100%;
  border-radius: 10px;
}
