.content .box,
.content .site,
.content .news-detail,
.content .news-list-box,
.content .form-box,
.org.content .list,
.org.content .list table,
.pagination-box,
.search-box,
.footer {
  margin-top: 30px;
}
/* <= 768px */
@media (max-width: 768px) {
  .content .box,
  .content .site,
  .content .news-detail,
  .content .news-list-box,
  .content .form-box,
  .org.content .list,
  .org.content .list table,
  .pagination-box,
  .search-box,
  .footer {
    margin-top: 15px;
  }
}

/* 布局，加了fullscreen，content高度不够时显示满屏，不加则是实际高度 */
.fullscreen {
  height: auto !important;
  min-height: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.common-header {
  flex-shrink: 0;
}
.content {
  flex: 1 1 auto;
}
.footer {
  padding: 30px 80px;
  background: #f0f0f5;
  text-align: center;
  color: #333;
  font-size: 14px;
  line-height: 30px;
}
.footer a {
  font-weight: bold;
}
.footer span {
  display: inline-block;
  max-width: 80%;
  margin: 0 15px;
}
@media (max-width: 768px) {
  .footer {
    padding: 20px;
    line-height: 20px;
  }
  .footer span {
    width: 100%;
  }
  .footer p ~ p {
    margin-top: 10px;
  }
}
@media (max-width: 576px) {
  .footer {
    font-size: 12px;
  }
}
@media (max-width: 374px) {
  .footer span {
    margin: 0;
    max-width: 100%;
  }
}
/* 分页器 */
.pagination-box {
  text-align: center;
  font-size: inherit;
}
.el-checkbox {
  -webkit-tap-highlight-color: transparent;
}
/* 暂无数据 */
.no-data {
  text-align: center;
  padding: 80px 50px;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pagination-box .el-pager .number:not(.active) {
    display: none;
  }
  .no-data {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .pagination-box .el-pagination .el-pagination__jump,
  .pagination-box .el-pagination .el-pagination__sizes {
    display: none;
  }
}
/* 顶部header */
.header {
  background: no-repeat center top / auto 100% url(../img/bg_header.jpg);
  line-height: 1;
  padding: 60px 0;
  font-size: 20px;
  position: relative;
  z-index: 1;
}
.m-menu-box {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  background: transparent;
  z-index: 4;
  transition: background 0.1s;
}
.m-menu-box img {
  transition: opacity 0.1s;
  opacity: 0;
  height: 26px;
  position: absolute;
  top: 10px;
  right: 15px;
}
.m-menu-box .nav-botton {
  position: absolute;
  top: 10px;
  left: 15px;
  border: none;
  display: block;
  height: 30px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  box-sizing: border-box;
  z-index: 2;
}
.m-menu-box .navbar-toggler {
  position: relative;
  width: 25px;
  height: 2px;
  background-color: #0d439c;
  display: block;
  border-radius: 2px;
}
.m-menu-box .navbar-toggler::before,
.m-menu-box .navbar-toggler::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #0d439c;
  border: none;
  display: block;
  border-radius: 2px;
  transition: all 0.3s;
}
.m-menu-box .navbar-toggler::before {
  top: -8px;
  transform-origin: left top;
}
.m-menu-box .navbar-toggler::after {
  bottom: -8px;
  transform-origin: left bottom;
}
.m-menu-box .nav-botton.close .navbar-toggler {
  background-color: transparent;
}
.m-menu-box .nav-botton.close .navbar-toggler::before {
  transform: rotate(45deg);
  top: -9px;
}
.m-menu-box .nav-botton.close .navbar-toggler::after {
  transform: rotate(-45deg);
}
.header .logo {
  width: 100%;
}
.header .logos {
  margin: 0 auto;
  text-align: center;
}
.header .logos img {
  display: inline-block;
  max-width: 100%;
}
.nav-box {
  color: #fff;
  background-color: #0d439c;
  height: 70px;
  font-size: 20px;
  right: 0;
}
.nav-box > div {
  height: 100%;
}
.nav-box .nav {
  height: 100%;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.nav-box .nav li {
  position: relative;
}
.nav-box .nav li a {
  color: inherit;
  display: block;
  width: 100%;
  height: 35px;
  font-size: inherit;
  line-height: 1.2;
  position: relative;
}
.nav-box .nav li a img {
  display: none;
  vertical-align: middle;
  margin-right: 10px;
  width: 25px;
}
.nav-box .nav li a span {
  vertical-align: middle;
}
.nav-box .nav li::after {
  content: "";
  display: block;
  height: 3px;
  background-color: #fff;
  left: 50%;
  bottom: 0;
  opacity: 0;
  position: absolute;
  right: 50%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.nav-box .nav li.focus:after,
.nav-box .nav li:hover:after {
  left: 35%;
  right: 35%;
  opacity: 1;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.nav-box form.search {
  background: rgba(255, 255, 255, 0.788);
  border: 3px solid #dcf0fa;
  border-radius: 6px;
  padding: 0;
  display: flex;
  align-items: stretch;
}
.m-search {
  background-color: #0d439c;
  padding: 8px 15px;
}
.m-search .search {
  width: 100%;
  background: #fff;
  border: 3px solid #dcf0fa;
  border-radius: 6px;
  padding: 0;
  display: flex;
  align-items: stretch;
}
.nav-box form.search input::-webkit-input-placeholder,
.m-search .search > input::-webkit-input-placeholder {
  font-size: 16px;
  color: #999;
}

.nav-box form.search > input,
.m-search .search > input {
  -webkit-appearance: textfield;
  background: #fff;
  border: none;
  outline: none;
  height: 34px;
  margin: 0;
  padding: 0 10px;
  vertical-align: middle;
  flex: 1;
  min-width: 172px;
}
.nav-box form.search > button::before,
.m-search .search > button::before {
  content: "";
  display: inline-block;
  vertical-align: sub;
  background-image: url(../img/icon-search.png);
  background-size: 100% 100%;
  width: 22px;
  height: 22px;
}
.nav-box form.search > button,
.m-search .search > button {
  cursor: pointer;
  background: #f4b200;
  border: none;
  color: #fff;
  line-height: 34px;
  font-size: 18px;
  margin: 0;
  width: 70px;
}
/* <= 992px */
@media (max-width: 992px) {
  .header {
    font-size: 16px;
    padding: 30px 0;
  }
  .nav-box {
    font-size: 14px;
  }
  .nav-box .nav {
    margin: 0 !important;
  }
  .nav-box .nav li a {
    height: 30px;
    line-height: 1;
  }
}
/* <= 768px */
@media (max-width: 768px) {
  .m-search .search > input,
  .m-search .search > input::-webkit-input-placeholder {
    font-size: 13px;
  }
  .header {
    z-index: 3;
  }
  .nav-box {
    font-size: 16px;
    position: fixed;
    right: 1000px;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #0d439c;
    z-index: 2;
    transition: right 0.5s;
  }
  .nav-box.show {
    transition: right 0.5s;
    right: 0px;
  }
  .nav-box .container {
    padding: 0;
    width: 100%;
  }
  .nav-box .nav {
    background: #fff;
    padding: 0 15px;
    display: block;
    height: auto;
  }
  .nav-box .nav li {
    border-bottom: 1px solid #c8dcfa;
    position: relative;
    font-weight: bold;
  }
  .nav-box .nav li:after,
  .nav-box .nav li.focus:after,
  .nav-box .nav li:hover:after {
    content: "";
    opacity: 1;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-top: 2px solid #0d439c;
    border-right: 2px solid #0d439c;
    position: absolute;
    transform: rotate(45deg);
    right: 20px;
    left: auto;
    top: 18px;
  }
  .nav-box .nav li a {
    height: 50px;
    line-height: 50px;
  }
  .nav-box .nav li a img {
    display: inline-block;
  }
  .nav-box form.search {
    border: 1px solid #c1c1c1;
    margin-top: 15px;
  }
  .nav-box form.search > input {
    width: calc(100% - 78px);
  }
}

/* 详情页 */
.content .site {
  text-align: left;
  border-bottom: 2px solid #0d439c;
  font-size: 15px;
  color: #ababab;
  height: 40px;
  line-height: 40px;
  /* margin-left: -15px;
  margin-right: -15px; */
}
.content .site .current {
  position: relative;
  padding-left: 20px;
}
.content .site .current::before {
  content: "";
  height: 12px;
  width: 12px;
  border: 4px solid #0d439c;
  display: block;
  position: absolute;
  top: 5px;
  left: 0px;
  z-index: 1;
  background: #fff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  text-align: center;
}
.content .site .current:after {
  content: "";
  height: 0px;
  width: 0px;
  display: block;
  position: absolute;
  bottom: 3px;
  left: 0px;
  border: 10px transparent solid;
  border-top-color: #0d439c;
  border-width: 10px 6px 0px 6px;
}
.content .site span,
.content .site a {
  padding: 2px 4px;
}
.content .site a:hover {
  color: #0d439c;
}
.content .news-detail {
  border: 1px solid #c8dcfa;
  padding: 40px;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 40px;
}
.content .news-detail .title {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  font-size: 24px;
  font-weight: bold;
}
.content .news-detail .other {
  text-align: center;
  border-bottom: 1px solid #c8dcfa;
  margin-top: 30px;
  padding-bottom: 30px;
}
.content .news-detail .other span {
  display: inline-block;
  margin: 0 10px;
  max-width: 80%;
}
.content .news-detail .article-content {
  margin-top: 30px;
  line-height: 2;
}
.content .news-detail .article-content a {
  color: #0d439c;
}
.content .news-detail .article-content p {
  max-width: 100%;
  /* text-indent: 2em; */
  font-family: inherit !important;
  color: #666;
}
.content .news-detail .article-content p {
  margin: 15px 0;
}
.content .news-detail .article-content img {
  max-width: 90%;
  display: block;
  margin: 15px auto 0;
}
/* <= 768px */
@media (max-width: 768px) {
  .content .site {
    margin-left: 0;
    margin-right: 0;
  }
  .content .news-detail {
    padding: 20px 15px;
    margin-top: 20px;
  }
  .content .news-detail .title {
    width: 100%;
  }
  .content .news-detail .other {
    padding-bottom: 20px;
    margin-top: 20px;
  }
  .content .news-detail .article-content {
    margin-top: 20px;
  }
  .content .news-detail .article-content h3 {
    font-size: 18px;
  }
}
/* 举报指南 */
.content .news-detail.guide-box {
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}
.content .news-detail.guide-box .title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .news-detail.guide-box .title::before,
.content .news-detail.guide-box .title::after,
.org.content .list .title::before,
.org.content .list .title::after {
  content: "";
  width: 180px;
  height: 2px;
  background-image: url(../img/bg_wing_right.png);
  background-size: contain;
  margin: 20px;
}
.content .news-detail.guide-box .title::before {
  transform: rotate(180deg);
}
.content .news-detail.guide-box .title span {
  cursor: pointer;
  margin: 0 15px;
}
.content .news-detail.guide-box .title span.active {
  color: #0d439c;
}
@media (max-width: 768px) {
  .content .news-detail.guide-box .title::before,
  .content .news-detail.guide-box .title::after {
    content: none;
  }
}
@media (max-width: 374px) {
  .content .news-detail.guide-box {
    padding-left: 0;
    padding-right: 0;
  }
}

/* 列表页 */
.content .news-list-box .sidebar {
  line-height: 56px;
}
.content .news-list-box .sidebar li.lv1 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  height: 56px;
  background: #e2f6ff;
  transition: background 0.3s;
  padding: 0 15px;
}
.content .news-list-box .sidebar .lv1.focus,
.content .news-list-box .sidebar .lv2.focus,
.content .news-list-box .sidebar .lv1:hover,
.content .news-list-box .sidebar .lv2:hover {
  background: #0d439c;
  color: #fff;
}
.content .news-list-box .sidebar li.lv1 a {
  display: block;
}
.content .news-list-box .sidebar .lv1 .arrow.close {
  transform: rotate(-45deg);
}
.content .news-list-box .sidebar .lv1 .arrow {
  cursor: pointer;
  padding: 7px;
  display: inline-block;
  border-bottom: 2px solid #0d439c;
  border-right: 2px solid #0d439c;
  position: absolute;
  transform: rotate(45deg);
  transition: transform 0.3s;
  right: 20px;
  left: auto;
  top: 18px;
}
.content .news-list-box .sidebar .lv1.focus .arrow,
.content .news-list-box .sidebar .lv1:hover .arrow {
  border-color: #fff;
}
.content .news-list-box .sidebar .sub-list.close {
  height: 0;
  overflow: hidden;
}
.content .news-list-box .sidebar .lv2 {
  margin-bottom: 5px;
  padding: 0 20px;
  display: block;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-weight: normal;
  background: #fff;
  transition: background 0.3s;
}
.content .news-list-box .sidebar .lv2 a {
  display: block;
}
.content .news-list-box .sidebar .lv2::before {
  content: "";
  position: relative;
  top: 50%;
  margin-top: -3px;
  float: left;
  margin-right: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0d439c;
}
.content .news-list-box .sidebar .lv2.focus::before,
.content .news-list-box .sidebar .lv2:hover::before {
  background: #fff;
}
.content .news-list2 .item {
  margin-bottom: 20px;
  border: 1px solid #dcf0fa;
  padding: 20px 30px;
  font-size: 16px;
  line-height: 1.4;
}
.content .news-list2 .item .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dcf0fa;
  transition: color 0.3s;
}
.content .news-list2 .item:hover .title {
  color: #0d439c;
}
.content .news-list2 .item .date {
  font-weight: bold;
  text-align: center;
  margin-right: 20px;
  line-height: 1;
}
.content .news-list2 .item .date p {
  font-family: "微软雅黑";
  font-weight: bold;
}
.content .news-list2 .item .date .d {
  font-size: 50px;
  margin-bottom: 5px;
}
.content .news-list2 .item .desc {
  line-height: 1.6;
  color: #666;
}
/* <= 768px */
@media (max-width: 768px) {
  .content .news-list-box .sidebar li a {
    padding: 0;
  }
  .content .news-list-box .sidebar .lv1:not(.show),
  .content .news-list-box .sidebar .sub-list:not(.show) {
    display: none;
  }
  .content .news-list-box .sidebar .lv1.show {
    font-size: 20px;
    border-bottom: 1px solid #c8dcfa;
    height: 40px;
    line-height: 40px;
    background: transparent;
    padding: 0;
    color: #0d439c;
    margin-bottom: 10px;
  }
  .content .news-list-box .sidebar .lv1.show a {
    display: inline-block;
    border-bottom: 6px solid #0d439c;
    line-height: 34px;
    vertical-align: bottom;
  }
  .content .news-list-box .sidebar .lv1 .arrow {
    display: none;
  }
  .content .news-list-box .sidebar .sub-list::-webkit-scrollbar {
    display: none;
  }
  .content .news-list-box .sidebar .sub-list {
    overflow: auto;
    /* -webkit-overflow-scrolling: touch; */
    white-space: nowrap;
    line-height: 0;
  }
  .content .news-list-box .sidebar .lv2 {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2%;
    text-align: center;
    background: #dcf0fa;
    color: #0d439c;
    height: 40px;
    width: 80px;
    padding: 0;
    border-radius: 3px;
    margin-bottom: 10px;
  }
  .content .news-list-box .sidebar .lv2::before {
    content: none;
  }
  .content .news-list-box .sidebar .lv2.focus {
    background: #0d439c;
    color: #fff;
  }
  .content .news-list-box .sidebar .lv2 a {
    font-size: 14px;
    font-weight: bold;
  }
  .content .news-list2 {
    margin-top: 5px;
  }
  .content .news-list2 .item {
    padding: 20px 20px;
  }
  .content .news-list2 .item .title {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .content .news-list2 .item:hover .title {
    color: inherit;
  }
}
/* <= 576px */
@media (max-width: 576px) {
  .content .news-list2 .item {
    font-size: 14px;
  }
  .content .news-list2 .item .title {
    font-size: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .content .news-list2 .item .date {
    font-weight: normal;
    margin-right: 20px;
  }
  .content .news-list2 .item .date .d {
    font-size: 40px;
  }
  .content .news-list2 .item .desc {
    line-height: 1.4;
  }
}
@media (max-width: 374px) {
  .content .news-list2 .item {
    padding: 10px;
    margin-bottom: 15px;
  }
  .content .news-list2 .item .title {
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
/* 举报机构页 */
.org.content {
  text-align: center;
}
.org.content .list table {
  width: 100%;
  font-size: 16px;
  line-height: 30px;
  border-collapse: collapse;
}
.org.content .list th {
  height: 30px;
  line-height: 30px;
}
.org.content .list th,
.org.content .list td {
  border: 2px solid #e5e5e5;
}

/* 搜索列表页 */
.search-box {
  background: #dcf0fa;
  padding: 30px 100px;
}
.search-box .input-with-select {
  width: 80%;
}
.search-box .input-with-select .el-input-group__prepend {
  background-color: #fff;
  width: 100px;
}
.search-box .el-range-editor.el-input__inner {
  max-width: 100%;
}
.search-box .el-form-item:nth-last-child(1) {
  margin-bottom: 0;
}
.search-box .el-date-editor .el-range-separator {
  box-sizing: content-box;
}
@media (max-width: 768px) {
  .search-box {
    padding: 15px;
  }
  .search-box .el-form-item__label {
    line-height: 20px;
  }
  .search-box .el-form-item {
    margin-bottom: 10px;
  }
  .content .news-detail .title,
  .org.content .list .title {
    font-size: 18px;
  }
}

/* 举报结果查询详情页 */
.content .news-detail.result-box {
  padding-top: 0;
}
.result-box .list .tips {
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #0d439c;
  border-bottom: 1px solid #c8dcfa;
}
.result-box .list li {
  line-height: 40px;
  color: #666666;
  font-size: 0;
}
.result-box .list li.partT {
  height: 80px;
  line-height: 80px;
  font-weight: bold;
  border-top: 1px dashed #c8dcfa;
  font-size: 20px;
  color: #333;
  margin-top: 20px;
}
.result-box .list li.partT.first {
  margin-top: 0;
  border: none;
}
.result-box .list li.partT img,
.result-box .list li.partT span {
  display: inline-block;
  vertical-align: middle;
}
.result-box .list li.partT img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.result-box .list li span,
.result-box .list li div {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
}
.result-box .list li .t {
  width: 150px;
  text-align: right;
  margin-right: 10px;
  vertical-align: top;
}
.result-box .list li .t:after {
  content: "：";
}
.result-box .list li span.t ~ * {
  max-width: calc(100% - 160px);
}
.result-box .list li .content-list a {
  color: #0078e6;
  display: block;
  line-height: inherit;
}
.result-box .list li .feedbacks .item {
  display: flex;
  align-items: center;
}
.result-box .list li .feedbacks .item ~ .item {
  border-top: 1px dashed #c8dcfa;
}
.result-box .list li .feedbacks .report-content {
  flex: 1;
  text-align: left;
}
.result-box .list li .feedbacks .otherInfo {
  min-width: 250px;
}
.result-box .list li .feedbacks span {
  margin-right: 20px;
}
.result-box .list li .date {
  color: #ababab;
}
@media (max-width: 768px) {
  .result-box .list .tips {
    font-size: 20px;
    height: 60px;
    line-height: 60px;
  }
  .result-box .list li.partT {
    font-size: 18px;
    height: 50px;
    line-height: 50px;
  }
  .result-box .list li span,
  .result-box .list li div {
    font-size: 14px;
  }
  .result-box .list li {
    line-height: 26px;
  }
  .result-box .list li .t {
    width: 85px;
  }
  .result-box .list li span.t ~ * {
    max-width: 100%;
  }
  .result-box .list li .feedbacks span.report-content {
    margin-right: 0;
  }
  .result-box .list li .feedbacks .item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* 举报须知 */
.choose-read {
  text-align: center;
  line-height: 30px;
}
.choose-read .isRead {
  margin: 20px 0;
}
.choose-read a {
  display: block;
}
.choose-read .countdown {
  margin-left: 10px;
  color: red;
  width: 25px;
  display: inline-block;
}

/* 举报其他类 */
.content .news-detail.other-box {
  padding-bottom: 10px;
}
.other-box .links-box.row > li {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}
.other-box .article-content.links-box li a {
  height: 80px;
  font-size: 18px;
  line-height: 80px;
  border-radius: 6px;
  width: 100%;
  display: inline-block;
  background-color: #dcf0fa;
  color: #000;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  transition: background 0.3s;
}
.other-box .links-box li a:hover {
  background: #0d439c;
  color: #fff;
}
.other-box .links-box li a .icon {
  width: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
  background-size: cover;
}
.other-box .links-box li a .icon1 {
  background-image: url(../img/icon-other1.png);
}
.other-box .links-box li a .icon2 {
  background-image: url(../img/icon-other2.png);
}
.other-box .links-box li a .icon3 {
  background-image: url(../img/icon-other3.png);
}
.other-box .links-box li a .icon4 {
  background-image: url(../img/icon-other4.png);
}
.other-box .links-box li a .icon5 {
  background-image: url(../img/icon-other5.png);
}
.other-box .links-box li a .icon6 {
  background-image: url(../img/icon-other6.png);
}
.other-box .links-box li a .icon7 {
  background-image: url(../img/icon-other7.png);
}
.other-box .links-box li a .icon8 {
  background-image: url(../img/icon-other8.png);
}
.other-box .links-box li a .icon9 {
  background-image: url(../img/icon-other9.png);
}
.other-box .links-box li a .icon10 {
  background-image: url(../img/icon-other10.png);
}
.other-box .links-box li a .icon11 {
  background-image: url(../img/icon-other11.png);
}
.other-box .links-box li a .icon12 {
  background-image: url(../img/icon-other12.png);
}
.other-box .links-box li a:hover .icon1 {
  background-image: url(../img/icon-other1_2.png);
}
.other-box .links-box li a:hover .icon2 {
  background-image: url(../img/icon-other2_2.png);
}
.other-box .links-box li a:hover .icon3 {
  background-image: url(../img/icon-other3_2.png);
}
.other-box .links-box li a:hover .icon4 {
  background-image: url(../img/icon-other4_2.png);
}
.other-box .links-box li a:hover .icon5 {
  background-image: url(../img/icon-other5_2.png);
}
.other-box .links-box li a:hover .icon6 {
  background-image: url(../img/icon-other6_2.png);
}
.other-box .links-box li a:hover .icon7 {
  background-image: url(../img/icon-other7_2.png);
}
.other-box .links-box li a:hover .icon8 {
  background-image: url(../img/icon-other8_2.png);
}
.other-box .links-box li a:hover .icon9 {
  background-image: url(../img/icon-other9_2.png);
}
.other-box .links-box li a:hover .icon10 {
  background-image: url(../img/icon-other10_2.png);
}
.other-box .links-box li a:hover .icon11 {
  background-image: url(../img/icon-other11_2.png);
}
.other-box .links-box li a:hover .icon12 {
  background-image: url(../img/icon-other12_2.png);
}
.other-box .links-box li a .name {
  flex: 1;
  vertical-align: middle;
  line-height: 20px;
  display: inline-block;
  max-height: 100%;
  overflow: hidden;
}
.other-close {
  display: block;
  margin: 15px auto 0;
  color: #fff;
  background: #8ca0c9;
  border: 1px solid #8ca0c9;
  border-radius: 4px;
  font-size: 14px;
  height: 36px;
  line-height: 36px;
  width: 66px;
  text-align: center;
}
.other-close:visited,
.other-close:link {
  background: #8ca0c9;
  border: 1px solid #8ca0c9;
}
.other-close:hover {
  background: #0d439c;
  border-color: #0d439c;
  color: #fff;
}
@media (max-width: 768px) {
  .other-box .article-content.links-box li a {
    font-size: 16px;
  }
  .other-box .links-box.row {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (max-width: 576px) {
  .other-box .links-box.row > li {
    margin-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .other-box .article-content.links-box li a {
    height: 50px;
    line-height: 50px;
    padding: 0 5px 0 10px;
  }
  .other-box .article-content.links-box li a:hover {
    background-color: #dcf0fa;
    color: #000;
  }
  .other-box .links-box li a:hover .icon1 {
    background-image: url(../img/icon-other1.png);
  }
  .other-box .links-box li a:hover .icon2 {
    background-image: url(../img/icon-other2.png);
  }
  .other-box .links-box li a:hover .icon3 {
    background-image: url(../img/icon-other3.png);
  }
  .other-box .links-box li a:hover .icon4 {
    background-image: url(../img/icon-other4.png);
  }
  .other-box .links-box li a:hover .icon5 {
    background-image: url(../img/icon-other5.png);
  }
  .other-box .links-box li a:hover .icon6 {
    background-image: url(../img/icon-other6.png);
  }
  .other-box .links-box li a:hover .icon7 {
    background-image: url(../img/icon-other7.png);
  }
  .other-box .links-box li a:hover .icon8 {
    background-image: url(../img/icon-other8.png);
  }
  .other-box .links-box li a:hover .icon9 {
    background-image: url(../img/icon-other9.png);
  }
  .other-box .links-box li a:hover .icon10 {
    background-image: url(../img/icon-other10.png);
  }
  .other-box .links-box li a:hover .icon11 {
    background-image: url(../img/icon-other11.png);
  }
  .other-box .links-box li a:hover .icon12 {
    background-image: url(../img/icon-other12.png);
  }
  .other-box .links-box li a .icon {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
  .other-box .links-box li a .name {
    line-height: 16px;
  }
}
