/* 重置部分默认样式 */
body, p, ul, li {
    margin: 0;
    padding: 0;
    
}


body {

    font-family: "微软雅黑", sans-serif;
    color: #333; /* 文本颜色 */
}



/* 关于我们部分 */
#about-us {
    background-color: #ffffff52;
    padding: 50px 20px;
    margin: 0 0px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


#about-us h1, #about-us h2 {
    text-align: center;
    color: #ff6600;
}

#about-us h1 {
    margin-bottom: 18px;  /* Adjust as needed */
    font-size: 1.6em;       /* Adjust the font size for h1 */
}

#about-us h2 {
    margin-bottom: 18px;  /* Adjust as needed */
    font-size: 1.6em;     /* Adjust the font size for h2 */
}


#about-us p {
    font-size: 1em;
    text-align: left;
    line-height: 1.6;
}



/* 其他样式可以根据需要进行自定义 */
/*#backToTopBtn222222222 {
    position: fixed;
    bottom: 50px;
    right: 30px;
    padding: 8px 10px;
    background-color: rgba(143,195,53,0.45);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 2;
}*/





#annaziao {
    position: fixed;
    bottom: 60px;
    right: 10px;
    width: 36px;
    z-index: 19;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    
pointer-events: none;
            opacity: 0; /* 初始时设置透明度为1，显示容器 */
            transition: opacity 2s; /* 过渡时间设置为1秒 */
            
}

#annaziao li {
    list-style: none;
    margin-top: 5px;
}

#annaziao li a {
    background: rgba(0, 0, 0, 0.7);
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    color: #FFF;
    text-decoration: none;
    display: block;
    font-size: 14px;
}



/* 导航字体链接 */
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
 

  .header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    position: fixed;
    top: -100px; /* 初始时隐藏头部 */
    width: 100%;
    transition: top 0.3s; /* 添加过渡效果 */
    z-index: 10;
    font-size: 25px;
  }










.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* background-color: #333; 导航栏背景颜色 */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 80%;
    height: auto;
}

.logo-text {
    font-weight: bold;
    margin-left: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    padding-left: 0%; /* 往右偏移 10px */
    
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 14px; /* 字体大小 */
}

/* 电脑样式 */
@media (min-width: 1024px) {
    .menu-icon {
        display: none;
    }
    /* 初始隐藏子菜单 */
.sub-menu {
  display: none;
  position: absolute;
  background-color: #454545; /* 菜单背景颜色 */
  z-index: 0;
  width: 150px;
  list-style-type: none; /* 移除小圆点 */
  padding: 0; /* 去掉默认的内边距 */
  margin: 0; /* 去掉默认的外边距 */
  
 
}

/* 当鼠标悬停在父菜单项上时显示子菜单 */
.dropdown:hover .sub-menu {
  display: block;
}

/* 样式化子菜单项 */
.sub-menu li {
  padding: 5px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.3); /* 添加底部边框，可以调整颜色和线条样式 */
  width:100%;

}

/* 最后一个子菜单项去掉底部边框 */
.sub-menu li:last-child {
  border-bottom: none;
}
.sub-menu li:hover {
    background-color: #555; /* 鼠标经过时的背景颜色 */
} 
}

/* 平板和手机共享样式 */
@media screen and (max-width: 1023px) {
    
    
    
    
    .center-text {
        text-align: center;
    }
    
    
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background-color: #333;
        position: absolute;
        top: 53px;
        left: 0;
        width: 100%;
    }

    .nav-links.show {
        display: flex;
        
    }

    .nav-links li {
        margin: 10px 0;/* 字体行高 */
          border-bottom: 0.5px solid rgba(255, 255, 255, 0.3); /* 添加底部边框，可以调整颜色和线条样式 */
  width: 100%;
    }

.nav-links li:last-child {
  border-bottom: none;
}

    .menu-icon {
        display: block;
        cursor: pointer;
    }
    
    /* 初始隐藏子菜单 */
.sub-menu {
  display: none;
  position: absolute;
  background-color: #454545; /* 菜单背景颜色 */
  z-index: 1;
  width: 100%;
  list-style-type: none; /* 移除小圆点 */
  padding: 0; /* 去掉默认的内边距 */
  margin: 0; /* 去掉默认的外边距 */
 
}

/* 当鼠标悬停在父菜单项上时显示子菜单 */
.dropdown:hover .sub-menu {
  display: block;
}

/* 样式化子菜单项 */
.sub-menu li {
  padding: 5px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.3); /* 添加底部边框，可以调整颜色和线条样式 */
  width: 100%
  transition: background-color 0.3s; /* 添加渐变效果 */

}

/* 最后一个子菜单项去掉底部边框 */
.sub-menu li:last-child {
  border-bottom: none;
}


.sub-menu li:hover {
    background-color: #555; /* 鼠标经过时的背景颜色 */
}   
    
}





/* 内容样式 */
.vogana01 {
    height: 50px;
}

.vogana02 {
    height: 100%;
    font-size: 16px; /* 字体大小 */
    color: #000000; /* 文本颜色 */
}

.content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    font-size: 16px; /* 字体大小 */
    color: #555; /* 文本颜色 */
    margin-bottom: 100px; /* 设置下外边距为100px */ 
}


/* 底部样式 */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 30px;

}




.footer-menu {
   /* display: flex; */
    justify-content: space-around;
    align-items: center;
    margin-left: 40px; /* 左边外边距 */
    margin-right: 40px; /* 右边外边距 */
}

.menu-list {
    list-style: none;
    display: flex;
    padding: 0;
    justify-content: space-around; /* 元素等分，水平间距相等 */
}

.menu-list li {
    margin-right: 60px;
}

.menu-list li:last-child {
    margin-right: 0;
}

.menu-list a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: color 0.3s;
}

.menu-list a:hover {
    color: #ff9800; /* 鼠标悬停时的颜色 */
}



/* 媒体查询：电脑 */
@media screen and (min-width: 1024px) {
.content {
    font-size: 18px;
    line-height: 1.4; /* 设置行高为字体大小的倍数，比如这里是字体大小的1.5倍 */
    letter-spacing: 1px; /* 设置字体间距，可以根据需要调整 */
}

    .annazi-fdt h2 {
    font-size: 20px;
}
 }

/* 媒体查询：平板和手机共享样式 */
@media screen and (max-width: 1023px) and (min-width: 768px){
.content {
    font-size: 18px;
    line-height: 1.4; /* 设置行高为字体大小的倍数，比如这里是字体大小的1.5倍 */
    letter-spacing: 1px; /* 设置字体间距，可以根据需要调整 */
}

    .annazi-fdt h2 {
    font-size: 20px;
}
}


/* 媒体查询：手机 */
@media screen and (max-width: 767px) {
.content {
    font-size: 18px;
    line-height: 1.4; /* 设置行高为字体大小的倍数，比如这里是字体大小的1.5倍 */
    letter-spacing: 1px; /* 设置字体间距，可以根据需要调整 */
}

    .annazi-fdt h2 {
    font-size: 20px;
}
}




/* 媒体查询：电脑 */
@media screen and (min-width: 1024px) {
    .mobile-content {
        display: none;
    }
}

/* 媒体查询：平板 */
@media screen and (max-width: 1023px) and (min-width: 768px) {
    .desktop-content {
        display: none;
    }
}

/* 媒体查询：手机 */
@media screen and (max-width: 767px) {
    .desktop-content {
        display: none;
    }
}







