* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.mc{
    display: flex;
}
.head_wrapper{
    background: #3f3f3f;
    width: 100%;
    height: 1.5rem;
}
font,span{
    position: absolute;
}
.head_logo{
    background-color: #f1f1f1;
    height: 3.5rem;
}
.left,.right{
    position: absolute;
}
.navbar {
    display: flex;         /* 使用Flexbox布局 */
    justify-content: center; /* 水平居中 */
    list-style-type: none;  /* 移除默认列表样式 */
    padding: 0;             /* 移除默认padding */
  }
nav ul {
    list-style-type: none; /* 移除默认列表符号 */
    padding: 0; /* 移除默认内边距 */
    margin: 0; /* 移除默认外边距 */
  }
nav ul li {
    display: inline; /* 列表项横向排列 */
    margin-right: 10px; /* 添加右边距以分隔列表项 */
  }
   
  nav ul li a {
    text-decoration: none; /* 移除下划线 */
    color: #686868; /* 设置文本颜色 */
    padding: 5px 10px; /* 添加内边距使链接看起来更好 */
    font-size: .8rem;
  }
   
  nav ul li a:hover {
    color: #07a3eb; /* 鼠标悬停时的背景颜色 */
  }
a{
    text-decoration: none;
    color: #000;
    font-size: 14px;
}
.main{ 
    min-width: 1000px;
    padding: 20px;
}
.main .container{
    width: 100%;
}
.main .container .header{
    font-size: 1rem;
    padding: 10px;
    background: linear-gradient(rgb(0,88,169), rgb(0,128,204));
    color: #fff;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.main .container .body{
    height: 50rem;
    border: 2px solid #75abdd;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.content{
    position: relative;
}
.same{
    position: absolute;
    transform: translateX(-50%);
}
.content a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.content a img{
    width: 8rem;
}
.content a:hover img{
    border: 1px solid #7df9b9;
}
.content a p {
    font-size: 1rem;
    font-weight: 800;
}
.content a:hover p{
    color: red;
}
.content .c1{
    top: 4rem;
    left: 15%;
}
.content .c2{
    top: 21rem;
    left: 15%;
}
.content .c3{
    top: 38rem;
    left: 15%;
}
.content .c4{
    top: 5rem;
    left: 41%;
}
.content .c5{
    top: 5rem;
    left: 69%;
}
.content .c6{
    top: 23rem;
    left: 41%;
}
.content .c7{
    top: 23rem;
    left: 69%;
}
.content .c8{
    top: 38rem;
    left: 32%;
}
.content .c9{
    top: 38rem;
    left: 51%;
}
.content .c10{
    top: 38rem;
    left: 69%;
}
.content .c11{
    top: 4rem;
    left: 85%;
    background-color: #f0f0f0; /* 浅灰色背景 */
    border: 1px solid #d0d0d0; /* 灰色边框 */
    padding: 5px 15px; /* 增加内边距 */
    display: inline-block;
    border-radius: 10px;
    width: 20rem; /* 自动宽度，根据内容调整 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
    transition: all 0.6s ease; /* 平滑过渡效果 */
    cursor: pointer; /* 鼠标悬停时显示手形图标 */
    text-align: center; /* 文字居中 */
    text-decoration: none; /* 无下划线 */
    outline: none; /* 去除轮廓线 */
}
.content .c12{
    top: 7rem;
    left: 85%;
    background-color: #f0f0f0; /* 浅灰色背景 */
    border: 1px solid #d0d0d0; /* 灰色边框 */
    padding: 5px 15px; /* 增加内边距 */
    display: inline-block;
    border-radius: 10px;
    width: 20rem; /* 自动宽度，根据内容调整 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
    transition: all 0.6s ease; /* 平滑过渡效果 */
    cursor: pointer; /* 鼠标悬停时显示手形图标 */
    text-align: center; /* 文字居中 */
    text-decoration: none; /* 无下划线 */
    outline: none; /* 去除轮廓线 */
}
.content .c11:hover {
    background-color: #e0e0e0; /* 鼠标悬停时的背景颜色 */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 鼠标悬停时的阴影效果 */
}

.content .c11:active {
    background-color: #d0d0d0; /* 鼠标点击时的背景颜色 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 鼠标点击时的阴影效果 */
    transform: translateY(4px); /* 点击时的轻微下移效果 */
}

.content .c11::before {
    content: ''; /* 伪元素需要内容属性，即使它为空 */
    position: absolute;
    left: 1%; /* 与左边距对齐 */
    top: 50%; /* 垂直居中 */
    width: 10px; /* 点的宽度 */
    height: 10px; /* 点的高度 */
    background-color: #333; /* 点的颜色 */
    border-radius: 50%; /* 使点变为圆形 */
    transform: translateY(-50%); /* 精确垂直居中 */
}
.content .c12:hover {
    background-color: #e0e0e0; /* 鼠标悬停时的背景颜色 */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 鼠标悬停时的阴影效果 */
}

.content .c12:active {
    background-color: #d0d0d0; /* 鼠标点击时的背景颜色 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 鼠标点击时的阴影效果 */
    transform: translateY(4px); /* 点击时的轻微下移效果 */
}
.content .c12::before {
    content: ''; /* 伪元素需要内容属性，即使它为空 */
    position: absolute;
    left: 1%; /* 与左边距对齐 */
    top: 30%; /* 垂直居中 */
    width: 10px; /* 点的宽度 */
    height: 10px; /* 点的高度 */
    background-color: #333; /* 点的颜色 */
    border-radius: 50%; /* 使点变为圆形 */
    transform: translateY(-50%); /* 精确垂直居中 */
}
.content .c13{
    top: 11.5rem;
    left: 85%;
    background-color: #f0f0f0; /* 浅灰色背景 */
    border: 1px solid #d0d0d0; /* 灰色边框 */
    padding: 5px 15px; /* 增加内边距 */
    display: inline-block;
    border-radius: 10px;
    width: 20rem; /* 自动宽度，根据内容调整 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
    transition: all 0.6s ease; /* 平滑过渡效果 */
    cursor: pointer; /* 鼠标悬停时显示手形图标 */
    text-align: center; /* 文字居中 */
    text-decoration: none; /* 无下划线 */
    outline: none; /* 去除轮廓线 */
}
.content .c13:hover {
    background-color: #e0e0e0; /* 鼠标悬停时的背景颜色 */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 鼠标悬停时的阴影效果 */
}

.content .c13:active {
    background-color: #d0d0d0; /* 鼠标点击时的背景颜色 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 鼠标点击时的阴影效果 */
    transform: translateY(4px); /* 点击时的轻微下移效果 */
}
.content .c13::before {
    content: ''; /* 伪元素需要内容属性，即使它为空 */
    position: absolute;
    left: 1%; /* 与左边距对齐 */
    top: 50%; /* 垂直居中 */
    width: 10px; /* 点的宽度 */
    height: 10px; /* 点的高度 */
    background-color: #333; /* 点的颜色 */
    border-radius: 50%; /* 使点变为圆形 */
    transform: translateY(-50%); /* 精确垂直居中 */
}
.content .c14{
    top: 14.5rem;
    left: 85%;
    background-color: #f0f0f0; /* 浅灰色背景 */
    border: 1px solid #d0d0d0; /* 灰色边框 */
    padding: 5px 15px; /* 增加内边距 */
    display: inline-block;
    border-radius: 10px;
    width: 20rem; /* 自动宽度，根据内容调整 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
    transition: all 0.6s ease; /* 平滑过渡效果 */
    cursor: pointer; /* 鼠标悬停时显示手形图标 */
    text-align: center; /* 文字居中 */
    text-decoration: none; /* 无下划线 */
    outline: none; /* 去除轮廓线 */
}
.content .c14:hover {
    background-color: #e0e0e0; /* 鼠标悬停时的背景颜色 */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 鼠标悬停时的阴影效果 */
}

.content .c14:active {
    background-color: #d0d0d0; /* 鼠标点击时的背景颜色 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 鼠标点击时的阴影效果 */
    transform: translateY(4px); /* 点击时的轻微下移效果 */
}
.content .c14::before {
    content: ''; /* 伪元素需要内容属性，即使它为空 */
    position: absolute;
    left: 1%; /* 与左边距对齐 */
    top: 30%; /* 垂直居中 */
    width: 10px; /* 点的宽度 */
    height: 10px; /* 点的高度 */
    background-color: #333; /* 点的颜色 */
    border-radius: 50%; /* 使点变为圆形 */
    transform: translateY(-50%); /* 精确垂直居中 */
}
.content .c15{
    top: 19rem;
    left: 85%;
    background-color: #f0f0f0; /* 浅灰色背景 */
    border: 1px solid #d0d0d0; /* 灰色边框 */
    padding: 5px 15px; /* 增加内边距 */
    display: inline-block;
    border-radius: 10px;
    width: 20rem; /* 自动宽度，根据内容调整 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
    transition: all 0.6s ease; /* 平滑过渡效果 */
    cursor: pointer; /* 鼠标悬停时显示手形图标 */
    text-align: center; /* 文字居中 */
    text-decoration: none; /* 无下划线 */
    outline: none; /* 去除轮廓线 */
}
.content .c15:hover {
    background-color: #e0e0e0; /* 鼠标悬停时的背景颜色 */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 鼠标悬停时的阴影效果 */
}

.content .c15:active {
    background-color: #d0d0d0; /* 鼠标点击时的背景颜色 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 鼠标点击时的阴影效果 */
    transform: translateY(4px); /* 点击时的轻微下移效果 */
}
.content .c15::before {
    content: ''; /* 伪元素需要内容属性，即使它为空 */
    position: absolute;
    left: 1%; /* 与左边距对齐 */
    top: 50%; /* 垂直居中 */
    width: 10px; /* 点的宽度 */
    height: 10px; /* 点的高度 */
    background-color: #333; /* 点的颜色 */
    border-radius: 50%; /* 使点变为圆形 */
    transform: translateY(-50%); /* 精确垂直居中 */
}
.content .c16{
    top: 19rem;
    left: 85%;
    background-color: #f0f0f0; /* 浅灰色背景 */
    border: 1px solid #d0d0d0; /* 灰色边框 */
    padding: 5px 15px; /* 增加内边距 */
    display: inline-block;
    border-radius: 10px;
    width: 20rem; /* 自动宽度，根据内容调整 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
    transition: all 0.6s ease; /* 平滑过渡效果 */
    cursor: pointer; /* 鼠标悬停时显示手形图标 */
    text-align: center; /* 文字居中 */
    text-decoration: none; /* 无下划线 */
    outline: none; /* 去除轮廓线 */
}
.content .c16:hover {
    background-color: #e0e0e0; /* 鼠标悬停时的背景颜色 */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 鼠标悬停时的阴影效果 */
}

.content .c16:active {
    background-color: #d0d0d0; /* 鼠标点击时的背景颜色 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 鼠标点击时的阴影效果 */
    transform: translateY(4px); /* 点击时的轻微下移效果 */
}
.content .c16::before {
    content: ''; /* 伪元素需要内容属性，即使它为空 */
    position: absolute;
    left: 1%; /* 与左边距对齐 */
    top: 50%; /* 垂直居中 */
    width: 10px; /* 点的宽度 */
    height: 10px; /* 点的高度 */
    background-color: #333; /* 点的颜色 */
    border-radius: 50%; /* 使点变为圆形 */
    transform: translateY(-50%); /* 精确垂直居中 */
}
.content .c17{
    top: 22rem;
    left: 85%;
    background-color: #f0f0f0; /* 浅灰色背景 */
    border: 1px solid #d0d0d0; /* 灰色边框 */
    padding: 5px 15px; /* 增加内边距 */
    display: inline-block;
    border-radius: 10px;
    width: 20rem; /* 自动宽度，根据内容调整 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
    transition: all 0.6s ease; /* 平滑过渡效果 */
    cursor: pointer; /* 鼠标悬停时显示手形图标 */
    text-align: center; /* 文字居中 */
    text-decoration: none; /* 无下划线 */
    outline: none; /* 去除轮廓线 */
}
.content .c17:hover {
    background-color: #e0e0e0; /* 鼠标悬停时的背景颜色 */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 鼠标悬停时的阴影效果 */
}

.content .c17:active {
    background-color: #d0d0d0; /* 鼠标点击时的背景颜色 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 鼠标点击时的阴影效果 */
    transform: translateY(4px); /* 点击时的轻微下移效果 */
}
.content .c17::before {
    content: ''; /* 伪元素需要内容属性，即使它为空 */
    position: absolute;
    left: 1%; /* 与左边距对齐 */
    top: 50%; /* 垂直居中 */
    width: 10px; /* 点的宽度 */
    height: 10px; /* 点的高度 */
    background-color: #333; /* 点的颜色 */
    border-radius: 50%; /* 使点变为圆形 */
    transform: translateY(-50%); /* 精确垂直居中 */
}
.content .c18{
    top: 25rem;
    left: 85%;
    background-color: #f0f0f0; /* 浅灰色背景 */
    border: 1px solid #d0d0d0; /* 灰色边框 */
    padding: 5px 15px; /* 增加内边距 */
    display: inline-block;
    border-radius: 10px;
    width: 20rem; /* 自动宽度，根据内容调整 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
    transition: all 0.6s ease; /* 平滑过渡效果 */
    cursor: pointer; /* 鼠标悬停时显示手形图标 */
    text-align: center; /* 文字居中 */
    text-decoration: none; /* 无下划线 */
    outline: none; /* 去除轮廓线 */
}
.content .c18:hover {
    background-color: #e0e0e0; /* 鼠标悬停时的背景颜色 */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 鼠标悬停时的阴影效果 */
}

.content .c18:active {
    background-color: #d0d0d0; /* 鼠标点击时的背景颜色 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 鼠标点击时的阴影效果 */
    transform: translateY(4px); /* 点击时的轻微下移效果 */
}
.content .c18::before {
    content: ''; /* 伪元素需要内容属性，即使它为空 */
    position: absolute;
    left: 1%; /* 与左边距对齐 */
    top: 50%; /* 垂直居中 */
    width: 10px; /* 点的宽度 */
    height: 10px; /* 点的高度 */
    background-color: #333; /* 点的颜色 */
    border-radius: 50%; /* 使点变为圆形 */
    transform: translateY(-50%); /* 精确垂直居中 */
}
.content .c19{
    top: 28rem;
    left: 85%;
    background-color: #f0f0f0; /* 浅灰色背景 */
    border: 1px solid #d0d0d0; /* 灰色边框 */
    padding: 5px 15px; /* 增加内边距 */
    display: inline-block;
    border-radius: 10px;
    width: 20rem; /* 自动宽度，根据内容调整 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
    transition: all 0.6s ease; /* 平滑过渡效果 */
    cursor: pointer; /* 鼠标悬停时显示手形图标 */
    text-align: center; /* 文字居中 */
    text-decoration: none; /* 无下划线 */
    outline: none; /* 去除轮廓线 */
}
.content .c19:hover {
    background-color: #e0e0e0; /* 鼠标悬停时的背景颜色 */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 鼠标悬停时的阴影效果 */
}

.content .c19:active {
    background-color: #d0d0d0; /* 鼠标点击时的背景颜色 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 鼠标点击时的阴影效果 */
    transform: translateY(4px); /* 点击时的轻微下移效果 */
}
.content .c19::before {
    content: ''; /* 伪元素需要内容属性，即使它为空 */
    position: absolute;
    left: 1%; /* 与左边距对齐 */
    top: 30%; /* 垂直居中 */
    width: 10px; /* 点的宽度 */
    height: 10px; /* 点的高度 */
    background-color: #333; /* 点的颜色 */
    border-radius: 50%; /* 使点变为圆形 */
    transform: translateY(-50%); /* 精确垂直居中 */
}
table{
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
  height: auto;
  border-collapse: separate;
  border-spacing: 0.5rem;
}
table tr td{
  border: 2px dashed rgb(1, 102, 255);
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 10px;
}
.vertical-rl {
    writing-mode: vertical-rl;
    background-color: rgb(16, 128, 233);
    border: none;
    width: 1%;
  }

.samearrow img{
    position: absolute;
    z-index: -1;
}
.content .arrow1 img{
    width: 11%;
    height: 6rem;
    top: 14rem;
    left: 9%;
}
.content .arrow2 img{
    width: 9%;
    height: 6rem;
    top: 31rem;
    left: 12%;
}
.content .arrow3 img{
    width: 9%;
    height: 6rem;
    top: 40rem;
    left: 23.5%;
    transform: translateX(-50%);
}
.content .arrow4 img{
    width: 19%;
    height: 12rem;
    top: 10rem;
    left: 19%;
}
.content .arrow5 img{
    width: 11%;
    height: 6rem;
    top: 16rem;
    left: 42%;
    transform: translateX(-50%);
}
.content .arrow6 img{
    width: 19%;
    height: 5rem;
    top: 5rem;
    left: 46%;
}
.content .arrow7 img{
    width: 18%;
    height: 11rem;
    top: 13rem;
    left: 56%;
    transform: translateX(-50%);
}
.content .arrow8 img{
    width: 18%;
    height: 6rem;
    top: 22rem;
    left: 46%;
}
.content .arrow9 img{
    width: 7%;
    height: 8rem;
    top: 29.5rem;
    left: 30%;
    transform: translateX(-1%);
}
.content .arrow10 img{
    width: 7%;
    height: 8rem;
    top: 29.5rem;
    left: 45%;
    transform: translateX(-1%);
}
.content .arrow11 img{
    width: 9%;
    height: 6rem;
    top: 40rem;
    left: 37%;
    transform: translateX(-1%);
}
.content .arrow12 img{
    width: 20%;
    height: 10rem;
    top: 28rem;
    left: 45%;
    transform: translateX(-1%);
}
.content .arrow13 img{
    width: 9%;
    height: 6rem;
    top: 40rem;
    left: 56%;
    transform: translateX(-1%);
}
.content .arrow14 img{
    width: 10%;
    height: 5rem;
    top: 31.5rem;
    left: 62.5%;
    transform: translateX(-1%);
}

.talk {
    position: fixed; 
    bottom: 20px; /* 设置表单距离页面底部的距离 */
    right: 20px; /* 设置表单距离页面右侧的距离 */
    background-color: rgb(0, 102, 255); /* 设置表单背景色 */
    padding: 10px; /* 设置表单内边距 */
    border: 3px solid #0ff55c; /* 设置表单边框 */
    width: 85px;
    height: 85px;
    animation: flow 2s infinite alternate linear;
}
 
.talk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    animation: flowBefore 2s infinite alternate linear;
}
 
@keyframes flow {
    0% {
      border-color: #ff0000;
    }
    100% {
      border-color: rgb(43, 255, 0);
    }
}
 
  @keyframes flowBefore {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
}
.talk p{
    color: white;
}
.foot{
    height: 8rem;
    width: 100%;
    background-color: #f1f1f1;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 90%;
}
.foot a{
    color: #686868;
}
.foot a:hover{
    color: #07a3eb;
}

#myModal {
    display: none; /* 默认隐藏弹窗 */
    position: fixed; /* 固定弹窗位置 */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* 居中显示 */
    background-color: white;
    border: 1px solid black;
    padding: 20px;
    z-index: 1; /* 确保弹窗在其他元素之上 */
}
