/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.min.css";

/* 核心样式 */
@import "../css/core/bootstrap.min.css";

/* 公用样式 */
@import "../css/public.css";

.img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.img::before {
  content: "";
  display: block;
}
.container-fluid {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.title>h1 {
  float: left;
  padding: 0 10px;
  line-height: 38px;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  position: relative;
}
.title>h1::before {
  content: "";
  width: 34px;
  height: 3px;
  float: left;
  background-color: #ff0000;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.title>h1::after {
  content: "";
  width: 34px;
  height: 3px;
  float: left;
  background-color: #ff0000;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.title>div {
  width: 100%;
  overflow: hidden;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  color: #bebebe;
  text-transform: uppercase;
}
.title-white>h1 {
  color: #fff;
}
.title-white>h1::before,
.title-white>h1::after {
  background-color: #fff;
}
.title-white>div {
  color: #fff;
}

.more {
  display: flex;
  justify-content: center;
}
.more>a {
  width: 164px;
  float: left;
  height: 44px;
  font-size: 14px;
  color: #dedede;
  border-radius: 22px;
  background-color: #282828;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.more>a:hover {
  background-color: #ff0000;
  color: #fff;
}

.prev-button,
.next-button {
  width: 54px;
  height: 54px;
  float: left;
  border-radius: 50%;
  background-color: #dedede;
  position: absolute;
  left: -72px;
  top: 50%;
  transform: translateY(-50%);
  font-family: SimSun;
  font-size: 28px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  z-index: 2;
}
.next-button {
  left: initial;
  right: -72px;
}
.prev-button::before {
  content: "<";
}
.next-button::before {
  content: ">";
}
.prev-button.swiper-button-disabled,
.next-button.swiper-button-disabled,
.prev-button.swiper-button-disabled:hover,
.next-button.swiper-button-disabled:hover {
  background-color: #dedede;
  cursor: default;
}
.prev-button:hover,
.next-button:hover {
  background-color: #004181;
}
@media (max-width: 1240px) {
  .prev-button,
  .next-button {
    left: 0;
  }
  .next-button {
    left: initial;
    right: 0;
  }
}
@media (max-width: 767px) {
  .title>h1 {
    line-height: 30px;
    font-size: 20px;
    padding: 0 10px;
  }
  .title>div {
    font-size: 14px;
    line-height: 20px;
  }

  .more>a {
    width: 90px;
    height: 30px;
    font-size: 14px;
  }

  .prev-button,
  .next-button {
    width: 24px;
    height: 24px;
    left: -0px;
    font-size: 16px;
  }
  .next-button {
    left: initial;
    right: 0;
  }
}

/* 首页样式 */
/* 班车租赁 */
.bus {
  padding: 50px 0;
}
.bus-list {
  display: flex;
  flex-wrap: wrap;
  width: 1220px;
  margin-top: 40px;
}
.bus-list>li {
  width: 285px;
  float: left;
  margin: 0 20px 22px 0;
}
.bus-list>li>a {
  display: block;
  overflow: hidden;
  border: 1px solid #dedede;
}
.bus-list>li>a .img::before {
  padding-top: 72.084806%;
}
.bus-list>li>a .bus-text {
  display: block;
  overflow: hidden;
  background-color: #dedede;
  padding: 10px;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bus-list>li>a .bus-text>h1 {
  display: block;
  overflow: hidden;
  font-size: 14px;
  margin-bottom: 5px;
  transition: initial;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bus-list>li>a:hover {
  border-color: #ff0000;
}
.bus-list>li>a:hover .img>img {
  transform: scale(1.1);
}
.bus-list>li>a:hover .bus-text {
  background-color: #ff0000;
  color: #fff;
}
.bus .more {
  margin-top: 30px;
}

@media (max-width: 1240px) {
  .bus-list {
    width: 102%;
    margin-left: -1%;
  }
  .bus-list>li {
    width: 23%;
    margin: 0 1% 22px 1%;
  }
}
@media (max-width: 991px) {
  .bus {
    padding: 30px 0;
  }
  .bus-list {
    margin-top: 20px;
  }
  .bus-list>li {
    width: 31.333333%;
  }
}
@media (max-width: 767px) {
  .bus {
    padding: 15px 0;
  }
  .bus-list {
    margin-top: 10px;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .bus-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .bus-list>li>a .bus-text {
    padding: 5px;
  }
  .bus .more {
    margin-top: 10px;
  }
}

/* 横幅 */
.hf {
  background-color: #282828;
}
.hf-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hf-list>li {
  width: calc(100% / 3);
  padding: 45px 40px;
  position: relative;
}
.hf-list>li .hf-number {
  width: 65px;
  float: left;
  height: 65px;
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  background-color: #ff0000;
  border-radius: 5px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-right: 20px;
}
.hf-list>li .hf-text {
  display: block;
  overflow: hidden;
  line-height: 25px;
  font-size: 16px;
  color: #fff;
}
.hf-list>li .hf-text>span {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.hf-list>li:nth-child(1) {
  background-color: #474747;
  background-image: url(../images/hf-jiantou.png);
  background-repeat: no-repeat;
  background-position: right center;
}
.hf-list>li:nth-child(2) {
  background-color: #646464;
}
.hf-list>li:nth-child(2)::before {
  content: "";
  width: 64px;
  float: left;
  height: 61px;
  background: url(../images/hf-jiantou.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  right: -42px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.hf-list>li:nth-child(3) {
  background-color: #898989;
  padding-left: 80px;
}

@media (max-width: 1240px) {
  .hf-list>li {
    padding: 40px 20px;
  }
  .hf-list>li:nth-child(3) {
    padding-left: 50px;
  }
}
@media (max-width: 991px) {
  .hf-list>li {
    padding: 20px;
  }
  .hf-list>li .hf-number {
    width: 50px;
    height: 50px;
    font-size: 30px;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .hf-list>li {
    padding: 10px !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hf-list>li .hf-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 0;
  }
  .hf-list>li .hf-text {
    line-height: 18px;
    font-size: 12px;
    text-align: center;
  }
  .hf-list>li .hf-text>span {
    line-height: 24px;
    font-size: 16px;
    margin: 5px 0;
  }
  .hf-list>li:nth-child(1) {
    background-image: initial;
  }
  .hf-list>li:nth-child(2)::before {
    display: none;
  }
}

/* 新闻中心 */
.news {
  background-image: url(../images/news-bj.jpg);
  padding: 50px 0 60px 0;
}
.news-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 45px;
}
.news-nav>li {
  width: 150px;
  float: left;
  margin: 0 7px 10px 7px;
  padding: 0 2px 3px 0;
  position: relative;
}
.news-nav>li::before {
  content: "";
  width: calc(100% - 2px);
  float: left;
  height: calc(100% - 3px);
  border: 1px solid #282828;
  position: absolute;
  right: 0;
  bottom: 0;
}
.news-nav>li>a {
  display: block;
  overflow: hidden;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  color: #fff;
  background-color: #282828;
  text-align: center;
  position: relative;
  z-index: 2;
}
.news-nav>li:hover::before,
.news-nav>li.news-active::before {
  border-color: #ff0000;
}
.news-nav>li:hover>a,
.news-nav>li.news-active>a {
  background-color: #ff0000;
}

.news-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.news-left {
  width: calc(50% - 20px);
}
.news-left .img::before {
  padding-top: 50.862069%;
}
.news-left .news-text {
  display: block;
  overflow: hidden;
  margin-top: 30px;
}
.news-left .news-text>h1 {
  display: block;
  overflow: hidden;
  line-height: 25px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-left .news-text>div {
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 25px;
  font-size: 14px;
  color: #333;
  margin-top: 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-left:hover .news-text>h1 {
  color: #004181;
}

.news-right {
  width: 50%;
}
.news-right>li {
  display: block;
  overflow: hidden;
  margin-bottom: 28px;
}
.news-right>li .news-time {
  width: 78px;
  float: left;
  height: 78px;
  background-color: #004181;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #fff;
  margin-right: 15px;
}
.news-right>li .news-time>span {
  width: 100%;
  display: block;
  overflow: hidden;
  font-size: 35px;
  line-height: 38px;
}
.news-right>li h1 {
  display: block;
  overflow: hidden;
  line-height: 22px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-right>li .news-text {
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 25px;
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-right>li:hover h1 {
  color: #004181;
}
.news .more {
  margin-top: 16px;
}

@media (max-width: 1240px) {
  .news {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .news-nav {
    margin-top: 30px;
  }
  .news-content {
    margin-top: 30px;
  }
  .news-right>li {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .news-nav {
    margin-top: 10px;
  }
  .news-nav>li {
    width: 110px;
    margin: 0 3px 5px 3px;
  }
  .news-nav>li>a {
    height: 34px;
    line-height: 34px;
  }
  .news-content {
    margin-top: 10px;
  }
  .news-left {
    width: 100%;
  }
  .news-left>a {
    width: 100%;
    float: left;
    display: flex;
  }
  .news-left>a .img {
    width: 40%;
  }
  .news-left .news-text {
    width: 60%;
    margin-top: 0;
    padding-left: 20px;
  }
  .news-right {
    width: 100%;
  }
  .news-right>li {
    margin: 10px 0 0 0;
  }
  .news .more {
    margin-top: 10px;
  }
}

/* 商务租车 */
.car {
  padding: 35px 0 50px 0;
}
.car-content {
  display: flex;
  margin: 40px 0;
  position: relative;
}
.car-content .swiper {
  width: 100%;
}
.car-content .swiper .swiper-slide>a {
  display: block;
  overflow: hidden;
  border: 1px solid #dedede;
}
.car-content .swiper .swiper-slide>a .img::before {
  padding-top: 72.084806%;
}
.car-content .swiper .swiper-slide>a .bus-text {
  display: block;
  overflow: hidden;
  background-color: #dedede;
  padding: 10px;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.car-content .swiper .swiper-slide>a .bus-text>h1 {
  display: block;
  overflow: hidden;
  font-size: 14px;
  margin-bottom: 5px;
  transition: initial;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.car-content .swiper .swiper-slide>a:hover {
  border-color: #ff0000;
}
.car-content .swiper .swiper-slide>a:hover .img>img {
  transform: scale(1.1);
}
.car-content .swiper .swiper-slide>a:hover .bus-text {
  background-color: #ff0000;
  color: #fff;
}

@media (max-width: 991px) {
  .car {
    padding: 30px 0;
  }
  .car-content {
    margin: 20px 0;
  }
}
@media (max-width: 767px) {
  .car {
    padding: 15px 0;
  }
  .car-content {
    margin: 10px 0;
  }
  .car-content .swiper .swiper-slide>a .bus-text {
    padding: 5px;
  }
}

/* 景点包车 */
.scenic {
  background-image: url(../images/scenic-bj.jpg);
  padding: 50px 0;
}
.scenic-list {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  margin: 40px 0;
  border-radius: 10px;
  padding: 5px 0 5px 50%;
  position: relative;
  overflow: hidden;
}
.scenic-list>li {
  width: 50%;
  padding: 10px 15px 10px 0;
}
.scenic-list>li>a {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.scenic-list>li>a::before {
  content: "";
  display: block;
  padding-top: 73.85159011%;
}
.scenic-list>li>a>h1 {
  width: 100%;
  overflow: hidden;
  height: 60px;
  line-height: 60px;
  padding: 0 25px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.scenic-list>li:first-child {
  width: 50%;
  height: 100%;
  padding: 15px;
  position: absolute;
  left: 0;
  top: 0;
}
.scenic-list>li>a:hover>img {
  transform: scale(1.2);
}
.scenic .more>a {
  background-color: #fff;
  color: #333;
}
.scenic .more>a:hover {
  background-color: #004181;
  color: #fff;
}

@media (max-width: 991px) {
  .scenic {
    padding: 30px 0;
  }
  .scenic-list {
    margin: 20px 0;
  }
}
@media (max-width: 767px) {
  .scenic {
    padding: 15px 0;
  }
  .scenic-list {
    margin: 10px 0;
    padding: 5px 10px;
    justify-content: space-between;
  }
  .scenic-list>li {
    width: calc(50% - 5px);
    padding: 5px 0;
  }
  .scenic-list>li>a>h1 {
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    font-size: 16px;
  }
  .scenic-list>li:first-child {
    width: 100%;
    padding: 5px 0;
    position: relative;
  }
}

/* 婚车租赁 */
.wedding {
  padding: 50px 0;
}

@media (max-width: 991px) {
  .wedding {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .wedding {
    padding: 15px 0;
  }
}
/* END-首页样式 */

/* 车型及报价/班车租赁/商务租车/景点包车/婚车租赁 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 25px 0;
}
.main-left {
  width: 275px;
  float: left;
}
.left-menu {
  width: 100%;
  float: left;
  margin-bottom: 10px;
}
.menu-title {
  display: block;
  overflow: hidden;
  background-color: #282828;
  line-height: 28px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  padding: 13px 0 9px 28px;
}
.menu-title>span {
  display: block;
  line-height: 32px;
}
.menu-list {
  display: block;
  overflow: hidden;
  transition: initial;
  padding-top: 10px;
  width: calc(100% + 3px);
}
.menu-list>li {
  float: left;
  margin: 0 3px 3px 0;
}
.menu-list>li>a {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  height: 50px;
  background-color: #0065d2;
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}
.menu-list>li:nth-child(1),
.menu-list>li:nth-child(2) {
  width: calc(50% - 3px);
}
.menu-list>li:nth-child(3) {
  width: calc(40% - 3px);
}
.menu-list>li:nth-child(3)>a {
  height: 103px;
}
.menu-list>li:nth-child(4),
.menu-list>li:nth-child(5) {
  width: calc(60% - 3px);
}
.menu-list>li:nth-child(3)>a,
.menu-list>li:nth-child(4)>a {
  background-color: #8aa1a9;
}
.menu-list>li:hover>a,
.menu-list>li.menu-active>a {
  background-color: #ff0000;
}

.left-menu>img {
  display: block;
  width: 100%;
  height: auto;
  margin: 10px 0;
}
.menu-contact {
  display: block;
  overflow: hidden;
  border: 1px solid #dbdbdb;
  padding: 20px 15px;
  padding-bottom: 0;
  font-size: 14px;
  line-height: 30px;
  color: #333;
}
.menu-contact-weixin {
  display: block;
  overflow: hidden;
  margin-top: 30px;
  text-align: center;
  line-height: 40px;
}
.menu-contact-weixin>img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.main-right {
  width: 895px;
  float: right;
}
.place-title {
  width: 100%;
  float: left;
  background-color: #eee;
  border: 1px solid #eee;
  padding: 7px 0;
}
.place-title>dl {
  width: 100%;
  float: left;
}
.place-title>dl>dd {
  display: flex;
  flex-wrap: wrap;
  padding: 7px 0;
}
.place-title>dl>dd>h1 {
  width: 102px;
  float: left;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 0 18px 18px 0;
  background-color: #ff0000;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}
.place-title>dl>dd>ul {
  width: calc(100% - 102px);
  float: left;
  padding: 5px 0 5px 35px;
  line-height: 26px;
  font-size: 16px;
  color: #333;
}
.place-title>dl>dd>ul>li {
  float: left;
  margin-right: 25px;
}
.place-title>dl>dd>ul>li>a {
  color: #333;
}
.place-title>dl>dd>ul>li>a:hover,
.place-title>dl>dd>ul>li.actived>a {
  color: #ff0000;
  text-decoration: underline;
}

.place-content {
  width: 100%;
  float: left;
  padding-top: 10px;
}
.product-list {
  display: block;
  overflow: hidden;
}
.product-list>li {
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
}
.product-list>li>a {
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
}
.product-list>li>a .img {
  width: 216px;
  border: 1px solid #dbdbdb;
}
.product-list>li>a .product-box {
  width: calc(100% - 219px);
  float: left;
  background-color: #eee;
  padding: 12px 12px 12px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-list>li>a .product-box .product-left>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-list>li>a .product-box .product-left>div {
  display: block;
  overflow: hidden;
  height: 100px;
  line-height: 25px;
  font-size: 14px;
  color: #333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-top: 10px;
}
.product-list>li>a .product-box .product-right {
  flex: 1;
  font-size: 16px;
  color: #ff0000;
  font-weight: bold;
  text-align: right;
}
.product-list>li>a:hover .img {
  border-color: #ff0000;
}
.product-list>li>a:hover .img>img {
  transform: scale(1.1);
}
.product-list>li>a:hover .product-box .product-left>h1 {
  color: #ff0000;
}

@media (max-width: 1240px) {
  .main-left {
    width: 24%;
  }
  .menu-title {
    font-size: 18px;
    padding: 13px 0 9px 15px;
  }
  .main-right {
    width: 74%;
  }
  .product-list>li>a .product-box {
    padding: 12px 12px 12px 22px;
  }
}
@media (max-width: 991px) {
  .main-left {
    width: 29%;
  }
  .menu-title {
    font-size: 16px;
    padding: 9px 0 9px 15px;
  }
  .menu-list>li>a {
    height: 40px;
    font-size: 16px;
  }
  .menu-list>li:nth-child(3)>a {
    height: 83px;
  }
  .main-right {
    width: 69%;
  }
  .place-title>dl>dd>ul {
    padding: 5px 0 5px 15px;
  }
  .product-list>li>a .product-box {
    padding: 12px;
    flex-wrap: wrap;
  }
  .product-list>li>a .product-box .product-right {
    flex: none;
    width: 100%;
    text-align: left;
    margin-top: 10px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .main-left {
    width: 100%;
  }
  .left-menu {
    margin: 0;
  }
  .menu-title {
    width: calc(100% + 40px);
    text-align: center;
    margin-left: -20px;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #fff;
    position: relative;
  }
  .menu-title-active {
    text-align: left;
  }
  .menu-title-active::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .main-right {
    width: 100%;
  }
  .place-title {
    margin-top: 10px;
    padding: 5px 0
  }
  .place-title>dl>dd {
    padding: 3px 0;
  }
  .place-title>dl>dd>h1 {
    width: 60px;
    height: 30px;
    line-height: 30px;
    border-radius: 0 15px 15px 0;
    font-size: 16px;
  }
  .place-title>dl>dd>ul {
    width: calc(100% - 60px);
    padding: 3px 0 3px 10px;
    line-height: 24px;
    font-size: 14px;
  }
  .place-title>dl>dd>ul>li {
    margin-right: 8px;
  }
  .place-content {
    padding: 20px 0;
  }
  .product-list>li {
    margin-bottom: 10px;
  }
  .product-list>li>a .img {
    width: 140px;
  }
  .product-list>li>a .product-box {
    width: calc(100% - 142px);
    padding: 5px;
  }
  .product-list>li>a .product-box .product-left>h1 {
    line-height: 24px;
  }
  .product-list>li>a .product-box .product-left>div {
    height: 50px;
    -webkit-line-clamp: 2;
    margin-top: 5px;
  }
  .product-list>li>a .product-box .product-right {
    margin-top: 5px;
    font-size: 12px;
  }

}
/* END-车型及报价/班车租赁/商务租车/景点包车/婚车租赁 */

/* 产品详情 */
.product-details {
  display: block;
  overflow: hidden;
  padding: 20px 30px;
}
#gallery {
  width: 100%;
  overflow: hidden;
}
#gallery .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 52.09581%;
}
.thumbs {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 30px;
  padding: 0 80px;
}
#thumbs .swiper-slide {
  border: 1px solid #cfcfcf;
}
#thumbs .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 64.28571743%;
}
#thumbs .swiper-slide-thumb-active {
  border-color: #ff0000;
}
.thumbs-prev-button,
.thumbs-next-button {
  width: 48px;
  height: 48px;
  float: left;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.thumbs-next-button {
  left: initial;
  right: 15px;
}
.thumbs-prev-button.swiper-button-disabled,
.thumbs-next-button.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}

.product-details-content {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
  font-size: 16px;
  line-height: 40px;
  color: #333;
}
.product-details-content table{
  display: block;
  max-width: 100%;
  height: auto;
  border-collapse:collapse;
}
.product-details-content table td{
  border: 1px #ccc solid;
	padding: 5px;
}
.product-details-title {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
  background-color: #f5f5f5
}
.product-details-title>span {
  float: left;
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
  background-color: #f00;
  font-size: 16px;
  color: #fff;
  font-weight: bold
}
.product-details-content h1 {
  font-size: 20px;
  color: #f00;
  font-weight: bold;
}
.product-details-content h2 {
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

@media (max-width: 767px) {
  .product-details {
    padding: 20px 0;
  }
  .thumbs {
    margin-top: 10px;
    padding: 0 30px;
  }
  .thumbs-prev-button,
  .thumbs-next-button {
    width: 24px;
    height: 24px;
    left: 0;
  }
  .thumbs-next-button {
    left: initial;
    right: 0;
  }
  .product-details-content {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
  }
  .product-details-title {
    margin-bottom: 10px;
  }
  .product-details-title>span {
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
  }
  .product-details-content h1 {
    font-size: 16px;
  }
  .product-details-content h2 {
    font-size: 14px;
  }
}
/* END-产品详情 */

/* 新闻中心 */
.main-right .news-right {
  width: 100%;
  padding: 20px 30px;
}

.news-details {
  display: block;
  overflow: hidden;
  padding: 20px 30px;
}
.news-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  line-height: 30px;
}
.news-details-time {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  color: #666;
  line-height: 1.1;
  padding: 15px 0;
  border-bottom: 1px dashed #ccc;
}
.news-details-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  padding-top: 20px;
}
.news-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .main-right .news-right {
    padding: 20px 0;
  }
  .main-right .news-right>li {
    margin: 0 0 10px 0;
  }

  .news-details {
    padding: 20px 0;
  }
  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-新闻中心 */

/* 联系我们 */
.contact {
  display: flex;
  flex-wrap: wrap
}
.contact-text {
  width: 100%;
  float: left;
  font-size: 16px;
  line-height: 30px
}
.contact-map {
  width: 100%;
  float: left;
  overflow: hidden;
  height: 400px;
  border: none;
  margin-top: 20px
}
@media (max-width:767px) {
  .contact-text {
    font-size: 14px;
    line-height: 24px
  }
  .contact-map {
    margin-top: 10px;
    height: 300px
  }
}
/* END-联系我们 */