/* 超大宽屏 */
.contact_box {
  padding: 60px 0 40px;
  background-color: #fffdf6;
}
.contact_box .contact_con {
  width: 1400px;
  margin: 0 auto;
}
.contact_box .contact_con img {
  width: 100%;
}
.contact_box .contact_con .contact_title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
.contact_box .contact_con .contact_title span {
  position: relative;
}
.contact_box .contact_con .contact_title span::after {
  content: "";
  border-bottom: 6px solid #d2a532;
  width: 56px;
  position: absolute;
  left: 50%;
  margin-left: -28px;
  bottom: -20px;
}

.contact_box .contact_con .contact_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 54px;
}
.contact_box .contact_con .contact_list .contact_item {
  width: 49%;
  background-color: #fff;
  padding-top: 5px;
  box-shadow: 1px 2px 3px rgba(169, 169, 169, 0.3);
  margin-bottom: 30px;
}
.contact_box .contact_con .contact_list .contact_item .top {
  width: 130px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  background-color: #d2a532;
  font-weight: bold;
  font-size: 16px;
  border-bottom-right-radius: 8px;
}
.contact_box .contact_con .contact_list .contact_item .center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 16px 24px;
  font-size: 16px;
  color: #333;
}
.contact_box .contact_con .contact_list .contact_item .center .center_l span {
  width: 50%;
  color: #999;
  margin-right: 12px;
  line-height: 26px;
}
.contact_box .contact_con .contact_list .contact_item .center .center_r {
  width: 42%;
  overflow: hidden;
}
.contact_box .contact_con .contact_list .contact_item .center .center_r:hover img { transform: scale(1.05); }
.contact_box .contact_con .contact_list .contact_item .center .center_r img {
  width: 100%;transition: all 0.6s;
}
.contact_box .contact_con .contact_list .contact_item .footer {
  margin-right: 24px;
  border-top: 1px solid #f9f9f9;
  font-size: 16px;
}
.contact_box .contact_con .contact_list .contact_item .footer .txt {
  padding-left: 24px;
  color: #b2b2b2;
  line-height: 42px;
  height: 42px;
}
.contact_box .contact_con .contact_list .contact_item .footer .txt span {
  margin-right: 8px;
}

/* 宽屏设备 */
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact_box .contact_con {
    width: 96%;
  }
}

/* 中等屏幕 */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .contact_box .contact_con {
    width: 96%;
  }
  .contact_box .contact_con .contact_list {
    display: block;
  }
  .contact_box .contact_con .contact_list .contact_item {
    width: 100%;
  }
}

/* ipad */
@media screen and (max-width: 991px) {
  .contact_box .contact_con {
    width: 96%;
  }
  .contact_box .contact_con .contact_list {
    display: block;
  }
  .contact_box .contact_con .contact_list .contact_item {
    width: 100%;
  }
}

/* 手机端 */
@media screen and (max-width: 767px) {
  .contact_box {
    padding: 30px 0px 10px 0px;
  }
  .contact_box .contact_con .contact_title {
    font-size: 20px;
  }
  .contact_box .contact_con .contact_list .contact_item .center {
    display: block;
  }
  .contact_box .contact_con .contact_list .contact_item .center .center_l {
    width: 100%;
  }
  .contact_box .contact_con .contact_list .contact_item .center .center_r {
    width: 100%; margin-top: 10px;
  }
  .contact_box .contact_con .contact_list .contact_item .footer .txt {
    height: auto;
    padding: 10px 0 10px 24px;
    line-height: 24px;
  }
}
