﻿@font-face {
  font-family: "AlibabaPuHuiTi";
  src: url("../font/AlibabaPuHuiTi-3-55-Regular.woff2")
      format("woff2"),
    url("../font/AlibabaPuHuiTi-3-55-Regular.woff")
      format("woff"),
    url("../font/AlibabaPuHuiTi-3-55-Regular.ttf")
      format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "AlibabaPuHuiTi", sans-serif;
}

:root {
  --main-text-color: #f5f5f5;
  --text-color-grey: #3b3b3b;
  --main-bg-color: #f20000;
}

.nav-item-active {
  border-bottom: 2px solid #f5f5f5;
}

.active-banner {
  background: #fd6e17 !important;
}

.active-hot-city {
  color: #fd6e17 !important;
}

.active-about-nav {
  color: #fff;
  background: #ff4e00 !important;
}

h1 {
  color: var(--main-text-color);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.nav .logo {
  max-height: 40px;
}

.nav .navbar-toggler {
  outline: none;
  border: 0;
  background: #fff;
}

.nav .navbar {
  background: transparent !important;
}

.nav .navbar li {
  list-style: none;
}

.nav .navbar .navbar-brand {
  color: var(--main-text-color) !important;
}

.nav .navbar .nav-item {
  padding: 10px 30px;
}

.nav .navbar .nav-item a {
  color: var(--main-text-color) !important;
}

.nav .navbar .nav-item a:hover {
  border-bottom: 2px solid #f5f5f5;
}

.nav .navbar .nav-item .dropdown-item {
  color: #3b3b3b !important;
}

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #f9b84e;
}

.banner .banner-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.banner .container {
  position: relative;
  color: blue;
  width: 100%;
  height: 100%;
  padding: 0;
  z-index: 1;
}

.banner .container .attractions-list {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 280px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--main-text-color);
  padding: 20px;
}

.banner .container .attractions-list .top-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-bottom: 2px solid var(--main-text-color);
  padding-bottom: 10px;
}

.banner .container .attractions-list .top-title img {
  max-height: 24px;
  margin-right: 8px;
}

.banner .container .attractions-list .top-title h3 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.banner .container .attractions-list .item-list {
  display: flex;
  flex-wrap: wrap;
}

.banner .container .attractions-list .item-list .item {
  width: 25%;
  padding: 10px 0;
}

.banner .container .attractions-list .item-list .item a {
  color: var(--main-text-color);
  text-decoration: none;
}

.banner .container .attractions-list .item-list .item a:hover {
  text-decoration: underline;
}

.banner .container .attractions-list .item-list .item a.hot::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 2px;
  background: url("../image/hot.png") no-repeat;
  background-size: contain;
}

.banner .container .banner-nav {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  padding: 20px 100px 40px 0;
  justify-content: flex-end;
}

.banner .container .banner-nav .nav-item {
  padding: 5px 30px;
  background: #533f17;
  border-radius: 40px;
  color: var(--main-text-color);
  font-size: 18px;
  margin: 0 20px;
  cursor: pointer;
}

.banner .container .banner-nav .nav-item:hover {
  background: #fd6e17;
}

.banner-titlelist {
  padding: 40px;
  height: 224px;
  background: #fff;
  display: flex;
  align-items: center;
}

.banner-titlelist .container .row .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner-titlelist .container .row .col h2 {
  font-weight: bold;
}

.banner-titlelist .container .row .col p {
  font-size: 18px;
}

.banner-titlelist .container .row .col:not(:last-child) {
  border-right: 2px solid #3b3b3b;
}

.hot-city {
  background: #efefef;
  padding: 40px 0;
}

.hot-city .top {
  margin-bottom: 30px;
}

.hot-city .top .title h1 {
  color: #000000;
  font-weight: bold;
  font-size: 35px;
  margin: 0;
  text-align: left;
}

.hot-city .top .city-list {
  display: flex;
  align-items: end;
}

.hot-city .top .city-list ul {
  display: flex;
  align-items: end;
  padding: 0;
  margin: 0;
}

.hot-city .top .city-list ul li {
  list-style: none;
  padding: 0 20px 0 0;
  font-weight: bold;
  cursor: pointer;
}

.hot-city .top .city-list ul li:hover {
  color: #fd6e17;
}

.hot-city .top .look-all {
  display: flex;
  align-items: end;
  justify-content: end;
}

.hot-city .top .look-all a {
  padding: 2px 15px;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
}

.hot-city .top .look-all:hover a {
  color: #fd6e17;
  border-color: #fd6e17;
}

.hot-city .content .col {
  flex: none;
  width: 20% !important;
}

.hot-city .content .col .item {
  background: #fff;
  cursor: pointer;
}

.hot-city .content .col .item img {
  width: 100%;
  height: 150px;
}

.hot-city .content .col .item .text {
  height: 120px;
  padding: 10px 5px;
}

.hot-city .content .col .item .text h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  -moz-text-align-last: left;
  text-align-last: left;
}

.hot-city .content .col .item .text p {
  font-size: 14px;
  margin: 0;
  
  overflow: hidden;
  
  text-overflow: ellipsis;
  
  display: -webkit-box;
  
  -webkit-line-clamp: 3;
  
  -webkit-box-orient: vertical;
  text-align: left;
}

.hot-city .content .col .item:hover {
  text-decoration: underline;
}

.tips {
  background: #fff;
}

.tips .content .col .item {
  background: #efefef;
}

.team {
  background: #efefef;
  padding: 40px 0;
}

.team .title {
  margin-bottom: 30px;
}

.team .title h1 {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}

.team .swiper-slide img {
  width: 100%;
}

.about {
  background: #fff;
  padding: 40px 0;
}

.about .title {
  margin-bottom: 30px;
}

.about .title h1 {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}

.about .nav-list {
  display: flex;
  margin-bottom: 20px;
  cursor: pointer;
}

.about .nav-list .item {
  padding: 5px 20px;
  background: #efefef;
  font-weight: bold;
}

.about .nav-list .item:not(:first-child) {
  margin-left: 15px;
}

.about .nav-list .item:hover {
  color: #fff;
  background: #ff4e00 !important;
}

.about .content {
  background: #efefef;
  padding: 20px 20px 40px 20px;
}

.about .content img,
.about .content video {
  width: 100%;
}

.about .content .content {
  position: relative;
}

.about .content .content .text {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 80%;
  padding: 20px 20px 20px 100px;
  background: rgba(255, 255, 255, 0.7);
  text-align: left;
}

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

.fengcai .swiper .swiper-slide {
  width: 500px;
  height: 400px;
  position: relative;
}

.fengcai .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.fengcai .swiper .swiper-slide .pingjia {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  color: #fff;
}

.fengcai .swiper .swiper-slide .pingjia p {
  margin: 0;
}

.fengcai .swiper .swiper-slide .pingjia .user {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.fengcai .swiper .swiper-slide .pingjia .user img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.fengcai .swiper .swiper-slide .pingjia .user span {
  margin-left: 5px;
  font-size: 14px;
}

.fengcai .swiper .swiper-button-next:after,
.fengcai .swiper .swiper-button-prev:after {
  color: #3b3b3b;
}

.footer-contact {
  background: #000;
  color: #f5f5f5;
  padding: 30px 0;
}

.footer-contact .col-sm-2,
.footer-contact .col-sm-3 {
  display: flex;
}

.footer-contact .col-sm-2 ul li,
.footer-contact .col-sm-3 ul li {
  list-style: none;
  text-align: left;
  padding-bottom: 10px;
}

.footer-contact .col-sm-2 ul li a,
.footer-contact .col-sm-3 ul li a {
  color: #f5f5f5;
  text-decoration: none;
}

.footer-contact .col-sm-2 ul li a:hover,
.footer-contact .col-sm-3 ul li a:hover {
  color: #fd6e17;
}

.footer-contact .col-sm-7 .form {
  width: 70%;
  border: 1px solid #f5f5f5;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.footer-contact .col-sm-7 .form input,
.footer-contact .col-sm-7 .form textarea,
.footer-contact .col-sm-7 .form button {
  background: transparent;
  outline: none;
  border: 1px solid #fff;
  margin-bottom: 20px;
  padding: 8px 10px;
  color: #f5f5f5;
}

.footer-contact .col-sm-7 .form button {
  max-width: 100px;
}

.footer-copy {
  padding: 20px;
  background: #efefef;
  text-align: center;
}

.footer-copy p {
  margin: 0;
}

#totop {
  position: fixed;
  bottom: 40px;
  right: 20px;
  
  font-size: 16px;
  cursor: pointer;
  z-index: 9999;
}

#totop img {
  width: 30px;
  height: 30px;
}