@font-face {
  font-family: 'MyCustomFont'; /* 自定义字体名称 */
  src: url('1.otf') format('opentype'); /* 字体文件路径 */
  font-weight: normal; /* 字体粗细 */
  font-style: normal; /* 字体样式 */
}
@font-face {
  font-family: 'MyCustomFont1'; /* 自定义字体名称 */
  src: url('2.otf') format('opentype'); /* 字体文件路径 */
  font-weight: normal; /* 字体粗细 */
  font-style: normal; /* 字体样式 */
}
@font-face {
  font-family: 'MyCustomFont2'; /* 自定义字体名称 */
  src: url('3.ttf') format('opentype'); /* 字体文件路径 */
  font-weight: normal; /* 字体粗细 */
  font-style: normal; /* 字体样式 */
}

body {
  font-family: 'MyCustomFont1', sans-serif; /* 使用自定义字体 */

  font-size: 14px;
}


.dde{

  font-family: 'MyCustomFont', sans-serif; /* 使用自定义字体 */
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0.2px;
}

html,
body {
  letter-spacing: 0.2px;
  margin: 0;
  padding: 10px;
  overflow-x: hidden;
  background-color: white;

}


.solid-circle {
  width: 20px; /* 圆的直径 */
  height: 20px; /* 圆的直径 */
  border-radius: 50%; /* 使其成为圆形 */
  border: 1px solid black; /* 实线边框 */
  display: inline-block; /* 使其在行内显示 */
 
}

.dashed-circle {
  width: 20px; /* 圆的直径 */
  height: 20px; /* 圆的直径 */
  border-radius: 50%; /* 使其成为圆形 */
  border: 1px dashed black; /* 虚线边框 */
  display: inline-block; /* 使其在行内显示 */
  
}
.underline1 {
  text-decoration: underline;


}

.zmm{



  border-bottom: 1px dashed black;
  border-top: 1px dashed black;
  width:98vw;margin:25px  auto ;

  padding-bottom: 5px;
}
.kk{
  font-family: 'MyCustomFont', sans-serif;
  letter-spacing: 0.3px
}

.kks{
  font-family: 'MyCustomFont1', sans-serif;
  letter-spacing: 0.3px
}
.zcc{


  border-bottom: 1px solid black;
  border-top: 1px solid black;
  width:98vw;margin:25px  auto ;
  padding-bottom: 5px;
}


.image-container {
  width:95%;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

.image-wrapper {
  position: relative;
  margin: 2px;
  cursor: pointer;
}

.image {
  /* width: 150px; */
  height: 12vh;
  /* object-fit: cover; */
}

.underline {
  position: absolute;
  bottom: -3px; /* 调整下划线位置 */
  left: 0;
  right: 0;
  height:2px;
  background-color: black; /* 下划线颜色 */
  z-index:1
}
