/*
*这里的值严格按照UI设计图标注值来进行设置
*/
/*
*颜色
*/
/*
*页面的边距
*/
/*
*字体
*/
/*
*头像
*/
/*
 * 按钮
 */
/*
*对常见的多行样式进行了方法封装，方便调用，加快开发效率
*/
html,
body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background-color: #fff;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  font-weight: initial !important;
  font-size: 14px !important;
  color: #333 !important;
}
html *,
body * {
  outline: none;
  text-decoration: none !important;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  font-style: normal;
}
ul,
p {
  margin: 0;
  padding: 0;
}
.e {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.f {
  display: flex;
}
.f-c {
  display: flex;
  flex-direction: column;
}
.a-c {
  display: flex;
  align-items: center;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-weight: initial;
  font-size: 12px;
  color: #999;
  resize: none;
}
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
/*定义滚动条轨道 内阴影+圆角*/
*::-webkit-scrollbar-track {
  border-radius: 10px;
  /*滚动条的背景区域的圆角*/
  background-color: transparent;
  /*滚动条的背景颜色*/
}
/*定义滑块 内阴影+圆角*/
*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  /*滚动条的圆角*/
  background-color: #ddd;
  /*滚动条的背景颜色*/
}
.h {
  cursor: pointer;
}
.h:hover {
  color: #DD1111;
  border-color: #DD1111;
}
input {
  -webkit-user-select: auto;
}
.base-banner {
  position: relative;
}
.base-banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: flex;
}
.base-banner div {
  position: absolute;
  top: 56px;
  width: 100%;
  left: 0;
  right: 0;
  width: 1200px;
  margin: 0 auto;
}
.base-banner div h1 {
  font-weight: 800;
  font-weight: initial;
  font-size: 34px;
  color: #fff;
  line-height: 28px;
}
.base-banner div em {
  margin: 21px 0 24px 0;
  display: block;
  width: 61px;
  height: 3px;
  background: #fff;
}
.base-banner div span {
  height: 14px;
  font-size: 14px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #ffffff;
  line-height: 14px;
}
.base-nav {
  width: 1200px;
  margin: 0 auto;
  padding: 22px 0;
  font-weight: initial;
  font-size: 14px;
  color: #999;
}
.base-nav a {
  color: #999;
  cursor: pointer;
}
.base-nav a:hover {
  color: #DD1111;
  border-color: #DD1111;
}
.base-nav .active {
  color: #DD1111;
}
.base-nav em {
  margin: 0 10px;
}
.base-content {
  width: 1200px;
  margin: 0 auto;
}
.base-content .menu {
  vertical-align: top;
  display: inline-block !important;
  width: 280px;
  min-width: 280px;
  border: 1px solid #e6e6e6;
}
.base-content .menu h2 {
  width: 100%;
  background: #DD1111;
  padding: 12px 16px;
  font-weight: bold;
  font-weight: initial;
  font-size: 16px;
  color: #fff;
}
.base-content .menu a {
  display: block !important;
  cursor: pointer;
  font-weight: initial;
  font-size: 14px;
  color: #666;
  font-weight: 400;
  margin: 0 26px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.base-content .menu a:last-child {
  border-bottom: none;
}
.base-content .menu a:hover {
  color: #DD1111;
}
.base-content .menu a:hover i {
  color: #DD1111;
  width: auto;
}
.base-content .menu a i {
  width: 0;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}
.base-content .menu .active {
  color: #DD1111;
}
.base-content .menu .active i {
  vertical-align: text-top;
  color: #DD1111;
  width: initial;
}
.base-page {
  width: 100%;
  display: block !important;
  margin-bottom: 40px;
  padding: 0 320px;
}
.base-page a {
  font-weight: initial;
  font-size: 14px;
  color: #999;
  margin: 0;
  padding: 10px;
  line-height: 1;
  border: 1px solid #ccc;
  cursor: pointer;
}
.base-page a:hover {
  background: #DD1111;
  color: #fff;
  border-color: #DD1111;
}
.base-page a:first-child {
  border-radius: 6px 0 0 6px;
}
.base-page a:last-child {
  border-right: 1px solid #ccc;
  border-radius: 0 6px 6px 0;
}
.fr {
  float: right !important;
}
.center {
  width: 1200px;
  margin: 0 auto;
}
.swiper-pagination {
  position: absolute;
  z-index: 20;
  bottom: 10px;
  width: 100%;
  text-align: center;
}
.swiper-pagination-switch {
  display: inline-block;
  width: 20px;
  height: 4px;
  background: #fff;
  opacity: 1;
  border-radius: 0px;
  cursor: pointer;
  margin: 0 5px;
}
.swiper-active-switch {
  background: #DD1111;
}
.d-h {
  cursor: pointer;
  transition: all 0.3s linear;
}
.d-h:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.el-dropdown-menu__item:focus,
.el-dropdown-menu__item:not(.is-disabled):hover {
  background-color: #ffecec !important;
  color: #DD1111 !important;
}
@media screen and (max-width:1024px) {
  .base-banner img {
    height: 190px !important;
  }
  .base-banner div {
    width: 100% !important;
    top: 20px;
    left: 20px;
  }
  .base-banner div em {
    margin: 20px 0;
  }
  .base-nav {
    padding: 20px;
    width: 100% !important;
  }
  .base-content {
    width: 100% !important;
    flex-direction: column;
  }
  .base-content .menu {
    width: 100%;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .base-content .menu a {
    height: 60px;
    line-height: 20px;
    display: inline-block !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    width: 25%;
    margin: 0;
    padding: 20px 5px;
    border: 1px solid #eee;
    border-bottom: 1px solid #eee !important;
    border-top: none;
    border-left: none;
    float: left;
    text-align: center;
  }
  .base-page {
    padding: 0 !important;
    text-align: center;
    display: inline-block;
  }
}
.ie8-ico {
  display: none !important;
}
#head {
  width: 1200px;
  margin: 0 auto;
  height: 80px;
  line-height: 80px;
  background: #fff;
  font-size: 15px;
  z-index: 22;
  font-weight: bold;
}
#head .logo {
  margin-right: auto;
  cursor: pointer;
  margin-top: 17.5px;
  height: 43px;
}
#head em {
  color: #999;
  margin-left: 5px;
}
#head .tab div .icon-guanbi {
  display: none;
}
#head .tab a {
  display: inline-block;
  float: left;
  height: 80px;
  border-bottom: 4px solid transparent;
  margin: 0 10px;
  padding: 0 10px;
  color: #333;
  cursor: pointer;
}
#head .tab a:hover {
  color: #DD1111;
  border-color: #DD1111;
}
#head .tab .active {
  border-color: #DD1111;
  color: #DD1111;
}
#head .icon-liebiao {
  display: none;
}
#head .search {
  position: absolute;
  padding-top: 10px;
  display: none;
}
#head .search i {
  cursor: pointer;
  height: 40px;
}
#head .search i:hover {
  color: #DD1111;
  border-color: #DD1111;
}
#head .search form {
  width: 80%;
  height: 40px;
}
#head .search form input {
  width: 100%;
  height: 100%;
}
#head .language {
  cursor: pointer;
  position: relative;
}
#head .language:hover {
  color: #DD1111;
  border-color: #DD1111;
}
#head .language #language img {
  margin: 0 5px;
  width: 21px;
  height: 14px;
  vertical-align: middle;
  margin-top: -1px;
}
#head .language .list {
  position: absolute;
  display: none;
  background-color: #4c4a4f;
  top: 80px;
  width: 120px;
  padding: 10px 0;
}
#head .language .list a {
  width: 120px;
  height: 30px;
  line-height: 20px;
  padding: 5px 10px;
  font-weight: initial;
  font-size: 14px;
  color: #d2ced5;
  font-weight: 500;
  display: block;
  float: left;
  cursor: pointer;
}
#head .language .list a:hover {
  color: #DD1111;
  border-color: #DD1111;
}
#head .language .list a img {
  margin-right: 10px;
  vertical-align: middle;
}
#head .language:hover .list {
  display: block;
}
#head .link {
  padding-left: 20px;
  position: relative;
  cursor: pointer;
  font-weight: initial;
  font-size: 15px;
  color: #333;
  font-weight: bold;
}
#head .link:hover {
  color: #DD1111;
  border-color: #DD1111;
}
#head .link .list {
  position: absolute;
  display: none;
  background: #4c4a4f;
  top: 80px;
  right: -10px;
  padding: 10px 0;
}
#head .link .list a {
  padding: 5px 10px;
  line-height: 20px;
  font-weight: initial;
  font-size: 14px;
  color: #d2ced5;
  font-weight: 500;
  display: block;
  cursor: pointer;
}
#head .link .list a:hover {
  color: #DD1111;
  border-color: #DD1111;
}
#head .link:hover .list {
  display: block;
}
.tab-active .anim-scale-2 {
  transform: scale(1.1, 1.1) !important;
}
.search-active .search {
  height: 60px;
  line-height: 40px;
  position: absolute;
  display: inherit !important;
  background-color: #4c4a4f;
  top: 80px !important;
  right: -134px;
  padding: 0 10px;
  width: -webkit-max-content;
  width: max-content;
  min-width: 290px;
}
.search-active .search i {
  color: #d2ced5;
  display: inline-block;
  background: #fff;
  padding: 0 5px;
  float: left;
}
.search-active .search input {
  display: inline-block !important;
  padding: 5px 15px;
  background: transparent;
  border: none;
}
.search-active .search form {
  display: inline-block !important;
  background: #fff;
  float: left;
}
.search-active .search .icon-guanbi {
  float: right;
  display: inline-block;
  float: left;
}
@media screen and (max-width: 1025px) {
#head {
    width: 100%;
}
#head .tab a{

    margin: 0 8px;
    padding: 0 8px;
}
}
@media screen and (max-width: 1024px) {
  #head {
min-width:100%;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    display: flex;
    opacity: 1 !important;
  }
  #head .logo {
    margin-left: 20px;
    margin-top: 11px !important;
    margin-right: auto;
    height: 36px;
  }
  #head .icon-liebiao {
    font-size: 20px;
    padding: 0 20px 0 20px;
    display: block;
    color: #fff;
    background: #DD1111;
    margin-left: 20px;
  }
  #head .search {
    right: 0;
    position: fixed !important;
    top: 60px !important;
    z-index: 999;
  }
  #head em,
  #head .language,
  #head .link {
    display: none;
  }
  #head .tab {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 100000;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
  }
  #head .tab > div {
    margin-left: 28%;
    float: right;
    padding: 70px 0 0 29px;
    width: 72%;
    height: 100%;
    background: rgba(221, 17, 17, 0.9);
  }
  #head .tab > div .icon-guanbi {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1;
  }
  #head .tab > div a {
    font-weight: 500;
    font-size: 19px;
    line-height: 42px;
    width: 100%;
    height: 42px;
    margin: 0;
    display: block;
    color: #fff !important;
    position: relative;
    z-index: 99;
    background: transparent;
  }
  #head .tab > div a:hover,
  #head .tab > div a:active {
    transition: -webkit-transform 150ms;
    -webkit-transition: -webkit-transform 150ms;
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    color: #fff;
  }
  #head .tab > div > div {
    display: block !important;
  }
  #head .tab > div > div .anim-scale-1,
  #head .tab > div > div .anim-scale-2,
  #head .tab > div > div .anim-scale-3,
  #head .tab > div > div .anim-scale-4 {
    position: absolute;
    z-index: 1;
  }
  #head .tab > div > div .anim-scale-1 {
    right: 0;
    top: 100px;
    width: 30%;
    opacity: 0.8;
  }
  #head .tab > div > div .anim-scale-2 {
    right: 20px;
    top: 340px;
    width: 50%;
    transition: all 0.3s 0.4s;
    transform: scale(0.1, 0.1);
    opacity: 0.6;
  }
  #head .tab > div > div .anim-scale-3 {
    right: 40px;
    top: 295px;
    width: 15%;
  }
  #head .tab > div > div .anim-scale-4 {
    right: 15px;
    top: 400px;
    width: 20%;
  }
  .tab-active .tab {
    right: 0 !important;
  }
  .phone-bg {
    background: transparent;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 333;
    width: 100%;
    height: 100%;
  }
}
input::-ms-clear{display:none;}
input::-ms-reveal{display:none;}