/**
 * Footer Component Styles
 * 底部栏组件样式 - 采用BEM命名规范
 * 包含桌面端和移动端响应式布局
 */

/* 桌面端大屏幕样式 */
@media (min-width: 1366px) {
  .footer {
    width: 100%;
  }
  .footer .footer-bottom {
    margin-left: auto;
    margin-right: auto;
    width: 63.059%;
    max-width: 1200px;
    min-width: 960px;
  }
}

/* 桌面端中等屏幕样式 */
@media screen and (min-width: 960px) and (max-width: 1366px) {
  .footer {
     min-width: 960px;
     width: 100%;
  }
  .footer .footer-bottom {
    margin-left: auto;
    margin-right: auto;
    width: 63.059%;
    max-width: 1200px;
    min-width: 960px;
  }
}

/* 平板端样式 */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .footer {
    min-width: auto;
    width: 100%;
  }
  .footer .footer-bottom {
    width: 95%;
    min-width: auto;
    margin: auto;
  }
}

/* 基础底部栏样式 */
.footer {
  position: absolute;
  background-color: #282828;
  z-index: 20;
}

.footer ul {
  margin-bottom: 0;
  padding: 0;
  display: block;
}

.footer li {
  height: 80px;
  line-height: 80px;
  display: inline-block;
}

.footer .copyright {
  padding: 10px 0;
  width: 100%;
  height: 94px;
  line-height: 94px;
}

.footer span {
  display: block;
  height: 25px;
  font-size: 12px;
  font-family: SimSun;
  color: #666;
  cursor: default;
}

.footer .copyright-top {
  margin-top: -30px;
}

.footer hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #343434;
}

.footer a {
  display: inline-block;
  margin-right: 36px;
  font-size: 12px;
  font-family: SimSun;
  color: #666;
  text-decoration: none;
}

/* 移动端底部栏样式 */
.footer-moblie {
  display: none;
}

/* 移动端响应式样式 */
@media (max-width: 768px) {
  .footer-bottom {
    display: none;
  }
  
  .footer {
    width: 100%;
  }
  
  .footer-moblie {
    background: #282828;
    display: block;
    width: 100%;
  }
  
  .footer-moblie > ul {
    list-style: none;
    padding: 0 0.267rem  /* 20/75 */;
    margin-top: 0.533rem  /* 40/75 */;
    padding-bottom: 0.533rem;
    border-bottom: 1px solid #343434;
  }
  
  .footer-moblie > ul > li {
    line-height: 0.667rem  /* 50/75 */;
    font-size: 0.373rem  /* 28/75 */;
    height: auto;
    margin-right: 3%;
  }
  
  .footer-b {
    padding: 0rem  /* 0/75 */ 0.267rem  /* 20/75 */ 0.533rem 0.267rem !important;
  }
  
  .footer-b > li {
    display: block;
  }
  
  .footer-moblie {
    color: #666666;
  }
  
  .footer a {
    line-height: 0.667rem  /* 50/75 */;
    font-size: 0.373rem  /* 28/75 */;
    font-family: "苹方";
    margin: 0px;
  }
}