/**
 * 轮播图
 */
.banner {
  width: 100%;
  height: 727px;
  position: relative;
}
.banner .swiper-container {
  width: 100%;
  height: 100%;
}
.banner .swiper-slide img {
  width: 100%;
  height: auto;
  min-height: 100%;
  transition: 1s linear 2s;
  transform: scale(1.1, 1.1);
  object-fit: cover;
}
.banner .swiper-slide-active img,
.banner .swiper-slide-duplicate-active img {
  transition: 6s linear;
  transform: scale(1, 1);
}
.banner .banner-form {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.banner .form_divs {
  display: flex;
  width: 950px;
  justify-content: space-between;
}
.banner .form_divs input {
  width: 229px;
  height: 40px;
  background-color: #ffffff;
  padding: 0px 5px;
  outline: none;
  border: none;
  margin-right: 10px;
}
.banner .form_divs button {
  width: 172px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  background-color: #b30b16;
  outline: none;
  border: none;
  cursor: pointer;
}
.banner .appointment-info {
  display: flex;
  width: 950px;
  height: 40px;
  line-height: 40px;
  color: #ffffff;
  align-items: center;
  justify-content: space-between;
}

/**
 * 优势
 */
.advantage {
  display: flex;
  padding: 0 100px;
  text-align: center;
}
.advantage dl {
  width: 20%;
  padding: 40px 0px;
}
.advantage dl dt {
  font-size: 32px;
  color: #333333;
}
.advantage dl dd {
  font-size: 16px;
  color: #666666;
  margin-top: 10px;
}
.advantage dl span {
  font-size: 18px;
  color: #666666;
}

/**
 * 报价表单
 */
.offer-form {
  display: flex;
}
.offer-form .form_divs {
  flex: 1;
  background-color: #f3f4f6;
}
.offer-form .price-title {
  font-size: 26px;
  color: #000000;
  text-align: center;
  margin-top: 50px;
}
.offer-form .price-change {
  font-size: 26px;
  color: #b30b16;
  text-align: center;
  margin-top: 10px;
}
.offer-form .price-change-number {
  display: inline-block;
  width: 180px;
  font-size: 46px;
  color: #b30b16;
  font-weight: bold;
}
.offer-form .input-item {
  position: relative;
  margin: 16px 45px;
}
.offer-form .input-item input {
  width: 269px;
  height: 47px;
  background-color: #ffffff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  border: none;
  outline: none;
  padding-left: 50px;
}
.offer-form .input-icon {
  position: absolute;
  left: 18px;
  top: 11px;
}
.offer-form .input-button {
  display: block;
  width: 269px;
  height: 47px;
  line-height: 47px;
  color: #ffffff;
  text-align: center;
  background-color: #333;
  margin: 0 auto;
  border: none;
  outline: none;
  border-radius: 23px;
  cursor: pointer;
}
.offer-form .form_divs p {
  font-size: 12px;
  color: #999999;
  opacity: 0.8;
  text-align: center;
  margin-top: 20px;
}

.module-title {
  font-size: 50px;
  line-height: 52px;
  color: #222222;
  text-align: center;
}
.module-title span {
  color: #b30b16;
}
.module-describe {
  font-size: 18px;
  line-height: 52px;
  color: #666666;
  text-align: center;
  font-weight: normal;
  margin-bottom: 20px;
}

/**
 * 案例
 */
.cases {
  background-color: #f8f8f8;
  padding: 60px 0px;
}
.cases .cases-tabs {
  display: flex;
  height: 60px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
}
.cases .cases-tabs li {
  font-size: 20px;
  color: #333333;
  margin: 0 30px;
  cursor: pointer;
  position: relative;
}
.cases .cases-tabs li.active {
  font-size: 20px;
  color: #b30b16;
}
.cases .cases-tabs li::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ce2222;
  position: absolute;
  bottom: -8px;
  left: 0px;
  display: none;
}
.cases .cases-tabs li.active::after {
  display: block;
}
.cases .cases-list {
  overflow: hidden;
}
.cases .cases-list li {
  position: relative;
  width: 330px;
  height: 250px;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  overflow: hidden;
}
.cases .cases-list li:nth-child(1) {
  width: 700px;
  height: 520px;
}
.cases .cases-list li:nth-child(3),
.cases .cases-list li:nth-child(5),
.cases .cases-list li:nth-child(9) {
  margin-right: 0px;
}
.cases .cases-list li:nth-child(7) {
  margin-right: 40px;
}
.cases .cases-list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease-in-out;
}
.cases .cases-list img:hover {
  transform: scale(1.2);
}
.cases .cases-info {
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 0px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
}
.cases .cases-info .cases-title {
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cases .cases-info .cases-describe {
  font-size: 14px;
}
.cases .cases-button {
  display: block;
  width: 232px;
  height: 65px;
  line-height: 65px;
  background-color: #ffffff;
  border-radius: 30px;
  border: solid 1px #333333;
  font-size: 20px;
  text-align: center;
  color: #000000;
  margin: 40px auto 0px;
}

/**
 * 设计师
 */
.designers {
  padding: 60px 0px;
  background: #ffffff;
}
.designers .designers-list {
  overflow: hidden;
}
.designers .designers-list li {
  position: relative;
  width: 230px;
  height: 267px;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.designers .designers-list li:nth-child(1) {
  width: 920px;
  height: 544px;
}
.designers .designers-list li:nth-child(3),
.designers .designers-list li:nth-child(5) {
  margin-right: 0px;
}
.designers .designers-list li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.designers .designers-info {
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 0px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
}
.designers .designers-info .designers-title {
  font-size: 20px;
}
.designers .designers-info .designers-describe {
  font-size: 14px;
}
.designers .designers-list.designers-list2 {
  overflow: hidden;
}
.designers .designers-list.designers-list2 li {
  width: 226px !important;
  height: 267px !important;
  margin-right: 8px !important;
}
.designers .designers-list.designers-list2 li:nth-child(6n) {
  margin-right: 0px !important;
}

/**
 * 一站式
 */
.introduce {
  padding: 60px 0px;
  background-color: #f5f5f5;
}
.introduce .introduce-inner {
  display: flex;
}
.introduce .introduce-navlist {
  width: 286px;
  padding: 0px 18px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.introduce .introduce-navlist li {
  width: 100%;
  height: 90px;
  line-height: 90px;
  border-bottom: 1px solid #ccc;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
.introduce .introduce-navlist li:nth-last-child(1) {
  border-bottom: none;
}
.introduce .introduce-navlist li::before {
  content: url("../image/index/introduce-icon.png");
  position: absolute;
  right: 10px;
  top: 0px;
  display: none;
}
.introduce .introduce-navlist li.active {
  color: #b30b16;
}
.introduce .introduce-navlist li.active::before {
  display: block;
}
.introduce .introduce-swiper {
  flex: 1;
  height: 450px;
}
.introduce .introduce-swiper img {
  display: block;
  height: 100%;
  width: 100%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

/**
 * 荣誉资质
 */
.honor {
  background: #ffffff;
}
.honor img {
  width: 100%;
  display: block;
}

/**
 * 分公司
 */
.branch {
  padding: 60px 0px;
  background: #ffffff;
}
.branch .branch-inner {
  display: flex;
}
.branch .branch-video {
  width: 760px;
}
.branch .branch-form {
  flex: 1;
  padding: 0 45px;
  box-shadow: 0px 0px 9px 0px rgba(24, 24, 24, 0.2);
}
.branch .branch-form-title {
  font-size: 30px;
  color: #000000;
  margin-top: 20px;
}
.branch .branch-form-title span {
  color: #bd282e;
}
.branch .branch-form-title2 {
  color: #666666;
  font-size: 20px;
  line-height: 60px;
  font-weight: normal;
}
.branch .branch-form-title2 span {
  color: #bd282e;
}
.branch .branch-form-location {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #333333;
  padding: 20px 0px;
  border-bottom: 1px solid #9c9c9c;
}
.branch .branch-form-location li {
  margin-right: 10px;
  line-height: 30px;
}
.branch .branch-form-location img {
  margin-right: 10px;
  vertical-align: middle;
}
.branch .branch-form-location span {
  color: #333333;
  opacity: 0.6;
}
.branch .form_divs {
  display: flex;
  flex-wrap: wrap;
}
.branch .form_divs input {
  width: 100%;
  background-color: #f5f6f7;
  border-radius: 5px;
  height: 38px;
  padding: 0 10px;
  margin-bottom: 18px;
  outline: none;
  border: none;
}
.branch .form_divs input:nth-child(1) {
  width: 45%;
}
.branch .form_divs input:nth-child(2) {
  width: 45%;
  margin-left: 10%;
}
.branch .form_divs button {
  width: 100%;
  height: 38px;
  line-height: 38px;
  background-color: #ce0e2d;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  outline: none;
  border: none;
  cursor: pointer;
}

/**
 * 公司动态
 */
.dynamic {
  padding: 60px 0px;
  background: #f5f5f5;
}
.dynamic .dynamic-inner {
  display: flex;
}
.dynamic .dynamic-swiper {
  width: 758px;
  height: 510px;
}
.dynamic .dynamic-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dynamic .dynamic-list {
  flex: 1;
  margin-left: 50px;
  height: 510px;
  overflow-y: auto;
}
.dynamic .dynamic-list li {
  border-bottom: 1px solid #cccccc;
}
.dynamic .dynamic-list-title {
  display: block;
  font-size: 22px;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 50px;
  font-weight: bold;
}
.dynamic .dynamic-list-title:hover {
  color: #ce0e2d;
}
.dynamic .dynamic-list-desc {
  font-size: 15px;
  color: #666666;
  height: 40px;
  overflow: hidden;
}
.dynamic .dynamic-list-button {
  margin: 20px 0px;
  display: block;
}

/**
 * 服务流程
 */
.process {
  padding: 60px 0px;
  background-image: url(../image/index/process-bg.jpg);
  background-size: cover;
}
.process .module-title {
  color: #ffffff;
}
.process .process-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.process .process-inner dl {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin: 0 10px;
  text-align: center;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.process .process-inner dt {
  margin-bottom: 10px;
}

/**
 * 侧栏导航
 */
.slidenav {
  position: fixed;
  top: 15%;
  width: 100px;
  right: 12px;
  background-color: #ffffff;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  z-index: 99;
  overflow: hidden;
}
.slidenav dl {
  color: #000000;
  font-size: 14px;
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
  background: #ffffff;
  cursor: pointer;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
.slidenav dl:nth-last-child(1) {
  border-bottom: 0px solid #ececec;
}
.slidenav dt {
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
}
.slidenav dd {
  margin-top: 5px;
  text-align: center;
  color: #000000;
}
.slidenav .slidenav-love dt {
  background-image: url(../image/index/slidenav-love.png);
}
.slidenav .slidenav-free dt {
  background-image: url(../image/index/slidenav-free.png);
  background-position-x: 40px;
}
.slidenav .slidenav-day dt {
  background-image: url(../image/index/slidenav-day.png);
}
.slidenav .slidenav-tel dt {
  background-image: url(../image/index/slidenav-tel.png);
}
.slidenav .slidenav-top dt {
  background-image: url(../image/index/slidenav-top.png);
}
.slidenav dl:hover {
  color: #ffffff;
  background: #b30b16;
}
.slidenav dl:hover dd {
  color: #ffffff;
}
.slidenav .slidenav-love:hover dt {
  background-image: url(../image/index/slidenav-love-active.png);
}
.slidenav .slidenav-free:hover dt {
  background-image: url(../image/index/slidenav-free-active.png);
}
.slidenav .slidenav-day:hover dt {
  background-image: url(../image/index/slidenav-day-active.png);
}
.slidenav .slidenav-tel:hover dt {
  background-image: url(../image/index/slidenav-tel-active.png);
}
.slidenav .slidenav-top:hover dt {
  background-image: url(../image/index/slidenav-top-active.png);
}

/**
 * 报名弹窗
 */
.modal-form {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  display: none;
}
.modal-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.modal-form .modal-form-inner {
  display: flex;
  width: 840px;
  position: relative;
}
.modal-form .modal-form-input {
  flex: 1;
  background-color: #f3f4f6;
}
.modal-form .price-title {
  font-size: 26px;
  color: #000000;
  text-align: center;
  margin-top: 30px;
}
.modal-form .price-change {
  font-size: 26px;
  color: #b30b16;
  text-align: center;
  margin-top: 10px;
}
.modal-form .price-change-number {
  display: inline-block;
  width: 180px;
  font-size: 46px;
  color: #b30b16;
  font-weight: bold;
}
.modal-form .input-item {
  position: relative;
  margin: 16px 77px;
}
.modal-form .input-item input {
  width: 269px;
  height: 47px;
  background-color: #ffffff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  border: none;
  outline: none;
  padding-left: 50px;
}
.modal-form .input-icon {
  position: absolute;
  left: 18px;
  top: 11px;
}
.modal-form .input-button {
  display: block;
  width: 269px;
  height: 47px;
  line-height: 47px;
  color: #ffffff;
  text-align: center;
  background-color: #333;
  margin: 0 auto;
  border: none;
  outline: none;
  border-radius: 23px;
  cursor: pointer;
}
.modal-form .modal-form-input p {
  font-size: 12px;
  color: #999999;
  opacity: 0.8;
  text-align: center;
  margin-top: 20px;
}
.modal-form .model-close {
  cursor: pointer;
  position: absolute;
  right: -30px;
  top: -30px;
}
