.body {
  perspective: 500px;
  border-radius: 10px;
  font-family: 'Times New Roman', Times, serif;
  overflow-x: hidden;
}

body .navbar,
body .footer {
  background-color: rgba(166, 192, 102, 0.767) !important;
}

body ul .text-white:hover,
body ul .active .text-white {
  color: rgb(220, 255, 124) !important;
  font-weight: 600;
}

.wrap {
  padding: 1px;
  margin: 1px;
  border-radius: 20px;
  /* background-color: blue; */
}

ul {
  list-style: none;
}

/* header 开始 */
.header {
  padding: 0;
  margin: 0;
  background-color: blanchedalmond;
  border-radius: 10px;
}

nav {
  padding: 0 100px;
  flex-wrap: nowrap !important;
}

.logo {
  width: auto;
  height: 100%;
}

.carousel-item img {
  max-height: 550px;
}

@media (max-width: 899px) {
  nav {
    padding: 0 20px;
  }
}

/* .collapse {
  float: right !important;
  padding: 0 0 0 60%;
} */

.dropdown {
  position: relative;
  display: inline-block;
}

ul .dropdown-menu {
  width: 150px;
  background-color: rgb(203, 227, 145);
  display: none;
  box-sizing: border-box;
  position: absolute;
}

ul li .dropdown-item {
  color: rgba(84, 99, 47, 0.767);
}

ul li .dropdown-item:hover {
  color: rgb(177, 216, 71);
  background-color: rgb(108, 130, 47);
}

.dropdown:hover .dropdown-menu {
  display: block;
}