* {
  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 {
  /* display: block; */
}

.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;
}

@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;
}
.headbackground{
  background: url('../image/comm/headbackground@1x.png');
}

/*当屏幕尺寸大于1200px时，应用下面的CSS样式*/
@media screen and (min-width: 1200px) {

  /* 公共菜单 */
  .nav {
    background-color: #9A362D 100%;
    height: 50px;
    width: 100%;
    /* width: 750px; */
    /* margin: 0 auto   ; */
  }
  
  /*横向一级菜单样式设置*/
  ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
   

  }
  ul li:hover {
   background-color: rgba(0, 0, 0, 0.3);
  }

  ul li {
    height: 50px;
    float: left;
    line-height: 50px;
    text-align: center;
    position: relative;

  }
  ul li ul li{
    text-align: left !important;
    
  }


  .nav a{
    color: white;
  }

  a {
    
    text-decoration: none;
    color: #000000;
    display: block;
    /*将a行内元素转变成块级元素*/
    width: 90px;
    height: 40px;

  }
  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; */
  }

  /*二级下拉菜单样式设置*/
  ul li ul li {
   
   
    float: none;
    background-color: #9A362D;
   
    z-index: 999;
  }

  ul li ul {
    min-width:90px;
    position: absolute;
    top: 47px;
    left: 0px;
    display: none;
    /*默认状态下或鼠标离开时隐藏*/
  
  }


  /*为了兼容IE7写的CSS样式，但是必须写在a:hover前面*/
  ul li ul li a:link,
  ul li ul li a:visited {
    /* background-color: #9A362D;  */
   
  }

  /* ul li ul li a:hover {
    background-color:#a01919 ; 
   
    z-index: 999;
  } */



  /*鼠标滑过一级菜单的元素时显示下拉菜单*/
  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;
  }
  /* pc端的搜索框 */
  .searchinputbox{
    width: 180px;height: 30px;display: flex;justify-content: center;align-items: center;border: 1px solid #A52C27;padding-left: 10px;
  }
  .searchinput{
    background-color: rgba(0, 0, 0, 0); /* 使用RGBA，最后一个参数0表示完全透明 */  border: none; /* 移除边框 */
            outline: none; /* 移除焦点时的轮廓 */
  }
  .lsearchbox{
    width: 40px;
    height: 30px;
    background: #A52C27;
    border-radius: 0px 6px 6px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .bottomimg{
    width: 18px;
    height: 18px;
    object-fit: contain;
  }
 
}

/*当屏幕尺寸小于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: 100vw;
  height: 65px;
  display: none;
  justify-content: center;
  background: #9A362D;

}

.smallSearchInput {
  font-size: 14px;
  display: block;
  width: 80vw;
  height: 40px;
  caret-color: black;
  border-radius: 25px;
  margin: 15px auto 0;
  padding-left: 8vw;
  padding-right: 10vw;

  position: relative;
  display: inline-block;
  border: 0;
  background: #FFFFFF;
  box-sizing: border-box;
}

.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: 20px;
  top: 40%;
  width: 20px;
  height: 20px;
}
input::placeholder {
  color: #9D9A8F;/* 换成您想要的颜色代码，比如红色：#FF0000 */
}

/* 大于1200小于1400 */

@media screen and (min-width:1200px) and (max-width:1400px) {
  .bigHidden {
    display: none;
  }
  .caidanSearch,
  .caidanOpen,
  .caidanClos,
  .caidanEn {
    display: none;
  }
  
  .head-main {
    background: #A52C27 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;align-items: center;
  }
  /* PC菜单导航 */
  .head-b{
    width: 1200px; margin:0 auto;
  }
    /* 页脚 */
    .footer-main {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;padding-top: 17px;
      text-align: center;
      position: relative;
      line-height: 40px;
      height: 244px;
      /* display: flex; */
      justify-content: center;
      align-items: center;
      background: url('../image/comm/footbg1x.png');
      background-size: 100% 100%;
      background-repeat: no-repeat;
    }
    .footlink{
      height: 15px;font-family: Microsoft YaHei;
      font-weight: 400;
      font-size: 14px;
      color: #FFFFFF;
      line-height: 21px;
      margin-bottom: 22px;
      display: flex;
    }
    .yqlj{
      margin-right: 10px;line-height: 15px;
      font-family: Microsoft YaHei;
      font-weight: 400;
      font-size: 15px;
      color: #FFF2DF;
    }
    .linkbox{
      width: auto;
      height: 15px;
      line-height: 15px;
      margin-right: 10px;
      font-family: Microsoft YaHei;
      font-weight: 400;
      font-size: 15px;
      color: #FFF2DF;

    }
 .linkbox:hover{
    color: #D39868;
  }
    .linkline{
      width: 1px;
      height: 15px;
      border-left: 1px #FFF2DF solid;
      margin-right: 10px;
    }
    .footline{
      width: 100%;
      border-bottom: 1px #B53F3A solid;
      margin-bottom: 54px;
    }
    .footbottom{
      width: 100%;
      display: flex;
      justify-content: space-between;
    }
    .footlogobox{
      width: 472px;
      height: 77px;
      background: url('../image/comm/footlogo1x.png');
      background-size: 100% 100%;
    }
    .ercodebox{
      display: flex;
      height: 72px;

    }
    .codeimgbox{
      width: 77px;
      height: 77px;
      background: url('../image/comm/ercode1x.png');
      background-size: 100% 100%;
      margin-right: 10px;
      
    }
    .codecontentstyle{
      height: 14px;
      line-height: 14px;
      margin-bottom: 17px;
      
      font-family: Microsoft YaHei;
      font-weight: 400;
      font-size: 14px;
      color: #FFF2DF;
      text-align: left;
      
    }
    .codecontentstyle:nth-child(3){
      margin-bottom: 0px;
    }
    .foot-content {
      width: 1200px;
      margin: 0 auto;
    }
    .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;
 color:#FFF2DF ;
    
    }
    
    .foot-fontsize2 {
      height: 21px;
      margin-top: 12px;
      line-height: 15px;
 color:#FFF2DF ;
    }
      /* list页面的面包屑 */
  .mbxbox{
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px #A52C27 solid;
  }
  .mbximg{
    width: 283px;
    height: 85px;
    background: url('../image/comm/mbxbg1x.png');
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mbxfont{
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 30px;
    color: #FFFFFF;
    line-height: 21px;
  }
  .pcmbxbox{
    display: flex;
    
    margin-bottom: 34px;
    margin-top: 34px;
  align-items: center;

  }
  .ymbx{
    width: 17px;
    height: 16px;
    background: url('../image/comm/ymbx1x.png');
    margin-right: 15px;
  }
  .dhfont{
    width: auto;
    height: 16px;
    font-weight: 400;
    font-size: 16px;
    color: #D6A67A;
    line-height: 16px;
    margin-right: 5px;
  }
}
/* 大于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: #A52C27 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;align-items: center;
  }
  /* PC端菜单导航 */
  .head-b{
    width: 1400px; margin:0 auto;
  }
  /* 菜单 */
  .caidanSearch,
  .caidanOpen,
  .caidanClos,
  .caidanEn {
    display: none;
  }
  /* 页脚 */
  .footer-main {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-top: 17px;
  
    text-align: center;
    position: relative;
    line-height: 40px;
    height: 244px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    background: url('../image/comm/footbg1x.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .footlink{
   height: 15px;font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    /* line-height: 21px; */
   margin-bottom: 22px;
   display: flex;
  }
  .yqlj{
    margin-right: 10px;line-height: 15px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 15px;
    color: #FFF2DF;
  }
  .linkbox{
    width: auto;
    height: 15px;
    line-height: 15px;
    margin-right: 10px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 15px;
    color: #FFF2DF;

  }
 .linkbox:hover{
    color: #D39868;
  }
  .linkline{
    width: 1px;
    height: 15px;
    border-left: 1px #FFF2DF solid;
    margin-right: 10px;
  }
  .footline{
    width: 100%;
    border-bottom: 1px #B53F3A solid;
    margin-bottom: 54px;
  }
  .footbottom{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .footlogobox{
    width: 472px;
    height: 77px;
    background: url('../image/comm/footlogo1x.png');
    background-size: 100% 100%;
  }
  .ercodebox{
    display: flex;
    height: 72px;

  }
  .codeimgbox{
    width: 77px;
    height: 77px;
    background: url('../image/comm/ercode1x.png');
    background-size: 100% 100%;
    margin-right: 10px;
    
  }
  .codecontentstyle{
    height: 14px;
    line-height: 14px;
    margin-bottom: 17px;
    
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #FFF2DF;
    text-align: left;
    
  }
  .codecontentstyle:nth-child(3){
    margin-bottom: 0px;
  }
  
  .foot-content {
    width: 1400px;
    margin: 0 auto;
  }
  /* list页面的面包屑 */
  .mbxbox{
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px #A52C27 solid;
  }
  .mbximg{
    width: 283px;
    height: 85px;
    background: url('../image/comm/mbxbg1x.png');
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mbxfont{
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 30px;
    color: #FFFFFF;
    line-height: 21px;
  }
  .pcmbxbox{
    display: flex;
   
    margin-bottom: 34px;
    margin-top: 34px;
  align-items: center;

  }
  .ymbx{
    width: 17px;
    height: 16px;
    background: url('../image/comm/ymbx1x.png');
    margin-right: 15px;
  }
  .dhfont{
    width: auto;
    height: 16px;
    font-weight: 400;
    font-size: 16px;
    color: #D6A67A;
    line-height: 16px;
    margin-right: 5px;
  }
 
}

/*当屏幕尺寸小于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 #a66666;
  }
  .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: #9A362D;
    margin-left: 0 !important;
  }

  /* nav二级菜单整体 */
  .menuArea>div:nth-child(1) {}

  /* nav二级菜单item */

  .menuArea>div:nth-child(2) {
    display: none;
  }
  /* 移动端页头 */
  .head-main {
    background: url('../image/comm/pheadbg2x.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    height: 66px;
    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: 66px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10000;
  }

  .head-main-logo {
    width: 68%;
  }

  .caidanSearch {
    display: block;
    right: 40px !important;
  }

  .caidanEn {
    display: block;
    right: 100px !important;
  }

  .caidanOpen {
    display: block;
  }

  .caidanClos {
    display: none;
  }
  .pheadbox{
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
  }
  .pheadlogo{
    background: url('../image/comm/pheadlogo2x.png');
    background-size: 100% 100%;
    width: 236px;
    height: 38px;
    margin-right: 41px ;
    margin-left: 13px;
  }
  /* 修改地方 */
  .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: #9A362D !important;

  }
/* 修改地方 */

  .head-main-nav .navTitle {
    display: flex;
    /* border-bottom: 1px solid #FFFFFF; */
    background: #A52C27;
    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 {
  margin-left: 13px;
  width: 211px;
  height: 32px;
  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;
}


.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;
  margin-top: 22px;
  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) {
  .footbox{
    display: flex;
    width: 300px;
    margin: 0 auto;
    height: 40px;
    justify-content: center;
    align-items: center;
  }
    /* 下拉框 */
    .a {
      text-decoration: none;
    } /* 去除超链接下划线 */
  .ul {
    list-style: none;
  }
  /* 去除默认排列方式符号 */
  #header {
    width: 300px;
    height: 40px;
  
    /* border: 5px solid black; */
    margin: 0 auto;
  }
  /* 给外壳居中对齐和加个边框 */
   .nav {
    position: relative;
  }
  /* 给父元素定位，当元素较多时候需要定位，父元素相对定位子元素才能绝对定位，可以不让下拉框跑偏！ */
  .nav > li {
    border: 1px solid #FFF2DF;
    border-radius: 32px;;
    display: block;
    background-color: #A52C27;
    width: 300px;
    line-height: 40px;
    /* text-align: center; */
    color: #FFFFFF;
    font-size: 12px;
    font-family: Microsoft YaHei;
    display: flex;
    justify-content: space-between;
  }

    /* 给li标签转为块元素然后加宽高 */

    .nav-list {
      background-color: #A52C27;
      display: none;
      list-style: none;
      position: absolute;
      padding: 10px 0;
      top: 40px;
      border: 1px white solid;
      border-radius: 12px;
      z-index: 999; 
    }

  /* 通过display：none让下拉框隐藏 */
   .nav-li:hover .nav-list {
    display: block;
  }
  /* 通过 hover和display:block让鼠标停留时候显示出来.nav-list */
   .nav-list > li:hover a {
    color: white !important;
   
  }

   .nav-list > li{
    border-radius: 32px !important;
    background-color: #A52C27;
    width: 300px;
    line-height: 40px;
    /* text-align: center; */
    font-size: 12px;
    font-family: Microsoft YaHei;
    /* border-radius: 12px;; */
    
  }
  li >a{
    font-family: Microsoft YaHei;
font-weight: 400;
font-size: 14px;
color: #FDEFDC;
line-height: 40px;
    margin-left: 30px;
    /* color: white !important; */
  }
  /* 改变鼠标停留时li标签的背景颜色 */

  /* 移动页脚logo */
  .pfootlogobox{
   
    width: 236px;height: 38px;margin: 0 auto;
    margin-top: 28px;
    background:url('../image/comm/pfootlogo1x.png');
    background-size: 100% 100%;
  }



  .qrArea {
    margin-left: 0;
  }

  .footer-main-qrcode>img {
    height: 84px;
    width: 84px
    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 {
    height: 450px;
    padding-top: 40px;
    padding-bottom: 0px;
    /* height: calc(800px / 2); */
    background-color: #A52C27;
  }

  .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;
  }
.foot-fontsize1 {
  height: 21px;
  line-height: 15px;
  color:#FFF2DF ;
  font-size: 13px;

}

.foot-fontsize2 {
  height: 21px;
  margin-top: 12px;
  line-height: 15px;
  color:#FFF2DF ;
  font-size: 13px;
}
}