.banner {
  width: 100%;
  height: 500px;
  background: url(../../static/xxpl/bj.png) no-repeat;
  background-size: cover;
  position: relative;
  transition: all 0.7s;
  -ms-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;

  filter: alpha(opacity=0);
  opacity: 0;
}

.other {
  background: url(../../static/xxpl/bj2.png) no-repeat;
  background-size: cover;
}

.banner .content-box {
  font-size: 54px;
  line-height: 500px;
  color: #fff;
  letter-spacing: 6px;
  transition: all 0.7s;
  -ms-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
}

.common-body {
  width: 100%;
  background-color: #f8fafd;
  padding-bottom: 140px;
}

.common-body .common-body-content {
  display: flex;
  padding-top: 100px;
  transition: all 0.7s;
  -ms-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
}

.common-sidebar .sidebar-title {
  position: relative;
  display: block;
  width: 332px;
  height: 60px;
  font-size: 18px;
  line-height: 60px;
  padding-left: 35px;
  position: relative;
  margin-bottom: 10px;
  color: #000;
  background-color: #fff;
  box-sizing: border-box;
  background:url(../../static/xxpl/right.png) no-repeat right 28px center;
  cursor: pointer;
   transition: all .2s;
}

.common-sidebar .sidebar-title .arrow{
  height:12px;
  position: absolute;
  right:30px;
  top:50%;
  transform: translateY(-50%);
}

.common-sidebar .sidebar-title::after {
  content: "";
  display: block;
  width: 4px;
  height: 60px;
  position: absolute;
  left: 0;
  top: 0;
}

.common-sidebar .sidebar-title-active {
  color: #fff;
  background:url(../../static/xxpl/right_active.png) no-repeat right 28px center,linear-gradient(to right, #05509d, #0f86bd);
}

.common-sidebar .sidebar-title:hover {
  color: #fff;
  background:url(../../static/xxpl/right_active.png) no-repeat right 28px center,linear-gradient(to right, #05509d, #0f86bd);
}


.common-body .common-content {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}

.common-body .content-list {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 120px;
  padding: 0 40px;
  box-sizing: border-box;
  background-color: #fff;
  color: #000;
  margin-left: 40px;
  /*margin-bottom: 10px;*/
  cursor: pointer;
}

.common-body .content-list:last-child {
  margin-bottom: 0px;
}

.common-body .content-list .content-list-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #eceef2;
  width: 100%;
  height: calc(100% - 1px);
  margin: 30px 0;
}
.common-body .content-list:last-child .content-list-item{
	border:none;
}
.common-body .content-list .content-list-item .text-box {

}

.common-body .content-list .content-list-item .text-box .text-title {
  position: relative;
	/*  padding-left: 11px;*/
  font-size: 18px;
  word-break: break-word;
}

.common-body .content-list .content-list-item .text-box .text-title::after {
	display:none;
}

.common-body .content-list .content-list-item .text-box .text-content {
  padding-left: 10px;
  color: #666666;
  font-size: 16px;
  margin-top: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.common-body .content-list .content-list-item .date {
  font-size: 14px;
  display: block;
  width: 165px;
  /*text-align: right;*/  
  color: #b8b8b8;
  margin-bottom:20px;
  color:#005096;
}

/* .page {
    width: 100%;
    padding-bottom: 140px;
}

.page .custom-pagination {
    margin: 0 !important;
    float: right;
} */
.page {
  width: 100%;
  margin: 0;
}

.page .custom-pagination {
  width: 100%;
  margin: 0 !important;
  left: auto;
  position: inherit;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  margin-top: 60px !important;
}

.modal{
  z-index: 2000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
  background: #000;
}

.dialog-wrapper{
  z-index: 2001;
  margin: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
}

.dialog{
  width: 40%;
  position: relative;
  margin: 15vh auto 50px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
  box-sizing: border-box;
}

.dialog-title {
  font-size: 26px;
  color: #333333;
  padding: 60px 0 30px 0;
  text-align: center;
}

.dialog-title p {
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 1px;
  color: #999999;
}

.dialog-content {
  padding: 0px 127px 60px 127px;
  background-color: #fff;
  margin: 0 auto;
}

.dialog-content .dialog-content-title {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin:0 90px;
}

.dialog-content .dialog-content-title .line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #6696c0;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.dialog-content .dialog-content-title .line::after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: #005096;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.dialog-content .dialog-content-title .line-process2::after {
  width: 50%;
}

.dialog-content .dialog-content-title .line-process3::after {
  width: 100%;
}

.dialog-content .dialog-content-title .process {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
  margin-bottom: 99px;
  padding:4px;
  background-color: #ffffff;
}

.dialog-content .dialog-content-title .process div{
  font-size:14px;
  height: 30px;
  line-height: 30px;
  position: absolute;
  width: 90px;
  top: -30px;
  text-align: center;
  color:#6696c0;
}

.dialog-content .dialog-content-title .active div{
  color:#005096 !important;
}

.dialog-content .dialog-content-title .process span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4px;
  height: 4px;
  background-color: #6696c0;
  font-size: 14px;
  letter-spacing: 1px;
  color: #b9bdc6;
  transform: rotate(45deg);
}

.dialog-content .dialog-content-title .process p {
  font-size: 14px;
  letter-spacing: 1px;
  color: #b9bdc6;
  margin-top: 10px;
}

.dialog-content .dialog-content-title .active span {
  background: #005096;
  border: none;
  color: #fff;
}

.dialog-content .dialog-content-title .active p {
  color: #005096;
}

.dialog-content .dialog-content-title .process .pass {
  background: #ffffff;
  border: solid 2px #1277c1;
}

.dialog-content .dialog-content-item {
  margin-bottom: 30px;
  display:flex;
}

.dialog-content .dialog-content-item label {
  display: block;
  font-size: 14px;
  line-height: 40px;
  letter-spacing: 1px;
  color: #333333;
  width: 90px;
  flex-shrink: 0;
  text-align: end;
}

.dialog-content .dialog-content-item label img {
  vertical-align: middle;
}

.dialog-content .dialog-content-item input {
  width: 100%;
  height: 40px;
  background-color: #f4f7f9;
  border: none !important;
  padding: 0 20px;
  box-sizing: border-box;
}

.dialog-content .dialog-content-item input:focus-visible {
  border: none !important;
}

.dialog-content .dialog-content-item .verification-code {
  display: flex;
  width:100%;
}

.dialog-content .dialog-content-item .verification-code span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 40px;
  background-color: #eaebee;
  margin-left: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.dialog-content .dialog-content-submit{
  text-align: center;
  margin-bottom: 30px;
}

.dialog-content .dialog-content-submit button {
  width: 140px;
  height: 40px;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  background: #005096;
  /*margin-left:90px;*/
}

.dialog-content .dialog-content-submit button:not(:first-child) {
  margin-left: 30px;
}

.dialog-content .dialog-content-item .phone-verification-code {
  display: flex;
}

.dialog-content .dialog-content-item .phone-verification-code span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 40px;
  border: solid 1px #005096;
  font-size: 14px;
  letter-spacing: 1px;
  color: #005096;
  margin-left: 6px;
  cursor: pointer;
}

.dialog-content .dialog-content-item .phone-verification-code .countdown {
  cursor: default;
}

.dialog-content .dialog-content-item__margin {
  margin-top: 20px;
}

.dialog-content .dialog-content-type {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.dialog-content .dialog-content-type::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #dddddd;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.dialog-content .dialog-content-type span {
  display: inline-block;
  padding: 0 10px;
  background-color: #fff;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 1px;
  color: #999999;
  position: relative;
  z-index: 10;
}

.dialog .tip{
  color: #5c5c5c;
  font-size: 14px;
}

.bottom-pagination {
	padding-left: 40px;
  	margin-top: 60px;
}
@media screen and (max-width: 1251px) {
    #content-body__special-service .special-service__image-group{
        width:calc(100% - 120px);
        padding:0 60px;
    }
    .special-service__image-group .image-group--bar2{
       width:auto;
    }
}