* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #000;
    font-size: 14px;
}
.main{ 
    min-width: 1000px;
    padding: 20px;
}
.main .container{
    width: 100%;
}
.main .container .body{
    height: 105rem;
    border: 2px solid #75abdd;
    border-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;
    border: 1px solid rgb(233, 233, 233);
}
.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: 9rem;
    left: 15%;
}
.content .c2{
    top: 9rem;
    left: 32.5%;
}
.content .c3{
    top: 9rem;
    left: 50%;
}
.content .c4{
    top: 9rem;
    left: 67.5%;
}
.content .c5{
    top: 9rem;
    left: 85%;
}
.content .c6{
    top: 35rem;
    left: 30%;
}
.content .c7{
    top: 35rem;
    left: 70%;
}
.content .c8{
    top: 59rem;
    left: 25%;
}
.content .c9{
    top: 59rem;
    left: 50%;
}
.content .c10{
    top: 59rem;
    left: 75%;
}
.content .c11{
    top: 85rem;
    left: 40%;
}
.content .c12{
    top: 85rem;
    left: 60%;
}
.content .c13{
    top: 85rem;
    left: 80%;
}
.content .c14{
    top: 85rem;
    left: 20%;
}

.samearrow img{
  position: absolute;
}

.content .arrow1 img{
  width: 7%;
  height: 1.5rem;
  top: 12.5rem;
  left: 20%;
}
.content .arrow2 img{
  width: 7%;
  height: 1.5rem;
  top: 12.5rem;
  left: 38%;
}
.content .arrow3 img{
  width: 7%;
  height: 1.5rem;
  top: 12.5rem;
  left: 55.5%;
}
.content .arrow4 img{
  width: 7%;
  height: 1.5rem;
  top: 12.5rem;
  left: 73%;
}
.content .arrow5 img{
  width: 25%;
  height: 1.8rem;
  top: 38rem;
  left: 37.5%;
}
.content .arrow6 img{
  width: 10%;
  height: 2rem;
  top: 62rem;
  left: 32.5%;
}
.content .arrow7 img{
  width: 10%;
  height: 2rem;
  top: 62rem;
  left: 57.5%;
}
.content .arrow8 img{
  width: 8%;
  height: 1.8rem;
  top: 88.5rem;
  left: 26%;
}
.content .arrow9 img{
  width: 8%;
  height: 1.8rem;
  top: 88.5rem;
  left: 46%;
}
.content .arrow10 img{
  width: 8%;
  height: 1.8rem;
  top: 88.5rem;
  left: 66%;
}


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;
}
table tr td p{
    padding: 5px;
    color: #000;
  }
table tr td a img{
    background: #f7f7f7;
}


.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;
}
.back{
  color: #000;
  font-weight: 1000;
  width: 10rem;
  height: 4rem;
}
.back img{
  padding-left: 20px;
  width: 3rem;
  position: absolute;
  top: 7.4rem;
}
.back p{
  width: 6rem;
  position: absolute;
  left: 5%;
  top: 7.3rem;
}
#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; /* 确保弹窗在其他元素之上 */
}