
    body {
    margin:0px;
    background-color: white;
    color:black;
}


#section2{
    margin-top: 20px; /* 设置上方 margin */
    margin-bottom: 20px; /* 设置下方 margin */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

    
    .container {
        text-align: center;
    }
    
    .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px; /* 添加 padding */
}

    
    .grid-item {
        border: 1px solid #ddd;
        padding: 20px;
    }
    
    .grid-item img {
        max-width: 100%; /* 限制图片最大宽度 */
        height: auto;
        object-fit: cover; /* 图片填充容器，保持宽高比 */
        margin-bottom: 10px; /* 添加底部边距 */
    }

    /* 媒体查询：针对小于等于768px的屏幕宽度 */

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(1, minmax(0, 1fr)); /* 在小屏幕上使用单列布局 */
        justify-content: center; /* 左右居中 */
    }

    .grid-item {
        width: calc(100% - 40px); /* 让每个项目占据整个宽度，并留出padding的空间 */
    }
}


/* 媒体查询：针对大于768px的屏幕宽度 */
@media (min-width: 769px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 在大屏幕上使用多列布局 */
    }
}

 a {
            text-decoration: none;
        }

a:hover {
    text-decoration: underline;
}

/* p {
    text-transform: capitalize;
} */





footer {
            display: flex;
            flex-wrap: wrap; /* 允许子元素换行 */
            justify-content: space-between;
            padding: 20px;
            background-color: #333;
            color: #fff;
        }

        footer > div {
            flex: 1;
            max-width: 100%;
            margin: 0 15px; /* 添加间距以分隔每个column */
        }

        footer h4 {
            text-align: left;
        }

        footer a {
            display: block;
            text-align: left; /* 左对齐 */
            margin-top: 10px; /* 添加顶部间距 */
            color: #fff; /* 设置为白色字体 */
        }

        /* 响应式设计 */
        @media screen and (max-width: 768px) {
            footer > div {
                flex: 0 0 100%; /* 每个column占据整个宽度 */
                margin: 10px 0; /* 更改间距 */
            }
        }

.banner-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: rgb(33, 33, 33);
        padding: 20px;
    }

    .banner-box {
        margin-bottom: 30px;
        margin-left: 20px;
        margin-right: 20px;
        min-width: 100px;
        border: 2px solid white; /* 添加边框样式 */
        border-radius: 30px;
        min-height: 100px;
        background-color: rgb(3, 3, 3) /* 将背景色设置为透明 */

        display: flex;
        justify-content: center;
        align-items: center;
        color: white; /* 文字颜色设置为白色 */
        font-weight: bold;
        font-size: 24px;
        font-family: Arial, sans-serif;
        line-height: 1.5;
        padding: 10px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        flex: 1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* 添加文字阴影以突出显示 */
    }

    /* Responsive design */
    @media (max-width: 768px) {
        .banner-container {
            flex-direction: column;

        }

        .banner-box {
            margin-bottom: 10px;
            margin-left: 0;
            margin-right: 0;
        }
    }

 




p {
/*    text-transform: capitalize;*/
    background-color: rgb(33,33,33);

    color: white;
    border-radius: 15px; 
    padding: 10px;
}

h2 {
    background-color: rgb(33,33,33);




    color: white;
    border-radius: 15px; 
    padding: 10px;
    text-align: center;
}


    .grid-item {
        border: 1px solid #ddd;
        padding: 20px;
       
    border-radius: 20px; /* 设置圆角半径为10像素 */
 
    }
    
    


.no-global-style {
  background-color: black;
  color:white;
}

.grid-item img {
    height: 200px;           /* 设置图片高度 */
    object-fit: cover;       /* 等比例缩放图片 */
    display: block;          /* 将图片设置为块级元素 */
    margin-left: auto;       /* 左右自动外边距 */
    margin-right: auto;      /* 左右自动外边距 */
    border: 2px solid white; /* 添加2px的白色边框 */
    border-radius: 20px;
}





.glowbutton {
    --glow-color: rgb(246, 176, 255);
  --glow-spread-color: rgba(255, 244, 253, 0.781);
  --enhanced-glow-color: rgb(245, 206, 255);
  --btn-color: rgb(163, 99, 175);

  border: 0.25em solid var(--glow-color);
  padding: 1em 3em;
  color: var(--glow-color);
  font-size: 15px;
  font-weight: bold;
  background-color: var(--btn-color);
  border-radius: 1em;
  outline: none;
  box-shadow: 0 0 1em 0.25em var(--glow-color),
    0 0 4em 1em var(--glow-spread-color),
    inset 0 0 0.75em 0.25em var(--glow-color);
  text-shadow: 0 0 0.5em var(--glow-color);
  position: relative;
  transition: all 0.3s;
}

.glowbutton::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 120%;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--glow-spread-color);
  filter: blur(2em);
  opacity: 0.7;
  transform: perspective(1.5em) rotateX(35deg) scale(1, 0.6);
}

.glowbutton:hover {
  color: var(--btn-color);
  background-color: var(--glow-color);
  box-shadow: 0 0 1em 0.25em var(--glow-color),
    0 0 4em 2em var(--glow-spread-color),
    inset 0 0 0.75em 0.25em var(--glow-color);
}

.glowbutton:active {
  box-shadow: 0 0 0.6em 0.25em var(--glow-color),
    0 0 2.5em 2em var(--glow-spread-color),
    inset 0 0 0.5em 0.25em var(--glow-color);
}


#section1 {
    height: 100vh;    /* 设置高度为视窗的100% */
    width: 100vw;     /* 设置宽度为视窗的100% */
    display: flex;    /* 使用flex布局 */
    justify-content: center; /* 水平居中内容 */
    align-items: center;     /* 垂直居中内容 */
    background-color: black;
    color:white;

}

.centered-div {
    text-align: center; /* 水平居中内容 */
     margin-top: -20%;
}



#news .container {
    max-width: 95%;
    margin: 20px auto;
    padding: 0 20px;
    background-color: rgb(3, 3, 3);
}

#news .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* 自动填充列 */
    gap: 20px;
    height: 70vh;
}

#news .news-item {
    background-color: rgb(33, 33, 33);
    color: white;
    padding: 20px;
    border-radius: 15px;
    /* 不再设置为flex */
    transition: box-shadow 0.3s ease;
}

#news .news-item:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#news .news-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 10px 0;
    object-fit: contain; /* 图片缩放以适应容器 */
    margin-bottom: 30px;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    #news .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* 调整在小屏幕下的列宽 */
    }
}


@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.9; }
    100% { opacity: 1; }
}
        #right-down-corner-skype-logo {
    position: fixed;
    bottom: 260px; /* 图片底部与页面底部的距离 */
    right: 20px; /* 图片右侧与页面右侧的距离 */
    width: 100px;
    height: 100px;
    animation: blink 1s infinite; /* 闪烁动画，持续1秒，无限循环 */
}

  nav {
            background-color:white;
            color: black;
            padding: 20px 0;
            text-align: center;
        }
        nav a {
            color: black;
            text-decoration: none;
            padding: 0 10px;
        }




        .subscribe-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #4CAF50;
            color: white;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }
    
        .subscribe-btn:hover {
            background-color: #45a049;
        }


 #contactButton {
  position: fixed;
            bottom: 200px;
            right: 20px;
            background-color:   #C0C0C0;
            color: white;
            padding: 15px 20px;
            font-size: 16px;
            border: none;
            border-radius: 10%;
            cursor: pointer;
            width:100px;
        }
        
        #contactButton:hover {
            background-color:   #C0C0C0;
        }
        
        #contactFormContainer {
            display: none;
            position: fixed;
            bottom: 70px;
            right: 20px;
            width: 250px; /* 修改为较小的数值 */
            background-color: black;
            border: 1px solid #ccc;
            padding: 20px;


