@charset "utf-8";
/* ===========================================================
   广西菲晖块酒店管理有限公司 - 全站样式
   还原参考站 demoall.5fa.cn/31732 视觉风格（紫色主调 #55328b）
   =========================================================== */

/* ---------- 全局重置 ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
*, *:after, *:before {
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}
body {
  font-family: 'Microsoft YaHei', "Open Sans", sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
}
input, select, textarea {
  font-family: 微软雅黑, "Open Sans", sans-serif;
  font-size: 1em;
  outline: none;
}
ul, li { list-style: none; }
img, a { border: 0; }
img { max-width: 100%; vertical-align: middle; display: inline-block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: normal; }
p { text-align: justify; }

.wrap { width: 96%; margin: 0 auto; max-width: 1200px; position: relative; }

/* 通用容器/标记类（参考站结构） */
.mainer { position: relative; }
.page1 { background: linear-gradient(180deg, #ffffff, #faf7fe); }
.page_about { padding-top: 24px; }
.wow_list { }
.ul_tag { }
.flt { float: left; }
.frt { float: right; }
.clear { clear: both; }
.clear:after, .clear:before { content: ''; clear: both; display: table; }
ul:after { content: ''; display: block; clear: both; }

/* 通用图片框（参考 .img hover 内描边 + 放大旋转） */
.img { overflow: hidden; position: relative; }
.img:before {
  content: ''; display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  border: 1px solid rgba(255,255,255,0); z-index: 100;
}
.img:hover:before {
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  border: 1px solid rgba(255,255,255,.5);
}
.img img { transition: all .6s; }
.img:hover img { transform: scale(1.1) rotate(3deg); }

/* 图片加载失败兜底 */
.img-fallback {
  background: linear-gradient(135deg, #55328b, #391e63);
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; min-height: 200px;
  color: #fff; font-size: 14px; border-radius: 4px;
}

/* 通用标题 */
.page_tit { color: #391e63; text-align: center; margin-bottom: 60px; }
.page_tit h3 { font-size: 30px; font-weight: normal; margin-bottom: 15px; }
.page_tit p { text-align: center; font-size: 16px; color: #391e63; opacity: .8; }

/* ---------- 顶部 + 导航 ---------- */
.header {
  line-height: 70px;
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
}
.header.fixed { background: rgba(40,20,70,.9); box-shadow: 0 2px 12px rgba(0,0,0,.15); }
.header1 { background: #fff !important; position: static; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.header1 .menu ul li a { color: #46434a; }
.header1 .menu ul li.on a, .header1 .menu ul li a:hover { color: #55328b; }
.header1 .logo .brand-cn { color: #391e63; }
.header1 .logo .brand-en { color: #8f88b7; }
.header1 .top-phone { color: #555; }
.header1 .top-phone b { color: #55328b; }

/* Logo：SVG 图标 + 品牌名 + 行业关键词 */
.logo { float: left; display: flex; align-items: center; height: 70px; }
.logo .logo-ico { width: 46px; height: 46px; flex-shrink: 0; margin-right: 12px; }
.logo .logo-txt { line-height: 1.2; }
.logo .brand-cn { display: block; font-size: 22px; font-weight: bold; color: #fff; letter-spacing: 1px; }
.logo .brand-en { display: block; font-size: 12px; color: #ffe800; letter-spacing: 2px; margin-top: 3px; text-transform: uppercase; }

/* 顶部电话 */
.top-phone { float: right; color: #fff; font-size: 14px; margin-left: 30px; }
.top-phone svg { width: 16px; height: 16px; vertical-align: middle; margin-right: 6px; fill: #ffe800; }
.top-phone b { font-size: 20px; color: #ffe800; font-weight: bold; letter-spacing: 1px; vertical-align: middle; }

/* 主导航 */
.menu { float: right; }
.menu ul li { float: left; margin-left: 36px; }
.menu ul li a {
  color: #cfcbe6; border-bottom: 2px solid transparent;
  display: inline-block; line-height: 34px; padding: 0 5px; font-size: 15px;
}
.menu ul li:hover a, .menu ul li.on a { color: #fff; border-bottom-color: #fff; }

.menu_wrap { display: none; }

/* 导航下拉子菜单（关于我们） */
.menu ul li.has-sub { position: relative; }
.menu ul li.has-sub > a:after {
  content: ''; display: inline-block; width: 6px; height: 6px; margin-left: 6px;
  border-bottom: 2px solid currentColor; border-right: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg); vertical-align: middle;
}
.menu ul li .sub {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; min-width: 170px; padding: 6px 0; display: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.12); z-index: 99; margin-top: 8px;
}
.menu ul li .sub:before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
.menu ul li .sub li { float: none; margin: 0; }
.menu ul li .sub li a {
  display: block; line-height: 42px; padding: 0 22px; color: #555;
  border-bottom: none; white-space: nowrap; font-size: 14px;
}
.menu ul li .sub li a:hover { color: #55328b; background: #faf6fe; }
.menu ul li.has-sub:hover .sub { display: block; }

/* ---------- 首页 Banner 轮播 ---------- */
.owl { position: relative; }
.banner .item { position: relative; font-family: Arial; overflow: hidden; }
.banner .item .img1 { overflow: hidden; height: 600px; }
.banner .item .img1 img { width: 100%; height: 100%; object-fit: cover; }
.banner .item .text {
  position: absolute; left: 0; width: 100%; text-align: center; color: #fff;
  top: 50%; transform: translateY(-50%); padding: 0 20px;
}
.banner .item .text h2 { font-size: 46px; margin-bottom: .6em; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.banner .item .text p { font-size: 20px; text-align: center; margin-bottom: 1.4em; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.banner .item .text .btn a { margin: 0 auto; }

.banner_cur { position: absolute; top: 50%; left: 4%; right: 4%; z-index: 10; transform: translateY(-50%); }
.banner_cur span {
  display: block; width: 50px; height: 50px; cursor: pointer; border-radius: 100%;
  background: rgba(255,255,255,.25); position: relative; float: left;
}
.banner_cur span.prev:after, .banner_cur span.next:after {
  content: ''; position: absolute; top: 50%; left: 50%; width: 14px; height: 14px;
  border-top: 2px solid #fff; border-right: 2px solid #fff;
}
.banner_cur span.prev:after { transform: translate(-30%,-50%) rotate(-135deg); }
.banner_cur span.next { float: right; }
.banner_cur span.next:after { transform: translate(-70%,-50%) rotate(45deg); }
.banner_cur span:hover { background: rgba(85,50,139,.7); }

.owl-dots { position: absolute; bottom: 28px; left: 0; width: 100%; text-align: center; z-index: 10; }
.owl-dots .owl-dot {
  display: inline-block; width: 14px; height: 14px; margin: 0 6px; cursor: pointer;
  background: rgba(255,255,255,.5); transform: rotate(45deg);
}
.owl-dots .owl-dot.active { background: #ffe800; }

/* ---------- 通用按钮（参考 .btn 胶囊） ---------- */
.btn { padding: 14px 0; }
.btn a {
  display: block; width: 148px; line-height: 42px; border-radius: 42px;
  background: #55328b; color: #fff; text-align: center; margin: 0 auto;
  box-shadow: 0 2px 10px rgba(85,50,139,.2);
}
.btn a:hover { background: #391e63; }
.btn .a2 { background: none; border: 2px solid #fff; }
.btn .a2:hover { background: #fff; color: #55328b; }
.btn a span { display: inline-block; padding-right: 34px; position: relative; }
.btn a span:after {
  content: ''; position: absolute; right: 8px; top: 50%; width: 7px; height: 7px;
  border-top: 2px solid currentColor; border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn a:hover span { padding-right: 20px; }
.btn.text-left a, .btn.inline a { display: inline-block; margin-left: 0; }

/* ---------- 通用区块 ---------- */
.page { padding: 65px 0; overflow: hidden; }
.page.purplebg { background: #faf9fd; }
.page.greybg { background: #f7f6fa; }

/* ---------- page1 核心业务（4卡/行） ---------- */
.page1_list li { width: 25%; float: left; }
.page1_list .box { padding: 12px; border: 1px solid #eee; background: #fff; margin-left: -1px; height: 100%; }
.page1_list .box .img { height: 200px; }
.page1_list .box .img img { width: 100%; height: 100%; object-fit: cover; }
.page1_list .tit { padding: 20px 0 10px; text-align: center; color: #55328b; }
.page1_list .tit h3 { font-size: 19px; margin-bottom: 8px; font-weight: bold; }
.page1_list .tit p { text-align: center; font-size: 12px; color: #8f88b7; letter-spacing: 1px; }
.page1_list .d_txt { padding: 0 12px; line-height: 24px; color: #909098; height: 72px; overflow: hidden; font-size: 13px; }
.page1_list .box:hover { box-shadow: 0 8px 24px rgba(85,50,139,.12); }

/* ---------- page2 关于我们（背景图文） ---------- */
.page2 {
  background: linear-gradient(135deg, #55328b, #391e63);
  color: #fff; position: relative; overflow: hidden;
}
.page2 .p2-bg { position: absolute; inset: 0; opacity: .22; background-size: cover; background-position: center; }
.page2 .wrap { position: relative; z-index: 2; }
.page2 .text { width: 60%; padding: 30px 0; line-height: 30px; }
.page2 .tit { padding: 18px 0; }
.page2 .tit h3.cn { font-size: 32px; color: #ffe800; font-weight: normal; }
.page2 .tit h3.en { font-size: 22px; color: rgba(255,255,255,.55); font-family: 'Times New Roman'; letter-spacing: 2px; }
.page2 .text p { margin-bottom: 22px; color: #ece6f7; }
.page2 .stats { margin: 26px 0; }
.page2 .stats li { float: left; width: 25%; text-align: center; padding: 10px 0; }
.page2 .stats li b { display: block; font-size: 38px; color: #ffe800; font-family: Arial; }
.page2 .stats li span { font-size: 14px; color: #e6dcf7; }
.page2 .btn { padding: 6px 0; }

/* ---------- page3 团队风采（3 圆形头像/行） ---------- */
.team_list li { width: 33.333%; float: left; }
.team_list li .box {
  padding-bottom: 50px; position: relative; margin-bottom: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='30'%3E%3C/svg%3E") no-repeat bottom center;
}
.team_list li .box .img1 {
  width: 116px; height: 116px; padding: 5px; border: 1px solid #dcdcdc;
  background: #fff; border-radius: 100%; margin: 0 auto; overflow: hidden;
}
.team_list li .box .img1 img { width: 106px; height: 106px; border-radius: 100%; object-fit: cover; }
.team_list li .box h3 { text-align: center; color: #55328b; max-width: 84%; margin: 0 auto; font-size: 18px; line-height: 40px; font-weight: bold; }
.team_list li .box h3 label { display: inline-block; vertical-align: middle; color: #ffcc00; padding: 0 5px; }
.team_list li .box p { max-width: 64%; height: 48px; overflow: hidden; margin: 0 auto; line-height: 24px; color: #909098; }

/* ---------- page4 合作伙伴 / 资质（轮播） ---------- */
.hj_owl { position: relative; max-width: 1100px; margin: 0 auto; }
.hj_owl .hj-track { display: flex; flex-wrap: wrap; }
.hj_owl .item { width: 16.66%; padding: 8px; }
.hj_owl .item .img { height: 120px; border: 1px solid #ece6f7; background: #fff; display: flex; align-items: center; justify-content: center; }
.hj_owl .item .img img { width: 100%; height: 100%; object-fit: cover; }
.hj_owl .item p { text-align: center; color: #55328b; font-size: 14px; margin-top: 12px; }

/* ---------- 新闻动态（左特色 + 右4条） ---------- */
.news { max-width: 998px; margin: 0 auto; position: relative; }
.news .lt { width: 50%; float: left; margin-right: 18px; }
.news .lt .img img { display: block; width: 100%; height: 260px; object-fit: cover; }
.news .lt .text {
  background: linear-gradient(135deg, #55328b, #391e63);
  color: #fff; padding: 36px; line-height: 24px;
}
.news .lt .text span.time { display: block; padding-left: 26px; color: #ffe800; margin-bottom: 18px; font-size: 14px; position: relative; }
.news .lt .text span.time:before { content: ''; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; border: 2px solid #ffe800; border-radius: 50%; }
.news .lt .text h3 { font-size: 20px; font-weight: normal; color: #fff; margin-bottom: 16px; }
.news .lt .text h3 a { color: #fff; }
.news .lt .text h3 a:hover { color: #ffcc00; }
.news .lt .text p { height: 72px; overflow: hidden; margin-bottom: 16px; color: #e9daff; }
.news .list { overflow: hidden; }
.news .list li { width: 50%; float: left; }
.news .list a { display: block; margin: 9px; }
.news .list ul { margin: -9px; }
.news .list .img { height: 130px; }
.news .list img { display: block; width: 100%; height: 100%; object-fit: cover; }
.news .list .text { padding: 14px 16px; border: 1px solid #ebebeb; border-top: 0; }
.news .list h3 { font-size: 15px; color: #55328b; line-height: 22px; margin-bottom: 8px; height: 44px; overflow: hidden; font-weight: bold; }
.news .list p { font-size: 12px; color: #909098; line-height: 19px; height: 38px; overflow: hidden; margin-bottom: 10px; }
.news .list .time { line-height: 34px; color: #909098; font-size: 12px; border-top: 1px solid #e8e8e8; }

/* 产品展示网格（复用 page1_list 风格 4/行） */
.prod-grid li { width: 25%; float: left; }
.prod-grid .box { padding: 12px; border: 1px solid #eee; background: #fff; margin-left: -1px; margin-bottom: 20px; height: 100%; }
.prod-grid .box .img { height: 190px; }
.prod-grid .box .img img { width: 100%; height: 100%; object-fit: cover; }
.prod-grid .box .tit { text-align: center; color: #55328b; padding: 16px 0 6px; }
.prod-grid .box .tit h3 { font-size: 17px; font-weight: bold; margin-bottom: 4px; }
.prod-grid .box .tit p { text-align: center; color: #909098; font-size: 12px; height: 36px; overflow: hidden; padding: 0 8px; }
.prod-grid .box:hover { box-shadow: 0 8px 24px rgba(85,50,139,.12); }

/* 子分类标签 */
.tit_tag { text-align: center; margin-top: 30px; }
.tit_tag li { text-align: center; display: inline-block; width: 208px; line-height: 52px; margin-left: -5px; font-size: 16px; }
.tit_tag li a { display: block; position: relative; border: 1px solid #e7e7e7; color: #555; }
.tit_tag li a:hover, .tit_tag li.on a { font-weight: bold; border-color: #e5dbf5; background: #fbf9fd; color: #55328b; }

/* ---------- 页脚（4列） ---------- */
.footer { background: #2a1947; color: #cfc7e6; padding: 56px 0 0; font-size: 14px; }
.footer .f-top { display: flex; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid #3d2a5e; }
.footer .f-col { width: 25%; padding: 0 20px; }
.footer .f-col.f-intro { width: 34%; }
.footer .f-col.f-contact { width: 24%; }
.footer .f-logo { display: flex; align-items: center; margin-bottom: 18px; }
.footer .f-logo .logo-ico { width: 42px; height: 42px; margin-right: 10px; }
.footer .f-logo .brand-cn { color: #fff; font-size: 18px; font-weight: bold; }
.footer .f-logo .brand-en { color: #ffe800; font-size: 11px; letter-spacing: 2px; }
.footer .f-col h4 { color: #fff; font-size: 17px; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer .f-col h4:after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: #ffe800; }
.footer .f-col p { color: #b7accf; line-height: 26px; text-align: left; margin-bottom: 6px; }
.footer .f-col ul li { line-height: 34px; }
.footer .f-col ul li a { color: #b7accf; }
.footer .f-col ul li a:hover { color: #ffe800; padding-left: 6px; }
.footer .f-contact p { line-height: 26px; }
.footer .f-contact p svg { width: 15px; height: 15px; vertical-align: middle; margin-right: 8px; fill: #ffe800; flex-shrink: 0; }
.footer .f-contact p i { color: #ffe800; font-style: normal; margin-right: 6px; }
.footer .ewm { margin-top: 16px; }
.footer .ewm img { width: 96px; height: 96px; display: block; }
.footer .ewm p { font-size: 12px; color: #9a8cb8; margin-top: 8px; }
.footer .f-copy { text-align: center; padding: 22px 0; color: #8a7ba8; font-size: 13px; line-height: 24px; }
.footer .f-copy a { color: #8a7ba8; }
.footer .f-copy a:hover { color: #ffe800; }

/* ---------- 内页 Banner + 面包屑 ---------- */
.main_banner {
  min-height: 240px; padding: 80px 0;
  background: linear-gradient(135deg, #55328b, #391e63);
  background-size: cover; background-position: center; color: #fff;
  position: relative; text-align: center;
}
.main_banner .wrap { position: relative; z-index: 2; }
.main_banner:before { content: ''; position: absolute; inset: 0; background: rgba(40,20,70,.45); }
.main_banner h2 { font-size: 40px; margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.main_banner p { font-size: 18px; text-align: center; color: #ece6f7; }

/* 面包屑 */
.crumb { background: #fff; line-height: 50px; box-shadow: 0 2px 6px rgba(0,0,0,.05); }
.crumb .wrap { display: flex; align-items: center; justify-content: space-between; }
.crumb .ct { display: flex; align-items: baseline; }
.crumb .ct h1 { font-size: 22px; color: #391e63; font-weight: bold; margin-right: 14px; }
.crumb .ct i { font-style: normal; font-size: 13px; color: #a39ac0; letter-spacing: 1px; }
.crumb .weiz { font-size: 13px; color: #888; }
.crumb .weiz a:hover { color: #55328b; }
.crumb .weiz .sep { margin: 0 6px; color: #ccc; }

/* ---------- 关于我们 ---------- */
.about_list { margin-top: 20px; }
.about_list .item { padding: 30px 0; border-bottom: 1px solid #ebebeb; line-height: 30px; color: #333; }
.about_list .item:last-child { border-bottom: 0; }
.about_list .item:after { content: ''; display: block; clear: both; }
.about_list .img { float: left; margin-right: 35px; width: 40%; }
.about_list .img img { width: 100%; display: block; }
.about_list .text { overflow: hidden; }
.about_list .text h3 { font-size: 22px; font-weight: normal; margin-bottom: 18px; color: #391e63; }
.about_list .text p { margin-bottom: 14px; color: #666; }
.about_list .tit { margin-bottom: 16px; }
.about_list .tit.center { text-align: center; }
.about_list .tit h2 { font-size: 24px; font-weight: normal; color: #391e63; }
.about_list .tit label { font-size: 12px; color: #8f88b7; line-height: 20px; display: block; letter-spacing: 2px; text-transform: uppercase; }

/* 企业文化卡片 */
.culture-list { display: flex; flex-wrap: wrap; margin: 20px -12px; }
.culture-list .item { width: 33.333%; padding: 12px; }
.culture-list .c-box { border: 1px solid #eee; padding: 30px 24px; text-align: center; height: 100%; background: #fff; }
.culture-list .c-box:hover { border-color: #e5dbf5; box-shadow: 0 8px 24px rgba(85,50,139,.1); }
.culture-list .c-ico { width: 64px; height: 64px; margin: 0 auto 18px; background: linear-gradient(135deg, #55328b, #8f88b7); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.culture-list .c-ico svg { width: 32px; height: 32px; fill: #fff; }
.culture-list .c-box h3 { font-size: 19px; color: #55328b; margin-bottom: 12px; font-weight: bold; }
.culture-list .c-box p { color: #909098; line-height: 24px; font-size: 13px; }

/* 发展历程时间轴 */
.his_list { max-width: 1050px; margin: 30px auto; position: relative; padding: 30px 0; }
.his_list .line { position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 2px; margin: 0 auto; background: #e5dbf5; }
.his_list ul { position: relative; }
.his_list li { width: 45%; clear: both; float: left; position: relative; padding-right: 5%; text-align: right; margin-bottom: 24px; }
.his_list li h3 { font-size: 34px; color: #55328b; }
.his_list li:after { content: ''; width: 16px; height: 16px; background: #ffe800; border: 3px solid #55328b; border-radius: 50%; left: 100%; position: absolute; margin-left: -8px; top: 12px; }
.his_list li .txt { overflow: hidden; }
.his_list li .txt p { line-height: 24px; color: #909098; }
.his_list li:nth-child(2n) { float: right; padding-left: 5%; padding-right: 0; text-align: left; }
.his_list li:nth-child(2n):after { left: auto; right: 100%; margin-left: 0; margin-right: -8px; }

/* ---------- 产品列表 ---------- */
.news_list ul li { margin-top: 40px; }
.news_list ul li:after { content: ''; display: block; clear: both; }
.news_list ul li .pic { float: left; width: 300px; margin-right: 40px; }
.news_list ul li .pic img { display: block; width: 100%; height: 200px; object-fit: cover; }
.news_list ul li .web { overflow: hidden; }
.news_list ul li .web h3 { font-size: 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.news_list ul li .web h3 a { color: #55328b; }
.news_list ul li .web h3 a:hover { color: #391e63; }
.news_list ul li .web p { line-height: 26px; color: #777; height: 78px; overflow: hidden; margin-top: 18px; }
.news_list ul li .web .btn { padding: 0; margin-top: 18px; }
.news_list ul li .web .btn a { display: inline-block; }
.news_list ul li .web .btn label { display: inline-block; line-height: 42px; padding-left: 22px; color: #a083cc; margin-left: 24px; font-size: 13px; }

/* 分页 */
.pagesize { text-align: center; margin-top: 50px; }
.pagesize a { display: inline-block; margin: 0 6px; font-size: 16px; color: #262626; width: 40px; line-height: 40px; border: 1px solid #e5dbf5; }
.pagesize a:hover, .pagesize a.on { color: #fff; background: #55328b; border-color: #55328b; }

/* ---------- 产品 / 新闻 详情 ---------- */
.details { max-width: 1000px; margin: 0 auto; }
.details .tit { text-align: center; padding-bottom: 28px; border-bottom: 1px solid #e8e8e8; margin-bottom: 24px; }
.details .tit h1 { font-size: 28px; color: #391e63; font-weight: bold; margin-bottom: 16px; }
.details .tit p { text-align: center; font-size: 14px; color: #909098; }
.ser_box { position: relative; margin-bottom: 30px; }
.ser_box .pic { max-width: 50%; float: left; margin-right: 40px; }
.ser_box .pic img { display: block; width: 100%; }
.ser_box .web { overflow: hidden; }
.ser_box .web .top h3 { font-size: 26px; color: #55328b; margin-bottom: 16px; }
.ser_box .web .text { line-height: 28px; color: #666; }
.ser_box .web .text p { margin-bottom: 14px; }

/* 参数表 */
.param-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.param-table th, .param-table td { border: 1px solid #ece6f7; padding: 12px 16px; text-align: left; font-size: 14px; }
.param-table th { background: #faf6fe; color: #55328b; width: 28%; font-weight: bold; }
.param-table td { color: #666; }

/* 特点列表 */
.feature-list { margin: 24px 0; }
.feature-list .f-item { display: flex; align-items: flex-start; margin-bottom: 18px; }
.feature-list .f-ico { width: 50px; height: 50px; flex-shrink: 0; margin-right: 16px; background: linear-gradient(135deg, #55328b, #8f88b7); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.feature-list .f-ico svg { width: 24px; height: 24px; fill: #fff; }
.feature-list .f-text h4 { font-size: 16px; color: #391e63; margin-bottom: 6px; }
.feature-list .f-text p { color: #909098; line-height: 24px; }

/* 详情正文 */
.art-text { line-height: 28px; color: #555; font-size: 15px; }
.art-text h3 { font-size: 20px; color: #391e63; margin: 24px 0 14px; }
.art-text p { margin-bottom: 16px; }
.art-text .art-img { margin: 20px 0; }
.art-text .art-img img { width: 100%; max-height: 420px; object-fit: cover; }
.art-text .art-img.half { width: 48%; float: left; margin: 10px 4% 10px 0; }
.art-text .art-img.half + .clear { clear: both; }

.sub-tit { font-size: 22px; color: #391e63; margin: 30px 0 18px; padding-left: 14px; border-left: 4px solid #55328b; }

/* 上一篇 / 下一篇 */
.txt_cur { margin-top: 30px; padding-top: 24px; border-top: 1px solid #f0f0f0; }
.txt_cur:after { content: ''; display: block; clear: both; }
.txt_cur span { display: inline-block; max-width: 48%; margin-bottom: 8px; }
.txt_cur span.r { float: right; text-align: right; }
.txt_cur span a { display: inline-block; line-height: 38px; padding: 0 18px; border: 1px solid #e1e5e2; color: #505050; max-width: 90%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.txt_cur span a:hover { border-color: #55328b; color: #55328b; }

/* 相关产品 */
.rel-prod { margin-top: 40px; }

/* ---------- 联系我们 ---------- */
.information { max-width: 1100px; margin: 0 auto; }
.information .left { float: left; width: 49%; }
.information .left .box { border: 1px solid #e6e9ee; padding: 32px 40px; }
.information .left h3 { font-size: 20px; color: #391e63; margin-bottom: 20px; }
.information .left .list ul li { line-height: 52px; border-bottom: 1px solid #d4cce2; }
.information .left .list ul li:last-child { border-bottom: 0; }
.information .left .list ul li span { display: block; float: left; margin-right: 10px; color: #55328b; width: 60px; }
.information .left .list ul li .web { overflow: hidden; }
.information .left .list ul li .div_inp input,
.information .left .list ul li .div_inp textarea {
  width: 100%; height: 46px; line-height: 46px; border: none; background: transparent; color: #333;
}
.information .left .list ul li .div_inp textarea { height: 80px; line-height: 24px; resize: none; padding-top: 12px; }
.information .left .btn { padding: 0; margin-top: 24px; }
.information .left .btn a { margin: 0; }
.information .right { float: right; width: 49%; background: #f7f6fa; }
.information .right .box { padding: 32px 28px; }
.information .right h3 { font-size: 20px; color: #391e63; margin-bottom: 24px; }
.information .right .web p { margin-top: 26px; line-height: 30px; color: #555; }
.information .right .web p span { color: #55328b; font-weight: bold; }
.information .right .ewm { margin-top: 26px; }
.information .right .ewm:after { content: ''; display: block; clear: both; }
.information .right .ewm .pic { width: 130px; height: 130px; float: left; margin-right: 22px; }
.information .right .ewm .pic img { display: block; width: 100%; }
.information .right .ewm .text { overflow: hidden; line-height: 130px; color: #55328b; }
.addres { max-width: 1100px; margin: 28px auto 0; }
.addres img { display: block; width: 100%; }

/* ---------- 右侧悬浮工具栏 ---------- */
.full { position: fixed; top: 50%; right: 0; z-index: 1001; transform: translateY(-50%); }
.full ul li a { display: block; width: 52px; height: 52px; margin-bottom: 1px; position: relative; background: rgba(85,50,139,.85); }
.full ul li a:hover { background: #391e63; }
.full ul li a span { display: block; width: 52px; height: 52px; position: relative; }
.full ul li a span svg { width: 24px; height: 24px; fill: #fff; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.full ul li a label { display: none; position: absolute; right: 60px; top: 0; white-space: nowrap; line-height: 52px; color: #fff; background: #391e63; padding: 0 18px; }
.full ul li a:hover label { display: block; }
.full ul li a .lbl_img { padding: 6px; height: auto; line-height: normal; }
.full ul li a .lbl_img img { width: 100px; height: 100px; display: block; }

/* 返回顶部 */
.gotop { cursor: pointer; }

/* ---------- wow 淡入动画 ---------- */
.wow { visibility: hidden; }
.wow.fadeInUp { animation-name: fadeInUp; }
.wow.fadeInLeft { animation-name: fadeInLeft; }
.wow.fadeInRight { animation-name: fadeInRight; }
.wow.animated { visibility: visible; animation-duration: 1s; animation-fill-mode: both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* ===========================================================
   响应式
   =========================================================== */
@media only screen and (max-width: 1024px) {
  .page1_list li { width: 50%; }
  .prod-grid li { width: 50%; }
  .page_tit { margin-bottom: 36px; }
  .page { padding: 40px 0; }
  .team_list li { width: 50%; }
  .news .lt { width: 100%; float: none; margin: 0 0 20px; }
  .news .list { width: 100%; }
  .page2 .text { width: 80%; }
  .hj_owl .item { width: 25%; }
}

@media only screen and (max-width: 900px) {
  .tit_tag li { width: 180px; }
  .about_list .img { width: 50%; margin-right: 20px; }
  .ser_box .pic { max-width: 100%; float: none; margin: 0 0 20px; }
  .culture-list .item { width: 50%; }
  .information .right .ewm .text { line-height: 30px; padding-top: 20px; }
}

@media only screen and (max-width: 768px) {
  /* 移动端导航：汉堡菜单 */
  .menu {
    z-index: 1000; position: fixed; top: 60px; left: -100%; width: 80%; max-width: 320px;
    height: 100%; background: #fff; box-shadow: -3px 0 20px rgba(0,0,0,.15);
    transition: left .3s;
  }
  .menu.h_menu { left: 0; }
  .menu ul li { float: none; display: block; border-bottom: 1px solid #eee; margin: 0; }
  .menu ul li a { line-height: 48px; font-size: 16px; color: #46434a; padding: 0 24px; }
  .menu ul li:hover a, .menu ul li.on a { color: #55328b; border-bottom-color: transparent; background: #faf6fe; }
  .menu_wrap {
    display: block; position: absolute; top: 13px; right: 8px; width: 40px; height: 40px;
    cursor: pointer;
  }
  .menu_wrap span { display: block; width: 24px; height: 3px; background: #fff; position: absolute; left: 8px; transition: .3s; }
  .header1 .menu_wrap span { background: #55328b; }
  .menu_wrap span:nth-child(1) { top: 11px; }
  .menu_wrap span:nth-child(2) { top: 19px; }
  .menu_wrap span:nth-child(3) { top: 27px; }
  .menu_wrap.on span:nth-child(1) { top: 19px; transform: rotate(45deg); }
  .menu_wrap.on span:nth-child(2) { opacity: 0; }
  .menu_wrap.on span:nth-child(3) { top: 19px; transform: rotate(-45deg); }
  .header { line-height: 60px; }
  .header.fixed { background: rgba(40,20,70,.92); }
  .logo { height: 60px; }
  .logo .logo-ico { width: 38px; height: 38px; }
  .logo .brand-cn { font-size: 18px; }
  .top-phone { display: none; }

  .banner .item .img1 { height: 320px; }
  .banner .item .text h2 { font-size: 26px; }
  .banner .item .text p { font-size: 15px; }
  .banner_cur { display: none; }

  .page1_list li { width: 100%; }
  .prod-grid li { width: 50%; }
  .team_list li { width: 100%; }
  .page2 .text { width: 100%; }
  .page2 .stats li { width: 50%; }
  .hj_owl .item { width: 50%; }
  .news .list li { width: 100%; }

  .page_tit h3 { font-size: 24px; }
  .main_banner { height: auto; padding: 60px 0; }
  .main_banner h2 { font-size: 26px; }

  .crumb .ct h1 { font-size: 18px; }
  .crumb .weiz { display: none; }

  .about_list .img { width: 100%; margin: 0 0 16px; }
  .culture-list .item { width: 100%; }
  .his_list li { width: 100%; text-align: left; padding: 0 0 0 30px; margin-bottom: 18px; }
  .his_list li:nth-child(2n) { float: none; padding-left: 30px; padding-right: 0; }
  .his_list .line { left: 8px; margin: 0; }
  .his_list li:after { left: 0; margin-left: 0; }
  .his_list li:nth-child(2n):after { left: 0; right: auto; margin: 0; }

  .news_list ul li .pic { width: 100%; margin: 0 0 14px; }
  .information .left, .information .right { width: 100%; float: none; margin: 10px auto; }

  .footer .f-col, .footer .f-col.f-intro, .footer .f-col.f-contact { width: 100%; margin-bottom: 26px; padding: 0; }
  .art-text .art-img.half { width: 100%; margin: 10px 0; }
  .txt_cur span { max-width: 100%; }
  .full { display: none; }
}
