@charset "UTF-8";
.page-header {
  border-bottom: 1px solid rgb(218, 225, 234);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 21.72px;
  color: rgb(51, 51, 51);
}
.page-header > .main {
  padding: 0 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-header > .main .left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-header > .main .left .logo {
  margin-right: 15px;
}
.page-header > .main .left .logo img {
  height: 60px;
}
.page-header > .main .left .nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-header > .main .left .nav-list .nav-item {
  margin: 0 2vw;
  white-space: nowrap;
}
.page-header > .main .left .nav-list .nav-item.current {
  color: rgb(32, 97, 255);
}
.page-header > .main .right > .main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.page-header > .main .right > .main > * {
  margin-left: 35px;
}
.page-header > .main .right > .main .phone {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header > .main .right > .main .phone .icon {
  margin-right: 20px;
}
.page-header > .main .right > .main .phone > .main {
  font-size: 24px;
  font-weight: 400;
  background: linear-gradient(90deg, rgb(13, 164, 255) 0%, rgb(81, 115, 252) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-header > .main .right > .main .apply-button {
  white-space: nowrap;
  border-radius: 4px;
  background: linear-gradient(90deg, rgb(4, 171, 255) 0%, rgb(86, 112, 251) 100%);
  color: #fff;
  padding: 6px 20px;
}

.page-footer {
  width: 100%;
  background-color: #242e49;
  padding: 42px;
  box-sizing: border-box;
}
.page-footer .footer-main {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-footer .footer-main .project_item {
  color: #fff;
}
.page-footer .footer-main .project_item .project_title {
  height: 50px;
  overflow: hidden;
  line-height: 50px;
  border-bottom: 1px solid rgba(141, 146, 153, 0.4);
  font-size: 14px;
  color: var(--whiteColor);
  margin-bottom: 17px;
  color: #fff;
  font-weight: 600;
}
.page-footer .footer-main .project_item .intro_cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-footer .footer-main .project_item .project_item_intro {
  font-size: 14px;
  line-height: 36px;
  color: #fff;
  margin-right: 10px;
}
.page-footer .footer-main .cut_line {
  width: 100%;
  border-bottom: 1px solid rgba(141, 146, 153, 0.4);
  margin: 20px 0;
}
.page-footer .footer-main .copyright {
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #7a8299;
  padding: 0 2px;
  margin: 0 auto;
}

#page-index-header-carousel {
  position: relative;
}
#page-index-header-carousel #index-header-carousel .index-header-item {
  position: relative;
}
#page-index-header-carousel #index-header-carousel .index-header-item .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image: url("https://placehold.co/600x400");
}
#page-index-header-carousel #index-header-carousel .index-header-item .content {
  position: absolute;
  left: 10%;
  top: 20%;
}
#page-index-header-carousel #index-header-carousel .index-header-item .content .option {
  margin-top: 10%;
}
#page-index-header-carousel .nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: rgba(255, 255, 255, 0.5);
}
#page-index-header-carousel .nav .nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 20px 10px;
  cursor: pointer;
}
#page-index-header-carousel .nav .nav-item:hover {
  background: rgba(255, 255, 255, 0.6);
}
#page-index-header-carousel .nav .nav-item .left {
  margin-right: 18px;
}
#page-index-header-carousel .nav .nav-item .icon {
  width: 24px;
}
#page-index-header-carousel .nav .nav-item .title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 14.48px;
  color: rgb(61, 71, 89);
}
#page-index-header-carousel .nav .nav-item .desc {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 14.48px;
  color: rgb(115, 127, 148);
  margin-top: 4px;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.main-button {
  display: inline-block;
  padding: 6px 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  border-radius: 2px;
  background: rgb(32, 97, 255);
  color: #fff;
  border: unset;
}
.main-button:hover {
  color: #fff;
}
.main-button.colored {
  color: #fff;
  background: linear-gradient(90deg, rgb(4, 171, 255) 0%, rgb(86, 112, 251) 100%);
}
.main-button.colored:hover {
  background: linear-gradient(-90deg, rgb(4, 171, 255) 0%, rgb(86, 112, 251) 100%);
}
.main-button.primary {
  background: transparent;
  color: #232323;
  background-color: #dee8f5;
  box-shadow: inset 0 0 0 1px #a4b0c7;
  /* 内边框 */
}
.main-button.primary:hover {
  background-color: #fff;
}
.main-button.bordered {
  box-shadow: inset 0 0 0 1px rgb(32, 97, 255);
  /* 内边框 */
  color: rgb(32, 97, 255);
  background: unset;
}
.main-button.text {
  color: rgb(32, 97, 255);
  background: unset;
  padding-left: 0;
  position: relative;
}
.main-button.text::after {
  content: "";
  background-image: url("/static/index/images/right.png");
  width: 12px;
  height: 12px;
  display: inline-block;
  position: absolute;
  background-size: 100% 100%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.page-section-title {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 35px;
}
.page-section-title .main {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 34.75px;
  color: rgb(0, 0, 0);
}
.page-section-title .desc {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 14.48px;
  color: rgb(61, 71, 89);
  margin-top: 10px;
}

.tab-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-title .tab-title-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  margin: 0 20px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.tab-title .tab-title-item .icon {
  width: 21px;
  margin-right: 18px;
}
.tab-title .tab-title-item.current {
  border-color: rgb(32, 97, 255);
}

.index-fangan-container .tab-content {
  background-color: rgb(242, 246, 255);
  border: 1px solid rgb(231, 235, 242);
}
.index-fangan-container .tab-content .tab-content-main {
  border: 1px solid rgb(231, 235, 242);
  box-shadow: 2px 2px 4px rgba(176, 198, 255, 0.29);
  margin: 20px 0;
}
.index-fangan-container .tab-content .tab-content-main .tab-content-header {
  position: relative;
  padding: 24px 36px;
  background-size: cover;
  background-position: center;
}
.index-fangan-container .tab-content .tab-content-main .tab-content-header .title {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 34.75px;
  color: rgb(0, 0, 0);
}
.index-fangan-container .tab-content .tab-content-main .tab-content-header .desc {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 17.38px;
  color: rgb(61, 71, 89);
  margin-bottom: 20px;
  margin-top: 10px;
}
.index-fangan-container .tab-content .tab-content-main .tab-content-header .checklist {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.index-fangan-container .tab-content .tab-content-main .tab-content-header .checklist .checklist-item {
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 20.27px;
  color: rgb(32, 97, 255);
  margin-right: 40px;
}
.index-fangan-container .tab-content .tab-content-main .tab-content-header .checklist .checklist-item .icon {
  width: 18px;
  margin-right: 10px;
}
.index-fangan-container .tab-content .tab-content-main .tab-content-header .option {
  position: absolute;
  right: 36px;
  bottom: 24px;
}
.index-fangan-container .tab-content .tab-content-main .tab-content-body {
  padding: 50px 40px;
  border-top: 1px solid rgb(231, 235, 242);
  margin-bottom: -25px;
}

.product-list .product-item {
  border-radius: 4px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(255, 255, 255);
  box-shadow: 0px 2px 4px rgba(3, 45, 150, 0.09);
  display: block;
  padding: 25px 20px;
}
.product-list .product-item .title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 28.96px;
  color: rgb(0, 0, 0);
}
.product-list .product-item .title .icon {
  width: 20px;
  margin-right: 10px;
}
.product-list .product-item .title .badge {
  margin-left: 10px;
  border-radius: 2px;
  background: rgba(212, 48, 48, 0.15);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 17.38px;
  color: rgb(212, 48, 48);
  padding: 2px 3px;
}
.product-list .product-item .desc {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 20px;
  color: rgb(61, 71, 89);
  margin-top: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 40px;
}
.product-list .product-item .tag {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.product-list .product-item .tag .tag-item {
  border-radius: 2px;
  border: 1px solid rgb(197, 203, 214);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 17.38px;
  color: rgb(61, 71, 89);
  margin-right: 6px;
  padding: 3px 10px;
  white-space: nowrap;
  margin-bottom: 6px;
}
.product-list .product-item .option {
  margin-top: 20px;
}

.index-fangan-card .tab-content {
  margin-top: 50px;
}
.index-fangan-card .tab-content .tab-content-main {
  padding: 45px;
  background-image: url("/static/index/images/index-fangan-card-bg.png");
  background-size: cover;
  background-position: center;
  min-height: 440px;
}
.index-fangan-card .tab-content .tab-content-main .left .title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 26.06px;
  color: rgb(255, 255, 255);
}
.index-fangan-card .tab-content .tab-content-main .left .desc {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 14.48px;
  color: rgb(255, 255, 255);
  margin-top: 4px;
}
.index-fangan-card .tab-content .tab-content-main .left .list-fangan {
  border-left: 1px solid #fff;
  margin-top: 25px;
}
.index-fangan-card .tab-content .tab-content-main .left .list-fangan .list-fangan-item {
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 14.48px;
  color: rgb(255, 255, 255);
  border-left: 4px solid transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.index-fangan-card .tab-content .tab-content-main .left .list-fangan .list-fangan-item.current {
  background: linear-gradient(90deg, rgb(145, 164, 253) 0%, rgba(204, 204, 204, 0) 100%);
  border-left-color: #fff;
}
.index-fangan-card .tab-content .tab-content-main .right {
  background: #fff;
  border-radius: 4px;
  padding: 25px;
}
.index-fangan-card .tab-content .tab-content-main .right .main .title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 26.06px;
  color: rgb(0, 0, 0);
}
.index-fangan-card .tab-content .tab-content-main .right .main .desc {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 14.48px;
  color: rgb(151, 152, 162);
  margin-top: 20px;
}
.index-fangan-card .tab-content .tab-content-main .right .main .tag {
  margin-top: 18px;
}
.index-fangan-card .tab-content .tab-content-main .right .main .tag .tag-item {
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 9px 30px;
  display: inline-block;
  border-radius: 2px;
  background: rgba(32, 97, 255, 0.1);
}
.index-fangan-card .tab-content .tab-content-main .right .main .tag .tag-item::before {
  content: "";
  background-image: url("/static/index/images/pie-chart.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  margin-left: -4px;
}
.index-fangan-card .tab-content .tab-content-main .right .main .option {
  margin-top: 35px;
}
.index-fangan-card .tab-content .tab-content-main .right .cases {
  border-width: 0;
  border-style: solid;
  border-color: rgb(233, 240, 255);
  border-left-width: 1px;
  text-align: center;
}
.index-fangan-card .tab-content .tab-content-main .right .cases .header {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 14.48px;
  color: rgb(151, 152, 162);
}
.index-fangan-card .tab-content .tab-content-main .right .cases .body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.index-fangan-card .tab-content .tab-content-main .right .cases .body .cases-item {
  width: 65px;
  height: 65px;
  margin: 10px;
  background-color: rgb(242, 246, 255);
  padding: 6px;
}
.index-fangan-card .tab-content .tab-content-main .right .cases .body .cases-item .logo {
  width: 50px;
  margin: 0 auto;
  display: block;
  margin-top: 7.5px;
}

.list-pingjia {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.list-pingjia .pingjia-item {
  background-image: url("/static/index/images/pingjia-bg.png");
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  border: 1px solid rgb(255, 255, 255);
  padding: 20px 30px;
  width: 44%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.list-pingjia .pingjia-item .logo {
  width: 40px;
  height: 40px;
  opacity: 1;
  border-radius: 4px;
  background-position: center;
  background-size: cover;
}
.list-pingjia .pingjia-item .content {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 30px;
  color: rgb(51, 51, 51);
  margin-top: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-pingjia .pingjia-item .name {
  margin-top: 20px;
  text-align: right;
}

@media screen and (max-width: 767.98px) {
  .layui-container {
    padding: 0 20px;
  }
  .page-header > .main {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #fff;
  }
  .page-header > .main .left .nav-list {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 9999;
    background: #eee;
    display: block;
  }
  .page-header > .main .left .nav-list .nav-item {
    margin: 0;
    padding: 16px;
    display: block;
  }
  .page-header > .main .left .nav-list .nav-item .main {
    padding-left: 16px;
    border-left: 3px solid #bbb;
  }
  .page-header > .main .left .nav-list .nav-item.current {
    background-color: #fff;
  }
  .page-header > .main .left .nav-list .nav-item.current .main {
    color: rgb(32, 97, 255);
    border-color: rgb(32, 97, 255);
  }
  .page-header > .main .right > .main .icon {
    width: 20px;
    margin-right: 20px;
  }
  .index-fangan-container .tab-content .tab-content-main .tab-content-header .option {
    position: unset;
    margin-top: 12px;
  }
  .index-fangan-container .tab-content .tab-content-main .tab-content-body {
    padding: 15px;
  }
  .index-fangan-card .tab-content .tab-content-main {
    background-image: url("/static/index/images/mb-index-fangan-card-bg.png");
  }
  .index-fangan-card .tab-content .tab-content-main {
    padding: 16px;
  }
  .index-fangan-card .tab-content .tab-content-main .right .cases {
    border-left: 0;
    border-top-width: 1px;
    margin-top: 16px;
    padding-top: 16px;
  }
  .list-pingjia {
    overflow-x: auto;
  }
  .tab-title {
    overflow-x: auto;
    justify-content: unset;
  }
  .tab-title .tab-title-item {
    flex-shrink: 0;
  }
  .ul-post-block-list .block-item {
    width: 100% !important;
    margin: 10px 0 !important;
  }
  .page-section-title {
    margin-top: 30px;
    margin-bottom: 0;
  }
  .index-fangan-container .tab-content .tab-content-main .tab-content-header .checklist .checklist-item {
    margin-bottom: 6px;
  }
  .product-list .product-item .tag .tag-item {
    margin-bottom: 6px;
  }
  .project_item {
    width: 100%;
  }
}
.rich_text_content img {
  max-width: 100%;
}

.ul-post-block-list {
  margin: -8px;
}
.ul-post-block-list .block-item {
  width: 23.5%;
  margin: 0 10px;
}
.ul-post-block-list .ul-post-block-item {
  margin: 8px;
  align-self: normal;
}
.ul-post-block-list .ul-post-block-item:hover {
  background-color: #efefef;
}
.ul-post-block-list .ul-post-block-item .poster {
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
}
.ul-post-block-list .ul-post-block-item .title {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #333;
  margin: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ul-post-block-list .ul-post-block-item .desc {
  margin: 6px;
  font-size: 12px;
  line-height: 20px;
  min-height: 60px;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ul-post-block-list.fixed-height .ul-post-block-item .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.ul-post-block-list.fixed-height .ul-post-block-item .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.layui-tab-brief > .layui-tab-title .layui-this {
  color: #2061FF;
}

.layui-tab-brief > .layui-tab-more li.layui-this::after, .layui-tab-brief > .layui-tab-title .layui-this::after {
  border-color: #2061FF;
}