*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

body{
    font-size: 0.14rem;
}

h1,h2,h3,h4,h5,h6{
    font-weight: normal;
}


a {
    text-decoration: none;
    color: #000;
}

ul,li {
    list-style: none;
}

.wrapper{
    width: 12rem;
    margin: 0 auto
}

.btn{
    display: inline-block;
    padding: 0.12rem;
    min-width: 0.8rem;
    border-radius: 0.2rem;
    text-align: center;
    box-sizing: border-box;
}

.btn-primary{
    color: #333;
}

.btn-bg{
    background-color: #2F2100;
    color: #fff;
    padding: 0.07rem 0.19rem;
}


/* 头部样式 */

.header{
    padding: 0.13rem 0.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 12rem;
    background-color: #fff;
    box-shadow: 0.1rem 0.18rem 0.14rem rgba(0, 0, 0, .1);
}

.logo{
    display: flex;
    align-items: center;
}

.logo-txt{
    font-family: "Montserrat Alternates Black Italic";
    font-weight: bold;
    font-size: 0.24rem;
    margin-left: 0.1rem;
}

.header-r{
    display: flex;
}

.navbar{
    margin-left: auto;
    margin-right: 0.8rem;
    display: flex;
    align-items: center;
}

.navbar li{
    margin: 0 0.08rem;
    vertical-align: middle;
}

.navbar li a{
    padding: 0.07rem 0.2rem;
    border-radius: 0.08rem;
    color: #333;
    font-size: 0.14rem;
}

.navbar li.active a{
    color: #1C1200;
    position: relative;
    background-image: linear-gradient(to right, #FFEA9C, #FFFFFF, #FFEA9C);
    border: 0.02rem solid #E4BB26;
    border-radius: 0.2rem;
    font-weight: bold;
}

.navbar li.active a::after{
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0.2rem;
    height: 0.02rem;
    background-color: #FFF6BE;
    border-radius: 0.01rem;
}  

.navbar li.active a::after{
    bottom: -0.06rem;
}



/* 底部样式 */
.footer{
    background-color: #fff;
}

.footer *{
    color: #333;
}

.footer-main{
    padding: 0.4rem 0;
}

.footer-header{
    display: flex;
    align-items: center;
}

.footer-header .logo{
    display: flex;
    align-items: center;
    margin-left: 0.1rem;
}

.footer-header .logo p{
    margin-left: 0.1rem;
    font-size: 0.16rem;
}

.footer-header p{
    font-size: 0.2rem;
    /* line-height: 0.24rem; */
    font-weight: bold;
}

.footer-header img{
    height: 0.3rem;
    margin-left: 0.12rem;
}

.footer-links{
    display: flex;
    justify-content: space-between;
    margin: 0.2rem 0 0.3rem;
}

.footer-links-l{
    display: flex;
}

.footer-links-l ul{
    margin-right: 1.2rem;
}

.footer-links-l li{
    margin-bottom: 0.12rem;
}

.footer-links-l li:last-child{
    margin-bottom: 0;
}

.footer-links-r a + a{
    margin-top: 0.12rem;
}

.footer-links-b a{
    margin-right: 0.8rem;
}

.footer-contact{
    margin-top: 0.4rem;
    /* line-height: 0.2rem; */
}

.footer-contact p{
    margin-bottom: 0.12rem;
    text-transform: uppercase;
}

.footer-contact p:last-child{
    margin-bottom: 0;
}

.footer-copyright{
    background-color: #000;
    /* line-height: 0.6rem; */
}

.footer-copyright p{
    text-align: center;
    color: #fff;
    font-size: 0.2rem;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 0.01rem solid #ddd;
  border-radius: 4px;
  box-shadow: 0 0.04rem 0.08rem rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  width: 2rem;
  z-index: 1000;
}
.dropdown-menu li a {
  display: block;
  padding: 0.1rem 0.16rem;
  text-decoration: none;
  color: #333;
  font-size: 0.14rem;
  transition: background-color 0.2s;
}
.dropdown-menu li a:hover {
  background-color: #f5f5f5;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-toggle::after {
  content: " ▼";
  font-size: 0.12rem;
  color: #666;
}