﻿@charset "utf-8";
.m-btn {
  display: none;
  position: absolute;
  cursor: pointer;
  right: 25px;
  top: 25px;
}
.m-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: #000;
  position: relative;
  -webkit-transition: all 200ms cubic-bezier(0.4, 0, 0, 1);
  -o-transition: all 200ms cubic-bezier(0.4, 0, 0, 1);
  transition: all 200ms cubic-bezier(0.4, 0, 0, 1);
}
.m-btn span::before,
.m-btn span::after {
  content: "";
  display: block;
  height: 2px;
  width: 25px;
  background: #000;
  position: absolute;
  left: 0;
  -webkit-transition: all 200ms cubic-bezier(0.4, 0, 0, 1);
  -o-transition: all 200ms cubic-bezier(0.4, 0, 0, 1);
  transition: all 200ms cubic-bezier(0.4, 0, 0, 1);
}
.m-btn span:before {
  top: -8px;
}
.m-btn span:after {
  bottom: -8px;
}
.m-btn.active span {
  background: transparent;
  margin-left: 10px;
}
.m-btn.active span:before {
  transform: rotate(-48deg) translate(-6px, 5px);
  -webkit-transform: rotate(-48deg) translate(-6px, 5px);
  -o-transform: rotate(-48deg) translate(-6px, 5px);
  width: 24px;
}
.m-btn.active span:after {
  transform: rotate(48deg) translate(-6px, -5px);
  -webkit-transform: rotate(48deg) translate(-6px, -5px);
  -o-transform: rotate(48deg) translate(-6px, -5px);
  width: 24px;
}
@media (max-width: 992px) {
  .m-btn {
    display: block;
  }  
}
/* 内页banner */
.ny-ban {
  position: relative;
  overflow: hidden;
  background: #0a125a;
}
.ny-ban img {
  width: 100%;
}
.ny-ban .ny-title {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 100%;
  transform: translate(-50%,-50%);
  color: #fff;
}
.ny-ban .ny-title h5 {
  font-size: 3.125rem;
  font-weight: 600;
}

@media (max-width: 1450px) {
  .ny-ban .ny-title h5 {
    font-size: 2.65rem;
  }
}

@media (max-width: 991px) {
  .ny-ban .ny-title h5 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .ny-ban .ny-title h5 {
    font-size: 1.5rem;
  }
}

/* 当前位置 */
.position {
  position: relative;
  overflow: hidden;
  line-height: 35px;
  padding: 1.5rem 0;
}
.position ul li {
  padding: 0px 2px;
}
.position ul{
  display: flex;
}

@media (max-width: 992px) {
  .position {
    line-height: 1;
    font-size: 1rem;
    padding: 10px 0;
    white-space: nowrap;
  }
}
/* 搜索 */
.search {
}
.search form {
  width: 100%;
  height: 100%;
  position: relative;
}
.search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  font-size: 1.0rem;
  border: 3px solid #434343;
  background:transparent;
  color: #7f8484;
  padding: 0px 20px;
  border-radius: 30px;
  text-transform: uppercase;
}
.search form input:-moz-placeholder {
  font-size: 14px;
}
.search form input:-ms-input-placeholder {
  font-size: 14px;
}
.search form input::-webkit-input-placeholder {
  font-size: 14px;
}
.search form button {
  background: transparent;
  position: absolute;
  right: 5px;
  top: -1px;
  border: none;
  width: 50px;
  color: #7f8484;
  height: 100%;
}
.search form button i {
  font-size: 18px;
}
/*主页面*/
.main {
  background: #f5f5f5;
}
.ny-comm {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}
.commB{
  padding-bottom: 4rem;
}
.commT{
  padding-top: 4rem;
}
.ny-comm .comm-left{
  width: 22%;
  float: left;
}
.ny-comm .comm-right{
  width: 75%;
  padding: 0px 0px 30px 40px;
  float: right;
}
@media (max-width: 1360px) {
  .ny-comm {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .commT{
    padding-top: 3rem;
  }
  .commB{
    padding-bottom: 3rem;
  }
}
.main .m-pro-nav {
  display: none;
}
.main .m-pro-nav .dropdown .btn {
  width: 100%;
  background: #ffe500;
  padding: 10px 0;
}
.main .m-pro-nav .dropdown .dropdown-menu {
  width: 100%;
  padding: 10px 20px;
  overflow: auto;
}
.main .m-pro-nav .dropdown .dropdown-menu li {
  padding: 8px 10px;
  border-bottom: 1px solid #ddd;
}
.main .ny-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.main .ny-title span {
  color: #005ca9;
}
.line{
  height: 5px;
  border-bottom: 1px solid #e4e4e4;
  margin: 4rem 0rem;
}
.line:after{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e4e4e4;
}

@media (max-width: 992px) {
  .ny-comm .comm-left{
    display: none;
  }
  .ny-comm .comm-right{
    width:100%;
    padding: 0px 0px;
  }
  .main .m-pro-nav {
    display: block;
    margin: 0px 0px 20px;
  }
  .main .m-pro-nav.mt20 {
    margin-top: 25px;
  }
  .ny-comm {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .commT{
    padding-top: 20px;
  }
  .commB{
    padding-bottom: 30px;
  }
  .main .ny-title {
    margin-bottom: 15px;
    font-size: 1.25rem;
  }
  .line{
    margin: 1rem 0rem;
  }
}

/*产品类别*/
.ny-comm .comm-left .cstlayer {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.0;
  overflow: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.ny-comm .comm-left .cstlayer span {
  display: block;
  font-size: 28px;
  color: #0487d4;
}
.comm-left .ny-nav {
  margin-bottom: 20px;
}
.comm-left .ny-nav ul.subnav{
    padding:0px 0px;
    display: none;
}
.comm-left .ny-nav li.active ul.subnav{
    display: block;
}
.comm-left .ny-nav li {
  width: 100%;
  display: block;
}
.comm-left .ny-nav li a {
  display: block;
  padding: 0.7rem 2.0rem;
  font-size: 1.125rem;
  position: relative;
  background: url(../img/Right.png) no-repeat right 25px center;
  background-color: #fff;
  border-radius: 2.5rem;
  margin-bottom: 0.35rem;
}
.comm-left .ny-nav li a span{
  font-weight: 600;
  margin-right: 5px;
}
.comm-left .ny-nav li.active a,
.comm-left .ny-nav li a:hover {
  background-color: #1356a3;
  color: #fff;
}
.comm-left .ny-nav ul.subnav li a {
  display: block;
  padding: 10px 10px 10px 12px;
  line-height: 1.2;
  font-size: 14px;
}

.comm-left .ny-nav ul.nonesub li a:hover,
.comm-left .comm-left .ny-nav ul.subnav li a:hover,
.comm-left .ny-nav ul.subnav li a.subactive {
  color: #fff;
  background: #0487d4;
}
/*内页关于我们*/
.ny-about {
  overflow: hidden;
}
.ny-about .about-txt,
.ny-about .about-list{
  width: 100%;
}
.ny-about .about-li{
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}
.ny-about .about-icon{
  margin-bottom: 1rem;
}
.ny-about .about-txt{
  margin-bottom: 4rem;
}
.ny-about .about-txt .about-txt-con{
  color:#6b6b6b;
  padding-top: 2rem;
}
.ny-about .about-txt .about-txt-con p{
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .ny-about .about-txt{
    padding-right: 15px;
    margin-bottom: 15px;
  }
  .ny-about .about-txt strong {
    font-size: 2.5rem;
  }
  .ny-about .about-txt .about-txt-con{
    padding-top: 1.0rem;
  }
}
@media (max-width: 768px) {
  .ny-about .about-txt strong {
    font-size: 1.5rem;
  }
}
/* 客户服务 */
table{
  position: relative;
  border-top: 1px solid #dedede;
  margin: 5px 0 15px;
}
table::before{
  content:'';
  width: 100%;
  position: absolute;
  height: 2px;
  background: #dedede;
  top: -4px;
}
table tr{
  border-bottom: 1px solid #dedede;
}
table th,table td{
  padding: 10px 5px;
  vertical-align: top;
  border: 0;
}
table .t7{
  font-size: 1.25rem;
  font-weight: 600;
}
table .table-l{
  white-space: nowrap;
  padding-right: 2rem;
}
@media (max-width:992px) {
  table .table-l{
    white-space: normal;
    width: 100%;
    display: block;
  }
  .ny-about table td{
    width: 100%;
    display: block;
  }
}
/* 诚邀加盟 */
.ny-join {
  background: #f5f5f5;
}
.ny-join h2 {
  font-weight: 600;
  font-size: 2.65rem;
}
.ny-join h2 strong{
  display: block;
  color: #1356a3;
}
.ny-join .join-txt p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1.5rem;
}
/* 加盟标语 */
.join-slogan{
  background:url(../img/join.jpg) no-repeat center center;
}
.join-slogan .slogan-box{
  background: rgba(19,86,163,0.8);
}
.join-slogan ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-left: 1px solid #ffffff57;
}
.join-slogan ul li{
  width: 25%;
  color: #fff;
  text-align: center;
  padding: 7rem 2.0rem;
  border-right: 1px solid #ffffff57;
}
.join-slogan ul li h3{
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
}
.join-slogan ul li .biaoyu-icon .iconfont{
  color: #ffe500;
  font-size: 4.25rem;
}
/* 加盟电话 */
.ny-join .join-us{
  font-size: 2.25rem;
  color: #005ca9;
  position: relative;
  text-align: center;
  line-height: 120px;
  z-index: 2;
  padding: 3rem 0;
}
.ny-join .join-us::after{
  content: "Join Hotline";
  font-size: 7.0rem;
  color: #fff;
  position: absolute;
  font-weight: 800;
  white-space: nowrap;
  text-transform: uppercase;
  transform: translateX(-50%);
  left: 50%;text-align: center;
  z-index: -1;
}
@media (max-width:992px) {
  .ny-join .common{
    padding-bottom: 5rem;
  }
  .ny-join p{
    margin: 0;
  }
  .ny-join h2 {
    font-size: 1.65rem;
    margin-bottom: 1.0rem;
  }
  .join-slogan ul{
    border-left: 0px solid #ffffff57;
    padding: 2rem 0rem;
  }
  .join-slogan ul li{
    width: 100%;
    padding: 2rem 0.5rem;
    margin: 0.5rem 0;
    border-right: 0px solid #ffffff57;
    border-bottom: 1px solid #ffffff57;
    display: flex;
    text-align: left;
  }
  .join-slogan ul li .biaoyu-icon{
    width: 20%;
  }
 .join-slogan ul li .biaoyu-con{
    width: 80%;
  }
  .join-slogan ul li .biaoyu-icon .iconfont{
    font-size: 2.5rem;
    line-height: 1.0;
  }
  .join-slogan ul li h3{
    font-size: 1.25rem;
    margin-top: 0rem;
  }
  .ny-join .join-us{
    font-size: 1.5rem;
    line-height: 60px;
    padding: 1.5rem 0;
  }
  .ny-join .join-us::after{
    font-size: 3.0rem;
  }
}
/* 创始人 */
.ny-leader{
  background: url(../img/leader.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
}
.ny-leader .leader-txt {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.ny-leader .leader-con h5{
  font-size: 1.5rem;
  margin-bottom: 3rem;
}
.ny-leader .leader-con h5 strong{
  color: #005ca9;
  font-size: 3.75rem;
  font-weight: 500;
}
.ny-leader .leader-con ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2rem;
}
.ny-leader ul li{
  border-left: 2px solid #c4c4c4;
  width: 33.333%;
  padding: 0px 10px 0px 10px;
  position: relative;
}
.ny-leader ul li:before{
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 30px;
  background-color: #005ca9;
}
.ny-leader ul li strong{
  color: #005ca9;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}
@media (max-width: 1280px) {
  .ny-leader .leader-con h5{
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .ny-leader .leader-con h5 strong{
    font-size: 2.5rem;
  }
}
@media (max-width: 991px) {
  .ny-leader .leader-img{
    margin-bottom: 15px;
  }
  .ny-leader .leader-con h5{
    font-size: 1.125rem;
  }
  .ny-leader .leader-con h5 strong{
    font-size: 2.0rem;
  }
  .ny-leader ul li{
    width: 100%;
    margin: 10px 0px;
  }
}
/* 发展历程 */
.g-lc {
  background: url(../img/history.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
}
.g-lc .g-lc-con {
  margin-top: 5rem;
  position: relative;
}
.g-lc .g-lc-con .glc-cz {
  position: absolute;
  width: 100%;
  left: 0;
  top: 48.5%;
}
.g-lc .g-lc-con .lc-swiper {
  position: relative;
  width: 92%;
  margin: 0 auto;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper{
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide {
    padding-left: 1rem;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con {
  display: flex;
  flex-direction: column-reverse;
  padding-left: 1rem;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp h4 {
  font-size: 6.25rem;
  line-height: 0.8;
  font-weight: 600;
  color: #005ca9;
  transition: all 0.3s;
  position: relative;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp div strong{
  font-size: 2.5rem;
  line-height: 1.0;
  color: #005ca9;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 1px;
  height: calc(100% - 240px);
  background-color: #b6b6b8;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-bt {
  height: 290px;
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide:nth-child(2n) .glc-con .glc-tp::before {
    bottom: auto;
    top: 0;
    height: calc(100% - 202px);
}
.g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide:nth-child(2n) .glc-con {
  flex-direction: column;
}
@media (max-width: 1280px) {
  .g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp h4 {
    font-size: 4.0rem;
  }
  .g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp div strong {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  .g-lc .g-lc-con{
    margin-bottom: 5rem;
  }
  .g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp h4 {
    font-size: 3.0rem;
  }
  .g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-tp div strong {
    font-size: 1.35rem;
  }
  .g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide .glc-con .glc-bt {
    height: auto;
  }
  .g-lc .g-lc-con .lc-swiper .swiper-wrapper .swiper-slide:nth-child(2n) .glc-con {
    flex-direction: row;
  }
}


/* 荣誉证书 */
.honor-list {
  border: 1px solid #ededed;
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.6rem;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.honor-list .honor-img {
  overflow: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.honor-list .honor-img img {
  max-height: 100%;
}
.honor-list .honor-con {
  padding: 15px 0px 0;
  transition: all 0.6s;
  min-height: 60px;
}
.honor-list h5 {
  text-align: center;
  font-size: 1.0rem;
  font-weight: 200;
  transition: all 0.6s;
}

/* 解决方案 */
.solution-list {
  position: relative;
  transition: all 0.6s;
  margin-top: 20px;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #fff;
  transition: transform 1s cubic-bezier(.38,0,0,1), box-shadow .5s cubic-bezier(.38,0,0,1), opacity .8s cubic-bezier(.38,0,0,1);
}
.solution-list .solution-img {
  overflow: hidden;
  margin-top: -5.0rem;
}
.solution-list .solution-img img {
  width: 100%;
  transition: all 0.6s;
}
.solution-list .solution-con{
  padding: 3rem 2rem;
}
.solution-list h5 {
  font-size: 1.5rem;
  background: url(../img/yuan.png) no-repeat left bottom;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all .7s;
}
.solution-list h5 i {
  font-size: 2.85rem;
  color: #d0d0d0;
  transition: all .7s;
}
.solution-list .solution-title {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  transition: all .7s;
}
.solution-list .solution-desc {
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.solution-list .solution-more{
  position: relative;
  z-index: 9;
  width: 100%;
  text-align: center;
  transition: transform .7s cubic-bezier(.38,0,0,1), opacity .5s cubic-bezier(.38,0,0,1);
}
.solution-list:hover {
  transform: translateY(-15px);
  box-shadow: 0 .6rem 1.4rem rgba(0, 0, 0, .5);
  background-color: #fff;
}
.solution-list:hover h5,.solution-list:hover h5 i,.solution-list:hover .solution-title{
  color: #1356a3;
  font-weight: 600;
}
.solution-list:hover .solution-img img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.solution-list:hover .solution-more {
  opacity: 1;
}
.solution1{
  color: #fff;
}
.solution1 .solution-p{
  width: 60%;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.solution1 .solution-ul{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 3rem 0 4rem;
}
.solution1 .solution-ul li{
  width: 25%;
  padding: 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .3);
}
.solution1 .solution-ul li:last-child{
  border-right: 0;
}
.solution1 .solution-ul li strong{
  font-size: 1.75rem;
}
.ny-solution .solution-list{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 4rem 0;
}
.ny-solution .solution-list:hover{
  transform: translateY(-5px);
}
.ny-solution .solution-list:nth-child(2n){
  flex-direction: row-reverse;
}
.ny-solution .solution-list .solution-con{
  padding: 1rem 4rem 1rem 3rem;
}
.ny-solution .solution-list .solution-img,
.ny-solution .solution-list .solution-con{
  width: 50%;
  margin: 0;
}
.ny-solution .solution-list:hover .solution-img img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
}
.ny-solution .solution-list .solution-title {
  font-size: 1.75rem;
}
.ny-solution .solution-list .solution-desc {
  text-align: justify;
  text-align-last: left;
  -webkit-line-clamp: 10;
}
@media (max-width: 1360px) {
  .solution-list h5{
    font-size: 1.35rem;
  }
}
@media (max-width: 992px) {
  .solution-list .solution-con {
    padding: 1.5rem 1rem;
  }
  .solution-list h5 span{
    font-size: 1.0rem;
  }
  .solution-list .solution-img{
    margin-top: -6.0rem;
  }
  .solution1 .solution-p{
    width: 100%;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .solution1 .solution-ul{
    padding: 1rem 0 2rem;
  }
  .solution1 .solution-ul li{
    width: 100%;
    padding: 1rem;
    border-right: 0;
  }
  .solution1 .solution-ul li strong {
    font-size: 1.5rem;
  }
  .ny-solution .solution-list {
    margin-top: 20px ;
  }
  .ny-solution .solution-list .solution-con {
    padding: 2rem;
  }
  .ny-solution .solution-list .solution-title {
    font-size: 1.25rem;
  }
  .ny-solution .solution-list .solution-img,
  .ny-solution .solution-list .solution-con{
    width: 100%;
  }
}
/*企业文化*/
.culture-list{
  border-top: 1px solid #dedede;
}
.culture-list li{
  width: 100%;
  font-size: 1.125rem;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid #dedede;
}
.culture-list li strong{
  font-weight: 600;
  display: block;
}
.culture-list li .iconfont {
 font-size: 2.0rem;
 color: #1356a3;
}
@media (max-width:991px){
}
/*内页案例*/
.ny-case .case-list{
  background-color: #fff;
  margin-top: 0px;
  margin-bottom: 30px;
}
.case-list {
  margin-top: 30px;
  background-color: #f5f5f5;
  padding: 0px 0px 0px;
  border-radius: 0.5rem;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  overflow: hidden;
}
.case-list .case-img {
  text-align: center;
  overflow: hidden;
}
.case-list .case-img img {
  max-height: 250px;
}
.case-list .case-content {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.0rem 1.5rem;
}
.case-list .case-content h5 {
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1.125rem;
}
.case-list:hover {
  transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  background-color: #ffe500;
}

@media (max-width: 991px) {
  .case-list{
    margin-top: 15px;
  }
  .case-list .case-content{
    padding:1.0rem 0.5rem;
  }
  .case-list .case-content h5{
    font-size: 1.0rem;
  }
  .case-list .case-img img{
    height: 110px;
  }
}
/*案例详情*/
.ny-info-tit{
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 2px solid #969696;
  position: relative;
}
.ny-info-tit::after {
  position: absolute;
  content: '';
  top: calc(100% + 4px);
  left: 0;
  height: 1px;
  width: 100%;
  background: #969696;
}
.ny-info-tit h5{
  font-size: 2.0rem;
  line-height: 1;
  margin-bottom: 15px;
}
.ny-info-tit p{
  font-size: 0.9rem;
  line-height: 1;
}
.ny-info-tit p span{
  margin-right: 10px;
}
.news-info img{
  margin: 10px 0;
}
@media (max-width:992px) {
  .ny-case .case-info h5{
    font-size: 1.2rem;
  }
  .ny-info-tit p span{
    font-size: 14px;
  }
}
/*产品列表*/
.product-list {
  position: relative;
  transition: all 0.6s;
  margin-top: 20px;  
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #fff;
  transition: transform 1s cubic-bezier(.38,0,0,1), box-shadow .5s cubic-bezier(.38,0,0,1), opacity .8s cubic-bezier(.38,0,0,1);
}
.ny-product .product-list{
  margin-top: 0px;
  margin-bottom: 30px;
}
.relat-swiper .product-list{
  border-right: 1px solid #ddd;
}
.product-list .product-img {
  overflow: hidden;
  padding: 0.5rem 5rem;
}
.product-list .product-img img {
  width: 100%;
  transition: all 0.6s;
}
.product-list .pro-tit {
  font-size: 1.25rem;
  padding: 1.5rem 0.5rem 1.5rem 0.5rem;
  background-color: #114d92;
  color: #fff;
}
.product-list h5 {
  font-size: 1.25rem; 
  color: #fff;
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-list h5 span {
  font-size: 1.0rem;
  display: block;
  font-weight: 600;
}
.product-list .sortname{
  font-size: 0.875rem;
}
.product-list .product-more{
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  transition: transform .7s cubic-bezier(.38,0,0,1), opacity .5s cubic-bezier(.38,0,0,1);
}
.product-list .product-more .btn{
  display: block;
  padding: 15px 30px;
}
@media (max-width: 1440px) {
  .product-list .product-more .btn{
    padding: 15px 20px;
  }
}
.product-list .product-more a{
  flex: 1;
  margin-right: 10px;
}
.product-list:hover {
  transform: translateY(-15px);
  box-shadow: 0 .5rem 0.7rem rgba(0, 0, 0, .5);
  background-color: #fff;
}
.product-list:hover .product-img img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.product .product-list:hover .product-more {
  opacity: 1;
}
@media (max-width: 1360px) {
  .product-list h5{
    font-size: 1.25rem;
  }
}
@media (max-width: 992px) {
  .ny-product .product-list{
    margin-bottom: 15px;
  }
  .product .nav-box ul li a{
    font-family: 1.0rem;
  }
  .product-list .pro-tit{
    padding: 1.0rem 0.5rem;
  }
  .product-list h5 {
    font-size: 1.125rem;
  }
  .product-list h5 span{
    font-size: 1.0rem;
  }
  .product-list .product-more .btn{
    padding: 10px 15px;
  }
  .product-list .product-img {
    padding: 0.5rem 1rem;
  }
}
.product_submit input{
  width: 100%;
  border: none;
  background: transparent;
  text-align: center;
  color: #fff;
}
/*产品展示详情 */
.product-info {
  margin-bottom: 2rem;
}
.product-info .product-con .foot-er{
  justify-content: center;
  margin-top: 3rem;
}
.product-info .adv-img{
  background-color: #fff;
  text-align: center;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 1rem 1rem;
}
.product-info .adv-img img{  
 max-height:450px;
}
.product-con h5 {
  font-size: 1.65rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.product-con span {
  display: block;
  font-weight: 600;
  color: #1356a3;
  font-size: 1.125rem;
}
.product-con .overview {
  overflow: hidden;
  margin-bottom: 2rem;
}
.product-con .overview p{
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.product-con .online {
  transition: all 0.6s;
  display: flex;
  justify-content: space-between;
}
.product-con .zixun, .product-con .wechat,.sol-right .zixun, .sol-right .wechat,
.after-tel .zixun, .after-tel .wechat{
  transition: all 0.3s ease-in-out;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 40px;
  font-size: 1.125rem;
  padding: 0.8rem 1.35rem;
  width: 48%;  
  background-color: #ffe500;
  display: inline-block;
  position: relative;
}
.product-con .wechat img{
  margin-right: 10px;
  filter: brightness(0) invert(1);
}
.product-con .wechat{
  color: #fff;
  background-color: #1356a3;
}
.product-con .zixun:hover{ 
  color:#2b2b2b;
}
.product-con .wechat .er-box,.product-list .wechat .er-box ,.sol-right .wechat .er-box,
.after-tel .wechat .er-box{
  position: absolute;
  top: 100%;
  left: 0;
  width: 10px;
  height: 10px;
  opacity: 0.0;
  transition: all 0.3s;
}
.product-con .wechat .er-box, .product-list .wechat .er-box{
  top: 95%;
}
.product-con .wechat:hover .er-box,.product-list .wechat:hover .er-box, .sol-right .wechat:hover .er-box,
.after-tel .wechat:hover .er-box{
  opacity: 1.0;
  background: #fff;
  padding: 5px;
  width: 50%;
  height: auto;
  z-index: 100;
  margin-top: 5px;
  border: 1px solid #ededed;
  left: 25%;
}
.product-con .wechat:hover .er-box img,.product-list .wechat:hover .er-box img, .sol-right .wechat:hover .er-box img,
.after-tel .wechat:hover .er-box img{
  width: 100%;
}
.modal-body{
  padding: 30px 50px;
}
.modal-dialog {
  max-width: 800px;
  margin: 30px auto;
}
@media (max-width: 1399px) {
  .product-con .overview {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 1360px) {
  .product-con .overview {
    margin-bottom: 1.5rem;
  }
  .product-con .overview table tr th {
    font-size: 1.0rem;
  }
  .product-con .overview table tr td {
    font-size: 1.0rem;
  }
  .product-con h5{
    font-size: 2rem;
  }
}

@media (max-width:992px) {
  .product-con .zixun, .product-con .wechat, .sol-right .zixun, .sol-right .wechat {
    padding: 6px 5px;
  }
  .product-con .wechat .er-box, .product-list .wechat .er-box{
    top: 90%;
  }
  .product-con span{
    font-size: 1rem;
  }
  .product-con h5{
    font-size: 1.25rem;
  }
}
@media (max-width:768px) {
  .modal-body{
    padding: 10px 20px;
  }
  .modal-dialog {
    max-width: 400px;
    margin: 0px auto;
  }
}

@media (max-width: 992px) {
  .product-info {
    padding-bottom: 20px;
    padding-top: 25px;
  }
  .product-info .adv-img {
    margin-bottom: 10px;
  }
  .product-con {
    padding-top: 0px;
  }
  .product-con h5 {
    font-size: 1.5rem;
  }

}

/*产品功能*/
.product-info-content {
  padding: 40px 0;
  border-top: 2px solid #969696;
  position: relative;
}
.product-info-content::before {
  position: absolute;
  content: '';
  top: 4px;
  height: 1px;
  width: 100%;
  background: #969696;
}
.product-info-content .info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.product-info-content .info-title span {
  color: #1356a3;
}
.product-info-content table{
  border-top: 1px solid #dedede;
}
.product-info-content table tr th,.product-info-content td {
  padding: 1.0rem 2rem;
  border-bottom: 1px solid #dedede;
}
.product-info-content table tr th {
  white-space: nowrap;
  font-weight: 600;
  vertical-align: top;
  padding: 1.0rem 0;
}

@media (max-width: 992px) {
  .pro-wechat {
    position: relative;
    width: 100%;
  }
  .pro-wechat .tel a,
  .pro-wechat .online a {
    padding: 7px 15px;
    font-size: 16px;
  }
  .pro-wechat .tel a i,
  .pro-wechat .online a i {
    font-size: 22px;
  }
}
/*上一页下一页*/
.pre-next {
  margin-top: 30px;
}
.pre-next p {
  line-height: 35px;
  background: url(../img/qian.png) no-repeat left 15px center;
  background-size: 35px;
  padding-left: 60px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.pre-next p:last-child {
  background: url(../img/hou.png) no-repeat right 15px center;
  background-size: 35px;
  padding-left: 0;
  padding-right: 60px;
  text-align: right;
}
.pre-next span {
  font-weight: bold;
}
.box{
  position: relative;
}
.box .swiper-container {
  overflow: initial;
}
/*相关产品*/
.related_product{
  overflow: hidden;
  padding: 40px 0;
  border-top: 2px solid #969696;
  position: relative;
}
.related_product::before{
  position: absolute;
  content: '';
  top: 4px;
  height: 1px;
  width: 100%;
  background: #969696;
}
.related_product .product-list:hover {
  transform: translateY(0px);
}
.related_product .ny-title{
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.related_product .ny-title span{
  color: #1356a3;
}
.btn{
  margin-bottom: 10px;
  font-size: 1.0rem;
}
.related_product1 .btn{
  border-radius: 0.5rem;
}
@media (max-width:992px) {
  .related_product{
    padding: 30px 0;
  }
  .related_product .ny-title{
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .pre-next p {
    background: url(../img/qian.png) no-repeat left 5px center;
    background-size: 35px;
    padding-left: 45px;
  }
  .pre-next p:last-child {
    background: url(../img/hou.png) no-repeat left 5px center;
    background-size: 35px;
    padding-left: 45px;
    padding-right: 0px;
    text-align: left;
  }
}
/*相关案例*/
.case .ny-case-btn{
  width: 33.33333333%;
}
.case .ny-case-btn .swiper-button-prev, .case .ny-case-btn .swiper-button-next{
  padding: 0px 1.4rem;
  width: 45px;
}
.case .ny-case-btn .swiper-button-next{
  left: 4.5rem;
}
.case .case-more{
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  border-radius: 35px;
  padding: 0.5rem 2rem;
  background: #005ca9;
  transition: all 0.6s;
  float: right;
  margin-top: 7.5rem;
}
@media (max-width: 991px) {
  .case .ny-case-btn .swiper-button-next{
    left: 60%;
  }
}
@media (max-width: 768px) {
  .case .ny-case-btn .swiper-button-next{
    left: 40%;
  }
}

/* 新闻详情页 */
.ny-news .ny-news-info {
  padding: 20px 0px;
}
.ny-news .ny-news-info .news-info-title p {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}
.news-info-title span{
  font-size: 1rem;
  display: block;
  text-align: center;
  font-weight: normal;
  padding: 0.35rem 0.5rem;
  background-color: #fff;
  margin: 20px 0;
}
.news-info-content img {
  max-width: 100%;
  width: auto;
  margin: 10px 0px;
  background-color: #fff;
}
@media (max-width:992px) {

}
/* 联系我们 */
.contact .f-contact{
  border-right: none;
}
.contact .contact-tit{
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.4;
}
.contact .contact-tit span{
  font-size: 1.5rem;
  display: block;
}
.contact .contact-tit span b{
  color: #1356a3;
}
.contact .foot-contact ul li a{
  color: #2b2b2b;
}
.contact .foot-contact li.email a {
    border-bottom: 1px solid #525252;
}
.contact .foot-er .er-box{
  border: 1px solid #e4e4e4;
}
.map {
  height: 100%;
}
.map img{
  max-width: none;
}
.map label{
  background-color: transparent !important;
  border: none !important;
}
/* 在线留言 */
.message .form-control-feedback{
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 1.5rem;
  right: auto;
  color: #d1d1d1;
}
.form-control{
    height: 80px;
    border-radius: 0px;
    padding: 5px 5px 5px 35px;
    border: none;
    border-bottom: 1px solid #e4e4e4;
    background: transparent;
    margin-bottom: 10px;
}
.form-control1{
  height: 160px !important;
}
.message .checkcode{
  background-color: #dde8fc;
  padding: 5px 10px;
  margin-top: 20px;
  display: inline-block;
}
.message .msg-btn{
    width: 100%;
    height: 60px;
    font-size: 1.125rem;
    font-weight: 600;    
    text-transform: uppercase;
    border:none;
    border-radius: 35px;
}
@media (max-width:992px) {
  .contact .contact-tit{
    font-size: 2.0rem;
  }
  .contact .contact-tit span{
    font-size: 1.125rem;
  }
  .contact .contact-l,.contact .contact-r{
    width: 100%;
  }
  .contact .contact-l{
    margin-bottom: 30px;
  }
}
/* 加入我们 */
.job-list {
  margin-top: 40px;
  position: relative;
}
.job-li {
  padding: 1.85rem 2rem;
  border-top: 1px solid #e4e4e4;
}
.job-li:last-child {
  border-bottom: 1px solid #e4e4e4;
}
.job-li .card-header{
  padding: 0 0;
  background-color: transparent;
  border-bottom:  none;
}
.job-li .card-link{
  padding: 10px 0;
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  box-shadow: none;
  transition: all 0.6s;
  background: url(../img/up.png) no-repeat right center;
}
.job-li .collapsed{
  transition: all 0.6s;
  background: url(../img/down.png) no-repeat right center;
}
.job-li .card-body{
  display: flex;
  padding: 1.0rem 1.2rem 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.job-li .card-body p{
  margin-right: 2rem;
  font-weight: 600;
}
.job-li .card-body .con b{
  white-space: nowrap;
  font-weight: 600;
}
.job-li .card-body p span{
  font-weight: normal;
}
.job-li .card-body .con{
  display: flex;
  font-weight: 700;
}
.job-li .card-body .con div p{
  font-weight: normal;
  margin: 0;
}
.job-li .job-link {
  font-size: 1.125rem;
  padding: 15px 1.2rem 30px;
}
.job-li .job-link span{
  display: block;
}
.job-li .job-link a{
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #005ca9;
  border-bottom: 2px solid #005ca9;
}
@media (max-width:992px) {
  .job-li {
      padding: 0.5rem 1rem;
  }
  .job-li .card-body{
      padding: 0 0 2rem;
      flex-direction: column;
  }
  .job-li .card-body p{
      line-height: 2;
  }
  .job-li .card-link {
      font-size: 1.125rem;
      background-size: 15px;
  }
  .job-li .job-link {
      padding: 1.5rem 0;
  }
  .job-li .job-link a {
      font-size: 1.125rem;
  }
}
/* 合作伙伴 */
.ny-partner{
  background: url(../img/partner.jpg) no-repeat top center ;
  overflow: hidden;
  background-size: contain;
}
.ny-partner .partner-txt{
  padding: 3.0rem 0 2.5rem;
}
.ny-partner .partner-img{
  box-shadow: -2px 3px 20px 10px rgba(0, 0, 0, 0.10);
  background-color: #fff;
  border-radius: 0.6rem;
  padding: 1.9rem 0.5rem 1.9rem 0.5rem;
  text-align: center;
  margin: 1.0rem 0;
}
.ny-partner .partner-img img,.partner .swiper-slide img{
    transition: all 0.6s;
}
.ny-partner .partner-img:hover img,.partner .swiper-slide:hover img,.partner .swiper-slide.swiper-slide-active img{
    transform: scale(1.2);
}
@media (max-width: 998px) {
  .ny-partner .partner-txt,.partner .partner-txt{
    padding: 0rem 0 0rem;
    margin-bottom: 0rem;
  }
  .ny-partner .partner-img{
    margin: 0.5rem 0;
    padding: 1.0rem 0.5rem 1.0rem 0.5rem;
  }
}
/* 产品 */
.product-item{
  position: relative;
  display: block;
  width: 100%;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 5rem;
  margin-bottom: 5rem;
}
.product-item .product-pics{
  display: flex;
  margin-left: -1%;
  margin-right: -1%;
}
.product-item .product-pics li{
  width: 31.33%;
  margin: 0px 1% 2.5%;
  background: #f0f1f2;
  text-align: center;
  border-radius: 0.6rem;
  overflow: hidden;
}
.ny-product .product-item h5 {
  font-size: 3.125rem;
  margin-bottom: 1.5rem;
}
.ny-product .product-item span{
  display: inline-block;
  padding: 1.5rem 4rem 1.5rem 4rem;
  border-radius: 2.5rem;
  background: #efefef;
}
@media (max-width: 998px) {
  .product-item{
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .product-item .product-pics{
    margin-top: 1.5rem;
  }
  .ny-product .product-item h5 {
    font-size: 1.35rem;
  }
  .ny-product .product-item span {
    padding: 0.7rem 2rem 0.7rem 2rem;
  }
  .product-info .pro-tit{
    font-size: 1.5rem;
  }
}
/* 核心技术 */
.tec-list li{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4rem 3rem;
  border-radius: 10px;
  transition: all 0.5s;
  box-shadow: 0 2px 15px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  background: #fff url(../img/tec.png) no-repeat center bottom;
  background-size: 90% auto;
}
.tec-list li:hover{
  background-color: #005ca9;
}
.tec-list .tec-l{
  width: 35%;
  display: flex;
  align-items: center;
}
.tec-list .tec-l h3{
  font-size: 4.25rem;
  color: #d0d0d0;
  transition: all 0.5s;
}
.tec-list .tec-l p{
  font-size: 2.5rem;
  margin-left: 1.5rem;
  transition: all 0.5s;
  line-height: 1.2;
}
.tec-list .tec-l p i{
  display: block;
  font-style: normal;
}
.tec-list li:hover .tec-l h3,.tec-list li:hover .tec-l p{
  color: #fff;
  font-weight: 700;
}
.tec-list .tec-r{
  width: 65%;
}
.tec-list .tec-r p{
  line-height: 2;
  transition: all 0.5s;
}
.tec-list li:hover .tec-r p{
  color: #fff;
}
@media (max-width:1380px) {
  .tec-list .tec-l h3{
    font-size: 3rem;
  }
  .tec-list .tec-l p{
    font-size: 2rem;
  }
}
@media (max-width:992px) {
  .tec-list li{
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    background-size: 90% auto;
    box-shadow: 0 2px 10px 5px rgba(0, 0, 0, 0.1);
  }
  .tec-list .tec-l,.tec-list .tec-r{
    width: 100%;
  }
  .tec-list .tec-l{
    margin-bottom: 1.5rem;
  }
  .tec-list .tec-l h3{
    font-size: 2rem;
  }
  .tec-list .tec-l p{
    font-size: 1.5rem;
    margin-left: 1rem;
  }
  .tec-list .tec-l p i{
    display: inline;
  }
  .tec-list .tec-r p{
    margin-bottom: 0.3rem;
  }
}
/* 检测中心 */
.table1 {
  width: 100%;
  overflow-x: auto;
}
.table1 table{
  position: relative;
  border-top: 1px solid #000;
  margin-top: 5px;
  border-collapse: collapse;
  min-width: 100%;
  width: auto;
}
.table1 table::before{
  content:'';
  width: 100%;
  position: absolute;
  height: 2px;
  background: #000;
  top: -4px;
}
.table1 tr{
  border-bottom: 1px solid #000;
}
.table1 td{
  padding: 10px 5px;
  vertical-align: top;
  border: 0;
  text-align: center;
  vertical-align: middle;
}
.table1 tr:first-child{
  font-weight: bold;
}
.detect-list li:nth-child(1){
  background: url(../img/detect1.jpg) no-repeat left top;
}
.detect-list li:nth-child(2){
  background: url(../img/detect2.jpg) no-repeat left top;
}
.detect-list li:nth-child(3){
  background: url(../img/detect3.jpg) no-repeat left top;
}
.detect-list li{
  padding: 14rem 0 7rem;
  background-size: 100% auto;
}
.detect-list li .left-tit{
  color: #fff;
  margin-bottom: 3rem;
}
.detect-list li .left-tit h3{
  font-size: 3.125rem;
  margin-bottom: 1rem;
}
.detect-list li .left-tit p{
  width: 50%;
  font-size: 1.5rem;
  line-height: 1.5;
}
.detect-list li .right-con .detect-con{
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.detect-list li .right-con .detect-li{
  border-radius: 10px;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
  width: 15.33%;
  margin: 0 1% 1.5rem 0;
}
.detect-list li .right-con .detect-li:nth-child(6n){
  margin-right: 0;
}
.detect-list li .right-con p{
  text-align: center;
}
.detect-list li:last-child .right-con{
  border-radius: 10px;
  background: #fff;
  padding: 4rem;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
@media (min-width:1280px) {
  .detect-list li .right-con .detect-li{
    width: 24%;
    margin: 0 1.33% 1.5rem 0;
  }
  .detect-list li .right-con .detect-li:nth-child(6n){
    margin-right: 1.33%;
  }
  .detect-list li .right-con .detect-li:nth-child(4n){
    margin-right: 0;
  }
}
@media (max-width:992px) {
  .table1 {
    white-space: nowrap;
  }
  .ny-detection{
    padding-top: 30px;
  }
  .detect-list li{
    padding: 2rem 0;
  }
  .detect-list li .left-tit h3{
    color: #005ca9;
    font-size: 1.35rem;
    margin-bottom: 1rem;
  }
  .detect-list li .left-tit p{
    font-size: 1rem;
  }
  .detect-list li .left-tit{
    margin-bottom: 1.5rem;
  }
  .detect-list li .right-con .row{
    margin-bottom: 1rem;
  }
  .detect-list li .right-con .detect-li{
    width:49%;
    margin: 0 2% 1.5rem 0;
  }
  .detect-list li .right-con .detect-li:nth-child(2n){
    margin-right: 0;
  }
}

/* 表单 */
.feedback_title {
  background: #1356a3;
  color: white;
  padding: 20px 25px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
#faqbox {
  padding: 25px 30px 30px;
}
.Content {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeef5;
}
#faqbox .faqtit {
  display: block;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
  font-size: 15px;
}
#faqbox textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  resize: vertical;
  min-height: 100px;
  transition: all 0.3s ease;
}
#faqbox textarea:focus {
  outline: none;
  border-color: #1356a3;
  box-shadow: 0 0 0 3px rgba(74, 107, 223, 0.2);
}
#faqbox strong {
  display: block;
  margin-bottom: 20px;
  color: #1356a3;
  font-size: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f4ff;
}
.faqline {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.faqline > .faqtit {
  width: 120px;
  padding-right: 15px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.faqline input[type="text"],
.faqline input[type="email"],
.faqline input[type="tel"] {
  padding: 12px 15px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
}
.faqline input:focus {
  outline: none;
  border-color: #1356a3;
  box-shadow: 0 0 0 3px rgba(74, 107, 223, 0.2);
}
.faqline font[color="#FF0000"] {
  /* margin: 0 10px; */
  font-weight: bold;
}
.faqline label {
  margin: 0.5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.faqline input[type="radio"] {
  margin-right: 5px;
  width: auto;
}
.login_verification {
  max-width: 100px !important;
}
.faqline img {
  margin-left: 10px;
  cursor: pointer;
  border-radius: 4px;
  height: 24px;
}
.aline{
  display: flex;
  align-items: center;
}
#submits {
  padding: 1rem 5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  border: none;
  border-radius: 35px;
  background-color: #1356a3;
}
#submits:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 107, 223, 0.4);
}
@media (max-width: 768px) {
  .faqline {
    flex-direction: column;
    align-items: flex-start;
  }
  .faqline>.faqtit {
    width: 100%;
    text-align: left;
    padding-right: 0;
    margin-bottom: 8px;
  }
  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    max-width: 100%;
  }
  #faqbox {
    padding: 20px 15px;
  }
}