/* 头部  */
.header {
  width: 100%;
  /* 不显示导航 */
  /* 显示导航 */
}
.header .header-white {
  width: 39rem;
  height: 4rem;
  margin: 0 auto;
  display: none;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-bottom: 0.05rem solid #c7c7c7;
  transition: 1s;
  /* 搜索 */
  /* logo */
  /* 中英文切换 */
  /* 菜单 */
}
.header .header-white.active {
  display: block;
}
.header .header-white .searchBox {
  height: 0.9rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header .header-white .searchBox #search {
  height: 0.9rem;
  position: relative;
}
.header .header-white .searchBox #search #search_input {
  width: 0rem;
  position: absolute;
  left: 0;
}
.header .header-white .searchBox #search #search_icon {
  color: #333;
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  outline: none;
  padding: 0;
  background: none;
  cursor: pointer;
}
.header .header-white .searchBox #search:hover #search_input {
  width: 6rem;
  height: 0.9rem;
  font-size: 0.4rem;
  padding: 0 1rem 0 0.35rem;
  border: 0.03rem solid #333;
  border-radius: 0.45rem;
}
.header .header-white .searchBox #search:hover #search_icon {
  left: 5rem;
}
.header .header-white .logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header .header-white .logo-container img {
  width: 11rem;
  cursor: pointer;
}
.header .header-white .logo-container .phone {
  display: none;
}
.header .header-white .language-switch {
  display: none;
}
.header .header-white .menu {
  width: 0.6rem;
  cursor: pointer;
  position: absolute;
  right: 0rem;
  top: 50%;
  transform: translateY(-50%);
}
.header .header-black {
  display: none;
  width: 43rem;
  height: 2rem;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: 1s;
}
.header .header-black.active {
  display: block;
}
.header .header-black img {
  width: 5.2rem;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header .header-black img.phone {
  display: none;
}
.header .header-black .menu-list {
  width: 18rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
}
.header .header-black .menu-list .menu-item {
  float: left;
  position: relative;
  height: 0.5rem;
  line-height: 0.15rem;
}
.header .header-black .menu-list .menu-item .menu-link {
  font-weight: 500;
  letter-spacing: 3px;
  font-size: 0.45rem;
  color: #bbb;
}
.header .header-black .menu-list .active .menu-link {
  font-weight: 800;
  color: #fff;
}
.header .header-black .menu-list .active:before {
  content: "";
  position: absolute;
  left: 47%;
  transform: translateX(-50%);
  top: 0.6rem;
  width: 90%;
  height: 0.05rem;
  background: #fff;
}
.header .header-black .btns-container {
  height: 0.4rem;
  display: flex;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  /* 中英文切换 */
  /* 搜索 */
  /* 关闭导航 */
}
.header .header-black .btns-container .language-switch {
  display: flex;
}
.header .header-black .btns-container .language-switch span {
  display: block;
  width: 1rem;
  height: 0.5rem;
  font-size: 0.4rem;
  font-family: Arial-BoldMT, Arial;
  font-weight: normal;
  color: #9e9e9e;
  text-align: center;
  line-height: 0.55rem;
  cursor: pointer;
}
.header .header-black .btns-container .language-switch span:nth-of-type(2) {
  margin-left: 0.2rem;
}
.header .header-black .btns-container .language-switch .active {
  font-size: 0.35rem;
  line-height: 0.5rem;
  font-weight: 800;
  color: #fff;
  background: #6e6e6e;
}
.header .header-black .btns-container .searchBox {
  margin: 0 0.8rem 0 1.5rem;
  height: 0.7rem;
}
.header .header-black .btns-container .searchBox #search {
  height: 0.7rem;
  position: relative;
}
.header .header-black .btns-container .searchBox #search #search_input {
  width: 0;
}
.header .header-black .btns-container .searchBox #search #search_icon {
  font-size: 0.5rem;
  font-weight: 800;
  color: #cdcdcd;
  position: absolute;
  right: 0.2rem;
  border: none;
  outline: none;
  padding: 0;
  background: none;
  cursor: pointer;
}
.header .header-black .btns-container .searchBox #search:hover #search_input {
  width: 4rem;
  height: 0.7rem;
  padding: 0 0.8rem 0 0.25rem;
  position: relative;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.4rem;
}
.header .header-black .btns-container .searchBox #search:hover #search_icon {
  color: #333;
  font-weight: 600;
  top: 0.1rem;
}
.header .header-black .btns-container .close {
  font-size: 0.5rem;
  font-weight: 800;
  color: #cdcdcd;
  cursor: pointer;
}
/* 头部-显示导航 */
.header-nav {
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: #202020;
}
.main {
  width: 39rem;
  min-height: 15rem;
  margin: 1rem auto 4rem;
}
/* 上一篇 /下一篇 */
.links {
  width: 90%;
  overflow: hidden;
  margin: 2rem auto;
}
.links > a {
  display: block;
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0.2rem 0;
}
.links > a > i {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  font-size: 0.35rem;
  border: 1px solid #d1d1d1;
  padding: 0.1rem 0.15rem;
}
.links > a span {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.links .left-link,
.links .right-link {
  font-size: 0.45rem;
  transition: all 0.3s;
}
.links .left-link:hover > i,
.links .right-link:hover > i {
  background-color: #1f1f1f;
  color: #ff5a24;
}
.links .left-link:hover span,
.links .right-link:hover span {
  color: #707070;
}
.links .left-link {
  float: left;
}
.links .right-link {
  float: right;
}
/* 分页 */
.current-page {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  width: auto;
  overflow: hidden;
  margin-top: 1.5rem;
}
.current-page span {
  font-size: 0.45rem;
  float: left;
  line-height: 0.75rem;
  width: auto;
  color: #202020;
}
.current-page span i {
  display: none;
  font-size: 0.45rem;
  line-height: 0.75rem;
  font-style: normal;
  color: #202020;
}
.current-page span input {
  width: 1.25rem;
  height: 0.8rem;
  text-align: center;
}
.current-page #all_page {
  margin: 0 0.5rem 0.5rem rem;
  line-height: 0.9rem;
  color: #202020;
  width: auto;
}
.current-page ul {
  display: inline-block;
  overflow: hidden;
}
.current-page ul li {
  float: left;
  margin-right: 0.125rem;
  margin-bottom: 0.25rem;
}
.current-page ul li:nth-last-child(1) {
  margin-right: 0;
}
.current-page ul li:hover a {
  background: #202020;
  color: #fff;
}
.current-page ul li a {
  display: block;
  line-height: 0.8rem;
  height: 0.9rem;
  padding: 0 0.4rem;
  border-radius: 4px;
  color: #202020;
  font-size: 0.45rem;
  transition: all 0.3s;
}
.current-page ul .li-active a {
  background: #202020;
  color: #fff;
}
.current-page .current-container {
  float: left;
}
.current-page .current-container li span {
  display: block;
  font-size: 0.75rem;
  line-height: 0.4rem;
  margin: 0 0.125rem 0 0.125rem;
  cursor: pointer;
}
.current-page #jump-page {
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  height: 0.9rem;
  padding: 0 0.5rem;
  cursor: pointer;
  background: transparent;
  border: 1px solid #202020;
  font-size: 0.45rem;
  color: #202020;
}
.current-page #jump-value {
  width: 1.5rem;
  height: 0.9rem;
  cursor: pointer;
  background: transparent;
  border: 1px solid #202020;
  color: #202020;
}
/* 底部  */
.footer {
  width: 100%;
  height: 9rem;
  padding: 0 3.95rem 0 4.08rem;
  background-color: #404040;
}
.footer .left {
  float: left;
  margin-top: 1.4rem;
  width: 12.2rem;
}
.footer .left .logo-container img {
  width: 11.6rem;
}
.footer .left .logo-container .phone {
  display: none;
}
.footer .left p {
  font-size: 0.35rem;
  font-weight: 300;
  color: #fff;
  line-height: 0.68rem;
}
.footer .left .contact {
  margin: 1.45rem 0 0.33rem 0;
}
.footer .left .contact span {
  font-size: 0.35rem;
  font-weight: 300;
  color: #fff;
  line-height: 0.5rem;
}
.footer .left .contact span:nth-of-type(2) {
  margin-left: 0.5rem;
}
.footer .menuBtn,
.footer .center-phone {
  display: none;
}
.footer .center {
  float: left;
  margin-top: 1rem;
  margin-left: 4.58rem;
}
.footer .center p a,
.footer .center p span {
  font-size: 0.35rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.5rem;
}
.footer .center p img {
  width: 0.38rem;
  height: 0.47rem;
  display: inline-block;
  margin-left: 0.3rem;
}
.footer .right {
  float: right;
  margin-top: 1rem;
}
.footer .right .goTop {
  width: 2rem;
  float: right;
  cursor: pointer;
}
.footer .right .code {
  margin-top: 3.2rem;
}
.footer .right .code > div {
  float: left;
}
.footer .right .code > div:nth-of-type(2) {
  margin-left: 0.73rem;
}
.footer .right .code > div img {
  width: 2.85rem;
  height: 2.85rem;
  cursor: pointer;
}
.footer .right .code > div p {
  width: 2.85rem;
  font-size: 0.35rem;
  font-weight: 300;
  color: #fff;
  line-height: 0.5rem;
  margin-top: 0.1rem;
}
#goTop {
  width: 60px;
  height: 60px;
  transition: height 0.3s;
  position: fixed;
  bottom: 50px;
  right: 25px;
  cursor: pointer;
  z-index: 1000;
  display: none;
}
#goTop img {
  width: 100%;
  height: 100%;
  display: block;
}
/* 地图 */
.map {
  width: 100%;
}
.map .content {
  width: 100%;
  min-height: 60vh;
  position: relative;
}
.map .content p {
  font-size: 0.5rem;
  font-weight: 800;
  padding: 0.75rem 1.88rem;
  border: 0.03rem solid #a1a1a1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* 综绘名录 */
.directory {
  width: 39rem;
  margin: 0.5rem auto 2rem;
  position: relative;
}
.directory .title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #000000;
  line-height: 1.35rem;
}
.directory .select-year {
  display: flex;
  justify-self: center;
  align-items: center;
  margin-top: 0.48rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.directory .select-year .iconfont {
  font-size: 0.6rem;
  color: #979797;
  cursor: pointer;
}
.directory .select-year .unClick {
  color: #ccc;
}
.directory .select-year span {
  font-size: 0.75rem;
  font-weight: 800;
  color: #202020;
  letter-spacing: 1px;
  line-height: 0.6rem;
  margin: 0 3rem;
  position: relative;
}
.directory .select-year span:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.8rem;
  width: 100%;
  height: 0.12rem;
  background: #60ff12;
}
.directory .container {
  margin: 3.45rem 6rem 0;
  min-height: 14rem;
}
.directory .container::after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.directory .container .box-1 {
  width: 50%;
  float: left;
}
.directory .container .box-1:nth-of-type(1) {
  padding-right: 1rem;
}
.directory .container .box-1:nth-of-type(2) {
  padding-left: 1rem;
}
.directory .container .box-1 h3 {
  height: 0.5rem;
  font-size: 0.5rem;
  font-weight: 800;
  color: #202020;
  line-height: 0.75rem;
  text-align: center;
  padding-bottom: 1.3rem;
  border-bottom: 0.03rem solid #ddd;
}
.directory .container .box-1 .classify {
  width: 100%;
  margin-top: 2rem;
  display: flex;
}
.directory .container .box-1 .classify:nth-of-type(1) {
  margin-top: 1.25rem;
}
.directory .container .box-1 .classify p {
  height: 0.5rem;
  font-size: 0.5rem;
  font-weight: 800;
  color: #202020;
  line-height: 0.5rem;
  position: relative;
  width: 3.5rem;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
}
.directory .container .box-1 .classify ul {
  width: 100%;
  margin-left: 0.7rem;
  padding-left: 0.5rem;
  border-left: 0.03rem solid #979797;
}
.directory .container .box-1 .classify ul li {
  float: left;
  font-size: 0.45rem;
  font-weight: 400;
  color: #000000;
  width: 25%;
  margin-top: 0.4rem;
  overflow: hidden;
  white-space: nowrap;
}
.directory .container .box-1 .classify ul li:nth-of-type(1),
.directory .container .box-1 .classify ul li:nth-of-type(2),
.directory .container .box-1 .classify ul li:nth-of-type(3),
.directory .container .box-1 .classify ul li:nth-of-type(4) {
  margin-top: 0rem;
}
.directory .container .box-2 {
  margin: 0rem 1rem;
  border-top: 0.03rem solid #ddd;
}
.directory .container .box-2:nth-of-type(1) {
  border-top: none;
}
.directory .container .box-2 .classify {
  width: 100%;
  display: flex;
  padding: 1rem 0 0.5rem;
}
.directory .container .box-2 .classify p {
  height: 0.5rem;
  font-size: 0.5rem;
  font-weight: 800;
  color: #202020;
  line-height: 0.5rem;
  position: relative;
  width: 3.5rem;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
}
.directory .container .box-2 .classify ul {
  width: 100%;
  margin-left: 0.73rem;
  border-left: 0.03rem solid #979797;
}
.directory .container .box-2 .classify ul li {
  float: left;
  margin: 0 0.6rem 0.4rem;
  font-size: 0.45rem;
  font-weight: 400;
  color: #000000;
}
/* 投稿 */
.contribute {
  width: 39rem;
  margin: 0.5rem auto;
  position: relative;
}
.contribute::after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.contribute .left {
  width: 7.5rem;
}
.contribute .left p {
  font-size: 0.9rem;
  font-weight: 800;
  color: #000;
  line-height: 1.35rem;
}
.contribute .left .sideNav {
  margin-top: 1.5rem;
}
.contribute .left .sideNav li {
  width: auto;
  height: 0.83rem;
  font-size: 0.6rem;
  font-weight: 400;
  color: #000;
  line-height: 0.83rem;
  margin-bottom: 0.8rem;
}
.contribute .left .sideNav li a {
  position: relative;
}
.contribute .left .sideNav li a:hover {
  font-weight: 800;
  /*  &:before {
              content: "";
              position: absolute;
              left: 50%;
              transform: translateX(-50%);
              top: 0.9rem;
              width: 100%;
              height: 0.15rem;
              background: #60ff12;
            } */
}
.contribute .left .sideNav li.active a {
  font-weight: 800;
}
.contribute .left .sideNav li.active a:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.9rem;
  width: 100%;
  height: 0.15rem;
  background: #60ff12;
}
.contribute .right {
  width: 31.5rem;
  margin-top: 1rem;
  position: relative;
  padding: 0 2rem;
}
.contribute .right h1 {
  font-size: 0.7rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.contribute .right h2 {
  font-size: 0.5rem;
  font-weight: 500;
  margin: 0.2rem 0;
}
.contribute .right p {
  font-size: 0.5rem;
  font-weight: 500;
  line-height: 1rem;
}
/* 档案 */
.files {
  width: 39rem;
  margin: 0.5rem auto 4rem;
  position: relative;
}
.files::after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.files .title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #000;
  line-height: 1.35rem;
}
.files .title .iconfont {
  display: none;
}
.files .content {
  min-height: 15.5rem;
}
.files .content::after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.files .content .filter-container {
  float: left;
  width: 8.6rem;
  margin-top: 1.15rem;
}
.files .content .filter-container .up {
  display: none;
}
.files .content .filter-container .filterBox {
  width: 100%;
  margin-top: 0.33rem;
}
.files .content .filter-container .filterBox .yearList {
  width: 100%;
}
.files .content .filter-container .filterBox .yearList > li {
  width: 100%;
  border-top: 0.02rem solid #bbbbbb;
}
.files .content .filter-container .filterBox .yearList > li:nth-last-of-type(1) {
  border-bottom: 0.02rem solid #bbbbbb;
}
.files .content .filter-container .filterBox .yearList > li p {
  width: 100%;
  height: 1.33rem;
  padding-right: 0.35rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.files .content .filter-container .filterBox .yearList > li p span {
  height: 0.48rem;
  font-size: 0.4rem;
  font-weight: 400;
  color: #202020;
  line-height: 0.55rem;
  letter-spacing: 3px;
}
.files .content .filter-container .filterBox .yearList > li p .iconfont {
  display: none;
  font-size: 0.42rem;
  color: #979797;
  float: right;
  cursor: pointer;
}
.files .content .filter-container .filterBox .yearList > li p .icon-active {
  display: block;
}
.files .content .filter-container .filterBox .yearList > li .monthList {
  display: none;
}
.files .content .filter-container .filterBox .yearList > li .monthList li {
  height: 0.55rem;
  line-height: 0;
  margin-bottom: 0.25rem;
}
.files .content .filter-container .filterBox .yearList > li .monthList li span {
  font-size: 0.4rem;
  font-weight: 400;
  color: #202020;
  cursor: pointer;
  position: relative;
}
.files .content .filter-container .filterBox .yearList > li .monthList li span:hover {
  font-weight: 800;
  /*  &:before {
                      content: "";
                      position: absolute;
                      left: 45%;
                      transform: translateX(-50%);
                      top: 0.55rem;
                      width: 88%;
                      height: 0.15rem;
                      background: #60ff12;
                    } */
}
.files .content .filter-container .filterBox .yearList > li .monthList li.active span {
  font-weight: 800;
}
.files .content .filter-container .filterBox .yearList > li .monthList li.active span:before {
  content: "";
  position: absolute;
  left: 45%;
  transform: translateX(-50%);
  top: 0.55rem;
  width: 88%;
  height: 0.15rem;
  background: #60ff12;
}
.files .content .filter-container .filterBox .yearList > li .active {
  display: block;
}
.files .content .filter-container .filterBox .monthList-phone {
  display: none;
}
.files .content .right {
  float: right;
  width: 29rem;
  margin-top: 1.15rem;
  position: relative;
}
.files .content .right table {
  width: 100%;
  border-collapse: collapse;
}
.files .content .right table thead {
  background-color: #f5f5f5;
}
.files .content .right table thead th {
  height: 1.15rem;
  font-size: 0.5rem;
  font-weight: 800;
  color: #202020;
}
.files .content .right table tbody {
  background: #fbfbfb;
}
.files .content .right table tbody tr td {
  height: 1.5rem;
  text-align: center;
  font-size: 0.45rem;
  font-weight: 400;
  color: #000000;
  cursor: pointer;
}
.files .content .right table tbody tr td:nth-of-type(1) {
  width: 40%;
  text-align: left;
  padding-left: 0.6rem;
}
.files .content .right table tbody tr td:nth-of-type(2) {
  width: 45%;
}
.files .content .right table tbody tr td:nth-of-type(3) {
  width: 15%;
}
/* 弹出层 */
.popup-layer .popup-layer-content .introduce {
  padding: 0.5rem;
  font-size: 0.5rem;
}
@media screen and (max-width: 769px) {
  .header {
    box-shadow: 0px 20px 50px rgba(148, 148, 148, 0.16);
  }
  .header .header-white {
    width: 100%;
    height: 2.95rem;
    padding: 0 0.8rem;
    border-bottom: none;
  }
  .header .header-white .searchBox {
    height: 1.2rem;
    left: 0.8rem;
  }
  .header .header-white .searchBox #search {
    height: 1.2rem;
  }
  .header .header-white .searchBox #search #search_icon {
    font-size: 0.9rem;
  }
  .header .header-white .searchBox #search:hover #search_input {
    width: 4.8rem;
    height: 1.2rem;
    font-size: 0.4rem;
    border-radius: 0.58rem;
    left: -0.5rem;
  }
  .header .header-white .searchBox #search:hover #search_icon {
    left: 3.2rem;
  }
  .header .header-white .logo-container {
    width: 8rem;
  }
  .header .header-white .logo-container img {
    width: 8rem;
    display: none;
  }
  .header .header-white .logo-container .phone {
    display: block;
  }
  .header .header-white .language-switch {
    display: block;
    padding: 0.1rem 0.3rem;
    border: 0.03rem solid #202020;
    color: #202020;
    font-size: 0.5rem;
    font-weight: 500;
    zoom: 0.8;
    position: absolute;
    right: 3.2rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .header .header-white .menu {
    width: 0.9rem;
    right: 0.8rem;
  }
  .header .header-black {
    width: 100%;
    height: 2.5rem;
    padding: 0 0.8rem;
  }
  .header .header-black img {
    display: none;
  }
  .header .header-black img.phone {
    display: block;
    width: 0.9rem;
    left: 0.8rem;
  }
  .header .header-black .menu-list {
    width: 12rem;
    left: 46%;
  }
  .header .header-black .menu-list .menu-item {
    line-height: 0.25rem;
  }
  .header .header-black .menu-list .menu-item .menu-link {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }
  .header .header-black .btns-container {
    height: 0.9rem;
    right: 0.8rem;
  }
  .header .header-black .btns-container .language-switch {
    display: none;
  }
  .header .header-black .btns-container .iconfont {
    font-size: 0.9rem;
  }
  .header .header-black .btns-container .searchBox {
    margin-right: 0.35rem;
  }
  .header .header-black .btns-container .searchBox #search #search_icon {
    font-size: 0.8rem;
    top: 0.1rem;
  }
  .header .header-black .btns-container .searchBox #search:hover #search_input {
    width: 5rem;
    height: 1rem;
    padding: 0 1.2rem 0 0.5rem;
    border-radius: 1rem;
  }
  .main {
    flex: 1;
    width: 100%;
    margin: 0.1rem 0 0;
    padding: 0 0.8rem;
  }
  .footer {
    height: 5.3rem;
    padding: 0 0.8rem;
    position: relative;
  }
  .footer .left {
    margin-top: 0.85rem;
    width: 100%;
  }
  .footer .left .logo-container img {
    width: 7.6rem;
    display: none;
  }
  .footer .left .logo-container .phone {
    display: block;
  }
  .footer .left p {
    font-size: 0.5rem;
    zoom: 0.75;
  }
  .footer .left .contact {
    margin: 0.9rem 0 0.5rem 0;
  }
  .footer .left .contact span {
    font-size: 0.55rem;
  }
  .footer .menuBtn {
    display: block;
    width: 0.9rem;
    position: absolute;
    top: 0.85rem;
    right: 0.8rem;
  }
  .footer .center-phone {
    display: none;
    width: 5.5rem;
    height: 9.5rem;
    background: rgba(0, 0, 0, 0.9);
    padding-top: 0.7rem;
    position: absolute;
    right: 0.8rem;
    top: -8.7rem;
  }
  .footer .center-phone.active {
    display: block;
    z-index: 999;
  }
  .footer .center-phone li {
    margin-bottom: 0.7rem;
  }
  .footer .center-phone li p {
    color: #999;
    font-weight: 400;
    text-align: center;
  }
  .footer .center-phone li p:nth-of-type(1) {
    font-size: 0.65rem;
  }
  .footer .center-phone li p:nth-of-type(2) {
    font-size: 0.5rem;
    zoom: 0.75;
  }
  .footer .center-phone li.active p {
    color: #fff;
    font-weight: 800;
  }
  .footer .center,
  .footer .right {
    display: none;
  }
  #goTop {
    width: 1.5rem;
    height: 1.5rem;
    right: 0.5rem;
    bottom: 1rem;
  }
  .map {
    padding: 0 0.8rem;
  }
  .map .content {
    min-height: 75vh;
  }
  .map .content p {
    width: 100%;
    padding: 0.75rem 1rem;
  }
  .directory {
    width: 100%;
    margin: 0.1rem 0 2.8rem 0;
    background-color: #fff;
    padding: 0 0.8rem;
    overflow: hidden;
  }
  .directory .title {
    margin-top: 1.15rem;
  }
  .directory .select-year {
    margin-top: 0.5rem;
  }
  .directory .select-year span {
    margin: 0 2.5rem;
  }
  .directory .container {
    margin: 3.5rem 0 0 0;
  }
  .directory .container .box-1 {
    float: none;
    width: 100%;
  }
  .directory .container .box-1:nth-of-type(1) {
    padding: 0;
  }
  .directory .container .box-1:nth-of-type(2) {
    padding: 0;
    margin-top: 2rem;
  }
  .directory .container .box-1 h3 {
    font-size: 0.65rem;
    padding-bottom: 1.65rem;
  }
  .directory .container .box-1 .classify {
    padding-left: 0.5rem;
  }
  .directory .container .box-1 .classify p {
    font-size: 0.65rem;
    width: 4.4rem;
  }
  .directory .container .box-1 .classify ul li {
    font-size: 0.6rem;
  }
  .directory .container .box-2 {
    margin: 0;
  }
  .directory .container .box-2:nth-of-type(1) .classify {
    padding-top: 0;
  }
  .directory .container .box-2 .classify {
    padding-bottom: 1rem;
    padding-left: 0.5rem;
  }
  .directory .container .box-2 .classify p {
    width: 4.4rem;
  }
  .contribute {
    width: 100%;
    margin: 0.1rem 0 2.2rem;
    padding: 0 0.8rem;
    background-color: #fff;
    overflow: hidden;
  }
  .contribute .left {
    float: none;
    width: 100%;
  }
  .contribute .left p {
    margin-top: 0.9rem;
  }
  .contribute .left .sideNav {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .contribute .left .sideNav li {
    width: 8.4rem;
    height: 1.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 0;
    border-radius: 0.15rem;
    text-align: center;
    line-height: 1.5rem;
    border: 0.03rem solid #000;
  }
  .contribute .left .sideNav li.active {
    background-color: #000;
  }
  .contribute .left .sideNav li.active a {
    position: relative;
    color: #fff;
    font-weight: 800;
  }
  .contribute .left .sideNav li.active a:before {
    width: 0;
  }
  .contribute .right {
    float: none;
    width: 100%;
    padding: 0;
    margin-top: 1.25rem;
  }
  .contribute .right h1 {
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }
  .contribute .right h2 {
    font-size: 0.6rem;
    font-weight: 800;
    margin: 0.5rem 0;
  }
  .contribute iframe {
    height: 760px;
  }
  .files {
    width: 100%;
    margin: 0.1rem auto 0;
    background-color: #f8f8f8;
  }
  .files .title {
    display: none;
    height: 2.7rem;
    line-height: 2.7rem;
    padding: 0 0.8rem;
    margin-top: 0.1rem;
    margin-bottom: 0.8rem;
    background-color: #fff;
    border-radius: 0 0 0.5rem 0.5rem;
  }
  .files .title.active {
    display: block;
  }
  .files .title .iconfont {
    display: inline-block;
    margin-left: 0.4rem;
    font-size: 0.75rem;
    color: #222;
  }
  .files .content .filter-container {
    display: none;
    float: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 1.45rem;
    padding: 0.5rem 0.8rem 1.6rem;
    background-color: #fff;
    border-radius: 0 0 0.5rem 0.5rem;
    position: relative;
  }
  .files .content .filter-container.active {
    display: block;
  }
  .files .content .filter-container .up {
    display: block;
    width: 1.66rem;
    height: 1.66rem;
    background: #fff;
    box-shadow: 0rem 0rem 1rem rgba(186, 186, 186, 0.16);
    border-radius: 50%;
    position: absolute;
    right: 1.05rem;
    bottom: -0.83rem;
  }
  .files .content .filter-container .up .iconfont {
    color: #777;
    font-size: 1rem;
    font-weight: 800;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .files .content .filter-container .filterBox {
    margin-top: 0;
  }
  .files .content .filter-container .filterBox .yearList {
    height: 1.5rem;
    overflow: hidden;
  }
  .files .content .filter-container .filterBox .yearList > li {
    display: inline-block;
    width: auto;
    border-top: none;
    margin: 0 0.49rem 0.5rem 0;
  }
  .files .content .filter-container .filterBox .yearList > li:nth-last-of-type(1) {
    border-bottom: none;
  }
  .files .content .filter-container .filterBox .yearList > li:nth-of-type(7n) {
    margin-right: 0;
  }
  .files .content .filter-container .filterBox .yearList > li.more,
  .files .content .filter-container .filterBox .yearList > li.pack {
    height: 0.48rem;
    font-size: 0.75rem;
    font-weight: 400;
    color: #202020;
    line-height: 0.55rem;
    letter-spacing: 0;
    margin-left: 0.5rem;
    margin-right: 0;
  }
  .files .content .filter-container .filterBox .yearList > li.active p {
    position: relative;
  }
  .files .content .filter-container .filterBox .yearList > li.active p span {
    font-weight: 800;
  }
  .files .content .filter-container .filterBox .yearList > li.active p span:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0.8rem;
    width: 100%;
    height: 0.12rem;
    background: #60ff12;
  }
  .files .content .filter-container .filterBox .yearList > li p {
    height: auto;
    padding: 0;
  }
  .files .content .filter-container .filterBox .yearList > li p span {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
  .files .content .filter-container .filterBox .yearList > li p .iconfont {
    display: none;
  }
  .files .content .filter-container .filterBox .monthList-phone {
    display: block;
    margin-top: 0.6rem;
    padding-top: 1.1rem;
    border-top: 0.03rem solid #ccc8c8;
  }
  .files .content .filter-container .filterBox .monthList-phone::after {
    content: "";
    display: block;
    visibility: hidden;
    clear: both;
  }
  .files .content .filter-container .filterBox .monthList-phone li {
    float: left;
    width: 2.2rem;
    height: 1.2rem;
    border: 0.03rem solid #333;
    border-radius: 0.2rem;
    margin: 0 0.79rem 0.8rem 0;
    text-align: center;
    line-height: 0.8rem;
  }
  .files .content .filter-container .filterBox .monthList-phone li:nth-of-type(6n) {
    margin-right: 0;
  }
  .files .content .filter-container .filterBox .monthList-phone li.active {
    background-color: #333;
  }
  .files .content .filter-container .filterBox .monthList-phone li.active span {
    color: #fff;
  }
  .files .content .filter-container .filterBox .monthList-phone li span {
    font-size: 0.6rem;
    color: #000;
  }
  .files .content .right {
    float: none;
    width: 100%;
    margin-top: 0;
    padding: 0.5rem 0.8rem 4.5rem;
    background-color: #fff;
  }
  .files .content .right table thead {
    background: none;
    border-bottom: 0.03rem solid #ccc8c8;
  }
  .files .content .right table thead th {
    height: 1.65rem;
    font-size: 0.65rem;
  }
  .files .content .right table thead th:nth-of-type(1) {
    text-align: left;
  }
  .files .content .right table thead th:nth-of-type(3) {
    text-align: right;
  }
  .files .content .right table tbody {
    background: none;
    position: relative;
  }
  .files .content .right table tbody tr td {
    font-size: 0.5rem;
    padding: 0.5rem 0;
  }
  .files .content .right table tbody tr td:nth-of-type(1) {
    width: 40%;
    padding-left: 0;
  }
  .files .content .right table tbody tr td:nth-of-type(2) {
    width: 30%;
  }
  .files .content .right table tbody tr td:nth-of-type(3) {
    width: 30%;
    text-align: right;
  }
}
@media screen and (max-width: 374px) {
  .directory .container .box-1 .classify p {
    width: 4.8rem;
  }
  .directory .container .box-2 .classify p {
    width: 4.8rem;
  }
  .files .content .right table tbody tr td {
    zoom: 0.8;
  }
}
