/* ===== 写哈服饰 XIEHA FASHION - 基础样式 ===== */
/* 变量定义 */
/* 主红色 */
/* 深红 */
/* 主文字色 */
/* 次文字色 */
/* 更淡文字 */
/* 深色背景 */
/* 浅灰背景 */
/* 中灰背景 */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 14px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #b8001f;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul,
ol {
  list-style: none;
}
/* 容器 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
/* 区块通用 */
.section {
  position: relative;
  padding: 60px 0;
}
/* 区块标题 */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-header h3 {
  font-size: 18px;
  color: #b8001f;
  font-weight: 400;
  margin-top: 8px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-header h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #b8001f;
}
.section-header .en-sub {
  font-size: 12px;
  color: #999;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  margin-top: 8px;
  letter-spacing: 1px;
}
.section-header.left {
  text-align: left;
}
.section-header.left h3:after {
  left: 0;
  transform: none;
}
.section-header.center {
  text-align: center;
}
/* 按钮 */
.btn-detail,
.btn-join,
.btn-apply,
.btn-submit {
  display: inline-block;
  padding: 10px 30px;
  background: #b8001f;
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  letter-spacing: 1px;
}
.btn-detail:hover,
.btn-join:hover,
.btn-apply:hover,
.btn-submit:hover {
  background: #8a0018;
  color: #fff;
  transform: translateY(-2px);
}
.btn-submit {
  padding: 12px 60px;
  font-size: 16px;
}
/* 分页 */
.pagination {
  text-align: center;
  margin-top: 30px;
}
.pagination a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 3px;
  color: #333;
  transition: all 0.3s;
}
.pagination a:hover,
.pagination a.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* Tab切换 */
.news-tabs,
.product-tabs {
  text-align: center;
  margin-bottom: 30px;
}
.news-tabs .tab-item,
.product-tabs .tab-item {
  display: inline-block;
  padding: 8px 25px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.news-tabs .tab-item:hover,
.product-tabs .tab-item:hover,
.news-tabs .tab-item.active,
.product-tabs .tab-item.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* 动画 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 响应式 */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 40px 0;
  }
  .section-header h2 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 30px 0;
  }
  .section-header h2 {
    font-size: 18px;
  }
  .section-header h3 {
    font-size: 15px;
  }
  .news-tabs .tab-item,
  .product-tabs .tab-item {
    padding: 6px 15px;
    font-size: 12px;
    margin: 3px;
  }
}

/* ===== 写哈服饰 - 头部导航样式 ===== */
/* ===== 写哈服饰 XIEHA FASHION - 基础样式 ===== */
/* 变量定义 */
/* 主红色 */
/* 深红 */
/* 主文字色 */
/* 次文字色 */
/* 更淡文字 */
/* 深色背景 */
/* 浅灰背景 */
/* 中灰背景 */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 14px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #b8001f;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul,
ol {
  list-style: none;
}
/* 容器 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
/* 区块通用 */
.section {
  position: relative;
  padding: 60px 0;
}
/* 区块标题 */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-header h3 {
  font-size: 18px;
  color: #b8001f;
  font-weight: 400;
  margin-top: 8px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-header h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #b8001f;
}
.section-header .en-sub {
  font-size: 12px;
  color: #999;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  margin-top: 8px;
  letter-spacing: 1px;
}
.section-header.left {
  text-align: left;
}
.section-header.left h3:after {
  left: 0;
  transform: none;
}
.section-header.center {
  text-align: center;
}
/* 按钮 */
.btn-detail,
.btn-join,
.btn-apply,
.btn-submit {
  display: inline-block;
  padding: 10px 30px;
  background: #b8001f;
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  letter-spacing: 1px;
}
.btn-detail:hover,
.btn-join:hover,
.btn-apply:hover,
.btn-submit:hover {
  background: #8a0018;
  color: #fff;
  transform: translateY(-2px);
}
.btn-submit {
  padding: 12px 60px;
  font-size: 16px;
}
/* 分页 */
.pagination {
  text-align: center;
  margin-top: 30px;
}
.pagination a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 3px;
  color: #333;
  transition: all 0.3s;
}
.pagination a:hover,
.pagination a.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* Tab切换 */
.news-tabs,
.product-tabs {
  text-align: center;
  margin-bottom: 30px;
}
.news-tabs .tab-item,
.product-tabs .tab-item {
  display: inline-block;
  padding: 8px 25px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.news-tabs .tab-item:hover,
.product-tabs .tab-item:hover,
.news-tabs .tab-item.active,
.product-tabs .tab-item.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* 动画 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 响应式 */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 40px 0;
  }
  .section-header h2 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 30px 0;
  }
  .section-header h2 {
    font-size: 18px;
  }
  .section-header h3 {
    font-size: 15px;
  }
  .news-tabs .tab-item,
  .product-tabs .tab-item {
    padding: 6px 15px;
    font-size: 12px;
    margin: 3px;
  }
}
/* 顶部导航 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, box-shadow 0.3s;
  /* Logo */
  /* 导航菜单 */
  /* 手机端菜单按钮 */
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.header .logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.header .logo .logo-cn {
  font-size: 22px;
  font-weight: 700;
  color: #b8001f;
  letter-spacing: 3px;
}
.header .logo .logo-en {
  font-size: 10px;
  color: #999;
  letter-spacing: 2px;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
}
.header .nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}
.header .nav li {
  position: relative;
}
.header .nav li a {
  display: block;
  padding: 0 20px;
  line-height: 80px;
  font-size: 15px;
  color: #333;
  transition: color 0.3s;
  position: relative;
}
.header .nav li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #b8001f;
  transition: width 0.3s;
}
.header .nav li a:hover {
  color: #b8001f;
}
.header .nav li a:hover:after {
  width: 100%;
}
.header .nav li.active a {
  color: #b8001f;
}
.header .nav li.active a:after {
  width: 100%;
}
.header .mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}
.header .mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #333;
  transition: all 0.3s;
}
/* 页面Banner（非首页） */
.page-banner {
  position: relative;
  height: 350px;
  background: #1a1a1a;
  margin-top: 80px;
  overflow: hidden;
  display: none;
  /* 首页不显示 */
}
.page-banner .page-banner-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url(../84d95779bbd49fd06cf9.jpg);
  background-size: cover;
  background-position: center;
}
.page-banner .page-banner-inner:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.page-banner .banner-text {
  position: relative;
  z-index: 1;
  color: #fff;
}
.page-banner .banner-text h2 {
  font-size: 32px;
  letter-spacing: 8px;
  font-weight: 300;
}
.page-banner .banner-text .banner-en {
  font-size: 14px;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  letter-spacing: 3px;
  margin-top: 10px;
  opacity: 0.8;
}
.page-banner .banner-logo-text {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  right: 40px;
  opacity: 0.3;
  height: 40px;
}
/* 非首页显示banner */
body:not([data-page="index"]) .page-banner {
  display: block;
}
/* 手机端遮罩 */
.mobile-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.mobile-mask.active {
  display: block;
}
/* 页面内容区域 */
.page-content {
  margin-top: 80px;
}
/* 响应式 */
@media (max-width: 992px) {
  .header .nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    z-index: 1001;
    padding-top: 80px;
  }
  .header .nav.active {
    right: 0;
  }
  .header .nav ul {
    flex-direction: column;
    align-items: stretch;
  }
  .header .nav ul li a {
    line-height: 50px;
    padding: 0 25px;
    border-bottom: 1px solid #f5f5f5;
  }
  .header .nav ul li a:after {
    display: none;
  }
  .header .mobile-toggle {
    display: flex;
  }
  .page-banner {
    height: 250px;
    margin-top: 60px;
  }
  .page-banner .banner-text h2 {
    font-size: 22px;
    letter-spacing: 4px;
  }
  .page-content {
    margin-top: 60px;
  }
  .header .header-inner {
    height: 60px;
  }
}
@media (max-width: 768px) {
  .page-banner {
    height: 200px;
  }
  .page-banner .banner-text h2 {
    font-size: 18px;
    letter-spacing: 3px;
  }
}

/* ===== 写哈服饰 - 页脚样式 ===== */
/* ===== 写哈服饰 XIEHA FASHION - 基础样式 ===== */
/* 变量定义 */
/* 主红色 */
/* 深红 */
/* 主文字色 */
/* 次文字色 */
/* 更淡文字 */
/* 深色背景 */
/* 浅灰背景 */
/* 中灰背景 */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 14px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #b8001f;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul,
ol {
  list-style: none;
}
/* 容器 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
/* 区块通用 */
.section {
  position: relative;
  padding: 60px 0;
}
/* 区块标题 */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-header h3 {
  font-size: 18px;
  color: #b8001f;
  font-weight: 400;
  margin-top: 8px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-header h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #b8001f;
}
.section-header .en-sub {
  font-size: 12px;
  color: #999;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  margin-top: 8px;
  letter-spacing: 1px;
}
.section-header.left {
  text-align: left;
}
.section-header.left h3:after {
  left: 0;
  transform: none;
}
.section-header.center {
  text-align: center;
}
/* 按钮 */
.btn-detail,
.btn-join,
.btn-apply,
.btn-submit {
  display: inline-block;
  padding: 10px 30px;
  background: #b8001f;
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  letter-spacing: 1px;
}
.btn-detail:hover,
.btn-join:hover,
.btn-apply:hover,
.btn-submit:hover {
  background: #8a0018;
  color: #fff;
  transform: translateY(-2px);
}
.btn-submit {
  padding: 12px 60px;
  font-size: 16px;
}
/* 分页 */
.pagination {
  text-align: center;
  margin-top: 30px;
}
.pagination a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 3px;
  color: #333;
  transition: all 0.3s;
}
.pagination a:hover,
.pagination a.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* Tab切换 */
.news-tabs,
.product-tabs {
  text-align: center;
  margin-bottom: 30px;
}
.news-tabs .tab-item,
.product-tabs .tab-item {
  display: inline-block;
  padding: 8px 25px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.news-tabs .tab-item:hover,
.product-tabs .tab-item:hover,
.news-tabs .tab-item.active,
.product-tabs .tab-item.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* 动画 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 响应式 */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 40px 0;
  }
  .section-header h2 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 30px 0;
  }
  .section-header h2 {
    font-size: 18px;
  }
  .section-header h3 {
    font-size: 15px;
  }
  .news-tabs .tab-item,
  .product-tabs .tab-item {
    padding: 6px 15px;
    font-size: 12px;
    margin: 3px;
  }
}
/* 页脚 */
.footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.8);
}
.footer .footer-main {
  padding: 50px 0 30px;
}
.footer .footer-content {
  display: flex;
  gap: 40px;
}
.footer .footer-content .footer-col {
  flex: 1;
}
.footer .footer-brand {
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.footer .footer-brand span {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  letter-spacing: 3px;
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  opacity: 0.7;
}
.footer .footer-desc {
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: 15px;
}
.footer .footer-links a {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-right: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}
.footer .footer-links a:hover {
  border-color: #b8001f;
  color: #b8001f;
}
.footer .footer-nav h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-nav ul {
  display: flex;
  flex-wrap: wrap;
}
.footer .footer-nav ul li {
  width: 50%;
  margin-bottom: 10px;
}
.footer .footer-nav ul li a {
  font-size: 13px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.footer .footer-nav ul li a:hover {
  opacity: 1;
  color: #b8001f;
}
.footer .footer-contact h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-contact p {
  font-size: 13px;
  line-height: 2;
  opacity: 0.7;
}
.footer .footer-contact p:before {
  content: '▸ ';
  color: #b8001f;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  text-align: center;
  font-size: 12px;
  opacity: 0.5;
}
/* 侧边工具栏 */
.side-toolbar {
  position: fixed;
  right: 15px;
  bottom: 15%;
  z-index: 900;
}
.side-toolbar .toolbar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #b8001f;
  color: #fff;
  margin-bottom: 5px;
  transition: background 0.3s;
  font-size: 12px;
  text-align: center;
}
.side-toolbar .toolbar-item:hover {
  background: #8a0018;
}
.side-toolbar .toolbar-item img {
  max-width: 20px;
  filter: brightness(0) invert(1);
}
.side-toolbar .toolbar-join {
  writing-mode: vertical-rl;
  letter-spacing: 2px;
}
.side-toolbar .toolbar-top {
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}
.side-toolbar .toolbar-top.visible {
  opacity: 1;
}
/* 响应式 */
@media (max-width: 992px) {
  .footer .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer .footer-main {
    padding: 30px 0 20px;
  }
  .side-toolbar {
    right: 10px;
  }
  .side-toolbar .toolbar-item {
    width: 40px;
    height: 40px;
  }
}

/* ===== 写哈服饰 - 首页样式 ===== */
/* ===== 写哈服饰 XIEHA FASHION - 基础样式 ===== */
/* 变量定义 */
/* 主红色 */
/* 深红 */
/* 主文字色 */
/* 次文字色 */
/* 更淡文字 */
/* 深色背景 */
/* 浅灰背景 */
/* 中灰背景 */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 14px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #b8001f;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul,
ol {
  list-style: none;
}
/* 容器 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
/* 区块通用 */
.section {
  position: relative;
  padding: 60px 0;
}
/* 区块标题 */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-header h3 {
  font-size: 18px;
  color: #b8001f;
  font-weight: 400;
  margin-top: 8px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-header h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #b8001f;
}
.section-header .en-sub {
  font-size: 12px;
  color: #999;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  margin-top: 8px;
  letter-spacing: 1px;
}
.section-header.left {
  text-align: left;
}
.section-header.left h3:after {
  left: 0;
  transform: none;
}
.section-header.center {
  text-align: center;
}
/* 按钮 */
.btn-detail,
.btn-join,
.btn-apply,
.btn-submit {
  display: inline-block;
  padding: 10px 30px;
  background: #b8001f;
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  letter-spacing: 1px;
}
.btn-detail:hover,
.btn-join:hover,
.btn-apply:hover,
.btn-submit:hover {
  background: #8a0018;
  color: #fff;
  transform: translateY(-2px);
}
.btn-submit {
  padding: 12px 60px;
  font-size: 16px;
}
/* 分页 */
.pagination {
  text-align: center;
  margin-top: 30px;
}
.pagination a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 3px;
  color: #333;
  transition: all 0.3s;
}
.pagination a:hover,
.pagination a.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* Tab切换 */
.news-tabs,
.product-tabs {
  text-align: center;
  margin-bottom: 30px;
}
.news-tabs .tab-item,
.product-tabs .tab-item {
  display: inline-block;
  padding: 8px 25px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.news-tabs .tab-item:hover,
.product-tabs .tab-item:hover,
.news-tabs .tab-item.active,
.product-tabs .tab-item.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* 动画 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 响应式 */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 40px 0;
  }
  .section-header h2 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 30px 0;
  }
  .section-header h2 {
    font-size: 18px;
  }
  .section-header h3 {
    font-size: 15px;
  }
  .news-tabs .tab-item,
  .product-tabs .tab-item {
    padding: 6px 15px;
    font-size: 12px;
    margin: 3px;
  }
}
/* 首页Banner */
.home-banner {
  margin-top: 80px;
}
.home-banner .banner-swiper {
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 500px;
}
.home-banner .swiper-slide {
  position: relative;
  overflow: hidden;
}
.home-banner .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}
.home-banner .slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}
.home-banner .slide-content .slide-logo {
  margin-bottom: 20px;
}
.home-banner .slide-content .slide-logo img {
  height: 40px;
  opacity: 0.6;
}
.home-banner .slide-content h1 {
  font-size: 48px;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  letter-spacing: 8px;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.home-banner .slide-content .slide-slogan-cn {
  font-size: 18px;
  letter-spacing: 10px;
  margin-top: 20px;
  font-weight: 300;
}
.home-banner .slide-content .slide-slogan-en {
  font-size: 13px;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  letter-spacing: 3px;
  margin-top: 10px;
  opacity: 0.8;
}
.home-banner .swiper-button-prev,
.home-banner .swiper-button-next {
  width: 44px;
  height: 44px;
  background-size: 27px 44px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.home-banner .swiper-button-prev:hover,
.home-banner .swiper-button-next:hover {
  opacity: 1;
}
.home-banner .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  width: 10px;
  height: 10px;
}
.home-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: #b8001f;
}
/* 产品分类 */
.product-categories {
  background: #fff;
  padding-bottom: 80px;
}
.product-categories .section-header {
  margin-bottom: 30px;
}
.product-categories .section-header h2 {
  color: #999;
  font-weight: 300;
  letter-spacing: 5px;
  font-size: 24px;
}
.product-categories .categories-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.product-categories .cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 220px;
  padding: 20px;
  transition: transform 0.3s;
}
.product-categories .cat-item:hover {
  transform: translateY(-5px);
}
.product-categories .cat-item:hover .cat-name {
  color: #b8001f;
}
.product-categories .cat-item .cat-img {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e8e8e8;
}
.product-categories .cat-item .cat-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.product-categories .cat-item .cat-name {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
  letter-spacing: 3px;
  transition: color 0.3s;
}
.product-categories .section-more {
  text-align: center;
  margin-top: 30px;
}
.product-categories .section-more a {
  display: inline-block;
  padding: 10px 40px;
  border: 1px solid #999;
  color: #999;
  font-size: 14px;
  letter-spacing: 2px;
  transition: all 0.3s;
}
.product-categories .section-more a:hover {
  border-color: #b8001f;
  color: #b8001f;
}
.product-categories .section-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  pointer-events: none;
}
.product-categories .section-shadow img {
  width: 100%;
  max-height: 80px;
  object-fit: cover;
}
/* 公司简介 */
.about-preview {
  background: #f5f5f5;
  padding: 80px 0;
}
.about-preview .about-bg-left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  pointer-events: none;
}
.about-preview .about-bg-left img {
  height: 100%;
  opacity: 0.1;
}
.about-preview .about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}
.about-preview .about-text {
  flex: 1;
}
.about-preview .about-desc {
  margin: 20px 0;
}
.about-preview .about-desc p {
  font-size: 20px;
  color: #333;
  letter-spacing: 3px;
}
.about-preview .about-desc .en {
  font-size: 12px;
  color: #999;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  margin-top: 5px;
  letter-spacing: 1px;
}
.about-preview .about-detail p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
.about-preview .btn-detail {
  margin-top: 20px;
}
.about-preview .about-image {
  flex: 0 0 400px;
  overflow: hidden;
}
.about-preview .about-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
/* 加盟区域 */
.join-section {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.join-section .join-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.join-section .join-left {
  flex: 0 0 300px;
  text-align: center;
}
.join-section .join-left h2 {
  font-size: 60px;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  color: #b8001f;
  letter-spacing: 5px;
  margin-bottom: 20px;
}
.join-section .join-left p {
  font-size: 14px;
  color: #666;
  line-height: 2;
  text-align: justify;
}
.join-section .join-left .btn-join {
  margin-top: 20px;
}
.join-section .join-right {
  flex: 1;
}
.join-section .join-right .section-header {
  text-align: left;
}
.join-section .join-right .section-header h2 {
  font-size: 24px;
  color: #999;
  letter-spacing: 3px;
}
.join-section .join-right .section-header h3 {
  font-size: 24px;
}
.join-section .join-right .section-header .en-sub {
  font-size: 12px;
  color: #999;
  line-height: 1.8;
}
.join-section .join-decoration {
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  opacity: 0.1;
}
.join-section .join-decoration img {
  height: 300px;
}
/* 新闻资讯 */
.news-section {
  background: #1a1a1a;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.news-section .section-header.center h2 {
  color: #fff;
}
.news-section .section-header.center h3 {
  color: #b8001f;
}
.news-section .section-header.center .en-sub {
  color: rgba(255, 255, 255, 0.5);
}
.news-section .news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.news-section .news-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.news-section .news-item:hover {
  padding-left: 15px;
}
.news-section .news-item:hover a {
  color: #b8001f;
}
.news-section .news-item a {
  color: rgba(255, 255, 255, 0.9);
}
.news-section .news-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.news-section .news-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}
.news-section .news-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.05;
}
.news-section .news-bg img {
  height: 300px;
}
/* 响应式 */
@media (max-width: 992px) {
  .home-banner .banner-swiper {
    height: 500px;
  }
  .home-banner .slide-content h1 {
    font-size: 32px;
    letter-spacing: 5px;
  }
  .home-banner .slide-content .slide-slogan-cn {
    font-size: 14px;
    letter-spacing: 5px;
  }
  .product-categories .categories-grid {
    gap: 15px;
  }
  .product-categories .cat-item {
    width: 180px;
    padding: 15px;
  }
  .about-preview .about-content {
    flex-direction: column;
  }
  .about-preview .about-image {
    flex: none;
    width: 100%;
  }
  .about-preview .about-image img {
    height: 200px;
  }
  .join-section .join-content {
    flex-direction: column;
  }
  .join-section .join-left {
    flex: none;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .home-banner {
    margin-top: 60px;
  }
  .home-banner .banner-swiper {
    height: 350px;
    min-height: 350px;
  }
  .home-banner .slide-content h1 {
    font-size: 24px;
    letter-spacing: 3px;
  }
  .home-banner .slide-content .slide-logo img {
    height: 25px;
  }
  .product-categories .categories-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .product-categories .cat-item {
    width: 45%;
    padding: 10px;
  }
  .product-categories .cat-item .cat-img {
    height: 150px;
  }
}

/* ===== 关于我们页样式 ===== */
/* ===== 写哈服饰 XIEHA FASHION - 基础样式 ===== */
/* 变量定义 */
/* 主红色 */
/* 深红 */
/* 主文字色 */
/* 次文字色 */
/* 更淡文字 */
/* 深色背景 */
/* 浅灰背景 */
/* 中灰背景 */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 14px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #b8001f;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul,
ol {
  list-style: none;
}
/* 容器 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
/* 区块通用 */
.section {
  position: relative;
  padding: 60px 0;
}
/* 区块标题 */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-header h3 {
  font-size: 18px;
  color: #b8001f;
  font-weight: 400;
  margin-top: 8px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-header h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #b8001f;
}
.section-header .en-sub {
  font-size: 12px;
  color: #999;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  margin-top: 8px;
  letter-spacing: 1px;
}
.section-header.left {
  text-align: left;
}
.section-header.left h3:after {
  left: 0;
  transform: none;
}
.section-header.center {
  text-align: center;
}
/* 按钮 */
.btn-detail,
.btn-join,
.btn-apply,
.btn-submit {
  display: inline-block;
  padding: 10px 30px;
  background: #b8001f;
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  letter-spacing: 1px;
}
.btn-detail:hover,
.btn-join:hover,
.btn-apply:hover,
.btn-submit:hover {
  background: #8a0018;
  color: #fff;
  transform: translateY(-2px);
}
.btn-submit {
  padding: 12px 60px;
  font-size: 16px;
}
/* 分页 */
.pagination {
  text-align: center;
  margin-top: 30px;
}
.pagination a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 3px;
  color: #333;
  transition: all 0.3s;
}
.pagination a:hover,
.pagination a.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* Tab切换 */
.news-tabs,
.product-tabs {
  text-align: center;
  margin-bottom: 30px;
}
.news-tabs .tab-item,
.product-tabs .tab-item {
  display: inline-block;
  padding: 8px 25px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.news-tabs .tab-item:hover,
.product-tabs .tab-item:hover,
.news-tabs .tab-item.active,
.product-tabs .tab-item.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* 动画 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 响应式 */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 40px 0;
  }
  .section-header h2 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 30px 0;
  }
  .section-header h2 {
    font-size: 18px;
  }
  .section-header h3 {
    font-size: 15px;
  }
  .news-tabs .tab-item,
  .product-tabs .tab-item {
    padding: 6px 15px;
    font-size: 12px;
    margin: 3px;
  }
}
/* 公司简介 */
.about-section {
  padding-top: 60px;
}
.about-section .about-detail-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.about-section .about-text-full {
  flex: 1;
}
.about-section .about-text-full p {
  font-size: 14px;
  color: #666;
  line-height: 2;
  text-indent: 2em;
  margin-bottom: 10px;
}
.about-section .about-image-full {
  flex: 0 0 400px;
  overflow: hidden;
}
.about-section .about-image-full img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
/* 企业愿景 */
.vision-section {
  background: #f5f5f5;
}
.vision-section .vision-content {
  position: relative;
}
.vision-section .vision-decoration {
  position: absolute;
  right: 0;
  top: -30px;
  pointer-events: none;
  opacity: 0.1;
}
.vision-section .vision-decoration img {
  height: 200px;
}
.vision-section .vision-text {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.vision-section .vision-text p {
  font-size: 14px;
  color: #666;
  line-height: 2;
  text-indent: 2em;
}
.vision-section .vision-slogan {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
}
.vision-section .vision-slogan .brand-name {
  font-size: 24px;
  color: #b8001f;
  letter-spacing: 5px;
  font-weight: 700;
}
.vision-section .vision-slogan p {
  font-size: 12px;
  color: #999;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  letter-spacing: 1px;
  margin-top: 10px;
}
@media (max-width: 992px) {
  .about-section .about-detail-content {
    flex-direction: column;
  }
  .about-section .about-image-full {
    flex: none;
    width: 100%;
  }
  .about-section .about-image-full img {
    height: 250px;
  }
}

/* ===== 新闻中心页样式 ===== */
/* ===== 写哈服饰 XIEHA FASHION - 基础样式 ===== */
/* 变量定义 */
/* 主红色 */
/* 深红 */
/* 主文字色 */
/* 次文字色 */
/* 更淡文字 */
/* 深色背景 */
/* 浅灰背景 */
/* 中灰背景 */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 14px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #b8001f;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul,
ol {
  list-style: none;
}
/* 容器 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
/* 区块通用 */
.section {
  position: relative;
  padding: 60px 0;
}
/* 区块标题 */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-header h3 {
  font-size: 18px;
  color: #b8001f;
  font-weight: 400;
  margin-top: 8px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-header h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #b8001f;
}
.section-header .en-sub {
  font-size: 12px;
  color: #999;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  margin-top: 8px;
  letter-spacing: 1px;
}
.section-header.left {
  text-align: left;
}
.section-header.left h3:after {
  left: 0;
  transform: none;
}
.section-header.center {
  text-align: center;
}
/* 按钮 */
.btn-detail,
.btn-join,
.btn-apply,
.btn-submit {
  display: inline-block;
  padding: 10px 30px;
  background: #b8001f;
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  letter-spacing: 1px;
}
.btn-detail:hover,
.btn-join:hover,
.btn-apply:hover,
.btn-submit:hover {
  background: #8a0018;
  color: #fff;
  transform: translateY(-2px);
}
.btn-submit {
  padding: 12px 60px;
  font-size: 16px;
}
/* 分页 */
.pagination {
  text-align: center;
  margin-top: 30px;
}
.pagination a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 3px;
  color: #333;
  transition: all 0.3s;
}
.pagination a:hover,
.pagination a.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* Tab切换 */
.news-tabs,
.product-tabs {
  text-align: center;
  margin-bottom: 30px;
}
.news-tabs .tab-item,
.product-tabs .tab-item {
  display: inline-block;
  padding: 8px 25px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.news-tabs .tab-item:hover,
.product-tabs .tab-item:hover,
.news-tabs .tab-item.active,
.product-tabs .tab-item.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* 动画 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 响应式 */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 40px 0;
  }
  .section-header h2 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 30px 0;
  }
  .section-header h2 {
    font-size: 18px;
  }
  .section-header h3 {
    font-size: 15px;
  }
  .news-tabs .tab-item,
  .product-tabs .tab-item {
    padding: 6px 15px;
    font-size: 12px;
    margin: 3px;
  }
}
.news-page-section {
  padding-top: 60px;
}
.news-page-list .news-page-item {
  border-bottom: 1px solid #e8e8e8;
}
.news-page-list .news-page-item a {
  display: flex;
  align-items: flex-start;
  padding: 25px 0;
  transition: all 0.3s;
}
.news-page-list .news-page-item a:hover {
  padding-left: 15px;
}
.news-page-list .news-page-item a:hover .news-info h4 {
  color: #b8001f;
}
.news-page-list .news-date {
  flex: 0 0 80px;
  text-align: center;
  padding-right: 20px;
}
.news-page-list .news-date .day {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #b8001f;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  line-height: 1;
}
.news-page-list .news-date .year {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}
.news-page-list .news-info {
  flex: 1;
}
.news-page-list .news-info h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.news-page-list .news-info p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 侧边行业新闻 */
.side-news-section {
  background: #f5f5f5;
}
.side-news-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}
.side-news-section .section-header h3 {
  font-size: 18px;
  color: #333;
}
.side-news-section .section-header .en-sub {
  font-size: 12px;
  color: #999;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  letter-spacing: 1px;
}
.side-news-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.side-news-list .side-news-item {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 20px;
  transition: box-shadow 0.3s;
}
.side-news-list .side-news-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.side-news-list .side-news-item:hover h4 {
  color: #b8001f;
}
.side-news-list .side-news-item h4 {
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.side-news-list .side-news-item p {
  font-size: 12px;
  color: #666;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-page-list .news-page-item a {
    flex-direction: column;
  }
  .news-page-list .news-date {
    flex: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 0;
    margin-bottom: 10px;
  }
  .news-page-list .news-date .day {
    font-size: 24px;
  }
  .side-news-list {
    flex-direction: column;
  }
  .side-news-list .side-news-item {
    min-width: auto;
  }
}

/* ===== 产品中心页样式 ===== */
/* ===== 写哈服饰 XIEHA FASHION - 基础样式 ===== */
/* 变量定义 */
/* 主红色 */
/* 深红 */
/* 主文字色 */
/* 次文字色 */
/* 更淡文字 */
/* 深色背景 */
/* 浅灰背景 */
/* 中灰背景 */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 14px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #b8001f;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul,
ol {
  list-style: none;
}
/* 容器 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
/* 区块通用 */
.section {
  position: relative;
  padding: 60px 0;
}
/* 区块标题 */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-header h3 {
  font-size: 18px;
  color: #b8001f;
  font-weight: 400;
  margin-top: 8px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-header h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #b8001f;
}
.section-header .en-sub {
  font-size: 12px;
  color: #999;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  margin-top: 8px;
  letter-spacing: 1px;
}
.section-header.left {
  text-align: left;
}
.section-header.left h3:after {
  left: 0;
  transform: none;
}
.section-header.center {
  text-align: center;
}
/* 按钮 */
.btn-detail,
.btn-join,
.btn-apply,
.btn-submit {
  display: inline-block;
  padding: 10px 30px;
  background: #b8001f;
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  letter-spacing: 1px;
}
.btn-detail:hover,
.btn-join:hover,
.btn-apply:hover,
.btn-submit:hover {
  background: #8a0018;
  color: #fff;
  transform: translateY(-2px);
}
.btn-submit {
  padding: 12px 60px;
  font-size: 16px;
}
/* 分页 */
.pagination {
  text-align: center;
  margin-top: 30px;
}
.pagination a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 3px;
  color: #333;
  transition: all 0.3s;
}
.pagination a:hover,
.pagination a.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* Tab切换 */
.news-tabs,
.product-tabs {
  text-align: center;
  margin-bottom: 30px;
}
.news-tabs .tab-item,
.product-tabs .tab-item {
  display: inline-block;
  padding: 8px 25px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.news-tabs .tab-item:hover,
.product-tabs .tab-item:hover,
.news-tabs .tab-item.active,
.product-tabs .tab-item.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* 动画 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 响应式 */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 40px 0;
  }
  .section-header h2 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 30px 0;
  }
  .section-header h2 {
    font-size: 18px;
  }
  .section-header h3 {
    font-size: 15px;
  }
  .news-tabs .tab-item,
  .product-tabs .tab-item {
    padding: 6px 15px;
    font-size: 12px;
    margin: 3px;
  }
}
.product-page-section {
  padding-top: 60px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-grid .product-item {
  text-align: center;
  transition: transform 0.3s;
}
.product-grid .product-item:hover {
  transform: translateY(-5px);
}
.product-grid .product-item:hover .product-img {
  border-color: #b8001f;
}
.product-grid .product-item:hover .product-name {
  color: #b8001f;
}
.product-grid .product-item a {
  display: block;
}
.product-grid .product-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: border-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.product-grid .product-img img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  transition: transform 0.3s;
}
.product-grid:hover .product-item:hover .product-img img {
  transform: scale(1.05);
}
.product-grid .product-name {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  color: #333;
  letter-spacing: 2px;
  transition: color 0.3s;
}
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .product-grid .product-img {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .product-grid .product-img {
    height: 160px;
  }
  .product-grid .product-name {
    font-size: 12px;
    padding: 8px 0;
  }
}

/* ===== 人才招聘页样式 ===== */
/* ===== 写哈服饰 XIEHA FASHION - 基础样式 ===== */
/* 变量定义 */
/* 主红色 */
/* 深红 */
/* 主文字色 */
/* 次文字色 */
/* 更淡文字 */
/* 深色背景 */
/* 浅灰背景 */
/* 中灰背景 */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 14px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #b8001f;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul,
ol {
  list-style: none;
}
/* 容器 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
/* 区块通用 */
.section {
  position: relative;
  padding: 60px 0;
}
/* 区块标题 */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-header h3 {
  font-size: 18px;
  color: #b8001f;
  font-weight: 400;
  margin-top: 8px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-header h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #b8001f;
}
.section-header .en-sub {
  font-size: 12px;
  color: #999;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  margin-top: 8px;
  letter-spacing: 1px;
}
.section-header.left {
  text-align: left;
}
.section-header.left h3:after {
  left: 0;
  transform: none;
}
.section-header.center {
  text-align: center;
}
/* 按钮 */
.btn-detail,
.btn-join,
.btn-apply,
.btn-submit {
  display: inline-block;
  padding: 10px 30px;
  background: #b8001f;
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  letter-spacing: 1px;
}
.btn-detail:hover,
.btn-join:hover,
.btn-apply:hover,
.btn-submit:hover {
  background: #8a0018;
  color: #fff;
  transform: translateY(-2px);
}
.btn-submit {
  padding: 12px 60px;
  font-size: 16px;
}
/* 分页 */
.pagination {
  text-align: center;
  margin-top: 30px;
}
.pagination a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 3px;
  color: #333;
  transition: all 0.3s;
}
.pagination a:hover,
.pagination a.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* Tab切换 */
.news-tabs,
.product-tabs {
  text-align: center;
  margin-bottom: 30px;
}
.news-tabs .tab-item,
.product-tabs .tab-item {
  display: inline-block;
  padding: 8px 25px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.news-tabs .tab-item:hover,
.product-tabs .tab-item:hover,
.news-tabs .tab-item.active,
.product-tabs .tab-item.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* 动画 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 响应式 */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 40px 0;
  }
  .section-header h2 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 30px 0;
  }
  .section-header h2 {
    font-size: 18px;
  }
  .section-header h3 {
    font-size: 15px;
  }
  .news-tabs .tab-item,
  .product-tabs .tab-item {
    padding: 6px 15px;
    font-size: 12px;
    margin: 3px;
  }
}
/* 用人理念 */
.recruit-concept {
  padding-top: 60px;
}
.recruit-concept .concept-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.recruit-concept .concept-text p {
  font-size: 14px;
  color: #666;
  line-height: 2;
}
.recruit-concept .concept-text p.en {
  font-size: 12px;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  color: #999;
  margin-top: 15px;
}
/* 招聘职位 */
.recruit-jobs {
  background: #f5f5f5;
}
.recruit-jobs .jobs-list {
  max-width: 800px;
  margin: 0 auto;
}
.recruit-jobs .job-item {
  background: #fff;
  margin-bottom: 20px;
  transition: box-shadow 0.3s;
}
.recruit-jobs .job-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.recruit-jobs .job-header {
  background: #b8001f;
  padding: 15px 25px;
}
.recruit-jobs .job-header h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.recruit-jobs .job-desc {
  padding: 20px 25px;
}
.recruit-jobs .job-desc p {
  font-size: 14px;
  color: #666;
  line-height: 2;
}
.recruit-jobs .recruit-cta {
  text-align: center;
  margin-top: 30px;
}
.recruit-jobs .recruit-cta .btn-apply {
  margin-bottom: 15px;
}
.recruit-jobs .recruit-cta p {
  font-size: 13px;
  color: #999;
}
@media (max-width: 768px) {
  .recruit-jobs .job-header {
    padding: 12px 15px;
  }
  .recruit-jobs .job-desc {
    padding: 15px;
  }
}

/* ===== 联系我们页样式 ===== */
/* ===== 写哈服饰 XIEHA FASHION - 基础样式 ===== */
/* 变量定义 */
/* 主红色 */
/* 深红 */
/* 主文字色 */
/* 次文字色 */
/* 更淡文字 */
/* 深色背景 */
/* 浅灰背景 */
/* 中灰背景 */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 14px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #b8001f;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul,
ol {
  list-style: none;
}
/* 容器 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
/* 区块通用 */
.section {
  position: relative;
  padding: 60px 0;
}
/* 区块标题 */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-header h3 {
  font-size: 18px;
  color: #b8001f;
  font-weight: 400;
  margin-top: 8px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-header h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #b8001f;
}
.section-header .en-sub {
  font-size: 12px;
  color: #999;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  margin-top: 8px;
  letter-spacing: 1px;
}
.section-header.left {
  text-align: left;
}
.section-header.left h3:after {
  left: 0;
  transform: none;
}
.section-header.center {
  text-align: center;
}
/* 按钮 */
.btn-detail,
.btn-join,
.btn-apply,
.btn-submit {
  display: inline-block;
  padding: 10px 30px;
  background: #b8001f;
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  letter-spacing: 1px;
}
.btn-detail:hover,
.btn-join:hover,
.btn-apply:hover,
.btn-submit:hover {
  background: #8a0018;
  color: #fff;
  transform: translateY(-2px);
}
.btn-submit {
  padding: 12px 60px;
  font-size: 16px;
}
/* 分页 */
.pagination {
  text-align: center;
  margin-top: 30px;
}
.pagination a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 3px;
  color: #333;
  transition: all 0.3s;
}
.pagination a:hover,
.pagination a.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* Tab切换 */
.news-tabs,
.product-tabs {
  text-align: center;
  margin-bottom: 30px;
}
.news-tabs .tab-item,
.product-tabs .tab-item {
  display: inline-block;
  padding: 8px 25px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.news-tabs .tab-item:hover,
.product-tabs .tab-item:hover,
.news-tabs .tab-item.active,
.product-tabs .tab-item.active {
  background: #b8001f;
  border-color: #b8001f;
  color: #fff;
}
/* 动画 */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 响应式 */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 40px 0;
  }
  .section-header h2 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 30px 0;
  }
  .section-header h2 {
    font-size: 18px;
  }
  .section-header h3 {
    font-size: 15px;
  }
  .news-tabs .tab-item,
  .product-tabs .tab-item {
    padding: 6px 15px;
    font-size: 12px;
    margin: 3px;
  }
}
/* 联系信息 */
.contact-info-section {
  padding-top: 60px;
}
.contact-info-section .contact-info-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-info-section .contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  background: #f5f5f5;
  transition: box-shadow 0.3s;
}
.contact-info-section .contact-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact-info-section .contact-card .card-icon {
  flex: 0 0 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-section .contact-card .card-icon img {
  max-width: 40px;
  filter: grayscale(0.3);
}
.contact-info-section .contact-card .card-text p {
  font-size: 14px;
  color: #333;
}
/* 联系表单区域 */
.contact-form-section {
  background: #f5f5f5;
}
.contact-form-section .contact-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.contact-form-section .form-intro {
  text-align: center;
  margin-bottom: 30px;
}
.contact-form-section .form-intro p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
.contact-form-section .form-intro p.en {
  font-size: 12px;
  color: #999;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  margin-top: 10px;
}
.contact-form-section .contact-brand-banner {
  background: #b8001f;
  color: #fff;
  padding: 30px;
  text-align: center;
  position: relative;
}
.contact-form-section .contact-brand-banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../683a316178d7b2de6bc5.jpg) center / cover;
  opacity: 0.3;
}
.contact-form-section .contact-brand-banner .brand-info {
  position: relative;
  z-index: 1;
}
.contact-form-section .contact-brand-banner .brand-cn {
  display: block;
  font-size: 22px;
  letter-spacing: 5px;
  margin-bottom: 5px;
}
.contact-form-section .contact-brand-banner .brand-en {
  display: block;
  font-size: 14px;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  letter-spacing: 3px;
  opacity: 0.8;
}
.contact-form-section .contact-form-content {
  background: #fff;
  padding: 30px;
}
.contact-form-section .form-phones {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}
.contact-form-section .form-phones .phone-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.contact-form-section .form-phones .phone-item .phone-icon {
  flex: 0 0 40px;
}
.contact-form-section .form-phones .phone-item .phone-icon img {
  max-width: 30px;
}
.contact-form-section .form-phones .phone-item .phone-text {
  font-size: 14px;
}
.contact-form-section .form-phones .phone-item .phone-text strong {
  color: #b8001f;
}
.contact-form-section .contact-form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.contact-form-section .contact-form .form-row.full {
  display: block;
}
.contact-form-section .contact-form .form-group {
  flex: 1;
}
.contact-form-section .contact-form .form-group input,
.contact-form-section .contact-form .form-group select,
.contact-form-section .contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
  transition: border-color 0.3s;
  background: #fff;
}
.contact-form-section .contact-form .form-group input:focus,
.contact-form-section .contact-form .form-group select:focus,
.contact-form-section .contact-form .form-group textarea:focus {
  border-color: #b8001f;
  outline: none;
}
.contact-form-section .contact-form .form-group input::placeholder,
.contact-form-section .contact-form .form-group select::placeholder,
.contact-form-section .contact-form .form-group textarea::placeholder {
  color: #999;
}
.contact-form-section .contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-section .contact-form .form-group select {
  appearance: auto;
  color: #999;
}
.contact-form-section .contact-form .form-group select option {
  color: #333;
}
.contact-form-section .contact-form .btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}
/* 地图 */
.contact-map-section {
  padding: 0;
}
.contact-map-section .map-placeholder {
  width: 100%;
  height: 300px;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-map-section .map-placeholder .map-inner {
  text-align: center;
}
.contact-map-section .map-placeholder .map-inner p {
  font-size: 16px;
  color: #999;
}
@media (max-width: 768px) {
  .contact-info-section .contact-info-cards {
    flex-direction: column;
    gap: 15px;
  }
  .contact-form-section .contact-form .form-row {
    flex-direction: column;
    gap: 10px;
  }
  .contact-form-section .contact-form-content {
    padding: 20px;
  }
  .contact-map-section .map-placeholder {
    height: 200px;
  }
}

