   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            max-width: 1200px;
            margin: 0 auto;  /* 关键代码：实现居中 */
            line-height: 1.6;
            color: #333;
            padding:0,20,0,20px;   /* 可选：添加内边距避免内容贴边 */
            background: #f0f0f0;  /* 可选：方便观察居中效果 */
	    min-height: 100vh;        /* 新增：最小高度为视口高度 */
    display: flex;            /* 新增：启用 Flex 布局 */
    flex-direction: column;   /* 新增：垂直排列子元素 */
        }

        h1 {
            font-size: 1.8rem;
            color: #003366;
            margin-bottom: 0rem;
          padding-bottom: 1rem;
        }

       ul { margin-left: 24pt; }

	    .main{
	   flex:1;
            background: #ffffff;
            padding: 1rem 1rem;
	   }
	   .a-link  a{
     font-style: inherit !important;
    text-decoration: none; /* 如果不需要下划线可以保留 */
	color:inherit;
	   }
        /* Header Styles */
        .header {
        background: #ffffff;
        padding: 1rem 2rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* 新增分隔线 */
        }

        .logo {
            height: 40px;
        }

        /* Navigation Container */
        .nav-container {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
      
        /* Main Navigation */
        .main-nav {
            display: flex;
            gap: 2rem;
            margin-right: auto;
            /* Right alignment */
        }

        .nav-item {
            position: relative;
            padding: 0.5rem 1rem;
            cursor: pointer;
        }

        .nav-item:hover .sub-menu {
            display: block;
        }

        .sub-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            min-width: 200px;
            z-index: 1000;
        }

        .sub-menu li {
            padding: 0.8rem 1rem;
            list-style: none;
            border-bottom: 1px solid #eee;
        }

        .sub-menu li:hover {
            background: #f8f9fa;
        }
	/* 新增子菜单链接样式 */
        .sub-menu li a {
            color: inherit;         /* 继承父元素文字颜色 */
            text-decoration: none;  /* 去除默认下划线 */
            display: block;         /* 填充整个li区域 */
            width: 100%;
            height: 100%;
        }

        /* 悬停时保持效果 */
        .sub-menu li:hover {
            background: #f8f9fa;    /* 原悬停背景色 */
        }

        /* Login Button */
        .login-btn {
            background: #007bff;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            margin-left: 2rem;
        }

        /* Footer Styles */
        .footer {
            background: #2d3e50;
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
        }

        /* 条款页面样式 */
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
        }

        .main-section {
            margin-bottom: 3rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 2rem;
        }

        /* Cookie提示样式 */
        .cookie-consent {
            background: #003366;
            padding: 15px 30px;
        }

        .cookie-btn {
            background: #007bff;
            text-transform: uppercase;
            font-weight: bold;
        }

        .cookie-btn.settings {
            background: #6c757d;
        }

		  /* 修改按钮容器样式 */
    .button-container {
        display: flex;
        justify-content: flex-end;
        padding: 1rem 2rem 2rem; /* 增加下内边距 */
        margin-top: 1rem;       /* 调整负边距 */
        margin-bottom: 1rem;    /* 增加下外边距 */
    }
		        /* 新增船员流量按钮样式 */
        .crew-plan-btn {
            background:#003366;
            color: white;
            padding: 0.6rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            margin-left: 0rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(255,200,150,0.3);
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .crew-plan-btn:hover {
            background: #006699;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255,180,140,0.4);
        }
        /* 在原有样式基础上添加以下内容 */
        
        /* 调整原有按钮边距 */
        .crew-plan-btn {
            margin-left: 0; /* 移除原左边距 */
        }

		/* 新增图片容器样式 */
.content-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 2rem;
}

.text-content {
    flex: 1;
}

.image-container {
    flex: 0 0 300px;
    align-self: flex-start;
}

.img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .image-container {
        order: -1;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* 新增购买按钮样式 */
/* 修改后的紧凑按钮样式 */
.purchase-btn {
    background: #003366;
    color: white;
    padding: 0.6rem 1.8rem;  /* 缩小内边距（原0.8rem 2.5rem） */
    border-radius: 20px;     /* 微调圆角（原25px） */
    text-decoration: none;
    display: inline-block;
    margin-top: 1.2rem;      /* 缩小上边距 */
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,51,102,0.3);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;       /* 缩小字号（原1rem） */
    border: 2px solid #004080;
}

.purchase-btn:hover {
    background: #004080;
    transform: translateY(-1px);  /* 减少悬停位移（原-2px） */
    box-shadow: 0 3px 6px rgba(0,64,128,0.4); /* 减小阴影扩散 */
    border-color: #0059b3;
}