@charset "UTF-8";
.header {
  width: 100%;
}
.header .header-bg {
  padding: 0.9rem 0;
}
.header .header-bg .navbar-toggler {
  border: none;
}
.header .header-bg .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.header .header-bg .navbar-toggler:focus {
  box-shadow: none;
}
.header .header-bg .navbar-nav .nav-item {
  padding: 10px 15px;
}
.header .header-bg .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  font-size: 16px;
  padding: 0;
  padding-bottom: 2px;
  position: relative;
  display: inline-block;
}
.header .header-bg .navbar-nav .nav-item .nav-link .user {
  display: inline-flex;
  align-items: center;
}
.header .header-bg .navbar-nav .nav-item .nav-link .user .avatar {
  height: 25px;
  width: 25px;
}
.header .header-bg .navbar-nav .nav-item .nav-link .user .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.header .header-bg .navbar-nav .nav-item .nav-link .user .username {
  width: 100px;
  white-space: nowrap; /* 禁止换行 */
  overflow: hidden; /* 隐藏溢出内容 */
  text-overflow: ellipsis; /* 溢出部分用省略号表示 */
}
.header .header-bg .navbar-nav .nav-item .dropdown-menu {
  background: #0c2f6c;
}
.header .header-bg .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  color: #ffffff;
  display: inline-flex;
  flex-direction: column;
  align-items: start;
}
.header .header-bg .navbar-nav .nav-item .dropdown-item:hover,
.header .header-bg .navbar-nav .nav-item .dropdown-item:focus {
  text-decoration: none;
  background-color: rgb(11, 44, 102);
}
.header .header-bg .navbar-nav .nav-item .my-dropdown .not-auth {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.header .header-bg .navbar-nav .nav-item .my-dropdown .not-auth i {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
}
.header .header-bg .navbar-nav .nav-item .my-dropdown .not-auth span {
  margin-left: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
}
.header .header-bg .navbar-nav .nav-item .my-dropdown .not-auth a {
  margin-left: 15px;
  font-size: 16px;
  color: #ffe4b5;
}
.header .header-bg .navbar-nav .nav-item .my-dropdown .auth {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.header .header-bg .navbar-nav .nav-item .my-dropdown .auth i {
  font-size: 16px;
  color: #ffffff;
}
.header .header-bg .navbar-nav .nav-item .my-dropdown .auth span {
  margin-left: 10px;
  font-size: 16px;
  color: #ffffff;
}
.header .header-bg .navbar-nav .nav-item .my-dropdown .auth a {
  margin-left: 15px;
  font-size: 14px;
  color: #ffe4b5;
}
.header .header-bg .navbar-nav .nav-item .my-dropdown .money a {
  margin-left: 15px;
  color: #ffe4b5;
  font-size: 14px;
  padding: 3px 10px;
  border: 1px solid #ffe4b5;
  margin-right: 10px;
}
.header .header-bg .navbar-nav .nav-item .my-dropdown .dropdown-item {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.header .header-bg .navbar-nav .nav-item .my-dropdown .dropdown-item img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.header .header-bg .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* 宽度和文字一样宽 */
  height: 2px;
  background-color: #ffffff;
  transform: scaleX(0);
  /* 初始缩放为0 */
  transform-origin: center;
  /* 从中间开始展开 */
  transition: transform 0.3s ease;
}
.header .header-bg .navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
  /* 展开到100%宽度 */
}
.header .header-bg .navbar-nav .nav-item .nav-link.active::after {
  transform: scaleX(1);
  /* 直接展开 */
  transition: none;
  /* 关键：去掉过渡动画 */
}
.header .menu-open {
  background-color: rgb(0, 93, 255) !important;
}
.header .scroll-open {
  background-color: rgb(0, 93, 255) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.header .scroll-fixed {
  background-color: rgb(0, 93, 255) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.footer {
  margin: 0;
  padding: 0;
  margin-top: 50px;
  color: #ffffff;
}
.footer .assure {
  background: #07162d;
  padding-bottom: 20px;
}
.footer .assure .row .col {
  margin-top: 20px;
  font-size: 18px;
}
@media (max-width: 720px) {
  .footer .assure .row .col {
    font-size: 16px;
  }
}
.footer .assure .row .col img {
  margin-right: 5px;
}
.footer .more {
  background: #0a1a33;
  padding-top: 30px;
  padding-bottom: 20px;
}
.footer .more a {
  text-decoration: none;
}
.footer .more .content {
  display: flex;
}
.footer .more .content .contact {
  flex: 0 0 500px;
  width: 500px;
}
.footer .more .content .contact .company {
  margin-top: 20px;
  font-size: 16px;
  margin-bottom: 40px;
}
.footer .more .content .contact .item {
  padding: 5px 0;
}
.footer .more .content .contact .code {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.footer .more .content .contact .code img {
  width: 106px;
  height: 106px;
}
.footer .more .content .contact .code span {
  display: inline-block;
  width: 106px;
  text-align: center;
  margin-top: 10px;
}
.footer .more .content .other {
  flex-grow: 1;
}
.footer .more .content .other .box {
  display: flex;
}
.footer .more .content .other .box .item {
  width: 25%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}
.footer .more .content .other .box .item .title {
  font-size: 18px;
  margin-bottom: 10px;
}
.footer .more .content .other .box .item a {
  color: #8f8d8d;
  padding: 5px 0;
}
.footer .more .content .other .box .item a:hover {
  color: #ffffff;
}
.footer .more .content .other .line {
  height: 1px;
  border-bottom: 1px solid #3f3f3f;
}
.footer .more .content .other .fast {
  display: flex;
  padding: 20px 0;
}
.footer .more .content .other .fast .item {
  color: #ffffff;
  margin-right: 40px;
  display: inline-flex;
  align-items: center;
}
.footer .more .content .other .fast .item img {
  width: 16px;
  height: 15px;
  margin-right: 5px;
}
.footer .more .content .other .icp {
  display: flex;
  padding: 20px 0;
}
.footer .more .content .other .icp .item {
  color: #ffffff;
  margin-right: 30px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
}
.footer .more .content .other .icp .item img {
  margin-right: 5px;
}
@media (max-width: 1500px) {
  .footer .more .content .other .icp {
    flex-direction: column;
  }
  .footer .more .content .other .icp .item {
    padding: 5px 0;
    margin-right: 0;
  }
}
@media (max-width: 1100px) {
  .footer .more .content .other {
    display: none;
  }
  .footer .more .content .contact {
    flex: 0 0 100%;
    width: 100%;
  }
}

.banner {
  width: 100%;
  height: 440px;
  padding-top: 63px;
  position: relative;
}
@media (max-width: 768px) {
  .banner {
    height: 400px;
  }
}
@media (max-width: 992px) {
  .banner {
    padding-top: 56px;
  }
}
.banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.banner .banner-content {
  position: absolute;
  color: #ffffff;
  top: 40%;
  left: 24%;
}
@media (max-width: 768px) {
  .banner .banner-content {
    top: 35%;
    left: 15%;
  }
}
.banner .banner-content .banner-title {
  font-size: 44px;
  font-weight: bold;
  padding-right: 40px;
}
@media (max-width: 720px) {
  .banner .banner-content .banner-title {
    font-size: 30px;
  }
}
.banner .banner-content .banner-remark {
  font-size: 18px;
  margin-top: 10px;
  padding-right: 40px;
}
@media (max-width: 720px) {
  .banner .banner-content .banner-remark {
    font-size: 16px;
  }
}
.banner .banner-content .banner-button {
  margin-top: 10px;
}
.banner .banner-content .banner-button a {
  margin-right: 10px;
  margin-top: 10px;
  width: 150px;
  padding: 10px 0;
}
@media (max-width: 720px) {
  .banner .banner-content .banner-button a {
    width: 120px;
  }
}
.banner .banner-content .banner-button .banner-href1 {
  color: #ffffff;
  font-size: 16px;
  background: #f49429;
  text-decoration: none;
  border: #ffffff 1px solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.banner .banner-content .banner-button .banner-href1:hover {
  background: #eb7f04;
}
.banner .banner-content .banner-button .banner-href2 {
  color: #ffffff;
  font-size: 16px;
  background: #01158f;
  text-decoration: none;
  border: #ffffff 1px solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.banner .banner-content .banner-button .banner-href2:hover {
  background: #0320da;
}
.banner .banner-content .banner-button .banner-href3 {
  color: #ffffff;
  font-size: 16px;
  background: #005eff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.banner .banner-content .banner-button .banner-href3:hover {
  background: #0320da;
}
.banner .banner-content .banner-button .banner-href4 {
  color: #283f58;
  font-size: 16px;
  background: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.banner .banner-content .banner-button .banner-href4:hover {
  background: #0320da;
  color: #ffffff;
}

.main {
  margin-top: 30px;
}
.main .menu_bg {
  padding: 0 140px;
}
@media (max-width: 720px) {
  .main .menu_bg {
    padding: 0 20px;
  }
}
.main .menu_bg .menu {
  width: 100%;
  display: inline-flex;
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.main .menu_bg .menu a {
  background: #ffffff;
  color: #283f58;
  border-radius: 10px;
  padding: 15px 60px;
  font-size: 20px;
  font-weight: bold;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 960px) {
  .main .menu_bg .menu a {
    padding: 15px 7px;
    font-size: 18px;
    margin: 0 5px;
  }
}
.main .menu_bg .menu a:hover {
  background: #ecf5ff;
  color: #283f58;
}
.main .menu_bg .menu a.active {
  background: #005eff;
  color: #ffffff;
}
.main .menu_bg .menu a.active :hover {
  background: #005eff;
  color: #ffffff;
}
.main .promotion_edge {
  margin-top: 20px;
}
.main .promotion_edge .edge_title {
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.main .promotion_edge .edge_title {
  padding-top: 40px;
}
.main .promotion_edge .edge_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}
.main .promotion_edge .row {
  margin-top: 20px;
}
.main .promotion_edge .row .col {
  margin-top: 15px;
}
.main .promotion_edge .row .col .box {
  background: linear-gradient(135deg, #f3f9fe, #fafcff);
  border-radius: 5px;
  border: 1px #ffffff solid;
  display: flex;
  align-items: center;
  padding: 30px 10px;
}
.main .promotion_edge .row .col .box .icon {
  flex: 0 110px;
  width: 110px;
  text-align: center;
}
.main .promotion_edge .row .col .box .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.main .promotion_edge .row .col .box .content .title {
  color: rgb(30, 44, 82);
  font-size: 22px;
  font-weight: bold;
}
.main .promotion_edge .row .col .box .content .remark {
  margin-top: 10px;
  color: rgb(139, 148, 159);
  font-size: 16px;
}
.main .promotion_edge .row .col .box:hover {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 10px 4px #cdd1d8;
  transform: translateY(-4px);
  transition: 0.2s;
}
.main .process {
  margin-top: 30px;
  background: #ffffff;
  padding-bottom: 30px;
}
.main .process .process_title {
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.main .process .process_title {
  padding-top: 40px;
}
.main .process .process_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}
.main .process .row {
  margin-top: 20px;
}
.main .process .row .col {
  margin-top: 15px;
  position: relative;
}
.main .process .row .col .box {
  border-radius: 5px;
  padding: 30px 20px;
  border: 1px #e7e9ec solid;
  height: 280px;
  width: 93%;
}
.main .process .row .col .box .number {
  color: #2046dc;
  font-size: 66px;
  font-weight: bold;
}
.main .process .row .col .box .title {
  color: #1e2c52;
  font-size: 22px;
  font-weight: bold;
  margin-top: 30px;
}
.main .process .row .col .box .remark {
  font-size: 16px;
  color: #8b949f;
  margin-top: 10px;
  padding-bottom: 10px;
  display: -webkit-box; /* 将对象作为弹性伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式为垂直 */
  -webkit-line-clamp: 2; /* 限制在一个块元素显示的文本的行数 */
  overflow: hidden; /* 超出部分隐藏 */
  text-overflow: ellipsis;
}
.main .process .row .col .line {
  position: absolute;
  top: 50%;
  right: -5px;
  font-size: 30px;
  color: #c3c6ca;
  display: block;
}
@media (max-width: 540px) {
  .main .process .row .col .box {
    height: 200px;
  }
}
@media (max-width: 1200px) {
  .main .process .row .col .box {
    padding: 10px 10px;
    height: auto;
    display: flex;
    justify-content: center;
  }
  .main .process .row .col .box .number {
    font-size: 55px;
    flex: 0 0 100px;
    width: 100px;
    text-align: center;
    display: flex;
    align-items: center;
  }
  .main .process .row .col .box .info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .main .process .row .col .box .title {
    margin-top: 0px;
  }
  .main .process .row .col .box .remark {
    margin-top: 10px;
    padding-bottom: 0;
  }
  .main .process .row .col .line {
    display: none;
  }
}
.main .law {
  margin-top: 40px;
}
.main .law .law_title {
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.main .law .law_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}
.main .law .box {
  margin-top: 20px;
  background: linear-gradient(180deg, #fafcff, #f3f9fe);
  padding: 20px 20px;
  color: #4e5157;
  font-size: 16px;
  line-height: 30px;
}
.main .law .box p {
  display: flex;
  align-items: center;
}
.main .law .box p i {
  color: #005eff;
  margin-right: 5px;
}
.main .promotion_type {
  margin-top: 30px;
  background: #ffffff;
  padding-bottom: 30px;
}
.main .promotion_type .promotion_type_title {
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.main .promotion_type .promotion_type_title {
  padding-top: 40px;
}
.main .promotion_type .promotion_type_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}
.main .promotion_type .promotion_type_banner {
  width: 100%;
  height: 140px;
  margin-top: 20px;
}
.main .promotion_type .promotion_type_banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.main .promotion_type .row {
  margin-top: 20px;
}
.main .promotion_type .row .col {
  margin-top: 15px;
}
.main .promotion_type .row .col .box {
  border-radius: 5px;
  padding: 20px 20px;
  background: #f3f5f8;
  height: 160px;
}
.main .promotion_type .row .col .box .title {
  font-size: 22px;
  color: #1e2c52;
  font-weight: bold;
}
.main .promotion_type .row .col .box .remark {
  margin-top: 10px;
  font-size: 16px;
  color: #8b949f;
  display: -webkit-box; /* 将对象作为弹性伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式为垂直 */
  -webkit-line-clamp: 3; /* 限制在一个块元素显示的文本的行数 */
  overflow: hidden; /* 超出部分隐藏 */
  text-overflow: ellipsis;
}
.main .question {
  margin-top: 40px;
}
.main .question .question_title {
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.main .question .question_title {
  font-weight: bold;
}
.main .question .question_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}
.main .question .box {
  padding: 20px 0px;
  font-size: 16px;
  line-height: 30px;
}
.main .question .box .item {
  margin-top: 30px;
}
.main .question .box .item .title {
  font-size: 20px;
  font-weight: bold;
  color: #283f58;
  display: flex;
  align-items: center;
}
.main .question .box .item .title img {
  margin-right: 8px;
}
.main .question .box .item .remark {
  margin-top: 4px;
  color: #8b949f;
  font-size: 16px;
}
.main .service {
  margin-top: 40px;
}
.main .service .service_title {
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.main .service .service_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}
.main .service .service_banner {
  width: 100%;
  height: 140px;
  margin-top: 10px;
  position: relative;
}
.main .service .service_banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.main .service .service_banner .service-info {
  position: absolute;
  left: 30px;
  top: 40px;
}
.main .service .service_banner .service-info .title {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
}
@media (max-width: 720px) {
  .main .service .service_banner .service-info .title {
    font-size: 16px;
  }
}
.main .service .service_banner .service-info .remark {
  font-size: 14px;
  color: #ffffff;
  margin-top: 5px;
}
.main .service .item {
  background: #ffffff;
  display: flex;
  padding: 15px 10px;
  margin-top: 20px;
  font-size: 18px;
  color: #1e2c52;
  font-weight: bold;
  align-items: center;
}
.main .service .item i {
  color: #005eff;
  margin-right: 8px;
}
.main .rights {
  margin-top: 30px;
  background: #ffffff;
  padding-bottom: 10px;
}
.main .rights .rights_title {
  padding-top: 30px;
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.main .rights .rights_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}
.main .rights .rights_table {
  margin-top: 20px;
  display: flex;
}
.main .rights .rights_table .bi-check-circle-fill {
  color: #11aa66;
  font-size: 20px;
}
.main .rights .rights_table .bi-x-circle-fill {
  color: #f5222d;
  font-size: 20px;
}
.main .rights .rights_table .table {
  margin-bottom: 1px;
}
.main .rights .rights_table .table th,
.main .rights .rights_table .table td {
  height: 50px;
  padding: 0;
  margin: 0;
  font-size: 16px;
  vertical-align: middle;
}
.main .rights .rights_table .table thead th {
  background: #f0f2f5;
  text-align: center;
}
.main .rights .rights_table .table thead th.bg0 {
  text-align: center;
  vertical-align: middle;
}
.main .rights .rights_table .table thead th.bg1 {
  background: #f5f8ff;
  text-align: center;
  vertical-align: middle;
}
.main .rights .rights_table .table thead th.bg2 {
  background: #fffbda;
  text-align: center;
  vertical-align: middle;
}
.main .rights .rights_table .table thead th.bg3 {
  background: #d2ddff;
  text-align: center;
  vertical-align: middle;
}
.main .rights .rights_table .table thead th.bg4 {
  background: #d7d1ff;
  text-align: center;
  vertical-align: middle;
}
.main .rights .rights_table .table td.center {
  text-align: center;
}
.main .rights .rights_table .table th.title {
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  color: #283f58;
}
.main .rights .rights_table .table td.remark {
  font-size: 16px;
  color: #283f58;
  padding-left: 20px;
}
.main .rights .rights_table .col1 {
  width: 140px;
  flex: 0 0 140px;
  transform: translateX(1px);
}
.main .rights .rights_table .col2 {
  flex-grow: 1;
}
@media (max-width: 800px) {
  .main .rights .rights_table .col1 {
    position: relative;
  }
  .main .rights .rights_table .col1 .table {
    position: absolute;
    box-shadow: 4px 0px 6px -2px rgba(0, 0, 0, 0.3);
  }
  .main .rights .rights_table .col2 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.main .demand {
  margin-top: 30px;
}
.main .demand .demand_title {
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.main .demand .demand_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}
.main .demand .demand_table {
  margin-top: 20px;
  display: flex;
}
.main .demand .demand_table .table {
  margin-bottom: 1px;
}
.main .demand .demand_table .table th,
.main .demand .demand_table .table td {
  height: 50px;
  padding: 0;
  margin: 0;
}
.main .demand .demand_table .table thead td,
.main .demand .demand_table .table thead th {
  background: #f0f2f5;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  color: #283f58;
}
.main .demand .demand_table .table .remark {
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  background: #ffffff;
  color: #283f58;
}
.main .demand .demand_table .table-main th {
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
}
.main .demand .demand_table .table-main th.bg0 {
  background: #f0f2f5;
}
.main .demand .demand_table .table-main th.bg1 {
  background: #f5f8ff;
}
.main .demand .demand_table .table-main th.bg2 {
  background: #fffbda;
}
.main .demand .demand_table .table-main th.bg3 {
  background: #d2ddff;
}
.main .demand .demand_table .table-main th.bg4 {
  background: #d7d1ff;
}
.main .demand .demand_table .col1 {
  width: 140px;
  flex: 0 0 140px;
  transform: translateX(1px);
}
.main .demand .demand_table .col2 {
  flex-grow: 1;
}
@media (max-width: 800px) {
  .main .demand .demand_table .col1 {
    position: relative;
  }
  .main .demand .demand_table .col1 .table {
    position: absolute;
    box-shadow: 4px 0px 6px -2px rgba(0, 0, 0, 0.3);
  }
  .main .demand .demand_table .col2 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.main .app_process {
  margin-top: 30px;
  background: #ffffff;
  padding-bottom: 30px;
}
.main .app_process .app_process_title {
  padding-top: 30px;
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.main .app_process .app_process_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}
.main .app_process .row {
  margin-top: 20px;
}
.main .app_process .row .col {
  margin-top: 15px;
  position: relative;
}
.main .app_process .row .col .box {
  border-radius: 5px;
  padding: 20px 20px;
  border: 1px #e7e9ec solid;
  width: 95%;
}
@media (max-width: 720px) {
  .main .app_process .row .col .box {
    padding: 15px 15px;
  }
}
.main .app_process .row .col .box .number {
  color: #2046dc;
  font-size: 60px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
@media (max-width: 720px) {
  .main .app_process .row .col .box .number {
    font-size: 40px;
  }
}
.main .app_process .row .col .box .number i {
  flex-grow: 1;
}
.main .app_process .row .col .box .number img {
  flex: 0 0 50px;
  width: 50px;
}
@media (max-width: 720px) {
  .main .app_process .row .col .box .number img {
    flex: 0 0 40px;
    width: 40px;
  }
}
.main .app_process .row .col .box .title {
  color: #1e2c52;
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
}
@media (max-width: 720px) {
  .main .app_process .row .col .box .title {
    margin-top: 10px;
    font-size: 18px;
  }
}
.main .app_process .row .col .line {
  position: absolute;
  top: 50%;
  right: -8px;
  font-size: 30px;
  color: #c3c6ca;
  display: block;
}
@media (max-width: 1000px) {
  .main .app_process .row .col .line2,
  .main .app_process .row .col .line4 {
    display: none;
  }
}

/*# sourceMappingURL=promotion.css.map */
