/*右侧浮窗*/
a:link,a:visited {
  color:#000;
}
.rightBox {
	position: fixed;
	right: 11px;
	bottom: 20%;
	z-index: 999;
}

.rightBox a {
	display: block;
	width: 54px;
	height: 54px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 2px;
	color: #fff;
	margin-bottom: 11px;
	position: relative;
	overflow: hidden;
}

.rightBox a .image,
.rightBox a .mask {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
}

.rightBox a .image,
.rightBox a:hover .mask {
	top: 0;
}

.rightBox a:hover .image {
	top: -100%;
}

.rightBox a .mask {
	top: 100%;
}

.rightBox a p {
	text-align: center;
	width: 100%;
	height: 100%;
	padding: 9px;
	box-sizing: border-box;
	letter-spacing: 2px;
}

.rightBox a:hover {
	background: #B78F5E;
}

.rightBox a .imgDiv {
	height: 100%;
	padding: 10px;
	box-sizing: border-box;
}

.rightBox a img {
	max-width: 34px;
	max-height: 34px;
}


/*弹出层*/

.popup {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.5);
	color: #333;
}

.popup-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.popup.active {
	display: block;
}

.popup-content {
	max-width: 797px;
	max-height: 80vh;
	background: #fff;
	margin: 0 auto;
	margin-top: 50vh;
	transform: translateY(-50%);
	position: relative;
	z-index: 2;
	box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.2);
}

.success .popup-content {
	max-width: 592px;
}

.popup-content .box-close {
	display: block;
	width: 32px;
	height: 32px;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	right: -24px;
	top: -50px;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	background-image: url(/images/close.png);
}

.popup .planDiv {
	width: 390px;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
	padding: 35px 0;
}

.popup .title2 {
	font-size: 32px;
	font-weight: bold;
	background: url(/images/pop-title.png) 45% bottom no-repeat;
	padding-bottom: 35px;
	margin-bottom: 10px;
	text-align: center;
	color: #fff;
}

.popup .planDiv .formDiv {
	padding: 0 35px;
}

.popup .planDiv .formDiv ul li {
	width: 100% !important;
	padding: 10px 0;
}

.popup .planDiv .formDiv ul li button {
	color: #fff;
	font-size: 24px;
	background: #B78F5E;
}


/*量房*/

.amount .leftDiv {
	width: 407px;
	padding: 35px 20px;
}

.amount .leftDiv li {
	float: left;
	width: 33.3%;
	text-align: center;
	color: #C7B696;
	padding: 18px 0;
	box-sizing: border-box;
	position: relative;
}

.amount .leftDiv li::after {
	content: '';
	width: 37px;
	height: 1px;
	background: #81807D;
	position: absolute;
	top: 60px;
	left: calc( 100% - 18px);
}

.amount .leftDiv li:nth-child(3)::after {
	width: 1px;
	height: 20px;
	top: calc( 100% - 10px);
	left: 50%;
}

.amount .leftDiv li:last-child::after {
	width: 0;
}

.amount .leftDiv li:nth-child(3n+1) {
	padding-left: 0;
}

.amount .leftDiv li:nth-child(3n) {
	padding-right: 0;
}

.amount .leftDiv li img {
	max-width: 85px;
	margin-bottom: 5px;
}


/*参观*/

.visit .imgDiv {
	position: relative;
	top: 23px;
	left: -40px;
}


/*成功*/

.success .upper {
	padding: 30px 0 10px;
}

.success .below {
	padding: 50px;
	font-size: 16px;
}

.success .below a {
	display: inline-block;
	color: #fff;
	font-size: 24px;
	width: 243px;
	line-height: 50px;
	margin-top: 50px;
}


/*导航*/

.header {
	background: #fff;
	height: 80px;
	z-index: 999;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	box-sizing: border-box;
}

.header .logo {
	width: 120px;
	height: 80px;
	padding: 25px 0;
	box-sizing: border-box;
}

.header .logo img {
	max-height: 31px;
}

.header .navDiv {
	margin: 0 -22px;
	padding-left: 84px;
}

.header ul li {
	float: left;
	font-size: 16px;
	line-height: 80px;
	white-space: nowrap;
	padding: 0 22px;
	color: #666;
	position: relative;
}

.header ul li.caseNav::before {
	content: '';
	width: 28px;
	height: 16px;
	background: url(/images/new.png)no-repeat;
	position: absolute;
	right: -7px;
	top: 20px;
}

.header ul li a {
	position: relative;
	display: block;
}

.header ul li.on a,
.header ul li a:hover {
	color: #0A1741;
	font-weight: bold;
}

.header ul li a::before {
	content: '';
	width: 0;
	height: 2px;
	background: #19294B;
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.5s;
}

.header ul li.on a::before,
.header ul li a:hover::before {
	width: 100%;
}

.header .tel {
	line-height: 80px;
	white-space: nowrap;
	background: url(/images/head-tel.png)left center no-repeat;
	padding-left: 30px;
	color: #19294B;
	font-size: 20px;
}


/* banner */

.swiper-container {
	width: 100%;
	margin: 0 auto;
}

.ui-homebanner {
	width: 100%;
	position: relative;
}

.ui-homebanner .swiper-slide {
	overflow: hidden;
	position: relative;
}

.ui-homebanner .swiper-slide .img {
	width: 100%;
	display: block;
	height: 710px;
	background: none no-repeat center;
	background-size: cover;
	position: relative;
	margin-top: 80px;
}

.ui-homebanner .swiper-container-horizontal>.swiper-pagination-bullets {
	position: absolute;
	bottom: 30px;
}

.ui-homebanner .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 100px;
	transition: all 0.5s;
	opacity: 1;
}

.ui-homebanner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 10px;
}

.ui-homebanner .swiper-pagination-bullet-active {
	width: 22px;
}

.ui-homebanner .swiper-button-next,
.ui-homebanner .swiper-button-prev {
	width: 36px;
	height: 94px;
	margin-top: -47px;
	background-image: url(/images/arrow1.png);
	background-size: 15px 33px;
	background-color: rgba(0, 0, 0, 0.5);
}

.ui-homebanner .swiper-button-prev,
.ui-homebanner .swiper-container-rtl .swiper-button-next {
	left: 0;
}

.ui-homebanner .swiper-button-next,
.ui-homebanner .swiper-container-rtl .swiper-button-prev {
	right: 0;
	transform: rotate(180deg);
}


/*底部*/

footer {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #212733;
  border-top: 1px solid #40454f;
  font-size: 14px;
  color: #999999; }
  footer.on {
    background: none;
    border-top: 1px solid #eff2f3;
    color: #acacac;
    background: #fff; }

.footer {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
  background: #212733; }
  .footer .m {
    width: 1240px;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    padding: 80px 0; }
    .footer .m .logo {
      display: block; }
    .footer .m .contact {
      overflow: hidden;
      padding-left: 66px; }
      .footer .m .contact .hot {
        display: flex;
        align-items: center;
        font-size: 18px;
        color: #fff; }
        .footer .m .contact .hot span {
          color: #999999;
          font-size: 16px;
          margin-left: 6px; }
      .footer .m .contact .tel {
        display: block;
        font-size: 35px;
        font-weight: bold;
        line-height: 1.1;
        margin-top: 12px;
        color: #b78f5e; }
      .footer .m .contact .line {
        overflow: hidden;
      /*  margin-top: 24px; */}
        .footer .m .contact .line div {
          overflow: hidden;
          display: flex;
          align-items: center; }
          .footer .m .contact .line div span {
            font-size: 16px;
            color: #999999;
            margin-left: 4px; }
        .footer .m .contact .line p {
          display: block;
          font-size: 14px;
          margin-top: 8px;
          color: #999999; }
    .footer .m .link {
      overflow: hidden;
      padding: 0 30px;
      display: flex;
      position: relative;
      margin-left: 68px; }
      .footer .m .link::after {
        content: '';
        width: 1px;
        height: 205px;
        background-image: url(/images/footerbg_03.jpg);
        position: absolute;
        left: 0;
        top: 0; }
      .footer .m .link::before {
        content: '';
        width: 1px;
        height: 205px;
        background-image: url(/images/footerbg_03.jpg);
        position: absolute;
        right: 0;
        top: 0; }
      .footer .m .link ul {
        overflow: hidden;
        width: 150px;
        padding-left: 15px; }
        .footer .m .link ul li {
          font-size: 16px;
          line-height: 1.1;
          color: #fff; }
          .footer .m .link ul li:last-child a {
            margin-bottom: 0; }
 /*         .footer .m .link ul li:first-child {
            margin-bottom: 30px; }*/
           /* .footer .m .link ul li:first-child:hover a {
              color: #fff !important; }
            .footer .m .link ul li:first-child a {
              color: #fff;
              padding: 0;
              margin: 0; }*/
            /*  .footer .m .link ul li:first-child a::after {
                display: none !important; }
              .footer .m .link ul li:first-child a:hover {
                color: #fff !important; }*/
          .footer .m .link ul li:hover a {
            color: #b78f5e; }
            .footer .m .link ul li:hover a::after {
              width: 100%; }
          .footer .m .link ul li a {
            color: #999999;
            position: relative;
            display: block;
            display: inline-block;
            margin-bottom: 20px;
            padding-bottom: 10px;
            transition: all .1s; }
            .footer .m .link ul li a::after {
              content: '';
              height: 1px;
              width: 0;
              background: #b78f5e;
              position: absolute;
              left: 0;
              bottom: 0;
              transition: all .3s; }

.planDiv {
	padding: 9px 0;
	width: 100%;
	left: 0;
	bottom: 0;
	transition: all 0.5s;
}

.planDiv .upper {
	padding: 20px 0;
	vertical-align: text-bottom;
	letter-spacing: 5px;
	border-bottom: 1px solid rgba(72, 97, 149, 0.3);
}

.planDiv .upper h3 {
	font-size: 30px;
	padding-top: 13px;
}

.planDiv .upper p {
	font-size: 24px;
}

.planDiv .upper p strong {
	font-size: 44px;
}

.planDiv .formDiv ul li {
	width: 320px;
	padding: 30px 10px;
}

.planDiv .formDiv ul li:last-child {
	width: 218px;
}

.planDiv .formDiv ul li p {
	background: #fff;
	height: 50px;
	line-height: 50px;
	padding: 0 20px;
	border: 1px solid transparent;
}

.planDiv .formDiv ul li p.warning {
	border: 1px solid red;
}

.checkExistRong {
	display: block;
	line-height: 1;
	color: #FFFFFF;
	margin-top: 10px;
	color: red;
}

.planDiv .formDiv ul li img {
	max-height: 18px;
	max-width: 21px;
	transform: translateY(3px);
}

.planDiv .formDiv ul li input {
	border: none;
	font-size: 16px;
	width: calc(100% - 40px);
	padding-left: 15px;
}

.planDiv .formDiv ul li button {
	font-size: 18px;
	text-align: center;
	height: 50px;
	width: 100%;
	background: #CCBC9F;
	border: none;
}

.planDiv .formDiv ul li button span {
	background: url(/images/form-icon4.png)right center no-repeat;
	padding-right: 30px;
	color: #19294B;
	font-weight: bold;
}

.indexNews ul {
	overflow: hidden;
	/*margin: 0 -80px;*/
	padding: 40px 0;
}

.indexNews ul li:first-child {
	border: none;
	font-size: 24px;
	width: 120px;
}

.indexNews ul li {
	width: 34%;
	padding: 0 38px;
	border-left: 1px solid #eee;
	overflow: hidden;
}

.pb235 {
	padding-bottom: 235px;
}

.indexNews ul li small {
	display: block;
	float: left;
	font-size: 14px;
	color: #fff;
	width: 48px;
	height: 21px;
	background: #19294B;
	border-radius: 2px;
	line-height: 21px;
	text-align: center;
margin-right: 20px;
}

.indexNews ul li .notice {
	background: #F15046;
}

.indexNews ul li a {
	display: block;
	float: left;
	margin-top: -4px;
width:340px;
}

.indexNews ul li p {
	font-size: 18px;
	margin-bottom: 5px;
}

.indexNews ul li span {
	color: #999;
}

.title {
	position: relative;
	margin-bottom: 60px;
}

.title strong {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 48px;
	opacity: 0.02;
	text-transform: uppercase;
	text-decoration: underline;
	top: -11px;
}

.title p {
	position: relative;
	font-size: 20px;
	z-index: 1;
}

.title h2 {
	position: relative;
	font-size: 48px;
	padding-top: 20px;
	margin-top: 20px;
	letter-spacing: 5px;
	font-weight: normal;
}

.title h2::before {
	content: '';
	position: absolute;
	width: 34px;
	height: 2px;
	top: 0;
	left: 50%;
	margin-left: -17px;
	background: #CBBC9E;
	color: transparent;
}

.indexDiv1 .wrap {
	overflow: hidden;
}

.indexDiv1 ul {
	position: relative;
	overflow: hidden;
}

.indexDiv1 ul li {
	float: left;
	overflow: hidden;
	width: 40%;
	background: url(/images/li-bg.png)left center repeat-y;
	background-size: 100%;
	position: absolute;
	left: 33.3%;
	padding: 40px 45px;
	box-sizing: border-box;
}

.indexDiv1 ul li:first-child {
	position: relative;
	left: 0;
}

.indexDiv1 ul li:last-child {
	left: 66.6%;
}

.indexDiv1 ul li img {
	max-width: 61px;
}

.indexDiv1 ul li .text {
	width: 260px;
	margin-left: 10px;
	margin-top: -3px;
}

.indexDiv1 ul li .text p {
	font-size: 23px;
	font-weight: bold;
	margin-bottom: 6px;
	line-height: 1;
}

.more {
	border: 1px solid #fff;
	background: linear-gradient(90deg, #fff, #fff)no-repeat;
	background-size: 0 100%;
	display: inline-block;
	padding: 0 50px;
	text-align: center;
	height: 50px;
	line-height: 50px;
	font-size: 18px;
	color: #FFFFFF;
	transition: all 0.5s;
}

.more:hover {
	background-size: 100% 100%;
	color: #333;
}

.indexDiv2 ul {
	margin: -10px;
}

.indexDiv2 ul li {
	float: left;
	width: 25%;
	padding: 10px;
	position: relative;
	box-sizing: border-box;
}

.border-box {
	box-sizing: border-box;
}

.indexDiv2 ul li .img {
	height: 306px;
}

.indexDiv2 ul li a {
	background: #f3f3f3;
	display: block;
	height: 306px;
	position: relative;
}

.indexDiv2 ul li .content p strong {
	font-size: 120px;
	line-height: 1;
}

.indexDiv2 ul li .content p {
	font-size: 26px;
}

.indexDiv2 ul li .content span {
	font-size: 24px;
	position: relative;
	padding-top: 5px;
	margin-top: 5px;
	display: inline-block;
}

.indexDiv2 ul li .content span::before {
	content: '';
	width: 100%;
	height: 1px;
	position: absolute;
	top: 0;
	left: 0;
	background: #CBBC9E;
}

.indexDiv2 ul li .content,
.indexDiv2 ul li a .imgDiv,
.indexDiv2 ul li a .text,
.indexDiv2 ul li a small {
	display: block;
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	transition: all 0.5s;
	text-align: center;
}

.indexDiv2 ul li a:hover img {
	/*filter: drop-shadow(0 2px 1px #fff);*/
}

.indexDiv2 ul li a:hover .imgDiv {
	filter: drop-shadow(0 4px 5px #999);
}

.indexDiv2 ul li a small {
	color: #fff;
}

.indexDiv2 ul li a .mask {
	height: 100%;
	padding-top: 60px;
	box-sizing: border-box;
}

.indexDiv2 ul li a .mask::before {
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(25, 41, 75, 0.9), rgba(25, 41, 75, 0.3));
	position: absolute;
	left: 0;
	top: 0;
}

.indexDiv2 ul li a .text p {
	font-size: 36px;
	color: #fff;
	margin-bottom: 40px;
	position: relative;
}

.indexDiv2 ul li a .text span {
	position: relative;
}

.indexDiv3 .upper a {
	display: block;
	float: left;
	width: 160px;
	height: 50px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
	line-height: 50px;
	color: #fff;
	font-size: 18px;
	margin-right: 20px;
	box-sizing: border-box;
	margin-bottom: 50px;
}

.indexDiv3 .upper>a {
	margin-right: 0;
}

.indexDiv3 .upper a.on,
.indexDiv3 .upper a:hover {
	color: #333;
	background: #CCBC9F;
	border: 1px solid #CCBC9F;
}

.indexDiv3 ul {
	margin: 0 -10px;
}

.indexDiv3 ul li {
	width: 400px;
	height: 295px;
	box-sizing: border-box;
	padding: 15px 10px;
	float: left;
	box-sizing: content-box;
}

.indexDiv3 ul li a {
	display: block;
	position: relative;
	max-height: 295px;
	overflow: hidden;
	box-sizing: border-box;
	border: 1px solid transparent;
}

.indexDiv3 ul li a:hover {
	border: 1px solid #fff;
	background: #19294B;
}

.indexDiv3 ul li a .text {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	overflow: hidden;
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
	line-height: 47px;
	padding: 0 20px;
}

.indexDiv3 ul li a:hover .text {
	background: #fff;
	color: #333;
}

.indexDiv3 ul li a .text p {
	font-size: 18px;
	width: 55%;
	float: left;
}

.indexDiv3 ul li a .text span {
	display: block;
	font-size: 12px;
	float: right;
	max-width: 45%;
}

.indexDiv4 .swiper_wrapper {
	padding: 0 74px;
}

.indexDiv4 .swiper-container {
	padding: 20px 0;
}

.indexDiv4 .swiper-slide {
	box-shadow: 0px 10px 43px 0px rgba(4, 0, 0, 0.25);
}

.indexDiv4 .swiper-slide a {
	display: block;
	background: #fff;
	position: relative;
}

.indexDiv4 .swiper-slide a:hover {
	transform: scale(1.03);
	z-index: 2;
	background: #CCBC9F;
}

.indexDiv4 .swiper-slide a .imgDiv {
	width: 364px;
	height: 410px;
}

.indexDiv4 .swiper-slide a .imgDiv img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.indexDiv4 .swiper-slide a .text {
	line-height: 64px;
	height: 64px;
	overflow: hidden;
	position: relative;
	font-size: 24px;
}

.indexDiv4 .swiper-slide a .textDiv1,
.indexDiv4 .swiper-slide a .textDiv2 {
	line-height: 64px;
	height: 64px;
	position: absolute;
	width: 100%;
	padding-left: 20px;
	padding-right: 40px;
	left: 0;
}

.indexDiv4 .swiper-slide a .textDiv1,
.indexDiv4 .swiper-slide a:hover .textDiv2 {
	top: 0;
}

.indexDiv4 .swiper-slide a:hover .textDiv1 {
	top: -100%;
}

.indexDiv4 .swiper-slide a .textDiv2 {
	top: 100%;
}

.indexDiv4 .swiper-slide a .text::before {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	transform: rotate(45deg);
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -3px;
}

.indexDiv4 .swiper-slide a span {
	font-size: 14px;
}

.indexDiv4 .swiper-button-next,
.indexDiv4 .swiper-button-prev {
	width: 56px;
	height: 56px;
	background-color: #fff;
	border-radius: 50%;
	margin-top: -28px;
	background-image: url(/images/arrow2.png);
	background-size: 8px;
}

.indexDiv4 .swiper-button-prev,
.indexDiv4 .swiper-container-rtl .swiper-button-next {
	left: -26px;
}

.indexDiv4 .swiper-button-next,
.indexDiv4 .swiper-container-rtl .swiper-button-prev {
	right: -26px;
	transform: rotate(180deg);
}

.indexDiv5 .more {
	border: 1px solid #333;
	color: #333;
	background: linear-gradient(90deg, #333, #333)no-repeat;
	background-size: 0 100%;
}

.indexDiv5 .more:hover {
	color: #fff;
	background-size: 100% 100%;
}


/*
.indexDiv5 ul {
	margin: -10px;
}*/

.indexDiv5 ul li {
	width: 294px;
	padding: 10px;
}

.indexDiv5 ul li a {
	display: block;
	width: 295px;
}

.indexDiv5 ul li .imgDiv {
	height: 327px;
	width: 295px;
}

.indexDiv5 ul li a:hover {
	box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.14);
}

.indexDiv5 ul li .text {
	padding: 30px 20px 20px;
	border: 1px solid #EAEAEA;
}

.indexDiv5 ul li a:hover .text {
	border: 1px solid transparent;
}

.indexDiv5 ul li .text p {
	font-size: 24px;
	border-bottom: 1px solid #ECECEC;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.indexDiv5 ul li .text span {
	color: #999;
	line-height: 1.85;
}

.indexDiv6 ul {
	padding: 60px 57px;
}

.indexDiv6 ul li {
	padding: 0 20px;
}

.indexDiv6 ul li video {
	width: 100%;
}

.indexDiv6 ul li:first-child {
	width: 558px;
}

.indexDiv6 ul li:last-child {
	width: 527px;
}

.indexDiv6 ul li a {
	display: block;
	overflow: hidden;
	border-bottom: 1px solid #ECF0F1;
}

.indexDiv6 ul li a p {
	font-size: 30px;
}

.indexDiv6 ul li a span {
	font-size: 18px;
}

.indexDiv6 ul li a i {
	display: block;
	margin: 10px 0;
}

.indexDiv6 ul li a:first-child {
	padding-bottom: 45px;
	margin-bottom: 45px;
}

.indexDiv6 ul li a:last-child {
	border: none;
}

.indexDiv7 .swiper-container {
	padding: 20px;
	box-sizing: border-box;
}

.indexDiv7 .swiper-slide {
	box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.14);
	background: #FFFFFF;
	transition: all 0.5s;
	width: 602px;
	height: 365px;
}

.indexDiv7 .swiper-slide-active,
.indexDiv7 .swiper-slide-duplicate-active {
	transform: scale(1);
	z-index: 9;
}
.indexDiv7 .more {
	border: 1px solid #333;
	color: #333;
	background: linear-gradient(90deg, #333, #333)no-repeat;
	background-size: 0 100%;
}

.indexDiv7 .more:hover {
	color: #fff;
	background-size: 100% 100%;
}


.orderDiv .content {
	box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.14);
	padding: 66px 54px;
	box-sizing: border-box;
}

.indexDiv7 .swiper-container {
	padding: 20px;
	box-sizing: border-box;
}

.indexDiv7 .swiper-slide {
	box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.14);
	background: #FFFFFF;
	transition: all 0.5s;
	width: 602px;
	/*height: 365px;*/
	padding: 40px 25px;
}

.indexDiv7 .swiper-slide-active,
.indexDiv7 .swiper-slide-duplicate-active {
	transform: scale(1);
	z-index: 9;
}

.orderDiv .content {
	box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.14);
	padding: 66px 54px;
	box-sizing: border-box;
}

.indexDiv7 .swiper_wrapper {
	padding-bottom: 60px;
}

.indexDiv7 .swiper-button-next,
.indexDiv7 .swiper-button-prev {
	width: 245px;
	height: 270px;
	margin-top: -175px;
	background-image: none;
}

.indexDiv7 .swiper-button-prev {
	left: 65px;
}

.indexDiv7 .swiper-button-next {
	right: 65px;
}

.indexDiv7 .swiper-pagination {
	width: 100%;
	text-align: center;
	bottom: 0;
}

.indexDiv7 .swiper-pagination-bullet {
	width: 11px;
	height: 3px;
	background: #CCCCCC;
	border-radius: 5px;
	opacity: 1;
	margin: 0 7px;
	transition: all 0.5s;
}

.indexDiv7 .swiper-pagination-bullet-active {
	width: 22px;
	height: 6px;
	background: #BA8D64;
}

.indexDiv7 .praiseDiv p {
	margin: 20px 0;
}

.indexDiv7 .praiseDiv h2 {
	color: #005599;
	font-size: 18px;
	margin-bottom: 10px;
}

.indexDiv7 .praiseDiv ul li {
	width: 33.3%;
	padding: 0 5px;
	box-sizing: border-box;
}

.orderDiv .content .upper {
	overflow: hidden;
	padding: 0 20px;
	border-bottom: 1px solid #2F3E5D;
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.orderDiv .content .upper li {
	width: 16.66666666%;
	float: left;
	text-align: center;
	font-size: 17px;
	color: #C7B696;
}

.orderDiv .content .upper li img {
	max-width: 114px;
	margin-bottom: 15px;
}

.orderDiv .content .formDiv ul {
	padding: 0 56px;
}

.orderDiv .content .formDiv li {
	padding: 0 10px;
}

.orderDiv .formDiv ul li p {
	border: 1px solid transparent;
	box-sizing: border-box;
	position: relative;
}
.orderDiv .formDiv ul li p span{
	position: absolute;
}
.orderDiv .formDiv ul li p.warning {
	border: 1px solid red;
}

.orderDiv .content .formDiv input {
	width: 390px;
	height: 59px;
	background: #ECF0F2;
	font-size: 18px;
	padding: 0 18px;
	line-height: 59px;
	border: none;
	box-sizing: border-box;
}

.orderDiv .content .formDiv button {
	width: 195px;
	height: 59px;
	background: #CCBC9F;
	color: #19294B;
	font-size: 24px;
	text-align: center;
	line-height: 59px;
	border: none;
}


/*内页*/

.ny_main {
	margin-top: 80px;
}

.ny_main .banner {
	position: relative;
}

.pageNum a {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	border-radius: 4px;
	padding: 0 11px;
	margin: 0 3px;
	background: #fff;
}

.pageNum a.on,
.pageNum a:hover {
	color: #fff;
	background: #B78F5E;
}

.crumbs {
	position: absolute;
	width: 100%;
	color: #FFFFFF;
	z-index: 2;
	top: 60px;
}

.crumbs span,
.crumbs a {
	opacity: 0.5;
	display: inline-block;
	position: relative;
}

.crumbs a {
	padding-left: 6px;
	margin-right: 30px;
}

.crumbs a::before {
	content: '';
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 50%;
	right: -18px;
	transform: translateY(-50%) rotate(45deg);
}


/***案例***/

/*.case .footer {
	padding-bottom: 128px;
}*/

.case .banner {
	height: 642px;
}

.case .banner>.wrap {
	overflow: hidden;
	height: 642px;
}

.case .banner .imgDiv {
	filter: drop-shadow(0 20px 20px #131e34);
	margin-top: 80px;
	max-width: 62%;
}

.case .banner .text {
	width: 38%;
	margin-top: 130px;
}

.case .banner .text h2 {
	font-size: 120px;
	position: relative;
	margin-bottom: 45px;
	padding-bottom: 45px;
	font-family: arial;
}

.case .banner .text h2::before {
	content: '';
	width: 70px;
	height: 1px;
	background: #FFFFFF;
	position: absolute;
	left: 0;
	bottom: 0;
}

.banner .planDiv {
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
}

.banner .planDiv .formDiv ul li input {
	width: 100%;
	padding-left: 0;
}

.banner .planDiv .formDiv ul li button {
	color: #fff;
	font-size: 24px;
	background: #B78F5E;
}

.selectDiv {
	border-bottom: 1px solid #eee;
	margin-bottom: 40px;
	padding-bottom: 20px;
}

.selectDiv li {
	padding: 11px 0;
}

.selectDiv li span {
	display: inline-block;
	position: relative;
	margin-right: 30px;
	padding-right: 15px;
}

.selectDiv li a {
	display: inline-block;
	line-height: 25px;
	padding: 0 15px;
	border-radius: 1000px;
}

.selectDiv li a:hover {
	font-weight: bold;
}

.selectDiv li a.on {
	background: #B78F5E;
	color: #fff;
	font-weight: normal;
}

.selectDiv li span::before {
	content: '';
	width: 1px;
	height: 14px;
	background: #CCCCCC;
	position: absolute;
	top: 50%;
	margin-top: -7px;
	right: 0;
}

.resultDiv p {
	font-size: 16px;
	line-height: 50px;
}

.resultDiv p span {
	color: #BD996F;
}

.resultDiv .searchDiv {
	width: 320px;
	height: 50px;
	background: #FFFFFF;
	border: 1px solid #ECECEC;
	border-radius: 25px;
	overflow: hidden;
	padding: 0 10px;
}

.resultDiv .searchDiv input {
	display: block;
	float: left;
	width: 220px;
	border: none;
	font-size: 16px;
	padding-left: 15px;
	line-height: 44px;
}

.resultDiv .searchDiv button {
	border: none;
	display: block;
	width: 50px;
	height: 50px;
	float: right;
	background: url(/images/sousuo.png)center center no-repeat;
	background-size: 16px;
}

.case .main {
	padding: 30px 0;
}

.caseDiv li {
	width: 400px;
	padding: 20px 10px;
}

.caseDiv li:nth-child(3n + 1) {
	padding-left: 0;
}

.caseDiv li:nth-child(3n) {
	padding-right: 0;
}

.caseDiv li a {
	display: block;
}

.caseDiv li .text {
	padding: 15px;
}

.caseDiv li a:hover {
	box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.14);
}


/***案例详情***/

.caseDetail .banner .img {
	height: 725px;
	position: relative;
}

.caseDetail .banner .img::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	/*background: linear-gradient( to bottom, rgba(39, 56, 89, 0.8), rgba(39, 56, 89, 0.2));*/
}

.caseDetail .banner .wrapper {
	position: absolute;
	width: 100%;
	height: calc(100% - 58px);
	left: 0;
	top: 0;
	z-index: 2;
}

.caseDetail .banner .wrap {
	position: relative;
	height: 100%;
}

.caseDetail .banner .swiper-button-next,
.caseDetail .banner .swiper-button-prev {
	width: 15px;
	height: 26px;
	margin-top: 0;
	background-image: url(/images/arrow4.png);
	background-size: 100%;
	opacity: 0.5;
}

.caseDetail .banner .swiper-button-next:hover,
.caseDetail .banner .swiper-button-prev:hover {
	opacity: 1;
}

.caseDetail .banner .swiper-button-prev,
.caseDetail .banner .swiper-container-rtl .swiper-button-next {
	left: 0;
}

.caseDetail .banner .swiper-button-next,
.caseDetail .banner .swiper-container-rtl .swiper-button-prev {
	right: 0;
	transform: rotate(180deg);
}

.caseDetail .banner .swiper-pagination-fraction {
	bottom: -58px;
	color: #FFFFFF;
	text-align: right;
	line-height: 58px;
	width: auto;
	right: 0;
	left: auto;
	width: 60px;
}

.caseDetail .banner .gallery-top {
	z-index: 2;
}

.caseDetail .banner .case_menu {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	height: 58px;
	line-height: 58px;
	z-index: 1;
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
}

.caseDetail .banner .case_menu .wrap {
	padding-right: 70px;
}

.caseDetail .banner .case_menu a {
	position: relative;
	margin-right: 50px;
	line-height: 58px;
	display: inline-block;
}

.caseDetail .banner .case_menu a::before {
	content: '';
	width: 0;
	height: 1px;
	background: #B09165;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.5s;
}

.caseDetail .banner .case_menu .swiper-slide-thumb-active a,
.caseDetail .banner .case_menu a:hover {
	color: #B09165;
}

.caseDetail .banner .case_menu .swiper-slide-thumb-active a::before,
.caseDetail .banner .case_menu a:hover::before {
	width: 100%;
}

.caseDetail .banner .case_menu a:last-child {
	margin-right: 0;
}

.caseDetail .main .leftDiv {
	width: 847px;
	padding: 38px;
}

.caseDetail .main .rightDiv {
	width: 376px;
}

.caseDetail .main .detailDiv1 {
	border-bottom: 1px solid #eee;
}

.caseDetail .main .detailDiv1 .upper h2 {
	font-size: 36px;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 20px;
	float: left;
}

.caseDetail .main .detailDiv1 .upper p {
	font-size: 16px;
	color: #999;
	background: url(/images/case-icon.png)left center no-repeat;
	padding-left: 25px;
	margin-top: 15px;
}

.caseDetail .main .detailDiv1 .upper h2::before {
	content: '';
	width: 30px;
	height: 2px;
	background: #B09165;
	position: absolute;
	left: 0;
	bottom: 0;
}

.caseDetail .main .detailDiv1 .below span {
	position: relative;
	color: #999;
	padding: 0 18px;
}

.caseDetail .main .detailDiv1 .below span::before {
	content: '';
	width: 1px;
	height: 15px;
	background: #BFBFBF;
	position: absolute;
	top: 50%;
	margin-top: -7px;
	right: 0;
}

.caseDetail .main .detailDiv1 .below span:last-child::before {
	height: 0;
}

.caseDetail .main .detailDiv1 .below span:first-child {
	padding-left: 0;
}

.caseDetail .main .detailDiv1 .below span:last-child {
	padding-right: 0;
}

.caseDetail .main .title1 {
	position: relative;
	font-size: 18px;
	padding: 12px;
}

.caseDetail .main .title1::before {
	content: '';
	width: 2px;
	height: 18px;
	background: #B09165;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -8px;
}

.border1 {
	border: 1px solid #eee;
}

.caseDetail .main .detailDiv .imgDiv {
	margin: 20px 0;
}

.caseDetail .main .slideBtn {
	display: inline-block;
	width: 219px;
	height: 50px;
	background: rgba(204, 188, 159, 0);
	border: 1px solid #333333;
	text-align: center;
	line-height: 50px;
	box-sizing: border-box;
}

.caseDetail .main .slideBtn span {
	position: relative;
	font-size: 18px;
	padding-right: 25px;
}

.caseDetail .main .slideBtn span::before {
	content: '';
	width: 9px;
	height: 9px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -6px;
	transform: rotate(135deg);
	transition: all 0.5s;
}

.caseDetail .main .slideBtn.open span::before {
	transform: rotate(-45deg);
	margin-top: -3px;
}

.caseDetail .main .rightDiv .boxDiv p {
	font-size: 16px;
	color: #999;
	padding: 15px 0;
}

.caseDetail .main .rightDiv .boxDiv p strong {
	font-size: 24px;
	color: #19294B;
	margin-right: 5px;
}

.caseDetail .main .rightDiv .boxDiv p span {
	color: #666;
}

.caseDetail .main .rightDiv .boxDiv a {
	display: block;
	color: #FFFFFF;
	width: 219px;
	height: 50px;
	line-height: 50px;
	font-size: 18px;
	text-align: center;
	margin: 20px auto;
}

.caseDetail .main .rightDiv .content ul li {
	margin-bottom: 20px;
}

.caseDetail .main .rightDiv .content ul li .text {
	padding: 15px 20px;
}

.recommend .upper {
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
	margin-bottom: 20px;
	position: relative;
}

.recommend .upper::before {
	content: '';
	width: 61px;
	height: 2px;
	background: #B09165;
	position: absolute;
	left: 0;
	bottom: -1px;
}

.recommend .upper a {
	font-size: 18px;
	display: block;
	float: right;
	margin-top: 15px;
}

.recommend .upper a:hover {
	color: #B09165;
	font-size: 19px;
}


/*设计师列表*/

.designer .banner .imgDiv {
	filter: none;
	margin-top: 61px;
	max-width: 62%;
}

.designerDiv li {
	padding: 17px 10px;
}

.designerDiv li:nth-child(4n+1) {
	padding-left: 0;
}

.designerDiv li:nth-child(4n) {
	padding-right: 0;
}

.designerDiv a .imgDiv {
	position: relative;
	background: #000;
	height: 368px;
}

.designerDiv a:hover {
	box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.14);
}

.designerDiv a .imgDiv .mask {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 24px;
	border: 2px solid #FFFFFF;
	padding: 7px 27px;
	opacity: 0;
}

.designerDiv a:hover .imgDiv img {
	opacity: 0.5;
}

.designerDiv a:hover .imgDiv .mask {
	opacity: 1;
}


/***作品***/

.designerDetail .banner .content {
	position: absolute;
	width: 100%;
	top: 110px;
	left: 0;
}

.designerDetail .banner .wrap {
	height: auto;
}

.designerDetail .banner .imgDiv {
	width: 390px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.designerDetail .banner .imgDiv img {
	height: 100%;
	display: block;
	width: 100%;
	object-fit: cover;
}

.designerDetail .banner .text {
	width: 850px;
	min-height: 530px;
	padding-left: 47px;
	padding-right: 40px;
}

.designerDetail .banner .text .upper {
	padding: 38px 0;
	border-bottom: 1px solid #eee;
	position: relative;
}

.designerDetail .banner .text h2 img {
	margin-bottom: 7px;
}

.designerDetail .banner .text .upper .leftDiv {
	width: calc(100% - 250px);
}

.designerDetail .banner .text .upper .rightDiv {
	position: absolute;
	width: 220px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	top: 50%;
	margin-top: -25px;
	right: 0;
}

.designerDetail .banner .text .below .labelDiv span {
	display: inline-block;
	min-width: 84px;
	height: 26px;
	background: #19294B;
	border-radius: 13px;
	line-height: 26px;
	padding: 0 10px;
	color: #fff;
	text-align: center;
	box-sizing: border-box;
	font-size: 16px;
	margin-right: 11px;
}

.designerDetail .banner .text .below ul li {
	overflow: hidden;
	padding: 10px 0;
}

.designerDetail .banner .text .below ul li span {
	float: left;
	color: #999;
	display: block;
	width: 85px;
}

.designerDetail .banner .text .below ul li p {
	float: left;
	width: calc(100% - 85px);
}

.designerDetail .desi_menu a {
	display: inline-block;
	line-height: 58px;
	margin-right: 52px;
	position: relative;
}

.designerDetail .desi_menu a::before {
	content: '';
	width: 0;
	height: 2px;
	background: #B09165;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all 0.5s;
}

.designerDetail .desi_menu a.on,
.designerDetail .desi_menu a:hover {
	font-weight: bold;
	color: #B09165;
}

.designerDetail .desi_menu a.on::before,
.designerDetail .desi_menu a:hover::before {
	width: 100%;
}


/*TA的抖音*/

.tiktokDiv li {
	width: 295px;
	height: 395px;
	padding: 25px 10px;
}

.tiktokDiv li:nth-child(4n+1) {
	padding-left: 0;
}

.tiktokDiv li:nth-child(4n) {
	padding-right: 0;
}

.tiktokDiv li .videoDiv {
	width: 100%;
	height: 100%;
}

.tiktokDiv li .videoDiv video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tiktokPop video {
	width: 100%;
}

.tiktokPop .videoDiv {
	padding: 10px;
}

.tiktokDiv a {
	display: block;
	position: relative;
	background: #000;
	overflow: hidden;
}

.tiktokDiv a .imgDiv img {
	display: block;
}

.tiktokDiv a:hover .imgDiv {
	opacity: 0.5;
}

.tiktokDiv a .playBtn {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 48px;
	height: 48px;
	background: url(/images/play.png)no-repeat;
	margin-left: -24px;
	margin-top: 0;
	opacity: 0;
}

.tiktokDiv a:hover .playBtn {
	margin-top: -24px;
	opacity: 1;
}

.tiktokDiv a .playTimes {
	position: absolute;
	background: url(/images/play2.png)center left no-repeat;
	background-size: 15px;
	left: 20px;
	bottom: 16px;
	padding-left: 20px;
}

.tiktokDiv a:hover .playTimes {
	bottom: -30px;
}


/*TA的好评*/

.praise_swiper {
	position: relative;
	padding-bottom: 60px;
	padding-top: 30px;
}

.praiseDiv .touxiang {
	width: 68px;
	height: 68px;
	border-radius: 50%;
}

.praiseDiv .text {
	width: calc(100% - 92px);
	line-height: 1.7;
}

.praiseDiv .text h2 {
	margin-top: 8px;
}

.praiseDiv .text h2 img {
	max-height: 16px;
	margin-left: 15px;
}

.praiseDiv .text ul {
	height: 132px;
	overflow: hidden;
}

.praiseDiv .text ul li {
	width: 201px;
	height: 132px;
	padding: 0 10px;
}

.praise_swiper .swiper-pagination {
	width: 100%;
	bottom: 0;
}

.praise_swiper .swiper-pagination-bullet {
	width: 22px;
	height: 3px;
	background: #CCCCCC;
	border-radius: 1px;
	opacity: 1;
	margin: 0 8px;
	transition: all 0.5s;
}

.praise_swiper .swiper-pagination-bullet-active {
	width: 44px;
	height: 6px;
	background: #BA8D64;
	border-radius: 3px;
}

.praise_swiper .swiper-button-next,
.praise_swiper .swiper-button-prev {
	top: 0;
	border: 1px solid #B78F5E;
	border-radius: 50%;
	width: 37px;
	height: 37px;
	margin-top: 0;
	background-size: 8px 16px;
	background: url(/images/arrow5.png)#F5F7F7 center center no-repeat;
	transition: all 0.5s;
}

.praise_swiper .swiper-button-next:hover,
.praise_swiper .swiper-button-prev:hover {
	background: url(/images/arrow6.png)#B78F5E center center no-repeat;
}

.praise_swiper .swiper-button-next,
.praise_swiper .swiper-container-rtl .swiper-button-prev {
	right: 0;
}

.praise_swiper .swiper-button-prev,
.praise_swiper .swiper-container-rtl .swiper-button-next {
	left: auto;
	right: 50px;
	transform: rotate(180deg);
}

.interview ul {
	padding-bottom: 40px;
	padding-left: 40px;
	padding-right: 115px;
	background: #fff;
}

.interview ul li {
	padding: 40px 0;
	border-bottom: 1px solid #eee;
}

.interview ul li:last-child {
	border: none;
}

.interview ul li .left {
	width: 50px;
	height: 50px;
	background: #BA8D64;
	text-align: center;
	line-height: 48px;
}

.interview ul li .right {
	line-height: 1.7;
	width: 1008px;
}

.interview ul li .right img {
	margin-top: 30px;
}


/*门店信息*/

#jswbox {
	width: 100%;
	margin: 0 auto;
	position: relative;
	padding: 40px 0 80px;
}

#jswbox ul {
	position: relative;
	height: 310px;
	overflow: hidden;
}

#jswbox li {
	position: absolute;
	width: 0;
	height: 0;
	z-index: 0;
	cursor: pointer;
	overflow: hidden;
}

#jswbox li img {
	width: 100%;
	height: 100%;
}

#jswbox .prev,
#jswbox .next {
	display: none;
}

video {
	width: 100%;
}

.aboutus .banner .img {
	height: 454px;
}

.aboutus .banner .content {
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}

.aboutus .banner .text p {
	font-size: 70px;
	position: relative;
	margin-bottom: 45px;
	padding-bottom: 44px;
	font-family: arial;
	margin-top: 20px;
}

.aboutus .banner .text p::before {
	content: '';
	width: 70px;
	height: 1px;
	background: #FFFFFF;
	position: absolute;
	left: 0;
	bottom: 0;
}

.line_height17 {
	line-height: 1.7;
}

.aboutus .banner .videoDiv {
	width: 500px;
}

.remind {
	position: relative;
	background: #B08367;
	display: inline-block;
	padding: 3px 10px;
	margin-left: 30px;
}

.remind::before {
	content: '';
	border-right: 15px solid #b08367;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	position: absolute;
	left: -15px;
	top: 0;
}

.abDiv3 .more {
	border: 1px solid #333;
	color: #333;
	background: linear-gradient(90deg, #333, #333)no-repeat;
	background-size: 0 100%;
}

.abDiv3 .more:hover {
	background-size: 100% 100%;
	color: #fff;
}

.stoDiv ul li {
	width: 304px;
	height: 293px;
	padding: 0 10px;
	margin-top: 34px;
}

.stoDiv ul li.maxLi {
	width: 590px;
}

.abDiv4 {
	position: relative;
	overflow: hidden;
}

.abDiv4 .imgDiv {
	position: absolute;
	right: 0;
	bottom: 0;
}

.abDiv4 .wrap {
	position: relative;
}

.abDiv4 .wrap::before {
	content: '';
	background: url(/images/ab3-img.png)no-repeat;
	width: 416px;
	height: 419px;
	position: absolute;
	right: -332px;
	bottom: 0;
	z-index: 2;
}

.abDiv4 .tips {
	color: #432E21;
	text-align: center;
	position: absolute;
	top: 0;
	right: 0;
	width: 92px;
	height: 72px;
	background: linear-gradient(90deg, #FFEFE5, #B08367);
	border-radius: 0px 0px 46px 46px;
	font-weight: bold;
	padding-top: 13px;
}

i.divi {
	display: block;
	width: 30px;
	height: 2px;
	background: #B09165;
	margin: 20px 0;
}

.abDiv4 ul {
	overflow: hidden;
	position: relative;
}

.abDiv4 ul li {
	float: left;
	width: 470px;
	height: 120px;
	background: linear-gradient(90deg, #FFEFE5, #B08367 60%, transparent 100%);
	border-radius: 60px 0px 0px 60px;
	padding: 20px;
	box-sizing: border-box;
}

.abDiv4 ul li h2 {
	float: left;
	width: 82px;
	height: 82px;
	border: 1px solid #1B2027;
	border-radius: 50%;
	font-size: 64px;
	text-align: center;
	line-height: 80px;
}

.abDiv4 ul li .text {
	margin-left: 20px;
	margin-top: 7px;
}

.abDiv4 ul li h3 {
	font-size: 30px;
}

.abDiv4 ul li h3 span {
	font-size: 36px;
}

.abDiv4 ul li p {
	font-size: 18px;
	margin-top: 5px;
}

.abDiv4 ul li:nth-child(2) {
	position: absolute;
	left: 31%;
}

.abDiv4 ul li:nth-child(3) {
	position: absolute;
	right: 0;
}

.abDiv4 .below {
	position: relative;
	color: #fff;
	font-size: 16px;
	padding: 20px 0;
}

.abDiv4 .below::before {
	content: '';
	width: 200vw;
	height: 100%;
	position: absolute;
	left: -100vw;
	bottom: 0;
	background: linear-gradient(to bottom, #44484e, #1b2027);
}

.abDiv4 .below p {
	position: relative;
}

.hd {
	height: 120px;
	overflow: hidden;
}

.hd .text {
	width: 420px;
	height: 120px;
	padding: 20px;
}

.hd .text h2 {
	width: 82px;
	height: 82px;
	background: #B08367;
	border-radius: 50%;
	border-radius: 50%;
	color: #fff;
	font-size: 48px;
	text-align: center;
	line-height: 82px;
	margin-right: 20px;
}

.hd .imgDiv {
	width: 820px;
}

.title4 {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.abDiv6 .swiper-slide {
	width: 396px;
	transition: all 0.5s;
}

.abDiv6 .swiper-slide-active {
	transform: scale(1.1);
	box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.15);
}


/*.abDiv6 .swiper-container::before,
.abDiv6 .swiper-container::after {
	content: '';
	width: 160px;
	height: 243px;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
	position: absolute;
	top:20px;
	left: 0;
	z-index: 1;
}*/

.abDiv6 .swiper-container {
	padding-top: 20px;
	padding-bottom: 80px;
	margin-top: 60px;
}

.abDiv6 .swiper-container::after {
	left: auto;
	right: 0;
	transform: rotate(180deg);
}

.abDiv7 .below p {
	font-size: 16px;
	width: 587px;
	float: right;
	margin-top: 85px;
	line-height: 1.8;
}

.abDiv8 .text {
	width: 595px;
	line-height: 1.8;
	min-height: 235px;
}

.abDiv8 .imgDiv {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	max-width: 565px;
}

.abDiv9 .imgDiv {
	width: 589px;
}

.abDiv9 .text {
	width: 650px;
	padding: 0 45px;
	font-size: 16px;
	line-height: 1.8;
	margin-top: 50px;
}

.abDiv9 .text ul {
	margin-top: 20px;
}

.abDiv9 .text ul li {
	padding: 5px 0;
}

.abDiv9 .text ul li span {
	display: inline-block;
	font-size: 22px;
	color: #fff;
	background: #B08367;
	border-radius: 0px 22px 0px 22px;
	padding: 0 22px;
}

.abDiv10 .hd .text {
	width: 380px;
}

.abDiv10 .hd .imgDiv {
	padding-top: 35px;
	width: 860px;
}

.abDiv10 .hd .imgDiv p {
	text-align: left;
	border-left: 1px solid rgba(255, 255, 255, 0.5);
	padding-left: 23px;
	line-height: 2;
}

.abDiv10 .upper .title4 {
	top: 17px;
}

.abDiv10 .upper .title4 p {
	display: inline-block;
	background: #1E232C;
	padding: 0 10px;
}

.abDiv10 .upper ul {
	border: 1px solid rgba(204, 204, 204, 0.15);
	padding: 45px 24px 35px;
	box-sizing: border-box;
}

.abDiv10 .upper ul li {
	float: left;
	padding: 0 10px;
}

.abDiv10 .upper ul li .text {
	width: 383px;
	height: 183px;
	border-radius: 10px;
	overflow: hidden;
	padding: 30px 35px;
}

.abDiv10 .upper ul li .text h2 {
	font-size: 36px;
	color: #1D222A;
	margin-bottom: 15px;
}

.abDiv10 .below {
	background: linear-gradient(90deg, #FFEFE5, #B78F5E);
	margin-top: 80px;
}

.abDiv10 .below .imgDiv {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 239px;
}

.abDiv10 .below p {
	color: #1E232C;
	padding: 25px 0;
	width: 900px;
	padding-right: 100px;
}


/***新闻内页***/

.newsDetail .banner .img {
	height: 420px;
}

.newsDetail .banner .text {
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
}

.newsDetail .banner p {
	position: relative;
	font-size: 64px;
	line-height: 1;
	padding: 28px 0;
	z-index: 1;
}

.newsDetail .banner p::before {
	content: '';
	width: 60px;
	height: 4px;
	background: #FFFFFF;
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -30px;
}

.newsDetail .banner .text span {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -20px;
	text-transform: uppercase;
	font-size: 87px;
	display: block;
	width: 100%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
	-webkit-background-clip: text;
	color: transparent;
	font-family: "arial, helvetica, sans-serif";
}


/*.newsDetail .banner .text img {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
}*/

.newsDetail .main .content {
	position: relative;
	padding-top: 46px;
	border-top: 1px solid #e5e5e5;
}

.newsDetail .main .content::before {
	content: '';
	width: 277px;
	height: 3px;
	background: #AD7F55;
	position: absolute;
	top: -2px;
	right: 0;
}

.newsDetail .main .content .leftDiv {
	width: 921px;
	box-shadow: 0px 0px 40px 0px rgba(4, 0, 0, 0.1);
	padding: 0 47px;
}

.newsDetail .main .content .leftDiv .upper {
	padding: 45px 0;
	border-bottom: 1px solid #eee;
}

.newsDetail .main .content .leftDiv .upper span {
	display: inline-block;
	margin: 0 20px;
}

.newsDetail .main .content .leftDiv p {
	font-size: 16px;
	text-indent: 2rem;
	padding: 10px 0;
}

.newsDetail .main .content .leftDiv .imgDiv {
	margin: 30px 0;
}

.newsDetail .main .content .rightDiv {
	width: 277px;
	box-shadow: 0px 0px 40px 0px rgba(4, 0, 0, 0.1);
	padding: 50px 37px;
}

.newsDetail .main .content .rightDiv .text {
	padding: 8px 10px;
	border-top: none;
}

.newsDetail .main .content .rightDiv ul {
	border-top: 1px solid #eee;
	margin-top: 20px;
}

.newsDetail .main .content .rightDiv ul li {
	margin-top: 35px;
}

.newsDetail .main .content .rightDiv ul li small {
	display: inline-block;
	font-size: 14px;
	border: 1px solid #AD7F55;
	color: #AD7F55;
	line-height: 18px;
	padding: 0 3px;
}

.pageFooter .end {
	position: relative;
	color: #868686;
	font-family: roman;
	font-size: 24px;
	padding: 15px 0;
}

.pageFooter .end::before {
	content: '';
	width: 100%;
	height: 1px;
	background: #7D7D7D;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: 2px;
}

.pageFooter .end span {
	background: #fff;
	position: relative;
	display: inline-block;
	padding: 0 10px;
}

.title5 span {
	font-size: 50px;
	color: #1E3C72;
	opacity: 0.2;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: block;
	font-family: arial;
}

.split {
	font-size: 18px;
	color: #1E3C72;
}

.split span {
	display: block;
	height: 1px;
	background: #7D7D7D;
	margin: 10px 0;
}


/***三大保障***/

.ny_main .newsDetail .banner .img {
	height: 460px;
}

.assure_menu {
	width: 100%;
	position: relative;
	height: 70px;
	z-index: 1;
	line-height: 40px;
}

.assure_menu ul {
	overflow: hidden;
	display: flex;
	justify-content: center;
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #eee;
	text-align: center;
	font-size: 16px;
}

.assure_menu ul li {
	float: left;
}

.assure_menu a {
	padding: 0 60px;
	display: block;
	position: relative;
}

.assure_menu a::after,
.indexDiv1 .tab a::after {
	content: "";
	width: 0;
	height: 2px;
	background: #0e6eb8;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: 0.5s;
}

.assure_menu a.top_dh_in::after {
	width: 100%;
	transition: 0.5s;
}

.nav-height {
	height: 150px;
}

.nav-wrap {
	width: 100%;
	position: absolute;
	box-shadow: 0px 10px 20px 0px rgba(134, 134, 134, 0.1);
}

.nav-wrap.navFix {
	position: fixed;
	top: 80px;
	z-index: 9;
}

.nav-wrap ul li {
	width: 324px;
	display: inline-block;
	box-sizing: border-box;
	padding: 0 22px;
	position: relative;
}

.nav-wrap ul li::after {
	content: '';
	width: 1px;
	height: 112px;
	background: #000000;
	opacity: 0.1;
	position: absolute;
	left: 0;
	top: 13px;
}

.nav-wrap ul li:first-child::after {
	opacity: 0;
}

.nav-height a {
	display: block;
	text-align: left;
	height: 150px;
	padding: 13px 0;
	box-sizing: border-box;
	position: relative;
	letter-spacing: 1px;
}

.nav-height a::before {
	content: '';
	width: 0;
	height: 3px;
	background: #B78F5E;
	position: absolute;
	bottom: 0;
	left: 50%;
	transition: all 0.5s;
}

.nav-height a:hover::before,
.nav-height a.active::before {
	width: 100%;
	margin-left: -140px;
}

.nav-wrap ul li .text {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	padding: 23px 0;
}

.nav-wrap ul li .text img {
	max-width: 66px;
	margin-right: 20px;
}

.linear1 {
	background: url(/images/linear1.png)top left repeat-x;
}

.linear2 {
	background: url(/images/linear2.png)bottom left repeat-x;
}

.assureDiv1 .upper h2 {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 45px;
}

.assureDiv1 .upper h3 span {
	position: relative;
	display: inline-block;
	padding: 50px 0 20px;
	color: #1e3c72;
	font-size: 24px;
}

.assureDiv1 .upper h3 span::before,
.assureDiv1 .upper h3 span::after {
	content: '';
	width: 100%;
	background: #1e3c72;
	position: absolute;
	left: 0;
}

.assureDiv1 .upper h3 span::before {
	height: 3px;
	bottom: 5px;
}

.assureDiv1 .upper h3 span::after {
	height: 1px;
	bottom: 0;
}

.assureDiv1 .upper p {
	font-size: 16px;
	line-height: 36px;
}

p.p1 {
	font-size: 16px;
	line-height: 36px;
}

.assureDiv p {
	padding: 40px 0;
	line-height: 36px;
}

.assureDiv1 ul li {
	width: 33.3%;
	text-align: center;
	position: relative;
	color: #fff;
	float: left;
}

.assureDiv1 ul li p {
	content: '';
	max-width: 200%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 17px;
	line-height: 1.7;
}

.assureDiv1 ul li span {
	content: '';
	width: 35px;
	height: 35px;
	background: #1E3C72;
	border-radius: 50%;
	text-align: center;
	line-height: 35px;
	position: absolute;
	left: 50%;
	transform: translateX( -50%);
	font-size: 18px;
	top: -10px;
}

.title6 {
	padding-top: 50px;
	margin-top: -20px;
}

.title6::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 50px;
	background: #fff;
	top: 0;
	left: 0;
}

.title6 p {
	position: relative;
	z-index: 1;
	font-size: 30px;
	color: #19294B;
	line-height: 1;
	padding: 0;
	padding-bottom: 15px;
	margin-bottom: 10px;
}

.title6 p::before {
	content: '';
	background-color: #000;
	position: absolute;
	width: 190px;
	height: 1px;
	left: 50%;
	margin-left: -95px;
	bottom: 0;
}

.title6 h2 {
	font-size: 83px;
	text-transform: uppercase;
	background: linear-gradient( rgba(183, 143, 94, 0.3), transparent 90%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: arial;
	position: absolute;
	top: 20px;
	width: 100%;
}

.idDiv {
	padding-top: 100px;
	margin-top: -100px;
}

.assureDiv5 .imgDiv .fl,
.assureDiv5 .imgDiv .fr {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.assureDiv h6 {
	padding-top: 60px;
}

.assureDiv h6 span {
	font-size: 20px;
	position: relative;
	line-height: 1.6;
	display: inline-block;
	padding: 0 13px 5px;
}

.assureDiv h6 span::before,
.assureDiv h6 span::after {
	content: "";
	position: absolute;
	width: 14px;
	height: 10px;
	border-top: 1px solid #000;
	border-left: 1px solid #000;
}

.assureDiv h6 span::before {
	left: 0;
	top: 0;
}

.assureDiv h6 span::after {
	right: 0;
	bottom: 0;
	transform: rotate(180deg);
}


/*三大保障*/

.title7 {
	padding-top: 20px;
	margin-top: -20px;
}

.title7 p {
	font-size: 51px;
	color: #1E3C72;
}

.title6 h2 {
	font-size: 71px;
	font-weight: normal;
	color: #1E3C72;
	opacity: 0.1;
	background: none;
	-webkit-text-fill-color: inherit;
}

.title7 p::before {
	content: '';
	background-color: transparent;
	width: 30px;
	height: 30px;
	border-bottom: 3px solid #B78F5E;
	border-left: 3px solid #B78F5E;
	left: 50%;
	margin-left: auto;
	bottom: -13px;
	transform: translateX(-50%) skew(10deg, -10deg) rotate(-35deg);
}

.box-shadow1 {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.advan1 .split span {
	width: 400px;
	margin: 10px auto;
}

.color1E3C72 {
	color: #1E3C72;
}


/*优势2*/

.title8 {
	position: relative;
	height: 50px;
}

.title8 div {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.title8 span {
	border: 1px solid #1e3c72;
	display: block;
}

.title8 .fl {
	color: #1e3c72;
	padding: 8px 30px;
}

.title8 .fr {
	color: #FFFFFF;
	background: #1e3c72;
	padding: 8px 50px;
}

.advan2Div2 .below {
	padding: 37px 40px;
	padding-left: 50px;
}

.advan2Div2 .below .text {
	width: 60%;
}

.advan2Div2 .below .text span {
	color: #fe0000;
	font-size: 24px;
}

.advan2Div2 .below .text p {
	text-align: left;
	padding: 15px 0;
}

.advan2Div2 .below .imgDiv {
	width: 39%;
}

.advan2Div3 .wrap {
	padding-bottom: 400px;
	margin-bottom: 220px;
}

.advan2Div3 .below {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: -210px;
}

.advan2Div4 ul li {
	width: 33.3%;
	float: left;
	padding: 0 13px;
	box-sizing: border-box;
}


/*优势3*/

.advanDiv1 .upper span {
	display: block;
	height: 1px;
	background: #000000;
	opacity: 0.1;
	margin: 45px 0;
}

.advanDiv1 h3::before,
.advanDiv1 h3::after {
	content: '';
	width: 22px;
	height: 22px;
	border: 3px solid #1E3C72;
	border-top: none;
	border-left: none;
	transform: rotate(45deg) translateX(-50%);
	position: absolute;
	left: 50%;
}

.advanDiv1 h3::before {
	bottom: 20px;
}

.advanDiv1 h3::after {
	border-width: 1px;
	bottom: 10px;
}

.advanDiv h4 {
	display: inline-block;
}

.advanDiv h4::before {
	content: '';
	width: 107px;
	height: 71px;
	background: url(/images/bz3-icon.png);
	position: absolute;
}

.advanDiv2 h4::before {
	left: -140px;
	top: -75px;
}

.advanDiv3 h4::before {
	right: -140px;
	top: -75px;
	transform: rotate(180deg);
}

.advanDiv4 h4::before {
	left: 50%;
	top: -32%;
	transform: translateX(-50%) rotate(180deg);
}

.advanDiv4 ul li:first-child {
	width: 635px;
	margin-right: 23px;
}

.advanDiv4 ul li:last-child {
	width: 582px;
}

.advanDiv5 h5 {
	display: inline-block;
}

.advanDiv5 h5::before {
	content: '';
	width: 110%;
	height: 25px;
	background: linear-gradient(transparent, #1E3C72);
	opacity: 0.3;
	position: absolute;
	left: -5%;
	bottom: 45px;
	color: transparent
}

.advanDiv5 li {
	position: relative;
	width: 400px;
	padding: 0 10px;
}

.advanDiv5 li p {
	position: absolute;
	width: 100%;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 18px;
	padding: 17px;
}
.sjs ul{
	width:calc(100% + 24px);
}

.sjs ul li{
	margin-bottom:20px;
	border:1px solid #eee;
	width: calc(100%/2 - 20px);
	margin-right:20px;
	float:left;
}
	.sjs ul li{
		background:#fff;
	}

	.sjs ul li .fl {
		float: left;
		width: 275px;
	}
	.sjs ul li .fr {
		padding:15px 30px;
		float: right;
		width:335px;
		
	}
	.sjs ul li .fr h1{
		font-size:24px;
		font-weight:bold;
		position:relative;
		line-height:50px;
		margin-bottom:20px;
	}
		.sjs ul li .fr h1:after {
			position: absolute;
			content: "";
			width: 60px;
			height: 2px;
			background: #b78f5e;
			bottom:0;
			left:0;
		}
		.sjs ul li .fr h1 span {
			float: right;
			font-size: 14px;
			color: #666;
			padding-left: 20px;
			background: url(/images/case-icon.png) no-repeat center left;
		}

	.sjs ul li .fr div{
		font-size:14px;
		color:#000;
	}
		.sjs ul li .fr div span{
			color:#999;
		}
		.sjs ul li .fr .p1 {
			padding-left: 20px;
			background: url(/images/s5.jpg) no-repeat center left;
			margin-bottom: 20px;
		}
		.sjs ul li .fr .p2 {
			padding-left: 20px;
			background: url(/images/s7.jpg) no-repeat left 3px;
			margin-bottom: 20px;
		}
		.sjs ul li .fr .p3 {
			padding-left: 20px;
			background: url(/images/s9.jpg) no-repeat center left;
			margin-bottom: 27px;
		}
		.sjs ul li .fr .p4 {
			margin-bottom: 40px;
		}
		.sjs ul li .fr .p4 strong {
			padding: 7px 30px;
			background: #b78f5e;
			color: #fff;
			font-size: 16px;
			text-align: center;
		}
			.sjs ul li .fr .p4 span {
				color: #666;
			}
		.sjs img{
			display:block;
		}
		.sjs ul li .fr .p5 .img {
			float: left;
			position: relative;
			margin-right: 10px;
			width: 126px;
		}
		.sjs ul li .fr .p5 .img p{
			position:absolute;
			line-height:2;
			font-size:14px;
			background:rgb(0 0 0 / 0.50);
			color:#fff;
			bottom:0;
			width:100%;
			text-align:center;
		}
.sjs .amountBtn:hover,.sjs .fr span:hover{
	cursor: pointer;
}

.sjs ul li:hover {
	background: #b78f5e;
}

	.sjs ul li:hover .fr h1 {
		color: #fff;
	}

		.sjs ul li:hover .fr h1 span {
			color: #fff;
			background: url(/images/s2.jpg) no-repeat center left;
		}

		.sjs ul li:hover .fr h1:after {
			background: #fff;
		}

	.sjs ul li:hover .fr div {
		color: #fff;
	}

		.sjs ul li:hover .fr div span {
			color: #fff;
		}

	.sjs ul li:hover .fr .p1 {
		background: url(/images/s4.jpg) no-repeat center left;
	}

	.sjs ul li:hover .fr .p2 {
		background-image: url(/images/s6.jpg);
	}

	.sjs ul li:hover .fr .p3 {
		background: url(/images/s8.jpg) no-repeat center left;
	}

	.sjs ul li:hover .fr .p4 strong {
		background: #fff;
		color: #b78f5e;
	}

	.sjs ul li:hover .fr .p4 span {
		color: #fff;
	}<!--0.00023603439331055-->