/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
/* 页脚样式 */
#tm_footer {
  height: auto;
  font-size: 14px;
  font-weight: 300;
  color: white;
  background-color: #175292;
  padding: 33px 50px 16px;
}
.tm_footer--main {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 -40px;
}
.tm_footer-menus {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 40px;
  margin-bottom: 20px;
}
.tm_footer-menu-title {
  height: 16px;
  line-height: 16px;
  font-size: 16px;
  font-weight: 400;
  color: white;
  white-space: nowrap;
  margin-bottom: 25px;
}
.tm_footer-menu {
  font-style: normal;
  color: white;
  margin-bottom: 16px;
  cursor: pointer;
  white-space: nowrap;
}
.tm_footer-menu-tel::before {
  font-family: "Font Awesome 5 Free";
  margin-right: 7px;
  content: "\f095";
}
.tm_footer-menu-address {
  position: relative;
  white-space: normal;
  padding-left: 16px;
}
.tm_footer-menu-address a {
  color: white;
}
.tm_footer-menu-address a:visited {
  color: white;
}
.tm_footer-menu-address::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  top: 0;
  left: 0;
  content: "\f3c5";
}
.tm_footer--copyright {
  display: flex;
  margin-bottom: 5px;
  flex-wrap: wrap;
  justify-content: center;
}
.tm_footer--copyright-list {
  text-align: center;
  margin-bottom: 6px;
  color: white;
  display: flex;
  justify-content: center;
}
.tm_footer--copyright-list a {
  color: white !important;
}
.right_record {
  margin-right: 2px;
}
/* 列布局 */
.el-col-2 {
  width: 8.33333%;
}
.el-col-3 {
  width: 12.5%;
}
.el-col-4 {
  width: 16.66667%;
}
.el-col-7 {
  width: 29.16667%;
}
.el-col-8 {
  width: 33.33333%;
}
.el-col-24 {
  width: 100%;
}
/* 行布局 */
.el-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
/* 图标字体 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/webfonts/fa-solid-900.woff2") format("woff2");
}
/* 响应式设计 */
@media (max-width: 768px) {
  #tm_footer {
    display: none;
  }
}
