@font-face {
  font-family: "HarmonyOS_Sans_SC_Regular";
  src: url("../fonts/HarmonyOS_Sans_SC_Regular.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* 清除 */
* {
  padding: 0;
  margin: 0;
  font-family: "HarmonyOS_Sans_SC_Regular", "微软雅黑", Arial,
    "AvenirLTStd-light", "AvenirLTStd", Arial, Helvetica, sans-serif;
}
a {
  text-decoration: none;
  color: #323232;
  opacity: 0.95;
}
div,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
blockquote,
pre,
form,
fieldset,
table,
th,
td {
  border: none;
  margin: 0px;
  padding: 0px;
}

/* 总宽度限制 */
.wrap {
  width: 1360px;
  margin: 0 auto;
  /* padding: 0 20px; */
}

/* 快速链接 */
.link-over-base {
  display: inline-block;
  position: relative;
}
.link-trigger:hover + .link-over,
.link-over:hover {
  visibility: visible;
}
/* 遮罩下拉 */
.link-over {
  background-color: #f3f7ff;
  width: 160px;
  z-index: 2;
  overflow: auto;
  visibility: hidden;
  position: absolute; /* 浮层定位 */
  top: 100%; /* 紧贴触发元素下方 */
  right: 0;
  /* padding: 5px; */
  text-align: left;
  border-radius: 5px;
  box-shadow: black 0px 0.5px 1px 0px;
}
.link-over p {
  font-size: 16px;
  padding: 7px 16px;
  /* margin:5px auto; */
  overflow: hidden;
}
.link-over p a {
  color: #2d2d2d;
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.link-over p:hover {
  background-color: #e6f0ff;
  cursor: pointer;
}
.link-over p:hover a {
  color: #2b5ca8;
}

/* 各项内容块 */
.contents {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  grid-template-rows: repeat(3, 1fr); /* 3行 */
  gap: 40px; /* 设置间距 */
  height: auto; /* 高度自动适应 */
}
.content {
  width: 660px;
  height: 400px;
  /* background-color: bisque; */
}
.content .bigtitle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #083090;
}
.content .title {
  color: #083090;
  font-size: 28px;
  font-weight: bold;
}
.content .more {
  color: #083090;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
}