@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);
}

.product {
  margin-top: 40px;
}
.product .product_title {
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.product .product_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}
.product .product-type {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 630px) {
  .product .product-type {
    padding: 10px 5px;
  }
}
.product .product-type .menu {
  display: inline-flex;
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
}
.product .product-type .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 (min-width: 790px) and (max-width: 960px) {
  .product .product-type .menu a {
    padding: 15px 30px;
  }
}
@media (min-width: 630px) and (max-width: 790px) {
  .product .product-type .menu a {
    padding: 15px 10px;
  }
}
@media (max-width: 630px) {
  .product .product-type .menu a {
    padding: 15px 5px;
    margin: 0 1px;
    font-size: 16px;
  }
}
.product .product-type .menu a:hover {
  background: #ecf5ff;
  color: #283f58;
}
.product .product-type .menu a.active {
  background: #005eff;
  color: #ffffff;
}
.product .product-type .menu a.active :hover {
  background: #005eff;
  color: #ffffff;
}
.product .product-more {
  display: block;
  text-align: center;
  margin-top: 20px;
}
.product .product-more a {
  text-decoration: none;
  color: #2968ff;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
}
.product .product-more a i {
  margin-left: 2px;
}
.product .product-more a:hover {
  text-decoration: underline;
}
.product .row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .product .col:nth-last-child(2) {
    display: none;
  }
  .product .col:last-child {
    display: none;
  }
}
@media (min-width: 576px) {
  .product .col {
    width: 49%;
  }
}
@media (min-width: 992px) {
  .product .col {
    width: 32%;
  }
}
@media (min-width: 1200px) {
  .product .col:nth-last-child(2) {
    display: block;
  }
  .product .col:last-child {
    display: block;
  }
  .product .col {
    width: 24%;
  }
}
@media (max-width: 576px) {
  .product .row {
    padding: 0 10px;
  }
  .product .row .col {
    width: 100%;
  }
}
.product .col {
  padding: 0;
}
.product .col .box {
  margin-top: 30px;
  background: #f2f8fd;
  background-image: url(/styles/images/product-bg.png);
  border: 1px solid rgb(255, 255, 255);
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: right top; /* 靠右顶部 */
  background-size: 100% auto;
}
.product .col .box .sale {
  text-align: right;
  width: 100%;
  height: 34px;
  display: block;
}
.product .col .box .sale span {
  width: 110px;
  height: 34px;
  background-image: url(/styles/images/product-sale.png);
  background-repeat: no-repeat;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
  font-size: 14px;
  color: #ffffff;
}
.product .col .box .box-pd {
  padding: 0 10px;
}
.product .col .box .box-pd .title {
  margin-top: 10px;
  font-size: 20px;
  color: #283f58;
  font-weight: bold;
}
.product .col .box .box-pd .remark {
  color: #8b949f;
  font-size: 14px;
  margin-top: 10px;
}
.product .col .box .box-pd .line {
  height: 1px;
  border: 1px solid #e2e4e9;
  margin-top: 10px;
}
.product .col .box .box-pd .config {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.product .col .box .box-pd .config .tag {
  overflow-wrap: break-word;
  color: rgb(147, 155, 166);
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  width: 40%;
}
.product .col .box .box-pd .config .val {
  overflow-wrap: break-word;
  color: rgb(40, 63, 88);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  width: 60%;
  display: -webkit-box; /* 将对象作为弹性伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式为垂直 */
  -webkit-line-clamp: 1; /* 限制在一个块元素显示的文本的行数 */
  overflow: hidden; /* 超出部分隐藏 */
  text-overflow: ellipsis;
}
.product .col .box .box-pd .line1 {
  height: 1px;
  border-bottom: 1px solid #ffffff;
  margin-top: 10px;
}
.product .col .box .box-pd .product-alert {
  display: flex;
  align-items: center;
  margin: 20px 0;
  height: 31px;
}
.product .col .box .box-pd .product-alert span {
  display: inline-block;
  background: #f9f2ed;
  border-radius: 5px;
  padding: 5px 10px;
  color: rgb(233, 27, 27);
  font-size: 14px;
  margin: 0 6px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .product .col .box .box-pd .product-alert span {
    margin: 0 2px;
  }
}
@media (min-width: 576px) and (max-width: 700px) {
  .product .col .box .box-pd .product-alert span {
    margin: 0 2px;
    font-size: 13px;
  }
}
.product .col .box .box-pd .price {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .col .box .box-pd .price .number {
  color: rgb(233, 27, 27);
  font-size: 30px;
  font-weight: bold;
  text-align: left;
}
.product .col .box .box-pd .price .other {
  width: 100%;
  padding-left: 8px;
}
.product .col .box .box-pd .price .other .unit {
  color: rgb(147, 155, 166);
  font-size: 14px;
}
.product .col .box .box-pd .price .other .old_price {
  color: rgb(147, 155, 166);
  font-size: 14px;
  text-decoration: line-through;
  margin-top: 5px;
}
.product .col .box .box-pd .other_price {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.product .col .box .box-pd .other_price span {
  color: rgb(40, 63, 88);
  font-size: 16px;
  font-weight: bold;
  padding: 0 15px;
}
.product .col .box .box-pd .other_price span i {
  font-style: normal;
  color: rgb(147, 155, 166);
  font-size: 14px;
  font-weight: normal;
  padding-left: 5px;
}
.product .col .box .buy {
  margin-top: 20px;
}
.product .col .box .buy a {
  display: inline-block;
  background: linear-gradient(135deg, #0096ff, #005dff);
  height: 50px;
  line-height: 50px;
  text-align: center;
  width: 100%;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 2px;
}
.product .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;
}

.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%;
}
.banner .carousel-item {
  position: relative;
}
.banner .carousel-item .banner-content {
  position: absolute;
  color: #ffffff;
  top: 76px;
  left: 0;
  width: 100%;
}
.banner .carousel-item .banner-content .container {
  padding-right: 40px;
}
.banner .carousel-item .banner-content .container .banner-image {
  position: relative;
}
.banner .carousel-item .banner-content .container .banner-image .banner-icon {
  position: absolute;
  top: 0;
  right: -10px;
  width: auto;
  height: 300px;
}
.banner .carousel-item .banner-content .container .banner-image .banner-image-ral {
  position: absolute;
  width: 65%;
  top: 0;
}
.banner .carousel-item .banner-content .container .banner-image .banner-image-ral .banner-title {
  font-size: 44px;
  font-weight: bold;
  padding-right: 40px;
  margin-top: 10%;
}
.banner .carousel-item .banner-content .container .banner-image .banner-image-ral .banner-remark {
  font-size: 18px;
  margin-top: 10px;
  padding-right: 40px;
}
.banner .carousel-item .banner-content .container .banner-image .banner-image-ral .banner-button {
  margin-top: 60px;
}
.banner .carousel-item .banner-content .container .banner-image .banner-image-ral .banner-button .banner-href {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  border: #ffffff 1px solid;
  padding: 10px 50px;
  display: inline-flex;
  border-radius: 5px;
}
.banner .carousel-item .banner-content .container .banner-image .banner-image-ral .banner-button .banner-href:hover {
  color: #005dff;
  background: #ffffff;
  border: #ffffff 1px solid;
}
.banner .carousel-item img {
  object-fit: cover;
  height: 100%;
}

.feature {
  background: #ffffff;
  padding: 20px 0;
}
.feature .col {
  padding: 30px 20px;
}
.feature .col .title {
  font-size: 20px;
  font-weight: bold;
  color: #1e2c52;
  display: flex;
  align-items: center;
}
.feature .col .title .block {
  background-color: rgb(41, 104, 255);
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
}
.feature .col .remark {
  margin-top: 10px;
  font-size: 16px;
  color: #8b949f;
  line-height: 28px;
}
@media (min-width: 768px) {
  .feature .col {
    border-right: 1px solid #ebecef;
  }
}
@media (max-width: 768px) {
  .feature .col {
    border-bottom: 1px solid #ebecef;
  }
}
.feature .col:last-child {
  border-bottom: none;
  border-right: none;
}

.edge {
  background: #ffffff;
  margin-top: 40px;
  padding-bottom: 40px;
}
.edge .edge_title {
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.edge .edge_title {
  padding-top: 40px;
}
.edge .edge_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}
.edge .row {
  margin-top: 20px;
}
.edge .row .col {
  margin-top: 15px;
}
.edge .row .col .box {
  background: rgb(243, 245, 248);
  border-radius: 5px;
  padding: 10px 20px;
  height: 160px;
  background-repeat: no-repeat;
  background-position: right 40px bottom 30px;
  background-size: 50px;
}
.edge .row .col .box .title {
  color: rgb(30, 44, 82);
  font-size: 22px;
  font-weight: bold;
}
.edge .row .col .box .remark {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}
.edge .row .col .box .remark span {
  color: rgb(139, 148, 159);
  font-size: 16px;
  padding: 5px 0;
}
.edge .row .col .box .remark span i {
  color: #4d84fd;
}
.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;
}
.edge .row .col .edge1 {
  background-image: url(../images/edge1.png);
}
.edge .row .col .edge2 {
  background-image: url(../images/edge2.png);
}
.edge .row .col .edge3 {
  background-image: url(../images/edge3.png);
}
.edge .row .col .edge4 {
  background-image: url(../images/edge4.png);
}

.connect {
  margin-top: 40px;
}
.connect .connect_title {
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.connect .connect_title {
  padding-top: 40px;
}
.connect .connect_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}
.connect .row {
  margin-top: 20px;
}
.connect .row .col {
  margin-top: 15px;
}
.connect .row .col .box {
  background: linear-gradient(135deg, #f3f9fe, #fafcff);
  border-radius: 5px;
  padding: 10px 10px;
  height: 220px;
  border: 1px #ffffff solid;
  display: flex;
}
.connect .row .col .box .icon {
  flex: 0 90px;
  width: 90px;
  padding-top: 20px;
  text-align: center;
}
.connect .row .col .box .content {
  flex-grow: 1;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}
.connect .row .col .box .content .title {
  color: rgb(30, 44, 82);
  font-size: 22px;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
}
.connect .row .col .box .content .remark {
  margin-top: 10px;
  color: rgb(139, 148, 159);
  font-size: 16px;
  height: 70px;
  line-height: 25px;
}
.connect .row .col .box .content .href {
  flex-grow: 1;
}
.connect .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;
}

.network {
  background: #ffffff;
  margin-top: 40px;
  padding-bottom: 40px;
}
.network .network_title {
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.network .network_title {
  padding-top: 40px;
}
.network .network_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}
.network .partners-item-row {
  white-space: wrap;
  gap: 40px;
}
.network .partners-item-row .box {
  width: 350px;
  margin: 0;
}
.network .partners-item-row .box a {
  text-decoration: none;
}
.network .partners-item-row .box .img {
  height: 250px;
}
@media (max-width: 720px) {
  .network .partners-item-row .box .img {
    height: 200px;
  }
}
@media (min-width: 720px) and (max-width: 1140px) {
  .network .partners-item-row .box .img {
    height: 210px;
  }
}
.network .partners-item-row .box .img {
  width: 100%;
}
.network .partners-item-row .box .img img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}
.network .partners-item-row .box .img img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.network .partners-item-row .box .title {
  margin-top: 20px;
}
.network .partners-item-row .box .title a {
  color: rgb(30, 44, 82);
  font-size: 22px;
  font-weight: bold;
}
.network .partners-item-row .box .title a:hover {
  text-decoration: underline;
}
.network .partners-item-row .box .remark {
  margin-top: 5px;
}
.network .partners-item-row .box .remark a {
  color: rgb(139, 148, 159);
  font-size: 16px;
  display: -webkit-box; /* 将对象作为弹性伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式为垂直 */
  -webkit-line-clamp: 2; /* 限制在一个块元素显示的文本的行数 */
  overflow: hidden; /* 超出部分隐藏 */
  text-overflow: ellipsis;
}
.network .partners-item-row .box .remark a:hover {
  text-decoration: underline;
}

.help {
  margin-top: 40px;
}
.help .help_title {
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.help .help_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}
.help .row {
  margin-top: 20px;
}
.help .row .col {
  margin-top: 15px;
}
.help .row .col .box {
  background: #ffffff;
  border-radius: 5px;
  padding: 10px 20px;
  height: 160px;
  background-repeat: no-repeat;
  background-position: right 40px bottom 30px;
  background-size: 50px;
  display: flex;
}
.help .row .col .box a {
  text-decoration: none;
}
.help .row .col .box .content {
  flex-grow: 1;
  margin-top: 10px;
}
.help .row .col .box .content .title a {
  color: rgb(30, 44, 82);
  font-size: 20px;
  font-weight: bold;
  display: -webkit-box; /* 将对象作为弹性伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式为垂直 */
  -webkit-line-clamp: 1; /* 限制在一个块元素显示的文本的行数 */
  overflow: hidden; /* 超出部分隐藏 */
  text-overflow: ellipsis;
}
.help .row .col .box .content .title a .block1 {
  display: inline-block;
  background-image: url(../images/help1.png);
  background-repeat: no-repeat;
  height: 28px;
  padding-left: 10px;
  line-height: 28px;
  width: 56px;
  font-size: 14px;
  color: #005dff;
  font-weight: normal;
  margin-right: 10px;
}
.help .row .col .box .content .title a .block3 {
  display: inline-block;
  background-image: url(../images/help3.png);
  background-repeat: no-repeat;
  height: 28px;
  padding-left: 10px;
  line-height: 28px;
  width: 56px;
  font-size: 14px;
  color: #005dff;
  font-weight: normal;
  margin-right: 10px;
}
.help .row .col .box .content .title a .block2 {
  display: inline-block;
  background-image: url(../images/help2.png);
  background-repeat: no-repeat;
  height: 28px;
  padding-left: 10px;
  line-height: 28px;
  width: 56px;
  font-size: 14px;
  color: #ffa829;
  font-weight: normal;
  margin-right: 10px;
}
.help .row .col .box .content .remark a {
  margin-top: 10px;
  color: rgb(139, 148, 159);
  font-size: 16px;
  display: -webkit-box; /* 将对象作为弹性伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式为垂直 */
  -webkit-line-clamp: 2; /* 限制在一个块元素显示的文本的行数 */
  overflow: hidden; /* 超出部分隐藏 */
  text-overflow: ellipsis;
}
.help .row .col .box .content .href {
  margin-top: 20px;
}
.help .row .col .box .content .href a {
  text-decoration: none;
  display: inline-block;
  align-items: center;
  font-size: 16px;
}
.help .row .col .box .content .href a i {
  margin-left: 3px;
}
.help .row .col .box .content .href a:hover {
  text-decoration: underline;
}
.help .row .col .box .icon {
  flex: 0 0 200px;
  width: 200px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.help .row .col .box .icon .img {
  width: 90%;
  height: 120px;
  padding-top: 10px;
}
.help .row .col .box .icon .img img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}
.help .row .col .box .icon .img img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.help .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;
}

.news {
  background: #ffffff;
  margin-top: 40px;
  padding-bottom: 40px;
}
.news .news_title {
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.news .news_title {
  padding-top: 40px;
}
.news .news_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}
.news .row {
  margin-top: 20px;
}
.news .row .col {
  margin-top: 15px;
}
.news .row .col .box {
  background-color: rgb(243, 245, 248);
  border-radius: 6px;
  padding: 20px 20px;
}
.news .row .col .box .title {
  color: rgb(30, 44, 82);
  font-size: 20px;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
}
.news .row .col .box .list {
  margin-top: 10px;
}
.news .row .col .box .list UL {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.news .row .col .box .list UL LI {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.news .row .col .box .list UL LI span {
  display: block;
  width: 100%;
}
.news .row .col .box .list UL LI .list_title {
  flex-flow: 1;
}
.news .row .col .box .list UL LI .list_title a {
  text-decoration: none;
  color: #1e2c52;
  display: flex;
  display: -webkit-box; /* 将对象作为弹性伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 设置或检索伸缩盒对象的子元素的排列方式为垂直 */
  -webkit-line-clamp: 1; /* 限制在一个块元素显示的文本的行数 */
  overflow: hidden; /* 超出部分隐藏 */
  text-overflow: ellipsis;
  align-items: center;
}
.news .row .col .box .list UL LI .list_title a span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #005dff;
  border-radius: 50%;
  margin-right: 5px;
}
.news .row .col .box .list UL LI .list_title a:hover {
  color: #005dff;
}
.news .row .col .box .list UL LI .list_time {
  flex: 0 0 130px;
  width: 130px;
  text-align: center;
}
.news .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;
}

.partner {
  margin-top: 40px;
}
.partner .partner_title {
  font-size: 36px;
  color: #283f58;
  font-weight: bold;
}
.partner .partner_remark {
  font-size: 16px;
  color: #283f58;
  margin-top: 5px;
}

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