* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #000;
    font-size: 14px;
}
.main{ 
    min-width: 1000px;
}
.main .container{
    width: 100%;
    padding: 20px;
}
.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: 40rem;
    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: 12rem;
}
.content a:hover img{
    border: 1px solid #7df9b9;
}
.content a p {
    font-size: 1rem;
    font-weight: 800;
}
.content a:hover p{
    color: red;
}

.content .c2{
    top: 14rem;
    left: 16.5%;
}
.content .c3{
    top: 14rem;
    left: 39%;
}
.content .c4{
    top: 14rem;
    left: 61%;
}
.content .c5{
    top: 14rem;
    left: 83.8%;
}


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 a img{
    background: #f7f7f7;
}

.samearrow img{
    position: absolute;
    z-index: -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;
}

#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; /* 确保弹窗在其他元素之上 */
}
