/* 全局样式 */
body {
  color: #333;
  line-height: 1.6;

  /*  */
  background-color: #fff;
}

/* 页面标题区域 */
.page-header {
  background: url("./asset/xinxi.png") center center no-repeat;
  height: 400px;
  background-size: cover;
  padding: 40px 0;
  position: relative;
  color: #333;
  margin-bottom: 30px;
}

.header-content {
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: rgba(0, 65, 135, 0.8);
  position: absolute;
  top: 130px;
  left: 320px;
}

.header-content .title {
  font-weight: 600;
  font-size: 60px;
  /* background: linear-gradient(to right, #6886d5, #004187); */
  background-image: linear-gradient(to left, #6886d5, #004187);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
}

/* 主要内容区域 */
.container-custom {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 面包屑 */
.nav a,
.nav .active {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

.nav .active {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 4px;
}

.nav .breadcrumb-item::before {
  /* width: 12px; */
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  margin: 0 4px;
}

.nav .breadcrumb-item.sec::before {
  margin-top: 4px;
}

/* 资讯内容 */
.content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 100px 80px;
  font-weight: 400;
  font-size: 16px;
}

.content-box .name-container {
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px #e5e7e8 solid;
  text-align: center;
}

.content-box .name {
  font-size: 24px;
  font-weight: 500;
  color: #000d1b;
  margin: 20px 0;
}

.content-box .date {
  color: rgba(0, 13, 27, 0.4);
}

.content-box .content {
  color: rgba(0, 13, 27, 0.8);
}

.content-box p {
  margin-bottom: 24px;
  text-indent: 2rem;
}

.content .last {
  text-align: right;
}

/* 私有样式 */
.map-box {
  width: 100%;
  min-height: 300px;
  background: linear-gradient(36.47deg, #f4f7fb 0%, #eff4fd 34.67%, #f4f9fe 65.97%, #e6ebf8 100%);
  margin: 0 auto 80px;
}

.map-box .map-header {
  height: 170px;
  border-bottom: 1px solid #e5e7e8;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-box .map-header h4 {
  font-size: 40px;
  line-height: 56px;
  background: linear-gradient(271.84deg, #6886d5 -0.06%, #004187 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.map-box .map-header h4 span {
  font-size: 24px;
  line-height: 34px;
  background: linear-gradient(271.84deg, rgba(104, 134, 213, 0.6) -0.06%, rgba(0, 65, 135, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.map-box .map-header img {
  width: 90px;
}

.map-box .map-content li {
  list-style: none;
  border-bottom: 1px solid #e5e7e8;
  padding: 40px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.map-box .map-content li .content-name {
  width: 100%;
  font-size: 24px;
  line-height: 32px;
  color: #000d1b;
  font-weight: 500;
  margin-bottom: 0;
}

.map-box .map-content li a {
  width: 212px;
  height: 78px;
  background: #fff;
  border-radius: 4px;
  margin: 24px 16px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.map-box .map-content li a::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../asset/img/ico_dot.png") no-repeat;
  background-size: 100% 100%;
  margin-left: 8px;
  display: block;
}

.map-box .map-content li a p {
  max-width: 160px;
  min-width: 128px;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  color: rgba(0, 13, 27, 0.8);
  margin-bottom: 0;
}

.map-box .map-content li a:hover p {
  color: #2b73ed;
}

.map-box .map-content li a:hover::after {
  background: url("../asset/img/ico_dot_h.png") no-repeat;
  background-size: 100% 100%;
}