@charset "UTF-8";
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
a,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td,
section,
article,
aside,
header,
footer,
nav,
dialog,
figure,
hgroup {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #fff;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
ul,
ol,
li {
  list-style: none;
}
em,
i {
  font-style: normal;
}
img {
  border: 0;
}
input,
img {
  vertical-align: middle;
}
input:focus,
a:focus {
  outline: 0;
}
a,
a:hover {
  text-decoration: none;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
body {
  font-family: Microsoft Yahei, Arial, Helvetica, sans-serif;
}
.single-line {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
.relative {
  position: relative !important;
}
.none {
  display: none !important;
}
.pointer {
  cursor: pointer;
}
.overlay {
  pointer-events: none;
}
.left {
  float: left;
}
.right {
  float: right;
}
.bold {
  font-weight: bold;
}
.middle {
  vertical-align: middle !important;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.clearFloat {
  width: 0px;
  height: 0px;
  clear: both;
  visibility: hidden;
  display: block;
}
@media screen and (min-width: 901px) {
  .zzz {
    display: none;
  }
  .contentContainer {
    width: 1200px;
    margin: 0px auto;
  }
  .lmTitleContainer {
    text-align: center;
    padding-top: 60px;
    margin-bottom: 40px;
  }
  .lmTitleContainer > span {
    font-size: 32px;
    color: #000;
    border-bottom: 2px solid #94050c;
    line-height: 1.6;
    display: inline-block;
  }
  .headerContainer {
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
    z-index: 9999;
    width: 100%;
  }
  .headerContainer > div {
    width: 100%;
  }
  .headerContainer > div > i {
    display: none;
  }
  .headerContainer > div > span {
    padding-bottom: 5px;
    display: block;
    text-align: center;
    font-style: normal;
  }
  .headerContainer > div > span > span {
    padding-top: 10px;
    font-size: 60px;
    line-height: 1.4;
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
    font-weight: bolder;
    letter-spacing: 4px;
  }
  .headerContainer > div > b {
    display: none;
  }
  .headerContainer > div > div {
    width: 100%;
    padding-bottom: 2px;
  }
  .headerContainer > div > div > h1 {
    display: none;
  }
  .headerContainer > div > div > ul {
    padding: 0px;
    margin: 0px auto;
    display: block;
    width: 700px;
    display: flex;
    margin-bottom: 15px;
  }
  .headerContainer > div > div > ul > li {
    flex: 1;
    text-align: center;
    display: inline-block;
  }
  .headerContainer > div > div > ul > li > a {
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    color: #666;
    line-height: 2;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
  }
  .headerContainer > div > div > ul > li > a:hover,
  .headerContainer > div > div > ul > li .active {
    color: #000;
    border-bottom: 1px solid #94050c;
  }
  .mainBannerContainer > img {
    width: 100%;
  }
  .mainBannerContainer .item > img {
    width: 100%;
    min-height: 400px;
  }
  .aboutContainer {
    width: 1200px;
    margin: 0px auto;
    margin-bottom: 50px;
  }
  .aboutContainer > p {
    color: #666;
    font-size: 16px;
    text-indent: 26px;
    line-height: 1.8;
  }
  .worksContainer {
    width: 1200px;
    margin: 0px auto;
    margin-bottom: 50px;
  }
  .worksContainer > ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .worksContainer > ul > li {
    width: 33.3%;
    float: left;
    list-style: none;
  }
  .worksContainer > ul > li > div {
    margin: 15px;
    padding: 1px;
    cursor: pointer;
  }
  .worksContainer > ul > li > div > img {
    width: 100%;
    opacity: 0.8;
  }
  .worksContainer > ul > li > div > h1 {
    font-size: 16px;
    color: #000;
    line-height: 2;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
  }
  .worksContainer > ul > li > div > h2 {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    line-height: 2;
    /* 核心：限制显示 2 行 */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    /* 必须设置溢出隐藏 */
    overflow: hidden;
    /* 超出部分显示省略号... */
    text-overflow: ellipsis;
    /* 可选：修复部分浏览器间距问题 */
    word-break: break-all;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 15px;
  }
  .worksContainer > ul > li > div:hover {
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /*参数说明 投影方式 X轴偏移量 Y轴偏移量 阴影模糊半径 阴影扩展半径 阴影颜色*/
    transform: translateY(-5px);
  }
  .worksContainer > ul > li > div:hover > img {
    opacity: 1;
  }
  .serviceContainer .serviceContentContainer {
    display: flex;
    justify-content: space-between;
    height: 400px;
    align-items: center;
    /* 垂直 */
  }
  .serviceContainer .serviceContentContainer > div {
    flex: 1;
    height: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .serviceContainer .serviceContentContainer > div > div {
    padding: 100px;
  }
  .serviceContainer .serviceContentContainer > div > div > h2 {
    color: #aaa;
    font-size: 16px;
    line-height: 1.4;
    font-weight: normal;
  }
  .serviceContainer .serviceContentContainer > div > div > h1 {
    color: #000;
    font-size: 30px;
    line-height: 2;
    font-weight: normal;
  }
  .serviceContainer .serviceContentContainer > div > div > div {
    color: #777777;
    font-size: 14px;
    line-height: 2;
    font-weight: normal;
  }
  .faqContainer {
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('../images/faq/bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .faqContainer > div {
    width: 1200px;
    margin: 0px auto;
    /* 中间竖线 */
    /* 左右交替 */
    /* 中间圆点 */
    /* 选中高亮效果 */
  }
  .faqContainer > div > h1 {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.8;
    color: #777;
    text-indent: 30px;
  }
  .faqContainer > div .timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    z-index: 1;
  }
  .faqContainer > div .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 135px;
    bottom: 0;
    width: 1px;
    background-color: #ccc;
    transform: translateX(-50%);
  }
  .faqContainer > div .timeline-item {
    display: flex;
    position: relative;
    margin: 32px 0;
    padding: 16px 20px;
  }
  .faqContainer > div .timeline-date {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
    color: #aaa;
  }
  .faqContainer > div .timeline-date .day {
    font-size: 36px;
    font-weight: 300;
  }
  .faqContainer > div .timeline-date .year {
    font-size: 14px;
    margin-top: 6px;
    text-align: center;
  }
  .faqContainer > div .timeline-content {
    width: 100%;
    padding: 16px 20px;
    display: flex;
    align-items: center;
  }
  .faqContainer > div .timeline-content .text {
    font-size: 14px;
    line-height: 1.6;
  }
  .faqContainer > div .timeline-content .text strong {
    display: block;
    font-size: 16px;
    color: #444;
    margin-bottom: 4px;
  }
  .faqContainer > div .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 190px;
  }
  .faqContainer > div .timeline-item:nth-child(even) .timeline-date {
    justify-content: flex-start;
    padding-right: 0;
    order: 2;
  }
  .faqContainer > div .timeline-item:nth-child(even) .timeline-content {
    justify-content: flex-end;
    margin-right: 210px;
    text-align: right;
    order: 1;
  }
  .faqContainer > div .timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 40px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #ccc;
    transform: translateX(-50%);
    z-index: 1;
  }
  .faqContainer > div .timeline-item:hover .timeline-content {
    background-color: #777;
    color: #fff;
    border-radius: 4px;
  }
  .faqContainer > div .timeline-item:hover .timeline-content .text {
    color: #fff;
  }
  .faqContainer > div .timeline-item:hover .timeline-content .text strong {
    color: #fff;
  }
  .faqContainer > div .timeline-item:hover::after {
    background-color: #fff;
    border-color: #777;
    box-shadow: 0 0 0 3px #777;
  }
  .footerContainer {
    text-align: center;
    background-color: #000;
    color: #fff;
    line-height: 30px;
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 900px) {
  .headerContainer > div {
    width: 100%;
    background-color: transparent;
    z-index: 666;
  }
  .headerContainer > div > i {
    display: block;
    border-radius: 5px;
    text-align: center;
    padding: 5px 8px 5px 8px;
    margin-bottom: 10px;
  }
  .headerContainer > div > i > span {
    font-weight: normal;
    font-size: 24px;
    color: #333;
  }
  .headerContainer > div > span {
    text-align: center;
    display: block;
  }
  .headerContainer > div > span > span {
    padding-top: 10px;
    font-size: 60px;
    line-height: 1.4;
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
    font-weight: bolder;
    letter-spacing: 4px;
  }
  .headerContainer > div > b {
    float: left;
  }
  .headerContainer > div > b > img {
    height: 40px;
    margin-left: 6px;
  }
  .headerContainer > div > div {
    z-index: 999;
    position: fixed;
    width: 75%;
    height: 100%;
    left: -100%;
    top: 0;
    float: right;
    transition: left 0.5s ease;
    /* 定义过渡效果 */
    background-color: #000;
  }
  .headerContainer > div > div > h1 {
    text-align: right;
    margin-bottom: 20px;
  }
  .headerContainer > div > div > h1 > span {
    font-weight: normal;
    width: 40px;
    height: 40px;
    display: inline-block;
    font-size: 18px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
  }
  .headerContainer > div > div > ul > li {
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-top: 20px;
  }
  .headerContainer > div > div > ul > li > a {
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    color: #eee;
    line-height: 2;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
  }
  .headerContainer > div > div > ul > li > a:hover,
  .headerContainer > div > div > ul > li .active {
    color: #fff;
    border-bottom: 1px solid #d6d306;
  }
  .contentContainer {
    padding: 0 20px;
  }
  .lmTitleContainer {
    text-align: center;
    padding-top: 60px;
    margin-bottom: 40px;
  }
  .lmTitleContainer > span {
    font-size: 32px;
    color: #000;
    border-bottom: 2px solid #94050c;
    line-height: 1.6;
    display: inline-block;
  }
  .aboutContainer {
    padding: 0 20px;
    margin-bottom: 50px;
  }
  .aboutContainer > p {
    color: #666;
    font-size: 14px;
    text-indent: 26px;
    line-height: 1.8;
  }
  .worksContainer {
    padding: 0 20px;
    margin-bottom: 50px;
  }
  .worksContainer > ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  .worksContainer > ul > li {
    list-style: none;
  }
  .worksContainer > ul > li > div {
    cursor: pointer;
  }
  .worksContainer > ul > li > div > img {
    width: 100%;
    opacity: 0.8;
  }
  .worksContainer > ul > li > div > h1 {
    font-size: 16px;
    color: #000;
    line-height: 2;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
  }
  .worksContainer > ul > li > div > h2 {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 15px;
  }
  .worksContainer > ul > li > div:hover {
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /*参数说明 投影方式 X轴偏移量 Y轴偏移量 阴影模糊半径 阴影扩展半径 阴影颜色*/
    transform: translateY(-5px);
  }
  .worksContainer > ul > li > div:hover > img {
    opacity: 1;
  }
  .serviceContainer .serviceContentContainer {
    align-items: center;
    /* 垂直 */
  }
  .serviceContainer .serviceContentContainer > div {
    min-height: 200px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .serviceContainer .serviceContentContainer > div > div {
    padding: 10px;
  }
  .serviceContainer .serviceContentContainer > div > div > h2 {
    color: #aaa;
    font-size: 16px;
    line-height: 1.4;
    font-weight: normal;
  }
  .serviceContainer .serviceContentContainer > div > div > h1 {
    color: #000;
    font-size: 30px;
    line-height: 2;
    font-weight: normal;
  }
  .serviceContainer .serviceContentContainer > div > div > div {
    color: #777777;
    font-size: 14px;
    line-height: 2;
    font-weight: normal;
  }
  .serviceContainer .serviceContentContainer .ttt {
    display: none;
  }
  .faqContainer {
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('../images/faq/bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .faqContainer > div > h1 {
    font-size: 15px;
    font-weight: normal;
    line-height: 1.8;
    color: #777;
    text-indent: 30px;
    padding: 0px 10px;
    margin-bottom: 20px;
  }
  .timeline-item {
    position: relative;
    margin: 10px;
    padding: 16px 20px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /*参数说明 投影方式 X轴偏移量 Y轴偏移量 阴影模糊半径 阴影扩展半径 阴影颜色*/
    border-radius: 5px;
  }
  .timeline-date {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
    color: #aaa;
    display: none;
  }
  .timeline-date .day {
    font-size: 36px;
    font-weight: 300;
  }
  .timeline-date .year {
    font-size: 14px;
    margin-top: 6px;
    text-align: center;
  }
  .timeline-content {
    padding: 10px 20px;
    align-items: center;
  }
  .timeline-content .text {
    font-size: 14px;
    line-height: 1.6;
  }
  .timeline-content .text strong {
    display: block;
    font-size: 16px;
    color: #444;
    margin-bottom: 4px;
  }
  .footerContainer {
    text-align: center;
    background-color: #000;
    color: #fff;
    line-height: 30px;
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .footerContainer > span {
    display: block;
  }
}
