body {
  font-family: "microsoft yahei", "宋体";
  color: #333;
}
a:hover{
  color: #EB2A2B;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 1170px;
}
.container .position {
  height: 40px;
  font-size: 16px;
}
.container .column {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.column .column_left {
  width: 25%;
  height: 100%;
  line-height: 45px;
  border: 1px solid #ccc;
  border-top: 3px solid #EB2A2B;
  padding: 5px 10px 10px;
  font-size: 16px;
}
.column .column_left .left_tit { 
  color: #EB2A2B;
  font-weight: 700;
}
.column .column_left .left_title {
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 5px;
  text-align: center;
}
.column_left .left_title a.active, .column_left .left_title.active a {
  color: #EB2A2B;
}
.column .column_right { 
  width: 73%;
  height: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
} 
.column .column_right .right_list { 
  height: 46px;
  line-height: 46px;
  border-bottom: 1px dotted #ccc;
  display: flex;
  justify-content: space-between;
}
.column .column_right .right_list a { 
  width: 85%;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.column .column_right .right_list span {
  padding: 0 5px;
  width: 105px;
}

.link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.link .link_list { 
  width: 42%;
}
.link .link_list a { 
  height: 200px;
  border: 1px solid #ccc;
  display: block;
  margin: 20px 0;
}

.tit_text .right_title {
  color: #EB2A2B;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
}
.tit_text p { 
  margin: 0 0 10px;
  text-indent: 2em;
  line-height: 22px;
}

@media (max-width: 780px) {
  .column .column_right .right_list a {
    font-size: 14px;
  }
  .column .column_right .right_list span {
    font-size: 14px;
    width: 100px;
  }
}
@media (max-width: 680px) {
  .container .position {
    font-size: 12px;
  }
  .container .column {
    flex-direction: column;
  }
  .column_left,
  .column_right {
    width: 100% !important;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  .column .column_left ul {
    display: flex;
    flex-wrap: wrap;
  }
  .column .column_left ul .left_title {
    padding: 0 15px;
    margin-right: 10px;
  }
}