body {
    font-family: Arial, sans-serif;
}

header {
    background-color: #007bff;
}
/* Typography Reset */
h1, h2, h3, h4 {
    margin: 0 0 15px;
    font-family: 'Roboto', sans-serif; /* Google Font 推荐 */
    color: #333;
    line-height: 1.2;
}

/* H1 - Main Heading */
h1 {
    font-size: 2.5rem; /* 缩小字体 */
    font-weight: 700;
    color: #ff6600; /* 橙色主色调 */
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); /* 提升视觉层次 */
    border-bottom: 2px solid #ff6600; /* 更细的下划线 */
    padding-bottom: 8px;
    margin-bottom: 20px;
}

/* H2 - Section Heading */
h2 {
    font-size: 2rem; /* 缩小字体 */
    font-weight: 600;
    color: #0066cc; /* 浅蓝色 */
    letter-spacing: 1px;
    border-left: 4px solid #0066cc; /* 左侧装饰条缩小 */
    padding-left: 10px;
    margin-bottom: 18px;
}

/* H3 - Subsection Heading */
h3 {
    font-size: 1.5rem; /* 缩小字体 */
    font-weight: 500;
    color: #444; /* 更柔和的深灰色 */
    text-transform: capitalize;
    letter-spacing: 0.8px;
    border-bottom: 1px dashed #cccccc; /* 更细的虚线 */
    padding-bottom: 4px;
    margin-bottom: 15px;
}

/* H4 - Small Heading */
h4 {
    font-size: 1.2rem; /* 缩小字体 */
    font-weight: 400;
    color: #666; /* 中灰色 */
    letter-spacing: 0.4px;
    background-color: #f1f1f1; /* 浅灰背景 */
    padding: 4px 8px;
    border-radius: 4px; /* 圆角略小 */
    margin-bottom: 12px;
}

.logo {
    width: 180px; /* 根据需要设置宽度 */
    height: auto; /* 自适应高度 */
}

/* Navbar Styles */
.navbar-nav .nav-link {
    color: #ffffff !important;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffd700 !important; /* Gold color on hover */
}

.navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.quote-container {
    background-color: #f0f8ff; /* 浅蓝色背景 */
    border-left: 5px solid #007bff; /* 蓝色左边框 */
    padding: 15px 20px; /* 内边距 */
    border-radius: 10px; /* 圆角 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* 阴影 */
    margin: 20px 0; /* 上下边距 */
}

.blockquote {
    margin: 0; /* 移除默认的外边距 */
    font-size: 1.1em; /* 增加字体大小 */
    line-height: 1.5; /* 行间距 */
    color: #333; /* 文字颜色 */
}

.blockquote p {
    font-style: italic; /* 斜体样式 */
    color: #555; /* 更柔和的颜色 */
}

.blockquote-footer {
    margin-top: 10px; /* 上边距 */
    font-size: 0.9em; /* 字体大小 */
    color: #777; /* 脚注颜色 */
    text-align: right; /* 右对齐 */
}
.btn-custom {
    background-color: #ff7f50; /* 自定义背景颜色（橙色） */
    background-image: linear-gradient(to right, #ff7f50, #ff4500); /* 橙色渐变效果 */
    color: #ffffff; /* 字体颜色 */
    border: none; /* 去掉边框 */
    border-radius: 25px; /* 圆角效果 */
    padding: 10px 20px; /* 内边距 */
    transition: background-color 0.3s ease, transform 0.3s ease; /* 动画效果 */
}

.btn-custom:hover {
    background-color: #ff4500; /* 悬停时的背景颜色（深橙色） */
    transform: scale(1.05); /* 悬停时的放大效果 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* 悬停时的阴影效果 */
}

.partner-logo {
    max-width: 100%;
    height: auto;
}
.hover-card {
    transition: transform 0.2s;
    border: 1px solid #ccc;
}

.hover-card:hover {
    transform: scale(1.05);
    border-color: #ff9800; /* Change border color on hover */
    cursor: pointer; /* Change cursor to pointer */
}
.footer {
    background-color: #343a40; /* 深色背景 */
    color: #ffffff; /* 白色文字 */
    padding: 40px 0; /* 上下内边距 */
}

.footer img {
    max-width: 100%; /* 使图像自适应 */
    height: auto;
}

.footer h5 {
    border-bottom: 1px solid #ffffff; /* 添加底部边框 */
    padding-bottom: 10px; /* 下边距 */
    margin-bottom: 15px; /* 与下方元素的间隔 */
}

.footer a {
    color: #ffffff; /* 链接颜色 */
    text-decoration: none; /* 去掉下划线 */
}

.footer a:hover {
    text-decoration: underline; /* 鼠标悬停时显示下划线 */
}

.footer .list-unstyled {
    padding-left: 0; /* 去掉左边距 */
    margin-bottom: 10px; /* 列表项之间的间隔 */
}

.btn-outline-light {
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1); /* 悬停时的背景色 */
    color: #fff; /* 悬停时的文字颜色 */
}
/* 自定义面包屑样式 */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    font-weight: bold;
}

.breadcrumb a {
    color: #0d6efd; /* 链接颜色 */
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #0056b3; /* 链接悬停颜色 */
    text-decoration: underline;
}

.product-model {
    color: #007bff; /* 蓝色字体 */
    font-weight: bold; /* 粗体 */
}

.product-work-area {
    color: #28a745; /* 绿色字体 */
}

.product-price {
    color: #28a745; /* 绿色字体 */
    font-weight: bold; /* 粗体 */
    font-size: 16px; /* 增大字体 */
}
/* 博客卡片样式 */
.blog-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s;
}
.blog-card:hover {
    transform: translateY(-5px);
}

/* 卡片内图片 */
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* 卡片内容样式 */
.blog-card-body h5 {
    font-size: 1.25rem;
    font-weight: bold;
}
.blog-card-body p {
    font-size: 0.9rem;
    color: #555;
}
.post-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

/* 分页样式 */
.pagination {
    justify-content: center;
    margin-top: 20px;
}

/* 侧边栏样式 */
.sidebar {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
}
.sidebar h5 {
    font-weight: bold;
    margin-bottom: 15px;
}
/* 分页样式 */
.pagination {
    justify-content: center;
    margin-top: 20px;
}

.pagination .page-item {
    margin: 0 3px;
}

.pagination .page-item .page-link {
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 12px;
    font-size: 0.95rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
}

.pagination .page-item .page-link:hover {
    background-color: #e9ecef;
    color: #007bff;
}
.contact-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 30px;
}
.contact-info h4 {
    margin-bottom: 20px;
    color: #343a40; /* 深色标题 */
}
.contact-info p {
    margin-bottom: 10px;
    font-size: 16px; /* 设置字体大小 */
}
.contact-info p strong {
    color: #007bff; /* 加粗文本的颜色 */
}
.form-control:focus {
    box-shadow: none;
    border-color: #007bff; /* 聚焦时的边框颜色 */
}
/* 回到顶部按钮样式 */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* 初始隐藏 */
    z-index: 1000; /* 确保按钮在最上层 */
    width: 50px; /* 按钮宽度 */
    height: 50px; /* 按钮高度 */
    border-radius: 50%; /* 圆形按钮 */
    background-color: black; /* 背景色为黑色 */
    color: white; /* 按钮文本颜色 */
    border: none; /* 无边框 */
    display: flex; /* Flexbox 用于居中图标 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    transition: background-color 0.3s; /* 背景色过渡效果 */
}

/* 悬停效果 */
#backToTop:hover {
    background-color: #333; /* 悬停时变为深灰色 */
}
.product-image {
    max-width: 900px; /* Maximum width */
    width: auto;      /* Maintain original aspect ratio */
    height: auto;     /* Maintain original aspect ratio */
    margin-top: 40px;    /* 设置图片上方空白 */
    margin-bottom: 40px; /* 设置图片下方空白 */
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}
#responseMessage {
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    display: none;
}

#responseMessage.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#responseMessage.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* main 中的 UL 和 OL 样式，只影响 main 区域的列表 */
main ul {
    list-style-type: none;  /* 不显示圆点 */
    padding: 0;  /* 去除内边距 */
    margin: 0;  /* 去除外边距 */
}

/* main 中 OL 列表样式 */
main ol {
    padding: 0;  /* 去除内边距 */
    margin: 0;  /* 去除外边距 */
    list-style-type: decimal;  /* 使用数字来表示有序列表 */
}

/* 列表项 (li) 样式 */
main ul li,
main ol li {
    position: relative;
/*   padding-left: 1.5em;   给每个列表项添加左侧内边距 */
    font-size: 1rem;  /* 适当的字体大小 */
    line-height: 1.6;  /* 行间距 */
    color: #333;  /* 默认文字颜色 */
    margin-bottom: 0.8em;  /* 每个列表项之间的间距 */
}

/* 自定义无序列表的样式（默认无圆点） */
main ul li::before {
    content: "";  /* 不显示圆点 */
}

/* 嵌套列表样式（子列表） */
main ul ul,
main ol ol {
    margin-top: 0.5em;  /* 嵌套列表的顶部间距 */
    margin-bottom: 0.5em;  /* 嵌套列表的底部间距 */
}

main ul li ul li,
main ol li ol li {
    margin-bottom: 0.5em;  /* 嵌套列表项之间的间距 */
}

/* 响应式设计：列表在小屏幕上的适应性 */
@media (max-width: 768px) {
    main ul li, main ol li {
        font-size: 0.9rem;  /* 小屏幕上字体适当缩小 */
    }

    main ul li::before, main ol li::before {
        font-size: 1.2em;  /* 圆点和数字适当缩小 */
    }
}
.support-title-bar {
      background: linear-gradient(90deg, #007bff, #6610f2);
      color: white;
      padding: 120px 0;
      text-align: center;
    }

    .support-title-bar h1 {
      font-size: 4.5rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    }

    .support-container {
      margin-top: 50px;
    }

    .support-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-radius: 15px;
      border: none;
      box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    }

    .support-card:hover {
      transform: translateY(-10px);
      box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.2);
    }

    .support-card-body {
      text-align: center;
      padding: 30px 20px;
    }

    .support-card-body i {
      font-size: 3.5rem;
      color: #007bff;
      transition: color 0.3s ease;
    }

    .support-card-body i:hover {
      color: #6610f2;
    }

    .support-card-title {
      font-size: 1.75rem;
      font-weight: 600;
      margin-top: 20px;
      text-transform: uppercase;
      color: #333;
    }

    .support-card-text {
      font-size: 1.1rem;
      color: #6c757d;
      margin-top: 10px;
      line-height: 1.5;
    }

    .support-card-group .support-card {
      margin: 20px 0;
    }

    .support-card-group {
      margin-top: 50px;
    }

    .support-btn-primary {
      background-color: #000;
      border-color: #000;
      font-size: 1rem;
      padding: 10px 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-radius: 25px;
      color: white;
      transition: background-color 0.3s ease;
    }

    .support-btn-primary:hover {
      background-color: #333;
      border-color: #333;
    }

    /* Media Query for smaller devices */
    @media (max-width: 768px) {
      .support-title-bar h1 {
        font-size: 3rem;
      }
    }
	
	.video-container {
        position: relative;
        padding-top: 56.25%; /* This gives the 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
	
	
	
	#details {
    padding: 50px 0;
    background-color: #fff;
}

#details h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

#details p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

#details ul {
    list-style: none;
    padding: 0;
}

#details ul li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
    position: relative;
    padding-left: 25px;
}

#details ul li::before {
    content: "✔";
    font-size: 1.2rem;
    color: #007bff;
    position: absolute;
    left: 0;
    top: 0;
}
