@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap");

* {
  box-sizing: border-box;
}

/*----------------------------------------------------
                 Procyon - CSS File
------------------------------------------------------*/
ul, li, p {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.about-tttt {
  font-size: 30px;
  font-weight: 700;
  position: relative;
  margin-bottom: 40px;
}

.about-tttt::after {
  content: "";
  width: 50px;
  height: 1px;
  background: red;
  position: absolute;
  left: 0;
  top: 60px;
}

.about-tttt > span {
  color: red;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  color: #36afb7;
}

body {
  font-size: 14px;
  min-width: 1200px;
  padding: 0px;
  margin: 0;
  background: #F2F2F2;
  font-family: "Noto Sans SC", sans-serif;
}

::-webkit-scrollbar {
  width: 6px;
  height: 5px;
  background: #fff;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #bbb;
  transition: 0.5s;
}

::-webkit-scrollbar-thumb:hover {
  background: #999;
}

::-webkit-scrollbar-button {
  background-color: #fff;
  display: none;
}

/*banner*/
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
}

.banner .swiper-slide img {
  width: 100%;
}

.banner .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 15px;
}

img {
  vertical-align: middle;
}

.banner .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #FFFFFF;
  border-radius: 5px;
}

.image {
  object-fit: cover;
}

nav.nav {
  display: flex;
  height: 120px;
  background: #1C242F;
  position: fixed;
  width: 100%;
  z-index: 9999;
  left: 0;
  top: 0;
}

nav.nav .logo, nav.nav .phone {
  width: 310px;
  height: 100%;
  background: #5172FF;
}

nav.nav .phone {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 500;
  color: #FFFFFF;
}

nav.nav .phone .icon-search {
  margin-left: 17px;
  width: 25px;
  height: 25px;
}

nav.nav .nav-menu {
  flex: 1;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

nav.nav .nav-menu .nav-item {
  height: 100%;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav.nav .nav-menu .nav-item.active {
  border-bottom: 3px solid #FDAA40;
}

nav.nav .nav-menu .nav-item .nav-link {
  font-size: 16px;
  color: #FFFFFF;
  text-decoration: none;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
}

.sp {
  width: 100%;
  height: 200px;
  background: #5172FF;
}

.sp .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.sp-item {
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.sp-item .sp-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  border: 3px solid #fff;
  overflow: hidden;
}

.sp-item .sp-desc {
  margin-top: 17px;
  color: #fff;
  text-align: center;
}

.product {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.product-title {
  margin-top: 77px;
  font-size: 38px;
  font-weight: bold;
  color: #585858;
  text-align: center;
}

.product .hr {
  width: 200px;
  margin-top: 22px;
}

.product-desc {
  margin-top: 17px;
}

.product .wrapper {
  display: flex;
  margin-top: 45px;
}

.product-left {
  width: 240px;
  min-height: 660px;
  background: #FFFFFF;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.13);
  margin-right: 18px;
  display: flex;
  flex-direction: column;
}

.product-left .menu-header {
  width: 240px;
  height: 100px;
  background: #5172FF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  position: relative;
}

.product-left .menu-header .title {
  font-size: 30px;
  font-weight: bold;
}

.product-left .menu-header .subtitle {
  font-size: 16px;
  display: flex;
  align-items: center;
}

.product-left .menu-header .subtitle::before, .product-left .menu-header .subtitle::after {
  content: "";
  width: 38px;
  height: 1px;
  background: #FFFFFF;
  margin: 2px;
}

.product-left .menu-header::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  content: "";
  border-top: 10px solid #5172FF;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 0;
}

.product-left .menu {
  margin-top: 15px;
  padding: 15px;
  flex: 1;
}

.product-left .menu a {
  color: #666666;
  transition: 0.3s;
}

.product-left .menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #DDDDDD;
  padding: 20px 10px;
  color: #666666;
  font-size: 17px;
  position: relative;
  transition: 0.3s;
}

.product-left .menu-item::after {
  transition: 0.3s;
  font-size: 24px;
  line-height: 24px;
  content: "+";
}

.product-left .menu-item::before {
  transition: 0.3s;
  content: "";
  display: block;
  height: 1px;
  width: 0px;
  background: #5172FF;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.product-left .menu-item + .sub-menu-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.product-left .menu-item + .sub-menu-wrapper .sub-menu {
  border: 1px solid #DDDDDD;
  color: #666666;
  font-size: 16px;
  border-top: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 27px;
  padding-top: 5px;
  margin-bottom: 7px;
}

.product-left .menu-item + .sub-menu-wrapper .sub-menu .sub-menu-item {
  width: 120px;
  height: 31px;
  line-height: 31px;
  text-align: center;
  border-bottom: 1px solid #DDDDDD;
}

.product-left .menu-item + .sub-menu-wrapper .sub-menu .sub-menu-item:hover a {
  color: #5172FF;
}

.product-left .menu-item + .sub-menu-wrapper:hover {
  max-height: 1000px;
  transition: max-height 1s ease-in-out;
}

.product-left .menu-item.active, .product-left .menu-item:hover {
  padding: 20px;
}

.product-left .menu-item.active + .sub-menu-wrapper, .product-left .menu-item:hover + .sub-menu-wrapper {
  max-height: 1000px;
  transition: max-height 1s ease-in-out;
}

.product-left .menu-item.active::before, .product-left .menu-item:hover::before {
  width: 50px;
}

.product-left .menu-item.active::after, .product-left .menu-item:hover::after {
  color: #5172FF;
  transform: rotate(-180deg);
}

.product-left .menu-footer {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  color: #292929;
  font-size: 18px;
  font-weight: 500;
  justify-content: space-between;
}

.product-left .menu-footer .product-phone {
  font-size: 26px;
  font-weight: bold;
  color: #E32513;
}

.product-left .menu-footer .button {
  width: 111px;
  height: 30px;
  background: #E32513;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product .product-list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}

.product .product-list .item-wrapper {
  padding: 0 15px 15px 0;
  width: 33.3%;
}

.product .product-list .item-wrapper .product-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 11px;
  border: 1px solid #DDDDDD;
  height: 370px;
  justify-content: space-between;
}

.product .product-list .item-wrapper .product-item .product-image {
  width: 282px;
  height: 282px;
}

.product .product-list .item-wrapper .product-item .title {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  color: #292929;
  font-weight: 500;
}

.product .product-list .item-wrapper .product-item:hover {
  border: 1px solid #5172FF;
}

.product .product-list .item-wrapper .product-item:hover .title {
  color: #5172FF;
}

.solution {
  margin-top: 70px;
  width: 100%;
  height: 877px;
  background: url(../images/solution-bg.jpg) center no-repeat;
  background-size: 1920px 877px;
}

.solution .wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.solution .wrapper .title {
  margin-top: 72px;
  font-size: 39px;
  font-weight: 500;
  color: #FFFFFF;
}

.solution .wrapper .desc {
  margin-top: 21px;
  font-size: 20px;
  color: #FFFFFF;
}

.solution .wrapper .line {
  width: 67px;
  height: 3px;
  background: #FF0000;
  margin-top: 15px;
}

.solution .wrapper .solution-list {
  margin-top: 19px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.solution .wrapper .solution-list .solution-item {
  width: 25%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.solution .wrapper .solution-list .solution-item .solution-desc {
  margin-top: 29px;
  font-size: 20px;
  font-weight: 500;
  color: #FFFEFE;
}

.case {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #fff;
}

.case-title {
  margin-top: 54px;
  font-size: 38px;
  font-weight: bold;
  color: #585858;
  text-align: center;
}
.anli-box-list{
  display: flex;
  justify-content:space-between;
  flex-wrap:wrap;
  width: 1200px;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 50px;
}
.anli-box-list>a{
  width: 270px;
  margin-top: 40px;
}
.anli-box-list>a>div:nth-child(1){
  background: #DBDBDB;
  height: 7px;
  width: 218px;
  margin: auto;
}
.anli-box-list>a>div:nth-child(2){
  border: 10px solid #C2C2C2;
  width: 270px;
  height: 260px;
  overflow: hidden;
  border-bottom: none;
}
.anli-box-list>a>div:nth-child(3){
  height: 60px;
  background: #C2C2C2;
  line-height: 60px;
  overflow: hidden;
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  color: #000000;
}
.anli-box-list>a img{
  width: 250px;
  height: 250px;
  object-fit: cover;
  transition: all 0.6s;
}
.anli-box-list>a:hover img{
  transform: scale(1.4);
}
.anli-box-list>a:hover>div:nth-child(1){
  background: #94A8FF;
}
.anli-box-list>a:hover>div:nth-child(2){
  border: 10px solid #7690FF;
  border-bottom: none;
}
.anli-box-list>a:hover>div:nth-child(3){
  background: #7690FF;
  color: #fff;
}
.anli-cakgd{
  display: block;
  width: 218px;
  height: 40px;
  background: #7690FF;
  line-height:40px;
  text-align: center;
  margin: auto;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 79px;
}
.case .hr {
  width: 200px;
  margin-top: 25px;
}

.case-desc {
  margin-top: 18px;
}

.case-content {
  margin-top: 63px;
  display: flex;
}

.case-content .case-desc {
  width: 572px;
  height: 276px;
  background: url("../images/case-bg.jpg");
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 41px;
}

.case-content .case-desc .case-desc-title {
  font-size: 34px;
  font-weight: 500;
  color: #FFFFFF;
}

.case-content .case-desc .case-button {
  display: flex;
  align-items: center;
  width: 167px;
  height: 51px;
  background: #5172FF;
  border-radius: 6px;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 51px;
}

.case-content .case-sub {
  display: flex;
  margin-left: 125px;
  padding-top: 50px;
  padding-bottom: 50px;
  flex: 1;
  flex-wrap: wrap;
}

.case-content .case-sub-item {
  flex: 0 0 25%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: #1A1A1A;
  font-weight: 500;
}

.case-content .case-sub-item .div {
  color: #5172FF;
  margin-right: 18px;
}

.case-content .case-sub-item.active {
  color: #5172FF;
}

.case-content .case-sub .ctrl {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.case-content .case-sub .prev {
  margin-right: 62px;
}

.case .case-list {
  margin-top: 25px;
  display: flex;
}

.case .case-list .case-item {
  width: 390px;
  margin-right: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  color: #292929;
  text-decoration: none;
}

.case .case-list .case-item .image {
  width: 390px;
  height: 256px;
}

.case .case-list .case-item .desc {
  text-align: center;
  margin-top: 20px;
}

.about {
  margin-top: 3px;
  background: #fff;
  background-size: cover;
  /*height: 760px;*/
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  position: relative;
  padding-bottom: 65px;
}

.about .more {
  color: #5172FF;
}

.about .wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-title {
  margin-top: 48px;
  font-size: 38px;
}

.about .hr {
  width: 200px;
  margin-top: 24px;
}

.about-desc {
  margin-top: 40px;
  font-size: 16px;
}

.about-content {
  font-size: 16px;
  font-weight: 400;
  color: #353535;
  line-height: 30px;

  text-align: center;
  margin-top: 30px;
  flex: 1;
}
.about-img-box{
  height: 569px;
  width: 100%;
  margin-top: 78px;
}
.about-c {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 181px;
}

.about-c .item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-c .item .top {
  display: flex;
  line-height: 1;
}

.about-c .item .top .num {
  font-size: 75px;
  font-weight: 500;
}

.about-c .item .top .left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  font-size: 29px;
  font-weight: bold;
  margin-left: 18px;
}

.about-c .item .top .left * {
  display: flex;
  align-items: center;
  flex: 1;
}

.about-c .item .bottom {
  margin-top: 15px;
  font-weight: 400;
  color: #8D8B8A;
  font-size: 20px;
}

.about-c .item:not(:last-of-type) {
  border-right: 1px solid #8C8987;
}

.about .icon-mouse {
  width: 20px;
  height: 34px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 40px;
}

.news {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #585858;
}

.news-title {
  margin-top: 70px;
  font-size: 38px;
  font-weight: bold;
  color: #585858;
  text-align: center;
}

.news .hr {
  width: 200px;
  margin-top: 25px;
}

.news-desc {
  margin-top: 18px;
  color: #585858;
}

.news .wrapper {
  margin-top: 87px;
  display: flex;
}

.news .wrapper .news-image {
  margin-top: 43px;
  width: 532px;
  height: 400px;
}

.news .wrapper .news-right {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.news .wrapper .news-right .news-subtitle {
  margin-left: 40px;
}

.news .wrapper .news-right .news-subtitle .more {
  margin-right: 60px;
}

.news .wrapper .news-right .news-list {
  margin-top: 13px;
  margin-left: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news .wrapper .news-right .news-list .news-item {
  transition: 0.3s;
  cursor: pointer;
  padding-left: 20px;
  flex: 1;
  border-top: 1px solid #E9E9E9;
  display: flex;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
  justify-content: space-between;
}

.news .wrapper .news-right .news-list .news-item:hover {
  color: #5172FF;
}

.news .wrapper .news-right .news-list .news-item:hover .go {
  filter: invert(51%) sepia(54%) saturate(6521%) hue-rotate(217deg) brightness(102%) contrast(99%);
}

.news .wrapper .news-right .news-list .news-item .left {
  width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.news .wrapper .news-right .news-list .news-item .title {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}

.news .wrapper .news-right .news-list .news-item .title::before {
  margin-right: 5px;
  content: "";
  display: flex;
  width: 4px;
  height: 4px;
  background: #4A4A4A;
  border-radius: 50%;
}

.news .wrapper .news-right .news-list .news-item .desc {
  font-weight: 500;
  margin-top: 20px;
  font-size: 14px;
}

.news .wrapper .news-right .news-list .news-item .go {
  transition: filter 0.3s;
}

.news-card {
  margin-top: 50px;
}

.news-card .wrapper {
  background: #FFFFFF;
  box-shadow: 0px 6px 16px 8px rgba(26, 26, 26, 0.08);
  display: flex;
}

.news-card .wrapper .left {
  width: 720px;
  height: 515px;
  border-right: 1px solid #C4C4C4;
  padding: 36px 32px 37px 41px;
  display: flex;
  flex-direction: column;
}

.news-card .wrapper .left .list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card .wrapper .left .list .item {
  height: 65px;
  display: flex;
  align-items: center;
}

.news-card .wrapper .left .list .item .circle {
  transition: 0.3s;
  display: flex;
  width: 11px;
  height: 11px;
  background: #C0C0C0;
  border-radius: 50%;
  margin-right: 20px;
}

.news-card .wrapper .left .list .item.active .circle, .news-card .wrapper .left .list .item:hover .circle {
  background: #5172FF;
}

.news-card .wrapper .left .list .item.active .title, .news-card .wrapper .left .list .item:hover .title {
  color: #5172FF;
}

.news-card .wrapper .left .list .item .title {
  transition: 0.3s;
  height: 100%;
  line-height: 65px;
  flex: 1;
  display: flex;
  justify-content: space-between;
  color: #1C1C1C;
  /*Horizontal*/
  background-image: linear-gradient(to right, #D6D6D6 20%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 10px 2px;
  background-repeat: repeat-x;
  font-size: 17px;
  font-weight: 500;
}

.news-card .wrapper .left .list .item .title .time {
  font-size: 14px;
  font-weight: 500;
  color: #BBBBBB;
}

.news-card .wrapper .right {
  padding: 36px 32px 37px 41px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card .wrapper .right .rimg {
  margin-top: 20px;
  width: 409px;
  height: 181px;
}

.news-card .wrapper .right .list {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex: 1;
}

.news-card .wrapper .right .list .item {
  position: relative;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
  font-size: 20px;
  font-weight: 500;
  color: #333333;
}

.news-card .wrapper .right .list .item:hover {
  color: #5172FF;
}

.news-card .wrapper .right .list .item:hover::before {
  filter: none;
  opacity: 1;
}

.news-card .wrapper .right .list .item::before {
  transition: 0.3s;
  content: "";
  position: absolute;
  filter: grayscale(100%);
  opacity: 0.8;
  background: url("../images/eye-active.png") no-repeat;
  width: 20px;
  height: 11px;
  background-size: cover;
  top: 10px;
  left: 6px;
}

.news-card .wrapper .right .list .item .desc {
  font-size: 15px;
  font-weight: 500;
  color: #5C5C5C;
  line-height: 25px;
}

.news-subtitle {
  width: 100%;
  color: #292929;
  height: 30px;
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
}

.news-subtitle-icon {
  margin-right: 10px;
  height: 26px;
  width: 26px;
}

.news-subtitle .more {
  font-size: 18px;
  color: #898989;
}

footer.footer {
  width: 100%;
  height: 608px;
  background: url("../images/footer-bg.jpg") center no-repeat;
  background-size: cover;
  margin-top: 50px;
}

footer.footer .wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

footer.footer .wrapper .footer-nav {
  margin-top: 76px;
}

footer.footer .wrapper .footer-nav .subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}

footer.footer .wrapper .footer-nav-menu {
  height: 62px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.46);
  display: flex;
  padding-top: 12px;
  justify-content: space-between;
}

footer.footer .wrapper .footer-nav-menu .menu-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  height: 20px;
}

footer.footer .wrapper .footer-nav-menu .menu-title::after {
  margin: 0 50px;
  content: "";
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #FFFFFF;
}

footer.footer .wrapper .footer-nav-menu .menu-link {
  text-decoration: none;
  color: #fff;
}

footer.footer .wrapper .bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  flex: 1;
}

footer.footer .wrapper .bottom .left {
  display: flex;
  justify-content: space-between;
  flex: 1;
  margin-right: 20px;
}

footer.footer .wrapper .bottom .left .l .s-nav {
  display: flex;
  font-size: 20px;
  color: #FFFFFF;
}

footer.footer .wrapper .bottom .left .l .s-nav .item {
  margin-right: 65px;
}

footer.footer .wrapper .bottom .left .l .desc {
  margin-top: 40px;
  font-size: 16px;
  color: #767779;
  line-height: 27px;
}

footer.footer .wrapper .bottom .left .r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #FFFFFF;
  margin-top: 30px;
  font-size: 16px;
}

footer.footer .wrapper .bottom .left .r .button {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 122px;
  height: 37px;
  background: #5172FF;
  border: 1px solid #7E96FF;
}

footer.footer .wrapper .bottom .right {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #FFFFFF;
  font-size: 16px;
}

footer.footer .wrapper .bottom .right .image {
  width: 136px;
  height: 136px;
  background: #1E1E1E;
}

footer.footer .wrapper .links {
  display: flex;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 500;
}

footer.footer .wrapper .links a, footer.footer .wrapper .links span {
  margin-right: 60px;
  color: #898989;
  text-decoration: none;
}

footer.footer .wrapper .bq {
  height: 90px;
  display: flex;
  align-items: center;
  color: #696969;
  font-weight: 500;
  font-size: 16px;
}

.location {
  display: flex;
  justify-content: space-between;
  padding-top: 27px;
  padding-bottom: 11px;
  /*虚线下边框*/
  background-image: linear-gradient(to right, #D6D6D6 20%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 10px 2px;
  background-repeat: repeat-x;
}

.location-title {
  font-size: 20px;
  color: #666;
  border-left: 4px solid #666;
  padding-left: 8px;
  line-height: 18px;
}

.location-location {
  display: flex;
  align-items: center;
  color: #666;
}

.location-location::before {
  content: "";
  background: url("../images/location.png");
  width: 12px;
  height: 18px;
  margin-right: 5px;
}

.location-location span {
  margin: 0 5px;
}

.product-page .product-left .menu-footer .product-phone {
  color: #5172FF;
}

.product-page .product-left .menu-footer .button {
  background: #5172FF;
}

/*.product-page .product-list .item-wrapper {*/
/*  width: 50%;*/
/*}*/

/*.product-page .product-list .item-wrapper .product-item {*/
/*  flex-direction: row;*/
/*  height: 224px;*/
/*}*/

/*.product-page .product-list .item-wrapper .product-item .product-image {*/
/*  width: 200px;*/
/*  height: 200px;*/
/*}*/

/*.product-page .product-list .item-wrapper .product-item .title {*/
/*  font-size: 18px;*/
/*}*/

/*.product-page .product-list .item-wrapper .product-item-desc {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  height: 100%;*/
/*  justify-content: space-between;*/
/*}*/

/*.product-page .product-list .item-wrapper .product-item-desc .detail {*/
/*  margin-right: 20px;*/
/*  align-self: flex-end;*/
/*  width: 90px;*/
/*  height: 30px;*/
/*  background: #5172FF;*/
/*  color: #fff;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/

.search-bar {
  width: 100%;
  height: 86px;
  background: #F2F2F2;
}

.search-bar .wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-bar .wrapper .search-form {
  display: flex;
}

.search-bar .wrapper .search-input {
  width: 255px;
  height: 37px;
  background: #FFFFFF;
  border: 1px solid #5172FF;
}

.search-bar .wrapper .search-button {
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5172FF;
  border: 1px solid #5172FF;
}

.content {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #585858;
}

.content-title {
  margin-top: 30px;
  font-size: 38px;
  font-weight: bold;
  color: #585858;
  text-align: center;
}

.content .hr {
  width: 200px;
  margin-top: 25px;
}

.content-subtitle {
  margin-top: 18px;
  color: #585858;
}

.content .wrapper {
  margin-top: 75px;
  display: flex;
}

.content .wrapper .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 105px;
}

.content .wrapper .left .desc {
  flex: 1;
}

.content .wrapper .left .more {
  background: url("../images/more.png");
  height: 36px;
  line-height: 36px;
  text-align: center;
  width: 147px;
  padding-right: 30px;
  font-size: 17px;
  color: #FFFFFF;
}

.content .wrapper .left .subnav {
  margin-top: 75px;
  display: flex;
}

.content .wrapper .left .subnav .about-sub {
  width: 140px;
  height: 140px;
  background: #FFFFFF;
  border: 1px solid #D5D5D5;
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  transition: 0.3s;
  color: #000;
}

.content .wrapper .left .subnav .about-sub.active, .content .wrapper .left .subnav .about-sub:hover {
  background: #5172FF;
  border: none;
  color: #fff;
}

.content .wrapper .left .subnav .about-sub.active .image, .content .wrapper .left .subnav .about-sub:hover .image {
  transition: 0.3s;
  filter: brightness(5);
}

.content .wrapper .content-image {
  height: 490px;
  width: 481px;
}

.content .wrapper .image-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.content .wrapper .image-list .item {
  margin-top: 20px;
  width: 288px;
  color: #000;
  transition: 0.3s;
}

.content .wrapper .image-list .item:hover {
  transform: scale(1.1);
}

.content .wrapper .image-list .item .image-container {
  padding: 10px;
  height: 222px;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
}

.content .wrapper .image-list .item .image-container .image {
  height: 100%;
  width: 100%;
}

.content .wrapper .image-list .item .title {
  background: #F0F0F0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

.s-wrapper {
  position: relative;
}

.s-wrapper-title {
  top: 43px;
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  position: absolute;
  letter-spacing: 5px;
}

.s-wrapper .swiper-slide {
  position: relative;
}

.s-wrapper .swiper-slide .image {
  width: 100%;
  height: 100%;
}

.s-wrapper .swiper-slide .ss-curtain {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(81, 114, 255, 0.8);
  opacity: 0;
  transition: 0.3s;
}

.s-wrapper .swiper-slide .ss-curtain .title {
  display: flex;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  font-size: 17px;
}

.s-wrapper .swiper-slide .ss-curtain .title::after {
  margin-top: 13px;
  content: "";
  width: 24px;
  height: 2px;
  background: #FFFFFF;
}

.s-wrapper .swiper-slide .ss-curtain:hover {
  opacity: 1;
}

.s-wrapper .s-wrapper-bottom {
  margin: 0 auto;
  height: 136px;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.s-wrapper .s-wrapper-bottom .swiper-pagination-prev {
  cursor: pointer;
  background: url("../images/s-prev.png") center no-repeat;
  height: 20px;
  width: 22px;
  background-size: cover;
}

.s-wrapper .s-wrapper-bottom .swiper-pagination-next {
  cursor: pointer;
  background: url("../images/s-next.png") center no-repeat;
  height: 20px;
  width: 22px;
  background-size: cover;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*# sourceMappingURL=style.css.map */
.floater {
  position: fixed;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  z-index: 10000;
}

.floater .floater-item {
  display: flex;
  height: 57px;
  background: #5172FF;
  border-radius: 4px 0px 0px 4px;
  width: 77px;
  overflow: hidden;
  margin-bottom: 1px;
  transition: .3s;
  color: #fff;
}

.floater .floater-item .icon {
  width: 23px;
  height: 20px;
  margin-bottom: 6px;
}

.floater .floater-item .left {
  flex-shrink: 0;
  color: #fff;
  width: 77px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.floater .floater-item:nth-of-type(3):hover{
  width: 261px;
}
.floater .floater-item .right {
  flex-shrink: 0;
  width: 184px;
  background: #83C326;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  color: #FFFFFF;
}

.jjfa-index-wi{
  background: url("../images/fabg.jpg")no-repeat center;
  height: 830px;
  margin-top: 70px;
}
.jjfa-index-wi>div{
  width: 1200px;
  margin: auto;
}
.jjfa-index-wi>div>.left{
  float: left;
  width: 565px;
  height: 565px;
  margin-left: 30px;
  margin-top: 105px;
}
.jjfa-index-wi>div>.left>img{
  width: 565px;
  height: 565px;
}
.jjfa-index-wi>div>.right{
  float: left;
  margin-left: 30px;
  width: 570px;
}
.jjfa-index-wi>div>.right>div:nth-child(1){
  font-size: 39px;
  font-weight: 500;
  color: #2A2A2A;
  line-height: 48px;
  margin-top: 120px;
}
.jjfa-index-wi>div>.right>div:nth-child(2){
  width: 67px;
  height: 3px;
  background: #FF0000;
  margin-top: 15px;
}
.jjfa-index-wi>div>.right>div:nth-child(3){
  font-size: 20px;
  font-weight: 400;
  color: #2A2A2A;
  line-height: 24px;
  margin-top: 18px;
}
.jjfa-index-wi>div>.right>div:nth-child(4){

}
.fa-nav-box{
  padding-top: 90px;
}
.fa-nav-box>a{
  float: left;
  width: 255px;
  height: 55px;
  background: #FFFFFF;
  border-radius: 4px;
  margin-top: 19px;
  line-height: 55px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.fa-nav-box>a:nth-child(2n){
  margin-left: 25px;
}
.fa-nav-box>a>img{
  margin-left: 21px;
  margin-top: -8px;
  vertical-align: middle;
}
.fa-nav-box>a>span{
  margin-left: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #5172FF;
}
.fa-nav-box>a:hover{
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}











