html {
  -webkit-text-size-adjust: none;
}

.mb {
  display: none;
}
.fold-icon {
  display: none !important;
  width: 12px;
  height: 12px;
  background: url("../images/srm/ifold.svg") center no-repeat;
  background-size: cover;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -6px;
  transition: all 0.3s;
  transform: rotateX(180deg);
}
.unfold.fold-icon {
  transform: rotateX(0);
}
@media (max-width: 978px) {
  .unfold.fold-icon {
    background-size: cover;
  }
  .unfold.fold-icon .pc {
    display: none !important;
  }
  .unfold.fold-icon .mb {
    display: block !important;
  }
  .unfold.fold-icon .fold-icon {
    display: block !important;
  }
}
.l-btn {
  height: 44px;
  line-height: 43px;
  padding: 0 40px;
  border: 1px solid #07c5d5;
  color: #07c5d5;
  font-size: 16px;
  vertical-align: middle;
  text-align: center;
  transition: all 0.3s;
  border-radius: 4px;
  float: left;
}
.l-btn + .l-btn {
  margin-left: 40px;
}
.l-btn:hover {
  color: #42dde6;
  border: 1px solid #42dde6;
}
.l-btn.red {
  color: #fff;
  border: 1px solid #e6251f;
  background: #e6251f;
}
.l-btn.red:hover {
  background: #ec4e42;
  border-color: #ec4e42;
}
.l-btn.green {
  color: #fff;
  border: 1px solid #07c5d5;
  background: #07c5d5;
}
.l-btn.green:hover {
  background: #07c5d5;
}
.l-btn.gray {
  color: #505050;
  border: 1px solid #f3f7fd;
  background: #f3f7fd;
}
.l-btn.gray:hover {
  background: #f3f7fd;
  color: #505050;
  border-color: #f3f7fd;
}
.l-btn.white {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
}
.l-btn.white:hover {
  border: 1px solid #07c5d5;
  background: #07c5d5;
  color: #fff;
}
@media (max-width: 978px) {
  .l-btn {
    float: none;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    padding: 0 28px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    margin-right: 10px;
  }
  .l-btn + .l-btn {
    margin-right: 0;
  }
}
.clearfix:after {
  /*伪元素是行内元素 正常浏览器清除浮动方法*/
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  *zoom: 1;
  /*ie6清除浮动的方式 *号只有IE6-IE7执行，其他浏览器不执行*/
}
.tab[data-direction="cross"] > .tab_btn > li {
  float: left;
  text-align: center;
}
.tab[data-direction="cross"] > .tab_btn > li > p {
  display: inline-block;
  font-size: 18px;
  color: #333;
  cursor: pointer;
}
.tab[data-direction="cross"] > .tab_item > li {
  float: left;
}
.tab[data-direction="cross"][data-index="2"] > .tab_btn > li {
  width: 50%;
}
.tab[data-direction="cross"][data-index="3"] > .tab_btn > li {
  width: 33.333%;
}
.tab[data-direction="cross"][data-index="4"] > .tab_btn > li {
  width: 25%;
}
.tab[data-direction="cross"][data-index="5"] > .tab_btn > li {
  width: 20%;
}
.tab[data-direction="cross"][data-index="6"] > .tab_btn > li {
  width: 16.666%;
}
.tab[data-direction="vertical"] > .tab_btn > li > p {
  display: inline-block;
  font-size: 18px;
  color: #333;
  cursor: pointer;
}
.tab[data-direction="vertical"] > .tab_item > li {
  float: left;
}
.tab[data-direction="vertical"][data-index="2"] > .tab_btn > li {
  width: 50%;
}
.tab[data-direction="vertical"][data-index="3"] > .tab_btn > li {
  width: 33.333%;
}
.tab[data-direction="vertical"][data-index="4"] > .tab_btn > li {
  width: 25%;
}
.tab[data-direction="vertical"][data-index="5"] > .tab_btn > li {
  width: 20%;
}
.tab[data-direction="vertical"][data-index="6"] > .tab_btn > li {
  width: 16.666%;
}

.content {
  padding-top: 70px;
}
@media (max-width: 978px) {
  .content {
    padding-top: 50px;
  }
}
.mb {
  display: none !important;
}
@media (max-width: 978px) {
  .pc {
    display: none !important;
  }
  .mb {
    display: block !important;
  }
}
.arrow-right {
  width: auto;
}
.arrow-right i {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  vertical-align: text-top;
  margin-top: -1px;
  background: url(../images/srm/arrow.svg) center no-repeat !important;
  background-size: 100% 100%;
}
.arrow-right:hover i {
  animation: arrow 1s linear infinite;
}
@-webkit-keyframes arrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
@-moz-keyframes arrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes arrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
@-o-keyframes arrow {
  /* Opera */
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.banner {
  background: url(../images/srm/banner-bg.jpg) center no-repeat;
  background-size: cover;
}
.banner .l-container {
  position: relative;
}
.banner .banner-main {
  line-height: 520px;
  height: 520px;
  text-align: center;
}
.banner .banner-main .banner-info {
  display: inline-block;
  vertical-align: middle;
  line-height: 1rem;
}
.banner .banner-main h1 {
  font-size: 44px;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
  line-height: 52px;
  font-weight: 400;
  margin-bottom: 20px;
}
.banner .banner-main p {
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 50px;
}
.banner .banner-main .btn-box a {
  float: none;
  display: inline-block;
}
@media (max-width: 978px) {
  .banner {
    background: url(../images/srm/banner-bg-mb.jpg) center no-repeat;
    background-size: cover;
    height: 300px;
  }
  .banner .l-container {
    position: relative;
    height: 100%;
  }
  .banner .banner-main {
    float: none;
    line-height: 0;
    height: auto;
    width: 100%;
    text-align: center;
    padding-right: 0;
    padding-top: 40px;
    margin-bottom: 0px;
  }
  .banner .banner-main .banner-info {
    display: inline-block;
    vertical-align: middle;
    line-height: 1rem;
    text-align: center;
  }
  .banner .banner-main h1 {
    font-size: 28px;
    color: #ffffff;
    letter-spacing: 0;
    text-align: center;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .banner .banner-main p {
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0;
    text-align: center;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 50px;
  }
  .banner .banner-main .btn-box a + a {
    margin-left: 20px;
  }
}
.structure .l-body .img-box {
  font-size: 0;
  text-align: center;
}
.structure .l-body .img-box img {
  width: 100%;
  display: inline-block;
  max-width: 1080px;
}
@media (max-width: 978px) {
  .structure {
    background: #f7faff;
  }
}
.manage {
  background: #f7faff;
}
.manage .tab {
  position: relative;
}
.manage .tab .tab_btn {
  text-align: center;
  margin-bottom: 40px;
}
.manage .tab .tab_btn li {
  float: none;
  display: inline-block;
  width: auto !important;
  margin-right: 40px;
}
.manage .tab .tab_btn li:last-child {
  margin-right: 0;
}
.manage .tab .tab_btn h3 {
  font-size: 16px;
  color: #192967;
  letter-spacing: 0;
  line-height: 24px;
  transition: all 0.3s;
  padding: 15px 20px;
  border-radius: 8px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.manage .tab .tab_btn h3:hover {
  color: #07c5d5;
}
.manage .tab .tab_btn .active h3 {
  color: #fff !important;
  background: #07c5d5;
}
.manage .tab .tab_btn .active h3:after {
  right: 0;
  left: 0;
  width: 100%;
  margin-left: 0;
  display: none;
}
.manage .tab .tab_btn .mb {
  display: none;
}
.manage .tab .tab_btn li:nth-child(1) h3 i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/srm/manage-icon-01.svg);
  background-size: 100% 100%;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -3px;
}
.manage .tab .tab_btn li:nth-child(1).active h3 i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/srm/manage-icon-01-h.svg);
  background-size: 100% 100%;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -3px;
}
.manage .tab .tab_btn li:nth-child(2) h3 i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/srm/manage-icon-02.svg);
  background-size: 100% 100%;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -3px;
}
.manage .tab .tab_btn li:nth-child(2).active h3 i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/srm/manage-icon-02-h.svg);
  background-size: 100% 100%;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -3px;
}
.manage .tab .tab_btn li:nth-child(3) h3 i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/srm/manage-icon-03.svg);
  background-size: 100% 100%;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -3px;
}
.manage .tab .tab_btn li:nth-child(3).active h3 i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/srm/manage-icon-03-h.svg);
  background-size: 100% 100%;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -3px;
}
.manage .tab .tab_btn li:nth-child(4) h3 i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/srm/manage-icon-04.svg);
  background-size: 100% 100%;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -3px;
}
.manage .tab .tab_btn li:nth-child(4).active h3 i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/srm/manage-icon-04-h.svg);
  background-size: 100% 100%;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -3px;
}
.manage .tab .tab_btn li:nth-child(5) h3 i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/srm/manage-icon-05.svg);
  background-size: 100% 100%;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -3px;
}
.manage .tab .tab_btn li:nth-child(5).active h3 i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/srm/manage-icon-05-h.svg);
  background-size: 100% 100%;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -3px;
}
.manage .tab_item {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
}
.manage .tab_item > li {
  overflow: hidden;
}
.manage .content-box {
  display: flex;
  align-items: center;
}
.manage .content-box .l-content-left {
  width: calc(100% - 700px);
  padding-right: 80px;
}
.manage .content-box .l-content-right {
  width: 700px;
}
.manage .content-box .solution-img-box {
  position: relative;
  font-size: 0;
  width: 100%;
}
.manage .content-box .solution-img-box img {
  display: inline-block;
  width: 100%;
}
.manage .content-box .solution-img-box img.mb {
  display: none;
}
.manage .content-box .solution-info-box {
  height: 100%;
  max-height: 430px;
  overflow-y: auto;
}
.manage .content-box .solution-info-box::-webkit-scrollbar {
  display: none;
}
.manage .content-box .solution-info-box p {
  font-size: 16px;
  color: #192967;
  letter-spacing: 0;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}
.manage .content-box .solution-info-box p span {
  display: block;
}
.manage .content-box .solution-info-box p span:nth-child(2) {
  font-size: 15px;
  color: #192967;
  line-height: 28px;
  font-weight: 400;
}
.manage .content-box .solution-info-box p span:nth-child(3) {
  font-size: 14px;
  color: #192967;
  line-height: 20px;
  margin-bottom: 20px;
}
.manage .content-box .solution-info-box > img {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
}
.manage .content-box .solution-info-box h3 {
  font-size: 18px;
  color: #192967;
  letter-spacing: 0;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 30px;
}
.manage .content-box .solution-info-box ul li {
  padding-left: 30px;
  position: relative;
}
.manage .content-box .solution-info-box ul li i {
  width: 20px;
  height: 16px;
  background-size: 100% 100% !important;
  position: absolute;
  left: -1px;
  top: 3px;
}
.manage .content-box .btn-box {
  margin-top: 30px;
}
@media (max-width: 978px) {
  .manage {
    background: #fff;
  }
  .manage .tab {
    position: relative;
  }
  .manage .tab .tab_btn {
    margin-bottom: 30px;
  }
  .manage .tab .tab_btn li {
    float: none;
    display: inline-block;
    width: auto !important;
    margin-right: 20px;
  }
  .manage .tab .tab_btn li:last-child {
    margin-right: 0;
  }
  .manage .tab .tab_btn h3 {
    font-size: 14px;
    color: #192967;
    letter-spacing: 0;
    line-height: 24px;
    transition: all 0.3s;
    padding: 10px 10px;
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    position: relative;
  }
  .manage .tab .tab_btn h3:hover {
    color: #07c5d5;
  }
  .manage .tab .tab_btn h3 i {
    width: 16px !important;
    height: 16px !important;
    margin-right: 5px !important;
  }
  .manage .tab .tab_btn .active h3 {
    color: #fff;
    background: #07c5d5;
  }
  .manage .tab .tab_btn .active h3:after {
    right: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
  }
  .manage .tab .tab_btn .mb {
    display: none;
  }
  .manage .tab .tab_btn li:nth-child(1) h3 i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/srm/manage-icon-01.svg);
    background-size: 100% 100%;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -3px;
  }
  .manage .tab .tab_btn li:nth-child(1).active h3 i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/srm/manage-icon-01-h.svg);
    background-size: 100% 100%;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -3px;
  }
  .manage .tab .tab_btn li:nth-child(2) h3 i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/srm/manage-icon-02.svg);
    background-size: 100% 100%;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -3px;
  }
  .manage .tab .tab_btn li:nth-child(2).active h3 i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/srm/manage-icon-02-h.svg);
    background-size: 100% 100%;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -3px;
  }
  .manage .tab .tab_btn li:nth-child(3) h3 i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/srm/manage-icon-03.svg);
    background-size: 100% 100%;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -3px;
  }
  .manage .tab .tab_btn li:nth-child(3).active h3 i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/srm/manage-icon-03-h.svg);
    background-size: 100% 100%;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -3px;
  }
  .manage .tab .tab_btn li:nth-child(4) h3 i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/srm/manage-icon-04.svg);
    background-size: 100% 100%;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -3px;
  }
  .manage .tab .tab_btn li:nth-child(4).active h3 i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/srm/manage-icon-04-h.svg);
    background-size: 100% 100%;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -3px;
  }
  .manage .tab_item {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
  }
  .manage .tab_item > li {
    overflow: hidden;
  }
  .manage .content-box {
    display: block;
    align-items: center;
  }
  .manage .content-box .l-content-left {
    width: 100%;
    padding-right: 0px;
  }
  .manage .content-box .l-content-right {
    width: 100%;
  }
  .manage .content-box .solution-img-box {
    position: relative;
    font-size: 0;
    margin-bottom: 30px;
    width: 100%;
  }
  .manage .content-box .solution-img-box img {
    display: inline-block;
    width: 100%;
  }
  .manage .content-box .solution-img-box img.mb {
    display: none;
  }
  .manage .content-box .solution-info-box {
    height: 100%;
    max-height: 430px;
    overflow-y: auto;
  }
  .manage .content-box .solution-info-box::-webkit-scrollbar {
    display: none;
  }
  .manage .content-box .solution-info-box h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .manage .content-box .solution-info-box p {
    font-size: 16px;
    color: #192967;
    letter-spacing: 0;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .manage .content-box .solution-info-box p span {
    display: block;
  }
  .manage .content-box .solution-info-box p span:nth-child(2) {
    font-size: 14px;
    color: #192967;
    line-height: 20px;
    margin-bottom: 5px;
    font-weight: 700;
  }
  .manage .content-box .solution-info-box p span:nth-child(3) {
    font-size: 14px;
    color: #192967;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .manage .content-box .solution-info-box ul li {
    padding-left: 30px;
    position: relative;
  }
  .manage .content-box .solution-info-box ul li i {
    width: 20px;
    height: 16px;
    background-size: 100% 100% !important;
    position: absolute;
    left: -1px;
    top: 3px;
  }
  .manage .content-box .solution-info-box .btn-box {
    padding-top: 10px;
    text-align: center;
  }
  .manage .content-box .solution-info-box .btn-box a {
    float: none;
    display: inline-block;
  }
  .manage .scroll-tab:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: calc(100% - 16px);
    top: 12px;
    background: #fbfcff url(../images/srm/manage-arrow-r-mb.svg);
    background-size: 100% 100%;
    z-index: 2;
    transition: all 0.3s;
  }
  .manage .scroll-tab.left:before {
    transform: rotateY(180deg);
  }
  .manage .scroll-tab {
    overflow-x: auto;
  }
  .manage .scroll-tab::-webkit-scrollbar {
    display: none;
  }
  .manage .tab_btn {
    width: 640px;
    text-align: left !important;
  }
  .manage .tab_btn > li {
    width: auto !important;
  }
}
.case {
  background: url(../images/srm/case-bg.jpg) center no-repeat;
  background-size: cover;
}
.case .l-title h2 {
  color: #fff;
}
.case .l-body .card {
  background: #ffffff;
  border-radius: 10px;
  margin: 0 auto;
  padding: 35px 100px 40px;
  margin-bottom: 40px;
  max-width: 1080px;
}
.case .l-body .card .logo-box {
  text-align: center;
  font-size: 0em;
  margin-bottom: 20px;
}
.case .l-body .card .logo-box img {
  display: inline-block;
  width: 168px;
}
.case .l-body .card h3 {
  font-size: 14px;
  color: #000000;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 30px;
  position: relative;
}
.case .l-body .card h3:after {
  content: "";
  position: absolute;
  left: -60px;
  top: -40px;
  background: url(../images/srm/point-l.svg);
  background-size: 100% 100%;
  width: 50px;
  height: 50px;
}
.case .l-body .card h3:before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -20px;
  background: url(../images/srm/point-r.svg);
  background-size: 100% 100%;
  width: 50px;
  height: 50px;
}
.case .l-body .card p {
  font-size: 14px;
  color: #999999;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
}
.case .l-body .btn-box {
  text-align: center;
}
.case .l-body .btn-box a {
  float: none;
  display: inline-block;
}
@media (max-width: 978px) {
  .case {
    background: url(../images/srm/case-bg-mb.jpg) center no-repeat;
    background-size: cover;
  }
  .case .l-title h2 {
    color: #fff;
  }
  .case .l-body .card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 30px 40px;
    margin-bottom: 30px;
  }
  .case .l-body .card .logo-box {
    text-align: center;
    font-size: 0em;
    margin-bottom: 20px;
  }
  .case .l-body .card .logo-box img {
    display: inline-block;
    width: 168px;
  }
  .case .l-body .card h3 {
    font-size: 14px;
    color: #000000;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
  }
  .case .l-body .card h3:after {
    content: "";
    position: absolute;
    left: -10px;
    top: -40px;
    background: url(../images/srm/point-l.svg);
    background-size: 100% 100%;
    width: 35px;
    height: 35px;
  }
  .case .l-body .card h3:before {
    content: "";
    position: absolute;
    right: -10px;
    bottom: -20px;
    background: url(../images/srm/point-r.svg);
    background-size: 100% 100%;
    width: 35px;
    height: 35px;
  }
  .case .l-body .card p {
    font-size: 14px;
    color: #999999;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 400;
  }
  .case .l-body .btn-box {
    text-align: center;
  }
  .case .l-body .btn-box a {
    float: none;
    display: inline-block;
  }
  .case .l-body .btn-box a + a {
    margin-left: 15px;
  }
}
.brand {
  background: #f7faff;
}
.brand .l-body ul li {
  float: left;
  margin-right: 35px;
  width: calc((100% - 70px) / 3);
  text-align: left;
  font-size: 0;
}
.brand .l-body ul li:nth-child(3n) {
  margin-right: 0;
}
.brand .l-body .card {
  padding: 0;
  position: relative;
  background: #ffffff;
  box-shadow: 0px 5px 10px 0px rgba(197, 209, 243, 0.5);
  border-radius: 10px;
}
.brand .l-body .img-box {
  width: 100%;
  overflow: hidden;
  font-size: 0;
  border-radius: 10px 10px 0 0;
}
.brand .l-body img {
  transition: all 0.3s;
  width: 100%;
}
.brand .l-body .info-box {
  padding: 20px 30px;
}
.brand .l-body .info-box > span {
  background-image: linear-gradient(90deg, #00b0be 0%, #5282d5 100%);
  border-radius: 10px 0px 10px 0px;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 20px;
  font-weight: 500;
  line-height: 24px;
  padding: 0 10px;
}
.brand .l-body h3 {
  font-size: 18px;
  color: #000000;
  letter-spacing: 0;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 0.3s;
}
.brand .l-body p:nth-child(2) {
  font-size: 14px;
  color: #666666;
  letter-spacing: 0;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  min-height: 40px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.brand .l-body p:last-child {
  font-size: 14px;
  color: #00adbb;
  letter-spacing: 0;
  line-height: 20px;
  font-weight: 500;
}
.brand .l-body p:last-child i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/srm/arrow-new-blue-h.svg);
  background-size: 100% 100%;
  margin-left: 5px;
  vertical-align: text-top;
  margin-top: -1px;
}
.brand .l-body .card .img-box {
  overflow: hidden;
}
.brand .l-body .card:hover .img-box img {
  transform: scale(1.1);
}
.brand .l-body .card:hover h3 {
  color: #00adbb;
}
@media (max-width: 978px) {
  .brand {
    background: #f7faff;
  }
  .brand .l-body ul li {
    float: left;
    margin-right: 0px;
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
    font-size: 0;
  }
  .brand .l-body ul li:nth-child(3n) {
    margin-right: 0;
    margin-bottom: 0;
  }
  .brand .l-body .card {
    padding: 0;
    position: relative;
    background: #ffffff;
    box-shadow: 0px 5px 10px 0px rgba(197, 209, 243, 0.5);
    border-radius: 10px;
  }
  .brand .l-body .img-box {
    width: 100%;
    overflow: hidden;
    font-size: 0;
    border-radius: 10px 10px 0 0;
  }
  .brand .l-body img {
    width: 100%;
  }
  .brand .l-body .info-box {
    padding: 20px;
  }
  .brand .l-body .info-box > span {
    background-image: linear-gradient(90deg, #00b0be 0%, #5282d5 100%);
    border-radius: 10px 0px 10px 0px;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 20px;
    font-weight: 500;
    line-height: 24px;
    padding: 0 10px;
  }
  .brand .l-body h3 {
    font-size: 18px;
    color: #000000;
    letter-spacing: 0;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 5px;
  }
  .brand .l-body p:nth-child(2) {
    font-size: 14px;
    color: #666666;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .brand .l-body p:last-child {
    font-size: 14px;
    color: #00adbb;
    letter-spacing: 0;
    line-height: 20px;
    font-weight: 500;
  }
  .brand .l-body p:last-child i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/srm/arrow-new-blue-h.svg);
    background-size: 100% 100%;
    margin-left: 5px;
    vertical-align: text-top;
    margin-top: -1px;
  }
}
.function .l-body ul li {
  float: left;
  margin-right: 100px;
  width: calc((100% - 200px) / 3);
  text-align: center;
  font-size: 0;
}
.function .l-body ul li:nth-child(3n) {
  margin-right: 0;
}
.function .l-body ul li img {
  display: inline-block;
  width: 60px;
  margin-bottom: 20px;
}
.function .l-body ul li h3 {
  font-size: 18px;
  color: #000000;
  letter-spacing: 0;
  text-align: center;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}
.function .l-body ul li p {
  font-size: 14px;
  color: #666666;
  letter-spacing: 0;
  text-align: center;
  line-height: 24px;
  font-weight: 400;
}
@media (max-width: 978px) {
  .function .l-body ul li {
    float: left;
    margin-right: 0px;
    width: 100%;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-left: 74px;
    font-size: 0;
  }
  .function .l-body ul li:nth-child(3n) {
    margin-right: 0px;
    margin-bottom: 0;
  }
  .function .l-body ul li:nth-child(2n) {
    margin-right: 0;
  }
  .function .l-body ul li img {
    display: inline-block;
    position: absolute;
    width: 54px;
    left: 0;
    top: 11px;
  }
  .function .l-body ul li h3 {
    font-size: 16px;
    color: #000000;
    letter-spacing: 0;
    text-align: left;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 5px;
  }
  .function .l-body ul li p {
    font-size: 12px;
    color: #666666;
    letter-spacing: 0;
    text-align: left;
    line-height: 18px;
    font-weight: 400;
  }
  .function .l-body .btn-box {
    text-align: center;
  }
  .function .l-body .btn-box a {
    margin-top: -20px;
    float: none;
    display: inline-block;
  }
}
.upgrade {
  background: #fff;
  padding-bottom: 6px;
}
.upgrade .l-container {
  max-width: 100%;
  padding: 0;
}
.upgrade .l-body:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  width: 200px;
  z-index: 9;
  background-image: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 100%
  );
}
.upgrade .l-body:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  right: 0;
  width: 200px;
  background-image: linear-gradient(
    270deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 9;
}
.upgrade .l-body {
  overflow-x: auto;
  position: relative;
}
.upgrade .l-body::-webkit-scrollbar {
  display: none;
}
.upgrade .l-body > div {
  width: 200%;
  margin-bottom: 0 !important;
  -webkit-animation: scroll 50s linear infinite;
  -moz-animation: scroll 50s linear infinite;
  animation: scroll 50s linear infinite;
}
.upgrade .l-body > div:hover {
  animation-play-state: paused;
}
.upgrade .l-body > div .upgrade-box {
  width: 50%;
}
.upgrade .l-body > div .upgrade-box div {
  width: calc((100%) / 10);
  /* box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05); */
  font-size: 0;
}
.upgrade .l-body > div .upgrade-box div:nth-child(n + 41) {
  display: none;
}
.upgrade .l-body > div .upgrade-box div img {
  width: 100%;
}
.upgrade .l-body div {
  float: left;
  font-size: 0;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s;
}
.upgrade .tab_item li div img {
  width: 100%;
  display: inline-block;
}
@media (max-width: 978px) {
  .upgrade {
    text-align: center;
  }
  .upgrade .mb img {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 30px;
  }
  .upgrade a {
    display: inline-block;
  }
  .upgrade .l-body:before {
    display: none;
  }
  .upgrade .l-body:after {
    display: none;
  }
}
@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-moz-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-o-keyframes scroll {
  /* Opera */
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.video-model {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
.video-model .por-player {
  width: 700px;
  height: 400px;
  position: absolute;
  top: 50%;
  margin-top: -250px;
  left: 50%;
  margin-left: -350px;
}
.video-model video {
  width: 700px;
  height: 400px;
}
.video-model .video-close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 15px;
  height: 15px;
  background: url(../images/srm/video-close.svg) center no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
}
.video-model.show {
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}
@media (max-width: 978px) {
  .video-model .por-player {
    width: 90%;
    height: auto;
    position: absolute;
    top: 50%;
    margin-top: 0;
    left: 50%;
    margin-left: 0;
    transform: translateX(-50%) translateY(-50%);
  }
  .video-model video {
    width: 100%;
    height: auto;
  }
}
.form-box {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}
.form-box .main {
  position: absolute;
  padding: 40px 30px;
  width: 420px;
  border-radius: 8px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: #ffffff;
  text-align: center;
}
.form-box .main a.close {
  width: 16px;
  height: 16px;
  display: block;
  overflow: hidden;
  background: url("../images/srm/close.svg") center no-repeat;
  background-size: 100%;
  position: absolute;
  transition: all 0.3s;
  right: 20px;
  top: 20px;
  z-index: 9999;
}
.form-box .main a.close:hover {
  transform: rotateZ(180deg);
}
.form-box .main h3 {
  font-size: 20px;
  color: #000;
  letter-spacing: 0;
  line-height: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
.form-box .main h3 i {
  display: inline-block;
  margin-top: -3px;
  vertical-align: middle;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  background: url("../images/srm/rs-down.svg") center no-repeat;
  background-size: 100%;
}
.form-box .main .inner .form {
  position: relative;
  text-align: left;
}
.form-box .main .inner .form .label-box {
  margin-bottom: 20px;
  position: relative;
}
.form-box .main .inner .form .label-box img {
  position: absolute;
  left: 15px;
  top: 16px;
  z-index: 9;
}
.form-box .main .inner .form .label-box input {
  font-size: 14px;
  color: #999999;
  letter-spacing: 0;
  font-weight: 400;
  width: 100%;
  height: 48px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  padding-left: 40px;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s;
}
.form-box .main .inner .form .label-box input:hover,
.form-box .main .inner .form .label-box input.focus {
  border-color: #29bece;
}
.form-box .main .inner .form .label-box input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #ccc;
}
.form-box .main .inner .form .label-box input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #ccc;
}
.form-box .main .inner .form .label-box input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #ccc;
}
.form-box .main .inner .form .label-box input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #ccc;
}
.form-box .main .inner .form .label-box .code {
  border-radius: 0 2px 2px 0;
  width: 121px;
  margin-left: -2px;
  font-size: 16px;
  background: #00adbb;
  color: #fff;
  line-height: 48px;
  text-align: center;
  transition: all 0.3s;
  float: right;
  vertical-align: middle;
}
.form-box .main .inner .form .label-box .code:hover {
  color: #29bece;
  border-color: #29bece;
}
.form-box .main .inner .form .label-box .code.disabled {
  opacity: 0.5;
  cursor: no-drop;
}
.form-box .main .inner .form .commit {
  width: 100%;
  display: inline-block;
  background: #00adbb;
  border-radius: 2px;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  margin-top: 30px;
  line-height: 48px;
  transition: all 0.3s;
}
.form-box .main .inner .form .commit:hover {
  border-color: #29bece;
  background: #29bece;
}
.form-box .main .inner .form .error {
  border: 1px solid #fa5151 !important;
}
.form-box .main .inner .form .tip-info {
  position: absolute;
  bottom: 85px;
  width: 100%;
}
.form-box .main .inner .form .tip-info p {
  font-size: 14px;
  color: #999999;
  line-height: 20px;
  margin-bottom: 0;
}
.form-box .main .inner .form .tip-info .message-info {
  position: absolute;
  left: 0;
  right: 0;
  top: 120%;
  color: #fa5151;
}
.form-box .main .inner .form .tip-info .message-info.name {
  /* top: -200px; */
  /* left: 95px; */
}
.form-box .main .inner .form .tip-info .message-info.enterprise {
  /* top: -140px; */
  /* left: 95px; */
}
.form-box .main .inner .form .tip-info .message-info.phone {
  /* top: -100px; */
  /* left: 95px; */
}
@media (max-width: 978px) {
  .form-box {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }
  .form-box .main {
    width: 315px;
    position: absolute;
    padding: 20px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
  }
  .form-box .main a.close {
    width: 16px;
    height: 16px;
    display: block;
    overflow: hidden;
    background: url("../images/srm/close.svg") center no-repeat;
    background-size: 100%;
    position: absolute;
    right: 30px;
    top: 20px;
    z-index: 9999;
  }
  .form-box .main h3 {
    font-size: 18px;
    color: #1a1a1a;
    letter-spacing: 0;
    line-height: 28px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 20px;
  }
  .form-box .main h3 i {
    width: 18px;
    height: 18px;
  }
  .form-box .main .inner {
    position: relative;
    max-width: 440px;
    width: 100%;
    text-align: left;
    display: inline-block;
  }
  .form-box .main .inner .form .label-box:nth-child(3) input {
    width: calc(100% - 120px) !important;
  }
  .form-box .main .inner .form .label-box img {
    left: 10px;
    top: 12px;
  }
  .form-box .main .inner .form .label-box input {
    padding-left: 30px;
    height: 40px;
    line-height: 40px;
  }
  .form-box .main .inner .form .label-box .code {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  .form-box .main .inner .form .tip-info {
    bottom: 76px;
  }
  .form-box .main .inner .form .commit {
    line-height: 40px;
    font-size: 16px;
  }
}

.ad {
  display: none;
}
.ads .form {
  text-align: center;
  position: relative;
}
.ads .form .label-box input {
  font-size: 14px;
  color: #575b62;
  letter-spacing: 0;
  line-height: 24px;
  width: 230px;
  height: 36px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  padding-left: 10px;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s;
}
.ads .form .label-box input:hover,
.ads.form .label-box input:focus {
  border-color: #29bece;
}

.ads .form .code {
  display: inline-block;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  margin-left: -5px;
  width: 100px;
  font-size: 14px;
  color: #fff;
  line-height: 36px;
  text-align: center;
  transition: all 0.3s;
  vertical-align: middle;
  background: #00adbb;
}
.ads .form .label-box input.code-input {
  width: 140px !important;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ads .form .label-box {
  display: inline-block;
  margin-right: 10px;
}
.ads .form .label-box:nth-child(4) {
  margin-right: 0;
}
.ads .form .code:hover {
  color: #fff;
  background-color: #45becd;
}
.ads .form .code.disabled {
  /* opacity: 0.5; */
  cursor: no-drop;
}

.ads .form .tip-info {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  color: #fff;
  opacity: 0.7;
}
.ads .form .tip-info p {
  text-align: center;
}

.ads .form .commit:hover {
}
.ads .form .error {
  border: 1px solid #fa5151 !important;
}

.ads {
  background: url(../images/ads-bg.png);
  background-size: cover;
}
.ads .l-container {
  padding: 50px 0;
}
.ads .ad-info {
  text-align: center;
}
.ads .ad-info h3 {
  font-size: 36px;
  color: #ffffff;
  text-align: center;
  line-height: 48px;
  font-weight: 500;
  margin-bottom: 10px;
}
.ads .ad-info p {
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 40px;
}
.ads .ad-info p span {
  position: relative;
  margin-right: 10px;
}
.ads .ad-info p span:after {
  content: "";
  height: 20px;
  width: 2px;
  background: #fff;
  position: absolute;
  right: -10px;
  top: 0;
}
.ads .ad-info p span:last-child:after {
  display: none;
}
.ads .btn-box {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
.ads .btn-box a {
  width: 240px;
  height: 48px;
  line-height: 48px;
  float: none;
  margin-right: 0;
  display: inline-block;
}
@media (max-width: 978px) {
  .ads {
    background: url(../images/ad-bg-mb.png);
    background-size: cover;
  }
  .ads .l-container {
    display: block;
    padding: 0;
    text-align: center;
    padding-top: 35px;
    align-items: center;
    /*垂直居中*/
    justify-content: center;
    /*水平居中*/
  }
  .ads .ad-info {
    margin-right: 0;
    width: 350px;
    display: inline-block;
  }
  .ads .ad-info h3 {
    font-size: 24px;
    color: #ffffff;
    letter-spacing: 0;
    text-align: center;
    line-height: 36px;
    margin-bottom: 10px;
  }
  .ads .ad-info p {
    text-align: center;
    margin-top: 0px;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 20px;
    margin-bottom: 25px;
  }
  .ads .ad-info p span {
    position: relative;
    margin-right: 20px;
  }
  .ads .ad-info p span:after {
    content: "";
    height: 17px;
    width: 2px;
    background: #fff;
    position: absolute;
    right: -10px;
    top: 0;
  }
  .ads .ad-info p span:nth-child(3):after {
    display: none;
  }
  .ads .ad-info p span:last-child:after {
    display: none;
  }
  .ads .btn-box {
    width: 100%;
    text-align: center;
  }
  .ads .btn-box a {
    display: inline-block;
    margin-right: 10px;
    margin-left: 0;
  }
  .ads .form .label-box {
    margin-right: 0;
    width: 300px;
    margin-bottom: 10px;
  }
  .ads .form .label-box input {
    width: 300px;
  }
  .ads .form .label-box input.code-input {
    width: 190px !important;
    margin-right: 10px;
    border-radius: 4px !important;
  }
  .ads .form .code {
    border-radius: 4px !important;
  }
  .ads .btn-box {
    margin-top: 30px;
    padding-bottom: 30px;
  }
  .ads .btn-box a {
    width: 300px;
    font-size: 16px;
  }
  .ads .form .tip-info {
    bottom: 85px;
    width: 300px;
    left: 50%;
    margin-left: -150px;
  }
  .ads .form .tip-info p {
    text-align: left;
  }
}

@media (min-width: 978px) {
  .header {
    background: #042458;
  }
  .header .header-nav-ul .nav-item {
    color: #fff;
  }
  .header .header-message span {
    color: #fff;
  }
  .header .header-nav-ul .nav-item .fold-icon {
    background: url(../images/menu-fold-white.svg) center no-repeat;
    background-size: cover;
  }
  .header .header-message i {
    background: url(../images/code-white.svg) center no-repeat;
    background-size: cover;
  }
  .header .header-logo {
    background: url(../images/logo-white.svg) center no-repeat;
    background-size: cover;
  }
}
@media (max-width: 1440px) {
  .function .l-container,
  .manage .l-container,
  .brand .l-container {
    max-width: 1085px;
  }
}
