/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  font-family: "Lato", sans-serif;
  color: #8f9cb5;
  background-color: #ffd88f;
}

a {
  color: #35a785;
  text-decoration: none;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.img-replace {
  /* replace text with an image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-popup-trigger {
  display: block;
  width: 170px;
  height: 50px;
  line-height: 50px;
  margin: 3em auto;
  text-align: center;
  color: #FFF;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 50em;
  background: #35a785;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.07);
}

@media only screen and (min-width: 1170px) {
  .cd-popup-trigger {
    margin: 6em auto;
  }
}

/* -------------------------------- 

xpopup 

-------------------------------- */
.cd-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.cd-popup.is-visible {
  opacity: 1;
  z-index: 111111111111111;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-popup-container {
  position: relative;
  width: 90%;
  /*max-width: 400px;*/
  margin: 4em auto;
  background: #FFF;
  border-radius: .25em .25em .4em .4em;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.cd-popup-container p {
  padding: 3em 1em;
}

.cd-popup-container .cd-buttons:after {
  content: "";
  display: table;
  clear: both;
}

.cd-popup-container .cd-buttons li {
  float: left;
  width: 50%;
}

.cd-popup-container .cd-buttons a {
  display: block;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: #FFF;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.cd-popup-container .cd-buttons li:first-child a {
  background: #fc7169;
  border-radius: 0 0 0 .25em;
}

.no-touch .cd-popup-container .cd-buttons li:first-child a:hover {
  background-color: #fc8982;
}

.cd-popup-container .cd-buttons li:last-child a {
  background: #b6bece;
  border-radius: 0 0 .25em 0;
}

.no-touch .cd-popup-container .cd-buttons li:last-child a:hover {
  background-color: #c5ccd8;
}

.cd-popup-container .cd-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
}

.cd-popup-container .cd-popup-close::before,
.cd-popup-container .cd-popup-close::after {
  content: '';
  position: absolute;
  top: 12px;
  width: 14px;
  height: 3px;
  background-color: #8f9cb5;
}

.i_div7 ul.cd-buttons li .cd-popup-close::before,
.i_div7 ul.cd-buttons li .cd-popup-close::after,
.inside_banner ul.cd-buttons li .cd-popup-close::before,
.inside_banner ul.cd-buttons li .cd-popup-close::after {
  background: none;
}

.cd-popup-container .cd-popup-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 8px;
}

.cd-popup-container .cd-popup-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 8px;
}

.is-visible .cd-popup-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

@media only screen and (min-width: 1170px) {
  .cd-popup-container {
    margin: 8em auto;
  }
}

/* footer start*/
.footer {
  background: #181534;
  width: 100%;

}

.footer-item {
  flex: 1;
}

.footer-item:nth-of-type(1) {
  margin-right: 135px;
}

.footer-item .logo {
  width: 102px;
  height: 42px;
  margin-bottom: 13px;
  margin-top: -7px;
}

.footer-item .address {
  line-height: 20px;
}

.footer-item h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 23px;
}

.footer-item h5 {
  margin-bottom: 4px;
}

.footer-item a {
  display: block;
  color: #fff;
}

.footercon {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  line-height: 28px;
  display: flex;
  padding-bottom: 45px;
  width: 1180px;
  margin: 0 auto;
  padding-top: 40px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  width: 1180px;
  margin: 0 auto;
}

.phone-box {
  position: relative;
}

.phone-pic {
  position: absolute;
  left: -45px;
  top: 12px;
}

.code-pic {
  margin-top: 15px;
  margin-bottom: -5px;
}

/* footer end*/
/* header start */
.box {
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #3178F2;
}

.topbanner {
  background: url(../images/banner.png) no-repeat;
}

.conwid {
  width: 1180px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

.top {
  width: 1180px;
  margin: 0 auto;
  display: flex;
}

.box .logo {
  width: 102px;
  margin-right: 57px;
  height: 52px;
  float: left;
  margin-top: 28px;
}

.top .nav {
  flex: 1;
  margin-top: 27px;
}

.top .nav li {
  float: left;
  width: 64px;
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  line-height: 52px;
  margin-right: 45px;
}

.top .nav li a {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
}

.top .nav li a:hover,.top .nav li.active a {
  font-weight: bold;
}

.topright {
  width: 207px;
}

.topright a {
  padding: 3px 22px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 1);
  color: #fff;
  line-height: 20px;
  vertical-align: middle;
  display: inline-block;
  border-radius: 4px;
}

.topright a.applybtn3 {
  color: #3178F2;
  background: #fff;
  margin-left: 10px;
  cursor: pointer;
}

.topright a:hover {
  background: #5A93F4
}

.topright a.applybtn3:hover {
  background: #EAF1FD
}

.topright .blog{
  margin: 10px 10px 0;
  color: #fff;
  text-align: right;
}
.topright .blog a{
  border:0 none;
  padding:0;
}
.subnavlist {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.07);
  border-radius: 0 0 4px 4px;
  padding: 10px 0;
  width: 200px;
  height: 100%;
  display: none;
  z-index: 100;
  margin-left:-15px;
}

.top .nav li:hover .subnavlist {
  display: block;
}

.top .nav li .subnavlist li{
  float: none;
  
  width: 100%;
  font-size: 14px;
  line-height: 14px;
  cursor: pointer;
}
.top .nav li .subnavlist li a{
  color:#252525;
  font-size: 14px;
  line-height: 14px;
  width: 100%;
  height: 100%;
  padding: 10px 15px;
  display: inline-block;
  font-weight: normal;
}

.top .nav li .subnavlist li a:hover {
  background: #FAFCFF;
  color: #3178F2
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.clearfix {
  zoom: 1;
}

/* header end */
/* 右侧悬浮框 */
.righticon {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 9;
}

.righticon a {
  display: block;
  background: #658CFE;
  margin-bottom: 2px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}

.phonetxt {
  position: absolute;
  right: 55px;
  top: -7px;
  color: #5681FD;
  padding: 18px 0;
  background: rgba(251, 251, 251, 1);
  border: 1px solid rgba(218, 220, 233, 1);
  box-shadow: 0px 0px 10px 0px #0000001c;
  font-weight: 400;
  font-size: 18px;
  width: 258px;
  text-align: center;
  display: none;
}

.righticon a:hover .phonetxt {
  display: block;
}

.right-arrow1,
.right-arrow2 {
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  right: -20px;
  top: 19px;
  border-top: 10px transparent dashed;
  border-right: 10px transparent dashed;
  border-bottom: 10px transparent dashed;
  border-left: 10px rgba(251, 251, 251, 1) solid;
  overflow: hidden;
}

.right-arrow2 {
  border-left: 10px rgba(251, 251, 251, 1) solid;
}

.right-arrow1 {
  right: -21px;
  border-left: 10px solid rgba(218, 220, 233, 1);
}

.phone:hover .phonetxt {
  display: block
}

.righticon a.applybtn3 {
  margin: 0;
  border: 0 none;
  border-radius: 0;
  line-height: 20px;
  background: #F9BA00;
}

/* 右侧悬浮框 end */
.subtitle {
  font-size: 36px;
  font-weight: 400px;
  color: #282828;
  text-align: center;
  margin-bottom: 50px;
}

/* 申请框 */
.sheqmodal .search .cd-popup-container {
  width: 680px;
  height: 390px;
}

.sheqmodal .search .cd-popup-container div {
  margin-bottom: 16px;
}

.sheqmodal .search .cd-popup-container div span {
  font-size: 14px;
  color: #8b8b8b;
}


.sheqmodal .search .cd-popup-container div input,
.sheqmodal .search .cd-popup-container div select {
  width: 280px;
  height: 44px;
  border: 1px solid #cecece;
  padding: 0 20px;
  line-height: 44px;
  border-radius: 2px;
}

.sheqmodal .search .cd-popup-container ul.cd-buttons li {
  position: relative;
}

.sheqmodal .search .cd-popup-container ul.cd-buttons li a {
  height: 40px;
  border-radius: 2px;
  line-height: 40px;
  font-size: 14px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 20px;
  left: 0;
}

.sheqmodal .search .cd-popup-container ul.cd-buttons li a.apply {
  width: 174px;
  background: #5681fd;
  left: 343px;
}

.sheqmodal .search .cd-popup-container ul.cd-buttons li a.quxiao {
  width: 94px;
  background: #cfcfcf;
  left: 237px;
}

.sheqmodal .search .cd-popup-container ul.cd-buttons li a.quxiao::before,
.sheqmodal .search .cd-popup-container ul.cd-buttons li a.quxiao::after {
  background: none;
}

.sheqmodal .search .cd-popup-container ul.cd-buttons li a.apply:hover {
  background: #5681fd;
}

.sheqmodal .search .cd-popup-container ul.cd-buttons li a.quxiao:hover {
  background: #cfcfcf;
}

.sheqmodal .search .cd-popup-container p {
  padding: 0;
  margin: 0 0 0 36px;
  line-height: 72px;
  background: url(../images/6_1.png) no-repeat left center;
  font-size: 16px;
  color: #333;
  text-align: left;
  text-indent: 34px;
}

.applybutton {
  cursor: pointer;
}