body {
  color: #444444;
  overflow-x: hidden;
}

a {
  color: #3498db;
}

a:hover {
  color: #5faee3;
  text-decoration: none;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #3498db;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #57aae1;
  color: #fff;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 22px 0;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  background: #fff;
}

#header .logo h1 {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #222222;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 768px) {
  #header {
    background: #fff;
  }
  #header .logo h1 {
    font-size: 28px;
  }
}

.logo {
  flex: 2;
}
.logo-img {
  width: 115px;
}
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #555555;
  margin: 0 25px;
  transition: 0.3s;
  font-size: 16px;
}

.nav-menu{
  flex: 10;
}

.nav-menu > ul > li.login-box {
  display: flex;
  float: right;
}

.nav-menu .login-box .login-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 59px;
  height: 24px;
  margin-right: 15px;
  padding: 0;
  border: 1px solid #3498DB;
  border-radius: 4px;
  font-size: 14px;
  color: #3498DB;
  cursor: pointer;
}
.nav-menu .login-box .login-btn:hover {
  background: #3498DB;
  color: #fff;
}
.nav-menu .login-box .login-btn:last-child {
  margin-right: 0;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #3498db;
  text-decoration: none;
}

.nav-menu .get-started a {
  background: #3498db;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 30px;
  padding: 10px 25px;
}

.nav-menu .get-started a:hover {
  background: #57aae1;
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 25px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  border-radius: 5px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #222222;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #3498db;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #222222;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #222222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #3498db;
  text-decoration: none;
}

.mobile-nav .get-started {
  text-align: center;
  margin-top: 10px;
}

.mobile-nav .get-started a {
  background: #3498db;
  color: #fff;
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 30px;
  display: inline-block;
}

.mobile-nav .get-started a:hover {
  background: #57aae1;
  color: #fff;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

#banner {
  width: 100%;
  height: 70vh;
  margin-top: 70px;
}

#banner h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: black;
}

#banner h2 {
  margin: 0 10px;
  color: #484848;
  font-size: 24px;
}

#banner .btn-get-started {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 23px;
  border-radius: 50px;
  transition: 0.5s;
  font-size: 20px;
  color: #3498db;
  border: 2px solid #3498db;
}

#banner .sub-title {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #484848;
}

#banner .btn-get-started:hover {
  background: #3498db;
  color: #fff;
}

#banner .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #banner {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #banner {
    height: 100vh;
  }
  #banner .animated {
    -webkit-animation: none;
    animation: none;
  }
  #banner .banner-img {
    text-align: center;
  }
  #banner .banner-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #banner {
    margin-top: 20px;
  }
  #banner h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #banner h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #banner .banner-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #banner .banner-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section-title h2 {
  padding: 0 80px;
  border-bottom: 2px solid #C7C7C7;
}
.section-title-text {
  position: relative;
  padding-bottom: 2px;
  font-size: 32px;
  line-height: 44px;
  font-weight: bold;
  color: #222222;
  border-bottom: 4px solid #3498db;
}

.section-title-box .subtitle {
  font-size: 20px;
  color: #C7C7C7;
}

/* 服务优势 */
.service-advantage {
  padding-top: 0;
}

.service-advantage .content {
  padding: 0;
}

.service-advantage .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #222222;
}

.service-advantage .content .title {
  margin-left: 10px;
  font-weight: bold;
  font-size: 20px;
  color: #262626;
}

.service-advantage .content p {
  margin-bottom: 0;
}

.service-advantage .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.service-advantage .content .count-box i {
  display: block;
  font-size: 36px;
  color: #3498db;
  float: left;
  margin-right: 12px;
}

.service-advantage .content p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 30px;
  color: #515151;
  
}
.service-advantage .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #484848;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.service-advantage .content .count-box a:hover {
  color: #6f6f6f;
}

@media (max-width: 1024px) {
  .service-advantage .image {
    text-align: center;
  }
  .service-advantage .image img {
    max-width: 70%;
  }
}

@media (max-width: 667px) {
  .service-advantage .image img {
    max-width: 100%;
  }
}

/* 自助服务 */
#self-service {
  padding: 60px 0;
  overflow: hidden;
}
#self-service .icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#self-service .self-icon {
  width: 81px;
  height: 81px;
}
#self-service .right-arrow {
  width: 22px;
  height: 32px;
  margin-top: 20px;
  margin-left: 40%;
}
#self-service .icon-con {
  display: flex;
  justify-content: center;
  flex: 0 0 100%;
  margin-left: 40%;
}
#self-service .description {
  font-weight: bold;
  color: #515151;
}

.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: '';
  position: absolute;
  background: #e1f0fa;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #3498db;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #3498db;
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a, .services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #3498db;
}

.more-services {
  padding-top: 20px;
}

.more-services .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.more-services .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.more-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.more-services .card-title a {
  color: #222222;
}

.more-services .card-text {
  color: #5e5e5e;
}

.more-services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.more-services .read-more a:hover {
  text-decoration: underline;
}

.more-services .card:hover .card-body {
  background: #3498db;
}

.more-services .card:hover .read-more a, .more-services .card:hover .card-title, .more-services .card:hover .card-title a, .more-services .card:hover .card-text {
  color: #fff;
}

.pricing .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  padding: 40px 20px 50px;
  background: #fff;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 2px solid #f9f9f9;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transition: 0.3s;
}
.pricing .box:hover {
  border: 2px solid #3498db;
}
.mobile-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #3498db;
}
.mobile-icon-box .mobile-icon {
  width: 25px;
  height: 34px;
}
.pricing .product-list-item {
  margin-bottom: 50px;
}

.pricing .box  .price-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin: 45px auto 15px;
  font-size: 14px;
  color: #A5A5A5;
}
.pricing .box  .price-box .price-text {
  font-size: 26px;
  color: #3498DB;
  font-weight: 700; 
}
.pricing .box .device-box {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
  font-size: 14px;
  color: #A5A5A5;
}

.pricing .box .btn-buy, 
.pricing .box .btn-service {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 15px;
  border: 1px solid #3498db;
  color: #3498DB;
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover, 
.pricing .box .btn-service:hover  {
  background: #3498db;
  color: #fff;
}

.pricing .recommended {
  border-color: #3498db;
}

.pricing .service-icon-box {
  width: 110px;
  height: 110px;
  margin-bottom: 40px;
  border-radius: 50%;
}

.pricing .service-icon-box img {
  width: 100%;
  height: 100%;
}

.pricing .box .service-tip {
  font-size: 15px;
  color: #515151;
  margin-bottom: 50px;
}

.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}

.faq .faq-item i {
  color: #8bc4ea;
  font-size: 24px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 32px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.breadcrumbs {
  padding: 15px 0;
  background: #f8f8f8;
  min-height: 40px;
  margin-top: 86px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 72px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c3c3c;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

#footer {
  background: #262631;
  color: #fff;
  font-size: 14px;
}

#footer .bottom-logo {
  width: 131px;
  height: 33px;
}

#footer .contact-box {
  display: flex;
  margin-top: 17px;
}

#footer .container {
  display: flex;
  flex-direction: column;
  padding: 30px 0 ;
}

#footer .contact-con {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#footer .contact-item {
  margin-right: 20px;
}

#footer .contact-item:last-child {
  margin-right: 0;
}

#footer .qrcode-con {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 10px;
}

#footer .qrcode-con .qrcode-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
}

#footer .qrcode-con .qrcode-box:last-child {
  margin-right: 0;
}

#footer .qrcode-con .qrcode-img {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

#footer .qrcode-con .qrcode-info {
  color: #DCDCDC;
  font-size: 14px;
}

#footer .bottom-info {
  margin-top: 8px;
  font-size: 13px;
  color: #fff;
}


.pl50 {
  padding-left: 50px !important;
}

#advantage .advantage-item {
  display: flex;
}
.advantage .info-con {
  display: flex;
  align-items: center;
  flex: 0 0 94%;
  height: 120px;
  margin-bottom: 50px;
  padding: 0 26px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.advantage .info-box {
  display: flex;
  flex-direction: column;
}
.advantage .info-box h3 {
  font-size: 20px;
  color: #262626;
}
.advantage .info-box p {
  font-size: 14px;
  color: #515151;
}
.advantage .info-con .advantage-icon {
  margin-right: 18px;
  margin-top: -10px;
}
.advantage  .icon-box {
  display: flex;
  justify-content: center;
  width: 44px;
}

.need .need-item {
  width: 246px !important;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0px 3px 6px #EDECFF;
}
.need .need-item .need-img {
  width: 246px;
  height: 151px;
  margin-bottom: 25px;
}
.need .need-item h3, .need .need-item p {
  padding: 0 30px;
}
.need .need-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #262626;
}
.need .need-item p {
  margin-bottom: 40px;
  font-size: 14px;
  color: #515151;
}

/* 登录 */
.login-wrap {
  width: 100%;
  height: calc(100vh - 191px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login-wrap .a-color{
  color: #3498DB;
}
.login-wrap .container{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 500px;
  border-radius:10px;
  padding: 50px 80px;
}
.login-wrap .container .login-title{
  font-weight: bold;
  color: #262626;
  font-size: 20px;
  margin-bottom: 38px;
  text-align: center;
}
.login-wrap .container .login-logo {
  width: 149px;
  height: 47px;
  margin-bottom: 17px;
}
.login-wrap .container .login-form{
  width: 477px;
  padding: 38px 40px 55px 45px;
  background: #FFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 6px;
}
.login-wrap .container .login-form .vcodeBtn{
  color: #3498DB;
  width: 125px;
  border-radius: 4px;
  line-height: 43px;
  position: relative;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  height: 43px;
  padding: 0 20px;
  font-size: 14px;
  border-radius: 22px;
  outline: none;
  border: 1px solid #3498DB;
}
.login-wrap .container .login-form .ant-btn[disabled]{
  background: #3498DB;
  color: #fff;
  border-color: #3498DB;
  width: 116px;
  border-radius: 4px;
}
/* .ant-input{
  background-color: #37416126;
  border: 1px solid #313C5780;
  color: #fff;
} */
.login-wrap .container .login-form .form-item {
  position: relative;
  padding: 0;
  color: rgba(0,0,0,.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: "tnum";
  font-feature-settings: "tnum","tnum";
  margin: 0 0 20px;
  vertical-align: top;
}
.login-wrap .container .login-form .form-item .form-control {
  height: 43px;
  padding: 0 25px;
  background: #EBF2FB;
  border-radius: 22px;
  border: none;
}
.login-wrap .container .login-form .form-item .form-control.sms-code {
  width: 233px;
}
.login-wrap .container .login-form .form-item .form-control::placeholder {
  font-size: 14px;
  color: #757582;
}
.login-wrap .container .login-form .form-item .form-control:focus {
  box-shadow: unset;
}

.login-wrap .container .login-form .vcodeWrap{
  position: relative;
  height: 40px;
  border: 1px solid #313C5780;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  cursor: pointer;
}
.login-wrap .container .login-form .vcodeWrap .vcode{
  width: 100%;
  height: 100%;
  line-height: normal;
}
.login-wrap .container .login-form .vcodeWrap .vcode img{
  width: 100%;
  height: 100%;
}
.login-wrap .container .login-form .vcodeWrap .mask{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgba(0,0,0,0.95) ;
  opacity: 0.8;
  line-height: 40px;
  color: white;
  text-align: center;
  z-index: 1;
}
.login-wrap .container .bottom_btn{
  width: 100%;
  margin-top: 20px;
}
.login-wrap .container .bottom_btn .login-form-button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  border-radius: 23px;
  background: #3498DB;
  margin: 40px auto 20px;
  font-size: 15px;
  font-weight: 500;
  color: #FFF;
  border: none;
  outline: none;
}
.login-wrap .container .bottom_btn .service-policy{
  color: #999;
  font-size: 14px;
}
.login-wrap .container .bottom_btn .more{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.login-wrap .ant-checkbox-wrapper:hover .ant-checkbox-inner, .ant-checkbox:hover .ant-checkbox-inner, .ant-checkbox-input:focus + .ant-checkbox-inner{
  border-color: #3498DB;
}
.login-wrap .ant-checkbox-checked .ant-checkbox-inner{
  background-color: #3498DB;
  border-color: #3498DB;
}
.login-wrap .ant-checkbox-checked:hover{
  border-color: #3498DB;
}
.layui-layer-content {
  width: 350px;
  overflow: hidden !important;
}
.layui-layer-content {
  width: 350px;
  overflow: hidden !important;
}
.layer-content {
  width: 100%;
  height: 60px;
  padding: 10px;
  box-sizing: border-box;
}
.layer-content .code-wrap{
  height: 40px;
}
.layer-content .vcodeWrap {
  position: relative;
  width: 116px;
  height: 35px;
  border: 1px solid rgba(49,60,87,.5);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
}
.layer-content .vcodeWrap .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgba(0,0,0,0.95) ;
  opacity: 0.8;
  line-height: 35px;
  color: white;
  text-align: center;
  z-index: 1;
  font-size: 12px;
}
.layer-content .imgcode-input {
  padding: 0;
  color: rgba(0,0,0,.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: "tnum";
  font-feature-settings: "tnum","tnum";
  margin: 0 0 24px;
}
.layer-content .imgcode-input:focus {
  color: #495057;
  background-color: #fff;
  border-color: #3498DB;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(7,176,184,.2);
}
.layer-content .imgcode {
  width: 100%;
  height: 100%;
}
.layout{
  width: 100vw;
  min-height: 100vh;
  background: url("login_bg.jpg")/*tpa=https://ptysq.oss-cn-shenzhen.aliyuncs.com/super_sign_activity/static/assets/img/login_bg.jpg*/ no-repeat center;
  background-size: cover;
}
.error-verification {
  color: #f5222d;
  position: absolute;
  left: 15px;
}

.login-header {
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
  padding: 15px 0;
  background: #fff;
}

/* 服务协议 */
.agreement{
  width: 100%;
  min-height: calc(100vh - 243px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.agreement-content{
  border-radius: 2px;
  width: 1000px;
  padding: 20px;
  position: relative;
  color: #999999;
}
.agreement-content .agreement-header{
  text-align: center;
  font-size: 30px;
}
.agreement-content .title{
  font-size: 20px;
}

.login{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 130px;
  float: right;
  overflow: hidden;
}
.user-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  overflow: hidden;
}
.user-menu .avatar {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  margin-right: 10px;
}
.user-menu .nickname {
font-size: 15px;
font-weight: bold;
color: #484848;
}

.menu_item {
  display: flex; 
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 23px;
  color: #FFF;
  text-decoration: none;
  font-size: 13px;
  border-radius: 13px;
  border: 1px solid #FFF;
}
.menu_item_active {
  color: #FFF;
}
.menu_item:hover {
  color: #FFF;
  text-decoration: none;
}
.user-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  overflow: hidden;
}
.user-menu .avatar {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  margin-right: 10px;
}
.user-menu .dropdown-toggle::after {
  border-top-color: #FFF !important;
}

/* 新闻资讯*/
.page-content {
  min-height: calc(100vh - 81px);
}
.page-content .page-title {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 100px;
}
.page-content .article-wrap {
  width: 1000px;
  margin: 0 auto 50px;
  background: #fff;
  box-shadow:0px 5px 25px 0px rgba(10,113,118,0.15);
  list-style:none;
  padding: 30px 20px;
  box-sizing: border-box;
}
.page-content .link {
  text-decoration: none;
  color: #333333;
}
.page-content .article-item {
  overflow:hidden;
  padding: 10px 0;
  box-sizing: border-box;
  font-size: 18px;
  border-bottom: 1px solid #f5f5f5;
}
.page-content .title {
  float: left;
}
.page-content .time {
  float: right;
}
.page-content .line {
  width: 100%;
  height: 60px;
  background-color: #fff;
}
.page-content .article-wrap .title {
font-size: 20px;
font-weight: 500;
}
.page-content .article-wrap .time {
font-size: 15px;
}

/* 联系方式 */
.fixed{
  position: fixed;
  z-index: 10;
  right: 24px;
  bottom: 100px;
  width: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  box-shadow: 0px 10px 10px rgba(15, 71, 183, 0.1);
  background: #fff;
  border-radius: 12px;
}
.fixed .item-service{
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #515151;
  cursor: pointer;
}
.fixed .qrt-img {
  position: absolute;
  display: block;
  top: -24px;
  left: -70px;
  width: 100px;
  height: 100px;
  opacity: 0;
  transform: scale(0.01);
  transition: all 1s;
  border: 1px solid #3498DB;
  border-radius: 3px;
}
.fixed .item-service .wechat-icon {
  width: 27px;
  height: 22px;
  margin-bottom: 5px;
}
.fixed .item-service .qq-icon {
  width: 20px;
  height: 23px;
  margin-bottom: 5px;
}
.fixed .item-service .backtop-icon {
  width: 21px;
  height: 18px;
  margin-bottom: 5px;
}
.fixed .item-service span {
  font-size: 12px;
}
.dropdown-item {
  padding: 0.45rem 1.5rem !important;
  text-align: center;
}
.user-menu .dropdown-menu .dropdown-item {
  margin: 0;
}
.footer-beian {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #303030;
}
.footer-beian .beian-icon {
  width: 18px;
  margin-right: 8px;
}
.footer-beian span {
  font-size: 13px;
}