.base-button {
  line-height: 50px;
  color: #fff;
  background-color: #f23d49;
  padding: 0 25px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0 none;
  margin-right: 25px;
}

.base-button:focus {
  border: 0 none;
  outline: none;
}

.base-button:last-child {
  margin-right: 0;
}

.base-button.base-button-default {
  border: 1px solid #fff;
  background: none;
}

footer {
  background-color: #232323;
}

footer .footer-box {
  width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

footer .footer-box.footer-1 {
  padding: 70px 0;
}

footer .footer-box.footer-1 .footer-counsel {
  border-right: 1px dashed #616161;
  width: 220px;
}

footer .footer-box.footer-1 .footer-counsel .counsel-title {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

footer .footer-box.footer-1 .footer-counsel .counsel-phone {
  font-size: 30px;
  color: #f23d49;
  font-family: 'Impact';
  padding: 15px 0;
}

footer .footer-box.footer-1 .footer-counsel>ul>li>a {
  line-height: 2.5;
  font-size: 16px;
  color: #b1b1b1;
  cursor: default;
}

footer .footer-box.footer-1 .footer-log {
  border-left: 1px dashed #616161;
  text-align: right;
  width: 290px;
}

footer .footer-box.footer-1 .footer-nav {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

footer .footer-box.footer-1 .footer-nav>li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* padding-left: 20px; */
  position: relative;
}

footer .footer-box.footer-1 .footer-nav>li::after {
  content: '/';
  position: absolute;
  top: 0;
  right: 30px;
  /* -webkit-transform: translateX(-50%);
  transform: translateX(-50%); */
  font-size: 11px;
  color: #484848;
  line-height: 20px;
}

footer .footer-box.footer-1 .footer-nav>li:last-child::after {
  content: '';
}

footer .footer-box.footer-1 .footer-nav>li>span {
  font-size: 16px;
  color: #fff;
  line-height: 20px;
}

footer .footer-box.footer-1 .footer-nav>li>a {
  margin-top: 30px;
  display: inline-block;
  font-size: 14px;
  color: #b1b1b1;
}

footer .footer-box.footer-2 {
  line-height: 70px;
  color: #929292;
}

footer .footer-box.footer-2 .footer-hot {
  font-size: 16px;
  font-weight: bold;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer .footer-box.footer-2 .footer-hot>a {
  font-size: 14px;
  font-weight: 500;
  margin-right: 15px;
}

footer .footer-box.footer-2 .footer-hot>a:last-child {
  margin: 0;
}

footer .footer-box.footer-2 .footer-copy {
  font-size: 14px;
}

footer .footer-box.footer-2 .footer-copy>a {
  color: #929292;
}

footer .footer-line {
  height: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service {
  position: fixed;
  right: 0;
  top: 50%;
  width: 123px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #f23d49;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  color: #fff;
  font-size: 16px;
  z-index: 9;
  text-align: center;
}

.service .service-log {
  font-size: 60px;
  color: #fff;
  height: 60px;
}

.service>ul {
  border: 1px solid #f23d49;
  border-right: 0 none;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  background-color: #fff;
  color: #383838;
  font-size: 15px;
  padding: 0 15px;
  margin-top: 10px;
}

.service>ul>li {
  line-height: 50px;
  font-weight: 400;
  cursor: pointer;
}

.service>ul>li:not(:last-child) {
  border-bottom: 1px solid #e9e9e9;
}

header {
  position: relative;
  height: 100px;
  margin-bottom: 1px;
  background-color: white;
}

header .header-box {
  max-width: 1200px;
  margin: auto;
}

header .header-box>a {
  display: inline-block;
  margin-top: 25px;
}

header .header-box>a img {
  /* width  : 302px; */
  display: block;
}

header .header-box>a img.mobile_login {
  display: none;
  width: 102.5px;
}

header .header-box>ul.pc_nav {
  float: right;
}

header .header-box>ul.pc_nav>li {
  text-align: center;
  line-height: 100px;
  font-size: 16px;
  color: #3d3d3d;
  float: left;
  padding: 0 30px;
}

header .header-box>ul.pc_nav>li>a {
  position: relative;
  display: inline-block;
}

header .header-box>ul.pc_nav>li>a::before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 2px;
  background-color: #f23d49;
  -webkit-transition: width .2s;
  transition: width .2s;
}

header .header-box>ul.pc_nav>li.active>a::before {
  width: 100%;
}

header .header-box>ul.pc_nav>li:hover {
  background-color: #f1f2f6;
}

header .header-box>ul.pc_nav>li:not(:last-child)>a::after {
  content: '|';
  color: #e8e8e8;
  position: absolute;
  top: 0;
  right: -32px;
}

header .header-box>ul.pc_nav>li:last-child {
  margin-right: 0;
}

header .header-box>ul.pc_nav>li .nav-2 {
  position: absolute;
  top: 98px;
  left: 0;
  right: 0;
  display: none;
  z-index: 8;
}

header .header-box>ul.pc_nav>li .nav-2 .nav-2-box {
  margin-top: 2px;
  background-color: #f1f2f6;
}

header .header-box>ul.pc_nav>li .nav-2 .nav-2-box .nav-list {
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

header .header-box>ul.pc_nav>li .nav-2 .nav-2-box .nav-list .box {
  margin-left: 164px;
}

header .header-box>ul.pc_nav>li .nav-2 .nav-2-box .nav-list .box .item {
  float: left;
  margin: 0 25px;
  line-height: 35px;
  font-size: 16px;
  color: #3d3d3d;
  font-weight: 400;
  text-align: left;
}

header .header-box>ul.pc_nav>li .nav-2 .nav-2-box .nav-list .box .item:last-child {
  margin-right: 0;
}

header .header-box>ul.pc_nav>li .nav-2 .nav-2-box .nav-list .box .item>a:first-child {
  font-weight: bold;
}

header .header-box>ul.pc_nav>li .nav-2 .nav-2-box .nav-list .box .item>a:hover,
header .header-box>ul.pc_nav>li .nav-2 .nav-2-box .nav-list .box .item>a.active {
  color: #f23d49;
}

header .header-box>ul.pc_nav>li .nav-2 .nav-2-box .nav-list .box._2 {
  margin-left: 420px;
}

header .header-box>ul.pc_nav>li .nav-2 .nav-2-box .nav-list .box._2 .item {
  min-width: 105px;
}

header .header-box>ul.pc_nav>li.navs:hover .nav-2,
header .header-box>ul.pc_nav>li.navs:active .nav-2 {
  display: block;
}

header .header-box .toolbar {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #383838;
  padding-right: 25px;
  position: relative;
  font-family: Source Han Sans CN;
  font-weight: 500;
  display: none;
}

header .header-box .toolbar::after,
header .header-box .toolbar::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 3px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #F23D49;
  transition: all .2s;
}

header .header-box .toolbar::before {
  transform: translateY(calc(-50% - 4px));
}

header .header-box .toolbar::after {
  transform: translateY(calc(-50% + 4px));
}

header .header-box .toolbar.open::before {
  transform: translateY(-50%) rotate(45deg);
}

header .header-box .toolbar.open::after {
  transform: translateY(-50%) rotate(-45deg);
}

header .header-box ul.mobile_nav {
  position: absolute;
  z-index: 3;
  left: 0;
  width: 100vw;
  top: 48px;
  background-color: rgba(0, 0, 0, 0.9);
  height: 0;
  transition: 0.2s height;
  box-sizing: border-box;
  padding: 0 25px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

header .header-box ul.mobile_nav.open {
  height: calc(100vh - 48px);
}

header .header-box ul.mobile_nav>li {
  width: 100%;
  color: white;
  display: flex;
  flex-flow: wrap;
}

header .header-box ul.mobile_nav>li:first-child {
  padding-top: 20px;
}

header .header-box ul.mobile_nav>li:not(:last-child) {
  border-bottom: 1px solid #454545;
}

header .header-box ul.mobile_nav>li>h2 {
  font-size: 17px;
  font-weight: bold;
  padding: 10px 0;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 100%;
}

header .header-box ul.mobile_nav>li.active {
  color: #F23D49;
}

header .header-box ul.mobile_nav>li>h2>em {
  display: inline-block;
  width: 27px;
  height: 27px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 16px;
}

header .header-box ul.mobile_nav>li>h2>em.home {
  background-image: url(../images/p1/home.png);
}

header .header-box ul.mobile_nav>li.active>h2>em.home {
  background-image: url(../images/p1/home_on.png);
}

header .header-box ul.mobile_nav>li>h2>em.cloud {
  background-image: url(../images/p1/cloud.png);
}

header .header-box ul.mobile_nav>li.active>h2>em.cloud {
  background-image: url(../images/p1/cloud_on.png);
}

header .header-box ul.mobile_nav>li>h2>em.solution {
  background-image: url(../images/p1/solution.png);
}

header .header-box ul.mobile_nav>li.active>h2>em.solution {
  background-image: url(../images/p1/solution_on.png);
}

header .header-box ul.mobile_nav>li>h2>em.about {
  background-image: url(../images/p1/about.png);
}

header .header-box ul.mobile_nav>li.active>h2>em.about {
  background-image: url(../images/p1/about_on.png);
}

header .header-box ul.mobile_nav>li>a {
  padding: 10px 0;
  padding-left: 43px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  width: 50%;
  min-width: 50%;
  box-sizing: border-box;
  display: inline-block;

}

header .header-box ul.mobile_nav>li>a.active {
  color: #F23D49;
}

header .header-box ul.mobile_nav>li>a:last-child {
  padding-bottom: 20px;
}


@media screen and (max-width:1080px) {
  header {
    position: sticky;
    width: 100%;
    height: 48px;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 4;
  }

  header .header-box {
    display: flex;
    align-items: center;
    padding: 0 13px;
    height: 100%;
  }

  header .header-box>a {
    margin-top: 0;
  }

  header .header-box>a img.pc_login {
    display: none;
  }

  header .header-box>ul.pc_nav {
    display: none;
  }

  header .header-box>a img.mobile_login {
    display: block;
  }

  header .header-box .full {
    flex: 1;
  }

  header .header-box .toolbar {
    display: block;
  }

}


@media screen and (max-width:770px) {

  footer {
    display: none;
  }
}

.activity-box {
  background: rgba(0, 0, 0, .6);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.activity-box .activity-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 892px;
  height: 450px;
  margin-top: -225px;
  margin-left: -446px;
  background: url(../images/p1/activity.jpg) no-repeat center;
  background-size: cover;
}

.activity-box .activity-content .activity-close {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #f23d49;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.activity-box .activity-content .activity-close::after,
.activity-box .activity-content .activity-close::before {
  position: absolute;
  content: '';
  left: 7px;
  width: 25px;
  height: 0;
  border-top: 1px solid #fff;
}

.activity-box .activity-content .activity-close::after {
  bottom: 19.5px;
  transform: rotate(45deg);
}

.activity-box .activity-content .activity-close::before {
  top: 19.5px;
  transform: rotate(-45deg);
}

.activity-box .activity-content .activity-img1 {
  margin: auto;
  position: absolute;
  width: 475px;
  height: 220px;
  background: url(../images/p1/activity-img.png) no-repeat center;
  top: 45px;
  left: 50%;
  margin-left: -237px;
}

.activity-box .activity-content>button {
  font-size: 22px;
  position: absolute;
  top: 356px;
  left: 50%;
  margin-left: -161px;
}

.activity-box .activity-content>button>span {
  font-family: '宋体';
  margin-left: 20px;
}

.module-title {
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
  margin: auto;
}

.module-title>.title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  margin-bottom: 10px;
}

.module-title>.subtitle {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  text-align: center;
}