* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0 auto !important;
}

:focus {
  outline: 0;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.relative {
  position: relative;
}

div {
  box-sizing: border-box;
  font-family: Microsoft YaHei;
}

img {
 
}

.hideOneLine {
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.hideTwoLine {
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.card {
  box-shadow: 0px 0px 13px 0px rgb(0 0 0 / 20%);
  padding: 30px;
  border-radius: 30px;
}

/*去除a标签下划线*/
a {
  text-decoration: none !;
  /* 去除默认的下划线 */
  outline: none;
  /* 去除旧版浏览器的点击后的外虚线框 */
  color: #000;
  /* 去除默认的颜色和点击后变化的颜色 */
  cursor: pointer;
}
/* 页头hover */
.nav a:hover{
  color: white !important;
}
/* 页脚hover */
.cylink:hover{
  color: white !important;
}


a:hover {
  /* color: #e44d39 !important; */
  /* #c13432 */
}

.white {
  color: white;
}

/*去除未被访问的a标签的下划线*/
a:link {
  text-decoration: none;
}

/*去除已经被访问过的a标签的下划线*/
a:visited {
  text-decoration: none;
}

/*去除鼠标悬停时的a标签的下划线*/
a:hover {
  text-decoration: none;
}

/*去除正在点击的a标签的下划线（鼠标按下，尚未松开）*/
a:active {
  text-decoration: none;
}

/*去除获得焦点的a标签的下划线（被鼠标点击过）*/
a:focus {
  text-decoration: none;
}

/* 两侧空隙宽度 */

.hideTowLine {
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.loading {
  height: 40px;
  margin: 100px auto;
  display: none;
  justify-content: center;
}

.loading span {
  width: 8px;
  height: 100%;
  border-radius: 4px;
  background-color: lightgreen;
  animation: load 1s ease infinite;
  margin: 0 2px;
}
input,select,option,textarea  {
  outline:none;
}
  /* 页头搜索框 */
#searchBox {
  /* 这里可以添加样式来控制搜索框的布局和外观 */
  display: flex;

 


}
.searchbox1{
  display: flex;justify-content:space-between;margin-left: 10px;align-items: center;
}

.searchbox1:hover .searchinputbox{
  display: block;
  border: 0px;
  height: 20px;
  border-radius: 4px;
}
.bottomimg{
  display: block;
  height: 15px;
  width: 15px;
  margin-left: 10px;
}

.searchinputbox:hover{
  display: block;
  border: 0px;
  height: 20px;
  border-radius: 4px;

 
}
.searchinputbox{
  display: none;
 
}
/* .searchbotton{
background-color: #C41614;
color: white;
border: 0px ;
height: 20px;
width: 30px;
border-radius: 3px;


} */

@keyframes load {

  0%,
  100% {
    transform: scaleY(1.5);
    background-color: lightgreen;
  }

  50% {
    transform: scaleY(1);
    background-color: lightblue;
  }
}

.loading span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading span:nth-child(3) {
  animation-delay: 0.4s;
}

.loading span:nth-child(4) {
  animation-delay: 0.6s;
}

.loading span:nth-child(5) {
  animation-delay: 0.8s;
}
.head-r-time{
  width: 156px;
        height: 14px;
        line-height: 18px;
        font-family: Microsoft YaHei;
        font-weight: 400;
        font-size: 14px;
        color: #FFFFFF;
}

/*当屏幕尺寸大于1200px时，应用下面的CSS样式*/
@media screen and (min-width: 1200px) {

  /* 公共菜单 */
  .nav {
   display:inline !important;
    background-color: #9A362D 100%;
    height: 47px;
    width: 100%;
    /* width: 750px; */
    /* margin: 0 auto   ; */
  }
  
  /*横向一级菜单样式设置*/
  .nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    height: 47px;
   

  }
  .nav ul li:hover {
    background-color:#a01919 ;
  }
 
 
 

  .nav ul li {
    
    float: left;
    line-height: 40px;
    text-align: center;
    position: relative;

  }
  .nav ul li ul li{
    text-align: center !important;

  
    
  }


  .nav a{
   width: 120px;
    font-family: Microsoft YaHei !important;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;

  }

  a {
    
    text-decoration: none;
    color: #000000;
    display: block;
    /*将a行内元素转变成块级元素*/
    width: 90px;
    height: 40px;

  }
  .nav ul li ul a{
    padding-right: 10px;
    width: fit-content;
    padding-left: 10px;
    white-space:nowrap;
    /* 一直保持在一行 */
    /* width: 200px !important; */
  }
 


  a:hover {
     /* background-color: #9A362D; */
   /* color: #FFFFFF; */
  }

  /*二级下拉菜单样式设置*/
  .nav ul li ul li {
    width: 100%;
    display: flex;
    justify-content: center;
    /* float: none; */
    background-color: #9A362D;
    z-index: 999;
  }

  .nav ul li ul {
    min-width:140px;
    position: absolute;
    top: 47px;
    left: 0px;
    display: none;


    /*默认状态下或鼠标离开时隐藏*/


  
  }


  /*为了兼容IE7写的CSS样式，但是必须写在a:hover前面*/
  .nav ul li ul li a:link,
  .nav ul li ul li a:visited {
    /* background-color: #9A362D;  */
    font-weight: 400;
 font-size: 16px;

   
  }

  /* ul li ul li a:hover {
    background-color:#a01919 ; 
   
    z-index: 999;
  } */



  /*鼠标滑过一级菜单的元素时显示下拉菜单*/
  .nav ul li:hover ul {
    display: block;
  
   
   
   
  }


  body {
    max-width: 1920px;
    margin: 0 auto;
  }

  #header {
    height: 130px;
    overflow: visible;
  }

  .kongbai {
    width: 1200px;

  }

  .template-page-title {
    display: flex;
    justify-content: center;
    position: relative;
  }

  .bigHidden {
    display: none !important;
  }
}

/*当屏幕尺寸小于1200px时，应用下面的CSS样式*/
@media screen and (max-width: 1200px) {
  

  body {
    max-width: 100vw;
  }
  #header {
    height: 32px;
  }

  .kongbai {
    width: 100%;
    padding: 0 10px;
  }

  .template-page-title {
    display: flex;
    position: relative;
  }
}

/*去除a标签下划线*/
a {
  text-decoration: none;
}

/*去除未被访问的a标签的下划线*/
a:link {
  text-decoration: none;
}

/*去除已经被访问过的a标签的下划线*/
a:visited {
  text-decoration: none;
}

/*去除鼠标悬停时的a标签的下划线*/
a:hover {
  text-decoration: none;
}

/*去除正在点击的a标签的下划线（鼠标按下，尚未松开）*/
a:active {
  text-decoration: none;
}

/*去除获得焦点的a标签的下划线（被鼠标点击过）*/
a:focus {
  text-decoration: none;
}

div {
  box-sizing: border-box;
}

/* 模块title */

.template-page-title>img {
  margin-right: 10px;
}

.template-page-title-en {
  font-size: 16px;
  font-family: FZDaBiaoSong-B06;
  font-weight: 400;
  color: #a7b0ba;
}

.template-page-title-zh {
  font-size: 24px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
}

.flex {
  display: flex;
}

.center {
  justify-content: center;
  align-items: center;
}

/* 顶部 */
a {
  text-decoration: none;
  color: white;
}

.iconArea {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 32px;
  margin: 15px 0 18px;
}

.topArea {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-item: center;
  position: relative;
  top: 30px;
}
/* 移动端搜索框 */
.smallSearchArea {
  position: relative;
  width: 93%;
  margin: 0 auto;
  height: 65px;

  justify-content: center;
  /* background: #9A362D; */
 
  display: flex;


}
.predsearchbox{
  position: absolute;
  right: 16px;
  top: 25px;
  width: 23px;
  height: 23px;
  background-size: 100% 100%;
  z-index: 99;
}
.smallSearchInput::placeholder{
  color: #BFB8B8;
}

.smallSearchInput {
 
  font-size: 14px;
  display: block;
  width: 80vw;
  height: 40px;
  caret-color: black;
  border-radius: 8px;
  margin: 15px auto 0;
  padding-left: 8vw;
  padding-right: 10vw;
  position: relative;
  display: inline-block;
  border: 0;
  background:  #F5F0F0;
  box-sizing: border-box;

}
 input::placeholder {
  color: #BFB8B8;
}

.searchAfterArea {
  display: inline-block;
  position: relative;
}



.searchArea {
  position: relative;

  line-height: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-top: 30px;
  margin-right: 35px;
  margin-bottom: 30px;
}


.searchArea:hover .searchInput {
  display: block;
}

.search {
  height: 15px;
  width: 15px;
  cursor: pointer;

  /* margin-left: 10px; */
}

.searchInput {
  /* display: flex; */

  /* box-shadow: none;
  border: none;
  padding: 0px 11px; */
  margin-left: 11px;
  font-size: 12px;
  color: #FFFFFF;
  outline: 0;
  z-index: 555;
  width: 160px;
  /* height: 20px; */
  background: #9A362D;
  border-radius: 16px;
  border: 0px solid #FFFFFF;
  /* border-radius: 2px; */
}

input::-webkit-input-placeholder{
  /* placeholder颜色 */
    color:#FFFFFF;
  /* placeholder字体大小 */
  font-size:12px
} 

.menuArea,
.menuArea2 {
  display: none;
}

.navItem {
  cursor: pointer;
}

.head-main-logo {
  cursor: pointer;
}

.menu:hover .menuArea2 {
  display: block;
}

.caidan-btn {
  position: absolute;
  right: 5px;
  top: 40%;
  width: 25px;
  height: 21px;
}

/* 大于1200小于1400 */

@media screen and (min-width:1200px) and (max-width:1400px) {
  .bigHidden {
    display: none;
  }
  .caidanSearch,
  .caidanOpen,
  .caidanClos,
  .caidanEn {
    display: none;
  }
  
  .head-main {
    background: #B40200 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    /* height: 100%; */
    height: 160px;
  }
  .head-main-div {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
    /* flex-direction: column; */
    height: 150px;
  }
  /* logo跟时间、搜索 */
  .head-f{
    width: 1200px; height: 67px; display: flex; justify-content: space-between; margin: 0 auto;
  }
  /* PC菜单导航 */
  .head-b{
    width: 1200px; margin:0 auto;
  }
    /* 页脚 */
    .footer-main {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      background-color: #B40200;
      /* background: url("../image/comm/homefoot2x.png");
      background-size: 100% 100%;
      background-repeat: no-repeat; */
      text-align: center;
      position: relative;
      line-height: 40px;
      height: 270px;
      /* display: flex; */
      justify-content: center;
      align-items: center;
    }
    
    .foot-content {
      width: 1200px;
      margin: 0 auto;
    }
    /* 常用链接 */
    .cyljswiper{
      display: flex;width: 1200px;height: 48px; margin-top: 35px;
    }
    .foot {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .mid {
      font-size: 14px;
      color: #ffffff;
      text-align: left;
      margin-left: 10px;
      width: 451px;
      height: 83px;
     
    }
    .foot-fontsize1 {
      height: 21px;
      line-height: 15px;
    
    }
    
    .foot-fontsize2 {
      height: 21px;
      margin-top: 12px;
      line-height: 15px;
    }

}
/* 大于1400 */

@media screen and (min-width: 1400px) {
  .bigHidden {
    display: none;
  }

  .menuArea2 {
    position: absolute;
    top: 20px;
    left: 180px;
    z-index: 999;
    width: 100%;
    cursor: auto;
    background: rgba(0, 0, 0, 0.3);
  }

  .menuArea2 .menu2:hover {
    background: rgba(55, 78, 113, 0.56) !important;
  }

  .menu2 {
    width: 180px;
    color: white;
    background: rgba(6, 34, 78, 0.56);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-star;
    font-size: 14px;
  }

  .menuArea {
    position: absolute;
    top: 46px;
    z-index: 999;
    width: 100%;
    cursor: auto;
  }

  .menuArea>div:nth-child(1) {
    width: 180px;
    color: white;

    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .menuArea>div:nth-child(1)>div {
    cursor: pointer;
    line-height: 40px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: flex-star;
    background: rgba(6, 34, 78, 0.56);
    padding-left: 45px;
    font-size: 14px;
  }

  .menu:hover {
    background: rgba(55, 78, 113, 0.56) !important;
  }

  .menuArea>div:nth-child(1)>div>img {
    /* width: 20px; */
    height: 13px;
    display: none;
  }

  .menuArea>div:nth-child(1)>div>span {}

  .menuArea>div:nth-child(2) {
    flex: 1;
    display: flex;
    align-items: center;
    display: none;
  }

  .menuArea>div:nth-child(2) img {
    width: 280px;
    height: 123px;
    margin-right: 30px;
  }

  .head-main {
    background: #B40200 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    /* height: 100%; */
    height: 160px;
  }

  .head-main-div {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 1400px;
    margin: 0 auto;
    /* flex-direction: column; */
    height: 150px;
  }

  .head-main-nav {
    font-size: 16px;
    /* width: 100%; */
    display: flex;

    align-items: center;
    justify-content: space-between;
  }

  .head-main-nav>.navItem {
    color: #ffffff;
    position: relative;

    display: inline-block;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    line-height: 52px;
    height: 52px;
  }

  .head-main-nav>.navItem:hover {
    background: #284169;
    background: #041b3f;
  }

  .head-main-nav>.navItem:hover .menuArea {
    display: flex;
  }
   /* logo跟时间、搜索 */
   .head-f{
    width: 1400px; height: 67px; display: flex; justify-content: space-between; margin: 0 auto;
  }
  /* PC端菜单导航 */
  .head-b{
    width: 1400px; margin:0 auto;
  }
  /* 菜单 */
  .caidanSearch,
  .caidanOpen,
  .caidanClos,
  .caidanEn {
    display: none;
  }
  /* 页脚 */
  .footer-main {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #B40200;
    text-align: center;
    position: relative;
    line-height: 40px;
    height: 270px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
  }
  
  .foot-content {
    width: 1400px;
    margin: 0 auto;
  }
    /* 常用链接 */
    .cyljswiper{
      display: flex;width: 1400px;height: 48px; margin-top: 35px;
    }
 
}

/*当屏幕尺寸小于1200px时，应用下面的CSS样式*/
@media screen and (max-width: 1200px) {
  .topArea {
    top: 0;
  }

  .menu:hover .menuArea2 {
    display: flex;
    flex-wrap: wrap;
  }

  .menuArea2 .menu2 {
    width: 33.33%;
    font-size: 12px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #9ca7b8;
  }

  .menu {
    padding: 0 calc(25px / 2);
    background: #9A362D;
  }

  .menuArea>div:nth-child(1)>div>img {
    display: none;
  }

  .menuArea>div:nth-child(1)>div>span {
    color: #333;
    margin-left: 10px;
  }
    .menu a {
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
 
    color: #fefefe;

    opacity: 0.9;
    width: 100%;
    height: 100%;
    display: block;
    height: 48px;
    display: flex;
    align-items: center;

    position: relative;
    border-bottom: 1px solid #fefefe;
  }


  .smallHidden {
    display: none;
  }

  .iconArea {
    display: none;
    position: absolute;
    top: 22px;
    right: 80px;
  }

  .search {
    width: 30px;
    height: 30px;
  }

  .searchInput {
    left: -50vw;
    top: 0;
    width: 45vw;
  }

  .navTitle {
    color: black;
    padding: 10px 20px;
  }

  /* nav总体 */
  .menuArea {
    display: block;
    background: #B40200;
    margin-left: 0 !important;
  }

  /* nav二级菜单整体 */
  .menuArea>div:nth-child(1) {}

  /* nav二级菜单item */

  .menuArea>div:nth-child(2) {
    display: none;
  }
  /* 移动端页头 */
  .head-main {
    background: #B40200;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    height: 80px;
    margin-bottom: -1px;
  }

  .head-main-div {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding-left: 5%;
  }

  .head-main-nav {
    display: none;
    position: absolute;
    top: 129px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10000;
  }

  .head-main-logo {
    width: 68%;
  }

  .caidanSearch {
    display: block;
    right: 60px !important;
  }

  .caidanEn {
    display: block;
    right: 100px !important;
  }

  .caidanOpen {
    display: block;
  }

  .caidanClos {
    display: none;
    width: 21px;
  }
  /* 修改地方 */
  .head-main-nav .navTitle {
    display: flex;
    height: 55px;
    align-items: center;
    padding-left: calc(25px / 2);
    font-size: 17px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #fefefe;
  }
  .navItem-lower-add {
    display: block;
    height: 12px;
    width: 12px;
}

.navItem-lower-subtract {
    display: none;
    height: 12px;
    width: 12px;
}
  .head-main-nav .title {
    display: flex;
    height: 55px;
    align-items: center;
    padding-left: calc(25px / 2);
    font-size: 17px;
    color: #fefefe;
}

.head-main-nav .n1 {
    font-size: 17px;
}

.head-main-nav .n2 {
    font-size: 16px;
}

.head-main-nav .n3 {
    font-size: 15px;
}

.head-main-nav .n4 {
    font-size: 14px;
}
  .navItem-title {
    border-bottom: 1px solid #a66666;
    display: flex;
    justify-content: space-between;
    background-color: #B40200 !important;

  }
/* 修改地方 */

  .head-main-nav .navTitle {
    display: flex;
    /* border-bottom: 1px solid #FFFFFF; */
    background: #B40200;
    height: 55px;
    align-items: center;
    padding-left: calc(25px / 2);
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #fefefe;
  }
}

/* 底部 */
.footer-main-size~.footer-main-size {
  margin-top: 5px;
  height: 21px;
}



.qrText {
  margin-top: 5px;
  font-size: 12px;
}



.friendLink {
  background: url("./image/footer/nameBg.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 30px;
  top: 5px;
  transform: translate(-25%, -25%);
  line-height: 80px;
  width: 150px;
  font-size: 18px;
  color: white;
}

.friendLink span {
  margin-left: -10px;
}



.footer-main-nav>a {
  display: block;

  padding: 0 60px;
  color: #ffffff;
  border-radius: 25px;
  margin: 5px 20px;
}

.footer-main-nav>a:hover {
  background: #374e70;
  cursor: pointer;
}

.returnTop {
  width: 49px;
  line-height: 49px;
  background: #374e70;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 5%;
  bottom: 120px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 99;
  text-align: center;
  height: 49px;
}

.returnTop img {
  position: relative;
  top: -2px;
}

.footer-main-qrcode>img {
  height: 84px;
  width: 84px;
}

.footer-main-logo {
  align-self: center;
  /* width: 580px;
  height: 60px; */
  height: 94px;
  width: 659px;

}

/* 常用链接 */
.cylink {

  width: 100%;
  height: 48px;
  /* border: 1px solid #D7786F; */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
}
.cylink:hover {
  color: #D7786F !important;
  background-color: white;
}
.footimgbox{
  width: 27px;height: 26px; object-fit: cover;
}
.footimgbox1{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/hndx.png');
}
.cylink:hover .footimgbox1{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/hndxhover.png');
}
.footimgbox2{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/gryh.png');
}
.cylink:hover .footimgbox2{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/grmhhover.png');
}
.footimgbox3{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/xxgkw.png');
}
.cylink:hover .footimgbox3{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/xxgkwhover.png');
}
.footimgbox4{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/jwc.png');
}
.cylink:hover .footimgbox4{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/jdchover.png');
}
.footimgbox5{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/xww.png');
}
.cylink:hover .footimgbox5{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/xwwhover.png');
}
.footimgbox6{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/gzb.png');
}
.cylink:hover .footimgbox6{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/xwwhover.png');
}
.footimgbox7{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/dyh.png');
}
.cylink:hover .footimgbox7{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/wyhhover.png');
}
.footimgbox8{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/zdc.png');
}
.cylink:hover .footimgbox8{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/zdchover.png');
}
.footimgbox9{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/xgxxxt.png');
}
.cylink:hover .footimgbox9{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/xghover.png');
}
.footimgbox10{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/xsbd.png');
}
.cylink:hover .footimgbox10{
  width: 28px;height: 28px; object-fit: cover;
  background: url('../image/comm/icon/xsbdhover.png');
}


.mySwiperfoot{
  background-color: #B40200 !important;
}
.mySwiperfoot .swiper-slide {
  width: 16% !important;
  text-align: center;
  font-size: 18px;
  background: #C41614;
  margin-right: 0.7%;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.footlinkbox{
  width: 640px;height: 15px;margin: 29px auto;display: flex;justify-content: space-between;
}
.linkclick{
  width: auto;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 15px;
  height: 15px;
}


.footer-main-qrcode {
  margin-left: 10px;
  font-size: 16px;
  color: #ffffff;
  position: relative;
}

.QRcodeBG {
  position: absolute;
  bottom: 0;
  left: -28%;
  width: 28%;
  height: 40px;
  border-bottom-left-radius: 25px;
  background: #081a40;
}

.qrArea {
  border-radius: 25px 25px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 100px;
  line-height: normal;
}

/*当屏幕尺寸大于1200px时，应用下面的CSS样式*/
@media screen and (min-width: 1200px) {
  .footer-main-nav {
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 150px;
    position: absolute;
    top: -20px;
    background: #081a40;
    border-radius: 25px;
    width: 1300px;
    left: 50%;
    transform: translate(-50%);
    box-sizing: border-box;
  }
}

/*当屏幕尺寸小于1200px时，应用下面的CSS样式*/
@media screen and (max-width: 1200px) {
  .bigHidden{
    display: block;
  }
    /* 移动端页头 */
    .pheadArea{
      width: 100%;
      height: 131px;
    }
    /* 页头的logo盒子 */
    .pheadlogobox{
      width: 100%;
      height: 65px;
      display: flex;
      align-items: center;
      background-color:#B40200 ;

    }
    .pheadlogo{
      margin-left: 13px;
      width: 345.5px;
      height: 37.5px;
      background: url('../image/comm/pheadlogo2x.png');
      background-size: 100% 100%;
    }
      /* 移动端页尾 */
  .pfootArea{
    background-color:#B40200;
  }
  .pfootcontent{
    width: 93%;
    margin: 0 auto;
  }
  /* 移动端链接 */
  .plink{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 20px 0 12px 0;
  }
  .plinksmallbox{
    display: flex;
    align-items: center;
    width: 47%;
    height: 38px;
    background-color: #B91210;
    margin-bottom: 10px;
  }
  .plinksmallbox:nth-child(2n+1){
    display: flex;
    align-items: center;
    width: 47%;
    height: 38px;
    margin-right: 16px;
    background-color: #B91210;
  }
  .plinkimgbox{
    width: 18px;
    height: 17px;
    margin-left:13px;
    margin-right: 10px;
  }
  .img1{
    background: url('../image/comm/icon/hndx.png');
    background-size: 100% 100%;
  }
  .img2{
    background: url('../image/comm/icon/gryh.png');
    background-size: 100% 100%;
  }
  .img3{
    background: url('../image/comm/icon/xxgkw.png');
    background-size: 100% 100%;
  }
  .img4{
    background: url('../image/comm/icon/jwc.png');
    background-size: 100% 100%;
  }
  .img5{
    background: url('../image/comm/icon/xww.png');
    background-size: 100% 100%;
  }
  .img6{
    background: url('../image/comm/icon/gzb.png');
    background-size: 100% 100%;
  }
  .img7{
    background: url('../image/comm/icon/dyh.png');
    background-size: 100% 100%;
  }
  .img8{
    background: url('../image/comm/icon/zdc.png');
    background-size: 100% 100%;
  }
  .img9{
    background: url('../image/comm/icon/xgxxxt.png');
    background-size: 100% 100%;
  }
  .img10{
    background: url('../image/comm/icon/xsbd.png');
    background-size: 100% 100%;
  }
  .plinkfont{
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 14px;

  }
  .plinkimg{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* 移动端版权所有、邮编、地址 */
  .footbottombox{
    width: 304px;
    height: 65px;
  }
  .footbottomfont{
    display: flex;
   
    height: 13px;font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 13px;
    color: #FFFFFF;
    line-height: 13px;
    margin-bottom: 12px;
  }
  .footbottomfont:nth-child(3){
    height: 13px;font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 13px;
    color: #FFFFFF;
    line-height: 13px;
  }

  /* 以前代码 */
   /* 移动端页脚 */
   .footbox{
    width: 100%;
    display: flex;
    margin: 5px 0px 21px 0px;
    height: 45px;
    justify-content: center;
    align-items: center;
  }
  /* 下拉框 */
   .a {
    text-decoration: none;
  } /* 去除超链接下划线 */
  .ul {
    list-style: none;
  }
  /* 去除默认排列方式符号 */
  #header1 {
    width: 100%;
    height: 45px;
    /* border: 5px solid black; */
    margin: 0 auto;
  }
  /* 给外壳居中对齐和加个边框 */
   .nav1 {
    /* padding-left: 5px !important; */
    position: relative;
  }
  /* 给父元素定位，当元素较多时候需要定位，父元素相对定位子元素才能绝对定位，可以不让下拉框跑偏！ */
  .nav1 > li {
    border-radius: 4px;
    display: block;
    background-color: #FFFFFF;
    width: 100%;
    line-height: 45px;

    /* text-align: center; */
    /* color: #B40200; */
    font-size: 14px;
    font-family: Microsoft YaHei;
    /* border: 1px #07819D solid; */
  }
  .nav-li1 > a{
    position: relative;
    left: 30px;
    color: #B40200 !important;
    margin-right: 20px;
  }

    /* 给li标签转为块元素然后加宽高 */

    .nav-list1 {
      width: 100%;
      background-color: #FFFFFF;
      display: none;
      list-style: none;
      position: absolute;
      padding: 0px;
      top: -225px;
      z-index: 999; 
      /* box-shadow: -0.314px 2.984px 18px 0px rgba(100, 143, 153, 0.63); */
      border-radius: 4px;
    }


  /* 通过display：none让下拉框隐藏 */
   .nav-li1:hover .nav-list1 {
    display: block;
  }


   .nav-list1 > li{
  
    border-radius: 23px;
    background-color: #FFFFFF;
    width: 100%;
    line-height: 45px;
    /* text-align: center; */
    font-size: 14px;
    font-family: Microsoft YaHei;
   
    
  }
  /* 改变鼠标停留时a标签包裹的文字颜色 */
   .nav-list > li:hover {
    border-radius: 32px !important;
    background-color: #97332B;
    width: 216px;
    line-height: 45px;
    text-align: center;
    font-size: 14px;
    font-family: Microsoft YaHei;
    border-radius: 4px;;
  }
   .nav-list > li{
    border-radius: 4px !important;
    background-color: #97332B;
    width: 100%;
    line-height: 45px;
    text-align: center;
    font-size: 14px;
    font-family: Microsoft YaHei;
    border-radius: 4px;;
    
  }
  li >a{
    position: relative;
    left: 30PX;
    color: #B40200 !important;
  }
  /* 改变鼠标停留时li标签的背景颜色 */

  .qrArea {
    margin-left: 0;
  }

  .footer-main-qrcode>img {
    height: calc(111px / 2);
    width: calc(111px / 2);
    margin-top: calc(40px / 2);
  }

  .returnTop {
    right: 20px;
    bottom: 40px;
    width: 40px;
    line-height: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .returnTop img {
    width: calc(15px);
    height: calc(8px);
    top: -2px;
  }

  .footer-main {
    padding-top: 20px;
    padding-bottom: 0px;
    height: calc(800px / 2);
    background: url('../image/comm/phonefootbg1x.png');
    align-items: flex-start;
  }

  .friendLink span {
    margin-left: 0;
  }

  .friendLink {
    height: calc(80px / 2);
    width: 100px !important;
    left: 40px;
    top: -20px;
    text-align: center;
    font-size: 12px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .footer-main-nav>a {
    font-size: 12px;
    padding: 0;
    margin: 2.5px 10px;
  }

  .footer-main-qrcode>div>img {
    height: calc(7px / 2);
    width: calc(13px / 2);
  }

  .qrText {}

  .QRcodeBG {
    height: 20px !important;
  }

  .qrArea {
    top: 0 !important;
  }

  .footer-main-logo>img {
    width: 90%;
  }

  .mid {
    margin-top: 30px;
    margin-left: 0;
    line-height: 25px;
    font-size: 13px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #fefefe;
    text-align: center;
  }

  .foot {
    flex-direction: column;
  }

  .footer-main-nav {
    width: 90%;
    text-align: left;
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .footer-main-nav>div {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
  }

  .footer-main-nav>div:nth-child(1) {
    width: 100%;
    text-align: left;
  }
}