﻿body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}
.container {
    /*max-width: 1200px;*/
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    
    border:0px solid blue;
}
.header {
    /*background-color: #0F3460;*/
    background-color: #FCFBF8;
    /*color: white;*/
    color: #0F3460;
    /*padding: 20px 0;*/
    padding: 5px 0;
    
    
    /*以下4行代码是将顶部的“头条”固定住，上下移动一直在顶部*/
    position: fixed;    /* fixed定位 */
    width : 100%;        /* 全宽 */
    top: 0;             /* 顶部对齐 */
    z-index: 50;        /* 层级控制 */
 
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-size: 24px;
    font-weight: 700;
}
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu li {
    margin-left: 30px;
}
.nav-menu li a {
    /*color: white;*/
    color: #0F3460;
    text-decoration: none;
    transition: color 0.3s;
    
    
    font-size: 18px;
    font-weight: 700;
}
.nav-menu li a:hover {
    color: #E94560;
}
.hero {
    background: linear-gradient(rgba(15, 52, 96, 0.8), rgba(15, 52, 96, 0.9)), url('../Images/ShenZhouShuMa.png');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    color: white;
}
.hero-content {
    max-width: 800px;
}
.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
}
.btn {
    display: inline-block;
    background-color: #E94560;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;cursor: 
    
    pointer; /*这个是让鼠标放到按钮上变为手指*/
}
.btn:hover {
    background-color: #C72C41;
}
.section {
    padding: 5px 0;
    
    border:0px solid red;
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #E94560;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.service-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    /*padding: 40px 30px;*/
    padding: 5px 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.service-icon {
    font-size: 48px;
    color: #E94560;
    /*margin-bottom: 20px;*/
    margin-bottom: 2px;
}
.service-title {
    /*font-size: 24px;*/
    font-size: 18px;
    font-weight: 600;
    /*margin-bottom: 15px;*/
    margin-bottom: 2px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /*Goo:grid-template-columns: repeat(3, 1fr); 在CSS Grid布局中用于定义容器的列结构，其作用是将容器分为三列，每列宽度自动分配剩余空间（即每列宽度为1份fr单位）*/
    gap: 30px;
}


/*
.product-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-image {
    height: 250px;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-image img {
    transform: scale(1.1);
}
.product-content {
    padding: 20px;
}
.product-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
*/


.about {
    background-color: #F8F9FA;
}
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}
.about-image {
    flex: 1;
}
.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.about-text {
    flex: 1;
}
.about-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}
.stats {
    background-color: #0F3460;
    color: white;
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}
.stat-text {
    font-size: 18px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.news-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s;
}
.news-card:hover {
    transform: translateY(-5px);
}
.news-image {
    height: 200px;
    overflow: hidden;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-content {
    padding: 20px;
}
.news-date {
    color: #666;
    margin-bottom: 10px;
}
.Default_news-title { /*首页Default.aspx中显示“公司新闻”、“集团新闻”的文字样式*/   
    font-size: 20px;
    font-weight: bold;
    color: #B90108;
}
.contact {
    background-color: #F8F9FA;
}
.contact-content {
    display: flex;
    gap: 60px;
}
.contact-form {
    flex: 1;
}
.contact-info {
    flex: 1;
}
.form-group {
    margin-bottom: 20px;
}
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    
    box-sizing: border-box; /* ByGoo:添加此行，确保宽度包含内边距和边框,也就是说让这个“请选择咨询类别”下拉框的长度和其他输入框TextBox一样长*/
}
.form-control:focus {
    outline: none;
    border-color: #E94560;

    box-shadow: 2px 2px 6px rgba(255, 0, 0, 0.6);   /*让其模拟“红色”发光*/
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.contact-icon {
    font-size: 24px;
    color: #E94560;
    margin-right: 40px;
    width: 30px;
    text-align: center;
}
.footer {
    background-color: #0F3460;
    color: white;
    padding: 60px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-menu {
    list-style: none;
    padding: 0;
}
.footer-menu li {
    margin-bottom: 10px;
}
.footer-menu li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-menu li a:hover {
    color: #E94560;
}

.social-links {
    display: flex;
    gap: 15px;
}
.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
.social-link:hover {
    background-color: #E94560;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright a {
    color: inherit; /* 继承父元素颜色 */
    text-decoration: none; /* 去除下划线 */
}

.copyright a:hover {
    text-decoration: underline; /* 鼠标悬停时添加下划线 */
}


.mobile-menu-button {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #0F3460;
    z-index: 100;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu ul li {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu ul li a {
    color: white;
    text-decoration: none;
}
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    .mobile-menu-button {
        display: block;
    }
    .product-grid, .news-grid, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-content, .contact-content {
        flex-direction: column;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .product-grid, .news-grid, .footer-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .section-title {
        font-size: 28px;
    }
}

/*Next by Goo*/


.container_Goo1 {
    /*max-width: 1200px;*/
    max-width: 680px;
    margin: 0 0;
    padding: 0 0;
    
    border:0px solid blue;
}

.section_WoMenDeFuWu {
    padding: 0px 0;
    
    border:0px solid red;
}

.section_WoMenDeFuWu-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section_WoMenDeFuWu-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #E94560;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.btn_blue {
    display: inline-block;
    background-color: #175BAB;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.btn_blue:hover {
    background-color: #072548;
}

.btn_orange {
    display: inline-block;
    background-color: #FF8C00;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.btn_orange:hover {
    background-color: #D77805;
    
    transform: translateY(-5px);  /* 元素上移5px */
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);  /* 阴影更明显 */
}

/* 透明按钮（如“立即咨询” */
.btn_transparent {
    display: inline-block;
    /* 原背景色 #FF8C00 改为透明 */
    background-color: rgba(0,0,0,0); /* 或 background: transparent; */
    color: white; /* 文字颜色保持不变 */
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;     
    
    border: 1px solid white; /* 白色边框 */
}

/* 鼠标悬停样式（原背景色 #D77805 也改为透明，若需保留悬停效果可调整） */
.btn_transparent:hover {
   /* background-color: rgba(0,0,0,0); /* 同理改为透明 */
    background-color: rgba(50, 50, 50, 0.5); /* 半透明深色背景 */
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}




/*以下是Button（如“提交信息”按钮）的带阴影上浮样式代码 -A */
.Button_Blue      
{
    display: inline-block;     
    background-color: #175BAB;     
    color: white;     
    padding: 12px 30px;     
    border-radius: 5px;     
    text-decoration: none;     
    transition: all 0.3s ease;     
    border: none;     
    cursor: pointer;     
    font-size: 16px;     
    font-weight: bold;     
    outline: none; /* 移除焦点轮廓 */
}
     
.Button_Blue:hover      
{
    background-color: #144784;     
    transform: translateY(-5px);     
    box-shadow: 0 15px 30px rgba(0,0,0,0.2); 
}
         
/* 可选：添加按钮点击效果 */ 
.Button_Blue:active      
{
    transform: translateY(0);     
    box-shadow: 0 5px 10px rgba(0,0,0,0.1); 
}
/*以上是Button（如“提交信息”按钮）的带阴影上浮样式代码 -O */

/*--2025年8月19日添加--*/


.container_Product_PicList {
    /*max-width: 1200px;*/
    min-width: 1300px;
    /*margin: 0 auto;*/
    margin-left:290px;
    padding: 0 15px;
    
    border:0px solid blue;
}

.hero_Product_PicList {
    background: linear-gradient(rgba(15, 52, 96, 0.8), rgba(15, 52, 96, 0.9)), url('../Images/ShenZhouShuMa.png');
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    align-items: center;
    color: white;
}



/* 定义导航容器样式 (覆盖原有内联样式) */
.nav-container {
    float: right;
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    border:0px solid red;
}

/* 核心链接样式定义 */
.nav-container a {
    color: white;                     /* 默认文字色 */
    text-decoration: none;           /* 去除下划线 */
    padding: 8px 15px;               /* 增加点击区域 */
    transition: all 0.3s ease;       /* 平滑过渡动画 */
    position: relative;              /* 为伪元素定位准备 */
    margin: 0 10px;                  /* 分隔间距 */
}

/* 分隔符样式 */
.nav-container a:not(:last-child)::after {
    content: "/";
    position: absolute;
    right: -20px;
    color: #999;
}

/* Hover交互效果 */
.nav-container a:hover {
    color: #007bff;                  /* 主品牌色 */
    background-color: #f8f9fa;       /* 添加背景悬浮效果 */
    border-radius: 4px;              /* 圆角设计 */
    transform: translateY(-2px);     /* 微抬效果 */
}


