/* 基础重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 全局样式 */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff0f0;
}

/* 头部样式 */
header {

}

header h1 {
    margin-bottom: 15px;
}

/* 导航栏样式 */
nav ul {
    width: 100%;
    content: "";
    display: table;
    clear: both;
    padding: 10px;
    border-radius: 50px;
    background: linear-gradient(45deg, #ffdecd, #ffe3e8 50%, #ffe5ce);
}
nav ul::after {
    display: grid;
}
nav ul li{
    font-size: 12px;
    float: left;
    width: 33.333333%;
    display: block;
    text-align: center;
}

nav a {
    color: #ff4868;
    text-decoration: none;
}


/* 主要内容样式 */
main {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    gap: 20px;
}

/* 文章部分样式 */
section {
    flex: 3;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

article p {
    margin-bottom: 10px;
}

.nav_50{
    width: 50%;
}
.div_left{
    float: left;
    padding-right: 10px;
}
.div_right{
    float: right;
    padding-left: 10px;
}
.sponsorship{
    padding-top: 40px;
    padding-bottom: 30px;
}
.sponsorship_list{
    text-align: center;
    padding-top: 20px;
}
.sponsorship_list img{
    padding: 0;
    margin: auto;
}

/* 页脚样式 */
footer {
    font-size: 12px;
    color: #d74242;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 80px;
}

nav{
    padding: 20px;
    width: 100%;
    position: fixed; 
    bottom: 0;
    left: 0;
    z-index: 99;
    padding: 20px;
}
@font-face {
  font-family: 'iconfont';
  src: url('iconfont.ttf?t=1770645541857') format('truetype');
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 响应式设计 */
@media (max-width: 768px) {
    main {
        flex-direction: column;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}