@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", Arial, sans-serif;
}

/**-- 背景 --**/
.bg_f8 {
	position: relative;
	background-color: #f8f8f8;
}
/* ========== 顶部导航栏 ========== */
.top-nav {
    width: 100%;
    height: 60px;
    background-color: #00337a;
    line-height: 60px;
}
.nav-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}
.nav-menu a {
    color: #fff;
    font-size: 16px;
    margin: 0 20px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s;
}
.nav-menu a.active,
.nav-menu a:hover {
    background-color: #00449c;
}

/* ========== 顶部品牌横幅 ========== */
.banner {
	position: relative;
    width: 100%;
	text-align: center;
}
.banner img{
	position: relative;
    width: 300px;
}
.banner-container {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.banner-left {
    color: #fff;
}
.logo-box {
    width: 160px;
    height: 130px;
    background: url("../images/logo.png") no-repeat left center;
    background-size: contain;
    margin-bottom: 15px;
}
.en-text {
    font-size: 18px;
    letter-spacing: 2px;
    opacity: 0.9;
}
.cn-text {
    font-size: 42px;
    margin: 10px 0;
}
.desc-text {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.8;
}
.banner-right .banner-img {
    width: 220px;
    height: 280px;
    background: url("../images/cartoon.png") no-repeat center;
    background-size: contain;
}

/* ========== 主体内容（PC左右分栏） ========== */
.main-container {
    width: 1200px;
    margin: 20px auto;
    display: flex;
    gap: 30px;
}
/* 左侧主内容 */
.main-left {
    flex: 1;
}
/* 防伪查询盒子 */
.query-box {
    background-color: #fff;
    padding: 55px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
.box-title {
    font-size: 28px;
    color: #00337a;
    text-align: center;
    margin-bottom: 12px;
}
.box-sub {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 35px;
}
.input-row {
    display: flex;
    gap: 15px;
}
.code-input {
    flex: 1;
    height: 50px;
    padding: 0 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: border 0.3s;
}
.code-input:focus {
    outline: none;
    border-color: #00337a;
}
.query-btn {
    width: 140px;
    height: 50px;
    background-color: #00337a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
}
.query-btn:hover {
    background-color: #00255a;
}
.tip-text {
    margin-top: 15px;
    color: #999;
    font-size: 14px;
}

/* 查询结果盒子 */
.result-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
	margin-top: 30px;
	display: none;
}
.result-title {
    font-size: 24px;
    text-align: center;
    color: #222;
    margin-bottom: 20px;
}
.line-decor {
    width: 100%;
    height: 2px;
    background-color: #eee;
    position: relative;
    margin-bottom: 30px;
}
.circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #00337a;
}
.result-content {
    font-size: 18px;
    line-height: 2.2;
    color: #444;
}
.color-blue {
    color: #00337a;
    font-weight: bold;
}
.warn {
    color: #e53935;
    font-weight: bold;
    margin-top: 10px;
}
.result-btn-group {
    margin-top: 35px;
    text-align: center;
}
.btn-blue {
    width: 120px;
    height: 42px;
    background-color: #00337a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 10px;
}
.btn-border {
    width: 120px;
    height: 42px;
    background-color: #fff;
    color: #00337a;
    border: 1px solid #00337a;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 10px;
}
.btn-blue:hover {
    background-color: #00255a;
}
.btn-border:hover {
    background-color: #f5f8fc;
}

/* 右侧侧边栏 */
.main-right {
    width: 280px;
}
.side-box {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}
.side-title {
    font-size: 18px;
    color: #00337a;
    border-left: 4px solid #00337a;
    padding-left: 10px;
    margin-bottom: 20px;
}
.side-list li {
    line-height: 2;
    font-size: 15px;
    color: #555;
}
.service-info p {
    line-height: 2.2;
    font-size: 15px;
    color: #555;
}
.side-desc {
    line-height: 2;
    color: #555;
    font-size: 15px;
}

/* ========== 底部页脚 ========== */
.footer {
    width: 1200px;
    height: 90px;
    background-color: #222;
    color: #aaa;
    text-align: center;
    line-height: 2.2;
    padding-top: 9px;
    margin-top: 20px;
    margin: auto;
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
}
.footer-container {
    width: 1200px;
    margin: 0 auto;
}