* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Microsoft YaHei", Arial, sans-serif;
  background-color: #f5f5f5;
}

/* 顶部栏 */
.top-header {
  background-color: #075aa6;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-header-content {
  width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo {
  width: 406px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-links {
  display: flex;
}

.top-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding: 0 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.top-links a:last-child {
  border-right: none;
}

.search-box {
  display: flex;
  align-items: center;
  position: relative;
}

.search-box input {
  padding: 10px 50px 10px 20px;
  border: none;
  outline: none;
  width: 270px;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.search-box button {
  position: absolute;
  right: 4px;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.search-box button img {
  width: 100%;
  height: 100%;
  display: block;
}

/* 主导航栏 */
.main-nav {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.nav-container {
  width: 1400px;
  display: flex;
  justify-content: space-between;
}

.nav-item {
  position: relative;
  flex: 1;
  text-align: center;
}

.nav-item > a {
  display: block;
  padding: 20px 0;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-item:hover > a {
  background-color: #075aa6;
  color: white;
}

/* 下拉菜单 */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  z-index: 999;
  white-space: nowrap;
  min-width: 500px;
  border-top: 3px solid #075aa6;
}

/* 右边的导航项下拉菜单靠右对齐 */
.nav-item:nth-last-child(-n + 4) .dropdown {
  left: auto;
  right: 0;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown-content {
  display: flex;
  padding: 20px;
  gap: 20px;
  align-items: center;
}

.dropdown-image {
  width: 200px;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
}

.dropdown-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown-links {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
}

.dropdown-links a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  padding: 10px 20px;
  transition: all 0.3s;
  white-space: nowrap;
}

.dropdown-links a:hover {
  color: #075aa6;
  background-color: rgba(240, 240, 240, 0.8);
}

/* 轮播图 */
.banner {
  height: 432px;
  overflow: hidden;
  text-align: center;
}
.dg-container {
  width: 100%;
  height: 450px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.dg-wrapper {
  width: 1180px;
  height: 450px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  -o-perspective: 1000px;
  -ms-perspective: 1000px;
  perspective: 1000px;
      top: -70px;
}
.dg-wrapper a {
  width: 1180px;
  height: 450px;
  display: block;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
}
.dg-wrapper a .mask {
  height: 100%;
  width: 100%;
  position: relative;
}
.dg-wrapper a .mask img {
  height: 109%;
  width: 100%;
}
.dg-wrapper a .mask .title {
  position: absolute;
  left: 290px;
  bottom: 60px;
  width: 600px;
  height: 50px;
  background: #000000;
  opacity: 0.65;
  line-height: 50px;
}
.dg-wrapper a .mask .title p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 auto;
  width: 507px;
  font-size: 22px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
.dg-wrapper a.dg-transition {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.dg-wrapper a img {
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
  visibility: visible;
}
.dg-wrapper a.dg-center div {
  display: block;
}
.dg-container .dg-prev,
.dg-container .dg-next {
  position: absolute;
  z-index: 100;
  top: 0;
  height: 450px;
  width: 30%;
  display: block;
  cursor: pointer;
}
.dg-container .dg-prev {
  left: 0;
}
.dg-container .dg-next {
  right: 0;
}

/* 手风琴效果 */
.accordion-container {
  width: 1400px;
  height: 450px;
  display: flex;
  margin: 0px auto;
  overflow: hidden;
}

.accordion-mobile-header {
  display: none;
}

.accordion-panel {
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 0 0 120px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  background-color: white; /* 白色背景 */
}

.accordion-panel:last-child {
  border-right: none;
}

.accordion-panel.active {
  flex: 1;
}

.panel-content {
  position: relative;
  height: 100%;
  display: flex;
  z-index: 2;
}

/* 垂直标题区域（包含图标和文字） */
.vertical-content {
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  padding: 65px 0;
}

/* 悬停时的颜色 */
.vertical-content:hover .panel-text {
  color: #075aa6;
}

/* active 状态下的颜色 */
.accordion-panel.active .panel-text {
  color: #075aa6;
}

/* 上方图标 */
.top-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
}

.top-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 中间文字 */
.panel-text {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 26px;
  color: #333333;
  writing-mode: vertical-rl; /* 保持垂直文字排版 */
  letter-spacing: 4px;
  flex: 1;
}

/* 下方箭头图标 */
.bottom-icon {
  width: 20px;
  height: 22px;
  opacity: 0.5;
  background-image: url("../images/jt.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* 扩展内容（仅图片） */
.expanded-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-panel.active .expanded-content {
  opacity: 1;
  transform: translateX(0);
}

.expanded-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1440px) {
  .accordion-container {
    width: 95%;
  }
}

.contentBox {
  width: 100%;
  background-image: url(../images/bj3.png);
  background-size: contain;
}

/* 定义字体 */
@font-face {
  font-family: "ZhiMangXing"; /* 自定义字体名称（后续引用用） */
  src: url("../fonts/钟齐志莽行书/ZhiMangXing-Regular.ttf") format("truetype"); /* 字体路径和格式 */
  font-weight: normal; /* 字体粗细 */
  font-style: normal; /* 字体样式 */
}

/* 段落标题 */
.title-all {
  width: 1400px;
  height: 60px;
  margin: 40px auto 20px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.left-title img {
  width: 35px;
  height: 30px;
}

.left-title span {
  font-family: "ZhiMangXing", sans-serif; /* 使用自定义字体，sans-serif作为 fallback */
  font-weight: 400;
  font-size: 40px;
  color: #075aa6;
}

.right-title img {
  width: 20px;
  height: 15px;
  cursor: pointer;
}

.xw-all {
  width: 1400px;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.xw-left {
  width: 72%;
}

.xw-right {
  flex: 1;
}

.list-box {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: stretch;
}

/* 轮播区域 */
.carousel-section {
  position: relative;
  width: 100%;
  max-width: 604px;
  margin: 0 auto;
}

/* 轮播容器 */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 604px;
  margin: 0 auto;
}

/* 包裹层 - 关键样式 */
.carousel-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 604 / 398;
  overflow: hidden; /* 隐藏溢出的内容 */
  border-radius: 4px; /* 可选，添加圆角 */
}

/* slides 容器横向排列 - 关键样式 */
.carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  width: 100%;
  will-change: transform; /* 优化动画性能 */
}

/* 每张轮播图 - 关键样式 */
.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  position: relative;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 轮播按钮 */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 42px;
  cursor: pointer;
  z-index: 10;
  border: none;
  background: none;
  padding: 0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.carousel-btn:hover {
  opacity: 1;
}

.carousel-btn-prev {
  left: 20px;
}

.carousel-btn-next {
  right: 20px;
}

.carousel-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none; /* 防止图片干扰按钮点击 */
}

/* 轮播文字信息 */
.carousel-info {
  margin-top: 10px;
  padding: 15px 0;
  height: 128px;
  box-sizing: border-box;
}

.carousel-info-date {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 14px;
  color: #075aa6;
  line-height: 1.4;
}

.carousel-info-title {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 18px;
  color: #262626;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin: 10px 0;
  line-height: 1.4;
}

.carousel-info-description {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #808080;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5;
}
/* 新增外层包裹定位 */
.carousel-section {
  position: relative;
  width: 100%;
  max-width: 604px;
  margin: 0 auto;
}

/* 按钮相对新外层定位 */
.carousel-section .carousel-btn {
  position: absolute;
  top: 33%;
}

.carousel-section .carousel-btn-prev {
  left: 20px;
}

.carousel-section .carousel-btn-next {
  right: 20px;
}

/* 确保轮播容器正确隐藏溢出 */
.carousel-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 604 / 398;
  overflow: hidden; /* 这个很重要 */
}

/* 确保slides容器正确排列 */
.carousel-slides {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
  width: 100%; /* 添加宽度 */
}

/* 每张轮播图占满容器 */
.carousel-slide {
  flex: 0 0 100%; /* 确保每张slide占100%宽度 */
  width: 100%;
  height: 100%;
  position: relative;
  /* 不需要设置display: none，因为是通过transform控制显示 */
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* 确保图片是块级元素 */
}

.carousel-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  box-sizing: border-box;
}

/* 新闻轮播 */
.list-box .colum1
{
    float:left;
    width:61.5%;
                  /*   background:#fff;*/
    position:relative;
}

.list-box .colum1 h2
{
    font-size:20px;
    font-weight:bold;
}

.list-box .colum1 h2 a
{
    color:#173887;
}


.list-box .colum1 h2 a:hover
{
    color:#ff7800;
}

.list-box .colum1 .num
{
    float:right;
    color:#999
}

.list-box .colum1 .num i
{
    margin:4px 6px 0 14px;
    font-size:14px;
    background:url(images/eve_03.jpg) no-repeat;
    width:16px;
    height:10px;
    float:left;
}

.list-box .colum1 .node
{
    color:#075aa6;

}

.list-box .colum1 .node:hover
{
    color:#333;

}

.list-box .colum1 .hd{
    width:100%;
    position:relative;
}

.list-box .colum1 .timelist
{
    position: absolute;
    top: 327px;
    left: 0;
    z-index: 2;
}

.list-box .colum1 .timelist li
{
    float: left;
    display: block;
    font-size: 30px;
    color: #fff;
    width: 80px;
    height: 70px;
    text-align: center;
    font-weight: bold;
    position: relative;
    z-index: 0;
    line-height: 34px;
    padding-top: 0px;
    margin-right: 1px;
    line-height: 55px;
    cursor: pointer;
    zoom:1;
}

.list-box .colum1 .timelist li:hover
{
    opacity: 0.8;
    filter:alpha(opacity=80);
}

.list-box .colum1 .timelist li
{
    color: #fff;
    font-weight: bold;
}

.list-box .colum1 .timelist li span
{
    display: block;
    font-size: 12px;
    font-weight: normal;
    margin-top: -10px;
    position: relative;
    line-height: 12px;
}
.list-box .colum1 .timelist li i
{
    position:absolute;
    z-index: -1;
    background: #fcc50f;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.list-box .colum1 .forwnxt
{
    position: absolute;
    top: 200px;
    z-index: 2;
    width:100%;
}

.list-box .colum1 .forwnxt a
{
    display: block;
    width: 25px;
    height: 42px;
    display:block;
    cursor:pointer;
}

.list-box .colum1 .forwnxt .next{
     position:absolute; 
     left:5%;
}
.list-box .colum1 .forwnxt .prev{
     position:absolute; 
     right:5%;
}

.list-box .colum1 .timelist li.t1 i
{
    filter:alpha(opacity=90);
    opacity: .9;
}
.list-box .colum1 .timelist li.t2 i
{
    filter:alpha(opacity=80);
    opacity: .8;
}
.list-box .colum1 .timelist li.t3 i
{
    filter:alpha(opacity=60);
    opacity: .6;
}
.list-box .colum1 .timelist li.t4 i
{
    filter:alpha(opacity=50);
    opacity: .5;
}
.list-box .colum1 .timelist li.t5 i
{
    filter:alpha(opacity=40);
    opacity: .4;
}
.list-box .colum1 .timelist li.t6 i
{
    filter:alpha(opacity=20);
    opacity: .2;
}

.list-box .colum1 .timelist li.on i
{
    background: #fff;
    filter:alpha(opacity=100);
    opacity: 1;

}
.list-box .colum1 .timelist li.on
{
    color: #173887;
}


.list-box .colum1 p
{
    color:#777;
}

.list-box .colum1 .bd{
    width:100%;
    position:relative;
    overflow:hidden;
}

.list-box .colum1 .figurewrap
{
    padding:20px 0;
                  /* background:#fff;*/
    height:148px;
}

.list-box .colum1 .figurewrap .more{
    padding-left:20px;
    color:#173887;
    font-size:14px;
}
 .headlinelist li
{
	float: left;
}

 .headlinelist li img
{
	width:100%;
	height:398px;
	display:block;object-fit: cover;
}
 .headlinelist li p{
	font-size:14px;
	color:#8a8a8a;
	line-height:24px;
	padding-top:10px;
}
.bd ul {
  list-style: none; /* 核心：去掉列表项标记 */
  padding: 0; /* 可选：清除默认内边距（部分浏览器会有） */
  margin: 0; /* 可选：清除默认外边距 */
}


/* 新闻轮播 */

/* 新闻列表 */
.news-list {
  /* background: #fff; */
  padding: 0 20px;
  flex: 1;
}

.news-item {
  padding: 15px 0;
  border-top: 1px solid #dedede;
  cursor: pointer;
  transition: all 0.3s;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item:hover {
  background: #f8f9fa;
  padding-left: 10px;
}

.news-item-date {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #075aa6;
  margin-bottom: 8px;
}

.news-item-title {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 通知公告列表 */
.notice-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.notice-item {
  padding: 20px;
  background-image: url("../images/bj4.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.3s;
}

.notice-item:hover {
  background-image: url("../images/bj.png");
  transform: translateY(-3px);
}

.notice-item:hover .notice-item-title,
.notice-item:hover .notice-item-date {
  color: #fff;
}

.notice-item-title {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
  line-height: 1.6;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s;
}

.notice-item-date {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #075aa6;
  transition: color 0.3s;
}

/* 培训集锦 */
.px-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.px-container .left-section {
  flex: 0 0 760px;
  height: 460px;
  background-image: url("../images/bj2.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.px-container .left-section img {
  width: 700px;
  height: 400px;
  object-fit: cover;
}

.px-container .right-section {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  height: 400px;
}

.px-container .news-item {
  /* min-width: 260px; */
  background: #ffffff;
  border-top: 3px solid #075aa6;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
}

.px-container .news-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.px-container .news-item:hover .news-title {
  color: #075aa6;
}

.px-container .news-title {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
}

.px-container .news-date {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #075aa6;
}

/* 精品项目 */
.xm-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 70px;
}
/* 上方区域 */
.top-section {
  display: flex;
  margin-bottom: 40px;
  align-items: flex-end;
}

/* 左侧内容区 */
.top-text {
  flex: 1;
  padding: 45px;
  box-sizing: border-box;
  position: relative;
  min-height: 300px;
  background-color: #fff;
}

.top-title {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 20px;
  color: #262626;
  margin-bottom: 20px;
}

.top-description {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #808080;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.moreImg {
  position: absolute;
  right: 45px;
  bottom: 45px;
  cursor: pointer;
}

.moreImg img {
  width: 69px;
  height: auto;
}

/* 右侧图片区 */
.top-image-wrapper {
  flex: 0 0 664px;
  height: 420px;
  position: relative;
  overflow: hidden;
}

.top-image {
  width: 664px;
  height: 420px;
}

.top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.date-badge {
  position: absolute;
  top: -30px;
  right: 45px;
  width: 66px;
  height: 55px;
  color: white;
  text-align: center;
  z-index: 10;
  background-image: url("../images/s3-img-3.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.date-day {
  font-family: Microsoft YaHei;
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  line-height: 16px;
  display: block;
}

.date-month {
  font-size: 12px;
  display: block;
}
/* 下方轮播区域 */
.bottom-section {
  position: relative;
}

.xmcarousel-wrapper {
  overflow: hidden;
  width: 100%; /* 改为100%宽度 */
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  width: max-content; /* 重要：确保轨道宽度足够 */
}

.carousel-item {
  flex: 0 0 284px;
  text-align: center;
  cursor: pointer; /* 添加手型光标 */
  transition: all 0.3s ease; /* 添加悬停效果 */
}

.carousel-item img {
  width: 284px;
  height: 180px;
  object-fit: cover;
}

.carousel-item-title {
  margin-top: 15px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
}

/* 箭头控制 */
.carousel-arrows {
  position: absolute;
  bottom: 20%;
  right: 0px;
  /* transform: translateY(-50%); */
  display: flex;
  gap: 30px; /* 两个按钮之间的间距 */
}

.arrow {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s;
}
.arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 底部 */
.footer {
  background: #075aa6;
  color: #ffffff;
}

.fix-mobile {
  display: none;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 30px;
  opacity: 0.6;
  background: #004e96;
  height: 50px;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.wp {
  width: 1400px;
  margin: 0 auto;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.fix .ftl {
  width: 70%;
  float: left;
  padding: 39px 0;
  overflow: hidden;
}
.fix .ftr {
  width: 30%;
  float: right;
  padding-bottom: 39px;
  padding-top: 60px;
}

.fix ul {
  list-style: none;
}

.fix .ftl ul li {
  width: 20%;
  margin-right: 5%;
  float: left;
  overflow: hidden;
}

.fix .ftl ul li h3 {
  display: block;
  font-size: 16px;
  color: #fff;
  background-image: url(../images/fo_03.jpg);
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.fix .ftl ul li a {
  display: block;
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  opacity: 0.6;
  text-decoration: none;
  cursor: pointer;
}
.fix .ftr .ftr_wx {
  width: 100%;
  overflow: hidden;
}
.fix .ftr .ftr_wx ul {
  float: right;
}
.fix .ftr .ftr_wx ul li {
  width: 100px;
  float: left;
  overflow: hidden;
  margin-left: 20px;
}
.fix .ftr .ftr_wx ul li p {
  display: block;
  font-size: 14px;
  text-align: center;
  color: #fff;
  opacity: 0.6;
  padding-bottom: 10px;
}
.fix .ftl ul li p {
  display: block;
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  opacity: 0.6;
}
