/* 公共头部 */
.header {
  font-size: 14px;
  color: #333;
  background: url(../images/header_bg.png) no-repeat;
  background-size: cover;
}
.header .header-banner {
  height: 226px;
}
.header .header-banner .shortcut {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 45px;
}
.header .header-banner .shortcut .shortcut-r {
  display: flex;
  align-items: center;
}
.header .header-banner .shortcut .shortcut-r li a {
  position: relative;
  display: flex;
  align-items: center;
  color: #333;
}
.header .header-banner .shortcut .shortcut-r li a img {
  width: auto;
  height: 16px;
  margin-right: 6px;
}
.header .header-banner .shortcut .shortcut-r li a .ewm {
  display: none;
  position: absolute;
  bottom: -110px;
  width: 100px;
  height: 100px;
  border: 1px solid #eee;
  padding: 5px;
  z-index: 999;
}
.header .header-banner .shortcut .shortcut-r li a .ewm img {
  width: 100%;
  height: 100%;
}
.header .header-banner .shortcut .shortcut-r li a:hover .ewm {
  display: block;
}
.header .header-banner .shortcut .shortcut-r li:nth-child(2n) {
  width: 2px;
  height: 16px;
  margin: 0 30px;
  background-color: #a7a7a7;
}
.header .header-banner .header-main {
  display: flex;
  justify-content: space-between;
  height: 181px;
  background: url(../images/main_bg.png) no-repeat;
  background-size: 605px 91px;
  background-position: right bottom;
}
.header .header-banner .header-main .title {
  display: flex;
  padding-top: 30px;
}
.header .header-banner .header-main .title .logo {
  width: 270px;
  height: 100px;
  margin: 0 21px 0 42px;
}
.header .header-banner .header-main .search-web {
  position: relative;
  width: 302px;
  height: 40px;
  border: 1px solid #ca0000;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
}
.header .header-banner .header-main .search-web .search-text {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 58px 0 20px;
  text-align: center;
}
.header .header-banner .header-main .search-web .search-button {
  position: absolute;
  right: 0;
  width: 58px;
  height: 100%;
  background-color: #ca0000;
  border: 0;
  cursor: pointer;
  border-radius: 10px 0 0 10px;
  background-image: url(../images/magnifier_icon.png);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center;
}
.header .header-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 76px;
  font-size: 24px;
  font-weight: 600;
  background-color: #ca0000;
}
.header .header-nav li {
  position: relative;
}
.header .header-nav li a {
  color: #fff;
}
.header .header-nav li::before {
  display: none;
  content: '';
  position: absolute;
  bottom: -10px;
  width: 94px;
  height: 5px;
  background: url(../images/actived.png) no-repeat;
  background-size: 100% 100%;
}
.header .header-nav li:hover::before {
  display: block;
}
/* 公共底部 */
.footer {
  height: auto;
  margin-top: 40px;
  background-color: #efefef;
  border-top: 10px solid #ca0000;
  padding-top: 18px;
}
.footer .foot-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer .foot-nav li {
  width: 235px;
  height: 40px;
  margin-bottom: 15px;
  background-color: #fff;
}
.footer .foot-nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #333;
}
.footer .foot-nav li:hover {
  background-color: #ca0000;
}
.footer .foot-nav li:hover a {
  color: #fff;
}
.footer .copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  padding-bottom: 40px;
  font-size: 14px;
  width: 100%;
}
.footer .copyright .img-link {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
.footer .copyright .img-link .dang {
  margin-right: 24px;
}
.footer .copyright .item {
  line-height: 30px;
  margin-right: 40px;
}
.footer .copyright .item a {
  display: flex;
  align-items: center;
  color: #333;
}
.footer .copyright .item a img {
  margin-right: 10px;
}
.footer .copyright .item a:hover {
  color: #ca0000;
}
