@font-face {
  font-family: AlibabaPuHuiTi;
  src: url(/static/font/AlibabaPuHuiTi-2-55-Regular.ttf);
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  vertical-align: baseline;
  list-style: none;
  box-sizing: border-box;
  font-family: 'AlibabaPuHuiTi' !important;
}

ul li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
  text-decoration: none;
}

a:active {
  color: inherit;
  text-decoration: none;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.fz-hide1 {
  /* //溢出隐藏省略号 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  /* //-webkit-line-clamp:1; 超出几行 */
}

.fz-hide2 {
  /* //溢出隐藏省略号 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* //-webkit-line-clamp:1; 超出几行 */
}

.fz-hide3 {
  /* //溢出隐藏省略号 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* //-webkit-line-clamp:1; 超出几行 */
}

.Header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: #fff;
  /* 二级菜单样式 */
}

.Header .area {
  width: 87.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Header .logo {
  width: 14rem;
  height: auto;
}

.Header .right_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
}

.Header .right_box .navBox {
  display: flex;
  height: 6rem;
  border-bottom: none !important;
}

.Header .right_box .navBox li {
  margin-right: 3.5rem;
  color: #303133;
  line-height: 6rem;
  position: relative;
  font-size: 1.0625rem;
}

.Header .right_box .navBox li a {
  font-weight: bold;
}

.Header .right_box .navBox li:last-child {
  margin-right: 0;
}

.Header .right_box .navBox .first:hover {
  color: #df0b1a;
}

.Header .right_box .navBox .first::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #df0b1a;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.Header .right_box .navBox .first:hover::after {
  width: 100%;
  left: 0;
  transform: translateX(0);
}

.Header .right_box .navBox .active {
  color: #df0b1a;
}

.Header .right_box .navBox .has-submenu {
  position: relative;
}

.Header .right_box .navBox .submenu {
  position: absolute;
  top: 100%;
  left: -30%;
  width: 7rem;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.Header .right_box .navBox .has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.Header .right_box .navBox .submenu li {
  margin: 0;
  line-height: 3rem;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.Header .right_box .navBox .submenu li:last-child {
  border-bottom: none;
}

.Header .right_box .navBox .submenu li a {
  display: block;
  color: #303133;
  font-weight: normal;
  font-size: 0.9rem;
  text-align: center;
  height: 1rem;
  line-height: 140%;
  transition: all 0.2s ease;
}

.Header .right_box .navBox .submenu li a:hover {
  color: #df0b1a;
  font-weight: bold;
}

.Footer {
  width: 100%;
  height: 13.9375rem;
  background-color: #333333;
}

.Footer .FooterArea {
  width: 85rem;
  margin: 0 auto;
  height: 100%;
  padding: 2.25rem 0;
  display: flex;
  justify-content: space-between;
}

.Footer .FooterArea .left .En {
  color: #DF0B1A;
  font-size: 30px;
}

.Footer .FooterArea .left .title {
  color: #FDFDFD;
  font-size: 1rem;
  margin-top: 0.825rem;
}

.Footer .FooterArea .left .phone {
  font-size: 14px;
  color: #969696;
  margin-top: 0.825rem;
}

.Footer .FooterArea .left .eml {
  font-size: 14px;
  color: #969696;
  margin-top: 0.825rem;
}

.Footer .FooterArea .left .add {
  font-size: 14px;
  color: #969696;
  margin-top: 0.825rem;
}

.Footer .FooterArea .right {
  color: #969696;
  display: flex;
}

.Footer .FooterArea .right .item {
  width: 10.375rem;
  margin-right: 1rem;
}

.Footer .FooterArea .right .item .name {
  font-size: 1rem;
  color: #F8F8F8;
  margin-bottom: 1.2rem;
  cursor: pointer;
}

.Footer .FooterArea .right .item .imgBox {
  width: 7rem;
  height: 7rem;
}

.Footer .FooterArea .right .item .imgBox img {
  width: 100%;
  height: 100%;
}

.Footer .FooterArea .right .item .nav {
  font-size: 14px;
  color: #969696;
  margin-top: 0.625rem;
}

.goTop {
  position: fixed;
  right: 2rem;
  bottom: 14%;
  width: 3rem;
  height: 3rem;
  background-color: #df0b1a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: all 0.3s ease;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(223, 11, 26, 0.3);
}

.goTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.goTop:hover {
  background-color: #c00917;
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(223, 11, 26, 0.4);
}

/* 分页 */
.pager {
  margin: 10px 0 70px 0;
  margin-top: .625rem;
}

.pager ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pager ul li {
  margin: 0 4px;
}

.pager ul li a {
  display: inline-block;
  border: 1px solid #EBEEF5;
  border-radius: 0.375rem;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #606266;
  font-size: 14px;
  text-align: center;
  transition: all ease-in-out 0.2s;
}

.pager ul li.active span {
  display: inline-block;
  border-radius: 0.375rem;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  background: #DF0B1A;
  border: 1px solid #DF0B1A;
}

.pager ul li a:hover {
  color: #fff;
  background: #DF0B1A;
  border-radius: 0.375rem;
  border: 1px solid #DF0B1A;
}

.pager ul li:nth-last-child(1) a {
  width: auto;
  padding: 0 10px;
}

.pager ul li:nth-child(1) a {
  width: auto;
  padding: 0 10px;
  border-radius: 0.375rem;
}

.pager ul li.disabled span {
  border: 1px solid #EBEEF5;
  border-radius: 0.375rem;
  font-size: 14px;
  color: #606266;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  width: auto;
  padding: 0 10px;
  opacity: 0.5;
}

.pager ul li.disabled:hover {
  cursor: no-drop;
}


/* 寮圭獥瀹瑰櫒 */
.custom-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  color: #fff;
  min-width: 300px;
  text-align: center;
}

/* 鍏抽棴鎸夐挳 */
.alert-close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}