html * {
  box-sizing: border-box;
  outline: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html,
body {
  font-family: Arial, 'Microsoft YaHei', 'PingFang SC', 'STHeitiSC-Light', 'Helvetical-Light', sans-serif;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
input,
select,
textarea {
  font-size: 100%;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
}
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
del {
  text-decoration: line-through;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}
q:before,
q:after {
  content: '';
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
a:hover {
  text-decoration: none;
}
ins,
a {
  text-decoration: none;
}
a {
  color: #91715c;
  text-decoration: none;
}
a:hover {
  color: #91715c;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.fn {
  float: none;
}
.psf {
  position: fixed;
}
.psr {
  position: relative;
}
.psa {
  position: absolute;
}
.pss {
  position: static;
}
.db {
  display: block;
}
.dn {
  display: none;
}
.dil {
  display: inline;
}
.dilb {
  display: inline-block;
}
.dt {
  display: table;
}
.dtc {
  display: table-cell;
}
.tl {
  text-align: left;
}
.tr {
  text-align: right;
}
.tc {
  text-align: center;
}
.tj {
  text-align: justify;
}
.vm {
  vertical-align: middle;
}
.vt {
  vertical-align: top;
}
.oh {
  overflow: hidden;
}
.osx {
  overflow-x: scroll;
}
.osy {
  overflow-y: scroll;
}
.boxs {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.fi {
  font-family: inherit;
}
.ff {
  font-family: '宋体';
}
.overellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cfix:after {
  clear: both;
  display: block;
  content: "";
  height: 0;
  font-size: 0;
  visibility: hidden;
}
.imgRes {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  width: auto;
  max-width: 100%;
}
/*
  timing:linear,ease,ease-in,ease-out,ease-in-out,cubic-bezier()
  iteration:infinite,n
  direction:normal,reverse,alternate,alter-reverse,inherit
*/
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
/* 布局边界                                文本颜色                                                                                     */
.co-wrapper {
  padding: 0 40px;
  margin: 0 auto;
}
/* 中间线条                                字母大写                               字符间距                              字体加粗                        */
.mi-line {
  text-decoration: line-through;
}
.up-word {
  text-transform: uppercase;
}
.wo-word {
  word-spacing: 5px;
}
.sp-word {
  letter-spacing: 5px;
}
.bo-word {
  font-weight: bold;
}
/* 标题颜色                                文本颜色                                                                                     */
.co-title {
  color: #222221;
}
.co-word {
  color: #010101;
}
/* 背景颜色                                                                                                                             */
.co-bgOne {
  background-color: #222221;
}
.split-line {
  display: block;
  background-color: #b6b3b3;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  height: 1px;
  position: relative;
}
.split-line:before {
  content: '';
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  display: block;
  width: 0px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0px;
  left: 0;
}
.hover-line:hover .split-line:before {
  width: 100%;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.circle {
  display: inline-block;
  vertical-align: middle;
  width: 46px;
  height: 46px;
  position: relative;
}
.circle svg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.circle svg.svg-cover {
  stroke-dasharray: 0, 100%;
  stroke-dashoffset: 0;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.circle:hover svg.svg-cover {
  stroke-dasharray: 100%, 0;
  stroke-dashoffset: 0;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.side-panel {
  position: relative;
  position: fixed;
  width: 85px;
  right: 0;
  top: 50%;
  z-index: 100000;
  font-size: 14px;
}
.side-panel:after {
  content: 'Express Lane';
  white-space: nowrap;
  transform-origin: unset;
  color: #9f1b38;
  position: absolute;
  right: -30px;
  top: 35px;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.side-panel .side-item {
  position: relative;
}
.side-panel .side-item p,.side-panel .side-item a {
	display:block;
  margin-bottom: 2px;
  width: 65px;
  background-color: #44f0f0;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  text-align: center;
  color: #9f1b38;
  padding-top: 7px;
  padding-bottom: 7px;
}
.side-panel .side-item p:hover,.side-panel .side-item a:hover {
  background-color: #eee;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.side-panel .side-item p svg,.side-panel .side-item a svg  {
  color: #9f1b38;
  font-size: 34px;
}
.side-panel .side-phone {
  width: 65px;
  position: absolute;
  right: 20px;
  padding: 5px 0;
  background-color: #31302e;
  color: #fff;
  font-size: 20px;
}
.side-panel .side-phone span {
  font-size: 14px;
  display: inline-block;
  width: 60px;
  text-align: center;
  vertical-align: middle;
}
.side-panel .side-phone i {
  display: none;
  vertical-align: middle;
  white-space: nowrap;
  position: absolute;
  left: 75px;
  top: 20px;
}
.side-panel .side-phone:hover {
  width: 240px;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.side-panel .side-phone:hover i {
  display: inline-block;
}
.middle-panel {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10000;
  text-align: center;
  color: #31302e;
  width: 580px;
  height: 270px;
  background-color: #44f0f0;
}
.middle-panel .close {
  padding-bottom: 40px;
  padding-top: 15px;
  padding-right: 15px;
  text-align: right;
  color: #fff;
}
.middle-panel h3 {
  font-size: 48px;
  font-weight: normal;
}
.middle-panel hr {
  background-color: #fff;
  border: none;
  height: 1px;
  width: 100px;
  margin: 10px auto;
}
.middle-panel h6 {
  font-size: 18px;
  padding: 10px 0;
}
.middle-panel button {
  font-size: 20px;
  width: 230px;
  line-height: 45px;
  background-color: #9f1b38;
  border: none;
  color: #fff;
  border-radius: 5px;
}
.page-title {
  text-decoration: line-through;
  text-transform: uppercase;
  color: #222221;
  letter-spacing: 5px;
  position: relative;
  font-size: 36px;
  padding-top: 15px;
  line-height: 36px;
  padding-bottom: 15px;
  text-align: center;
}
.page-title:hover {
  color: #9f1b38;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.page-title:after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background-color: #e4e4e4;
  margin: auto;
}
.sub-btn {
  width: 220px;
  height: 40px;
  cursor: pointer;
  background-color: #fdc72e;
  color: #222221;
  text-align: center;
  border: none;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  float: right;
}
.sub-btn img {
  vertical-align: middle;
  padding-right: 10px;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.sub-btn:hover {
  background-color: #fff;
}
.sub-btn:hover img {
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -o-transform: translateX(20px);
  transform: translateX(20px);
  padding-right: 30px;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.news-more-btn {
  width: 220px;
  height: 40px;
  cursor: pointer;
  display: block;
  line-height: 40px;
  margin-right: 4.6%;
  color: #9f1b38;
  text-align: right;
  border: none;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  float: right;
}
.news-more-btn img {
  vertical-align: middle;
  padding-right: 10px;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.top-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #727171;
}
.top-line:after {
  content: '';
  display: block;
  position: absolute;
  height: 1px;
  background-color: #ffff00;
  box-shadow: 0 0 8px rgba(255, 255, 0, 0.8);
  width: 0;
  left: 0;
  top: 0px;
}
.hover-line:hover .top-line:after {
  width: 100%;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.top-line1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #dadada;
}
.top-line1:after {
  content: '';
  display: block;
  position: absolute;
  height: 1px;
  background-color: #9f1b38;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  width: 0;
  left: 0;
  top: 0px;
}
.hover-line:hover .top-line1:after {
  width: 100%;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.bg01:after {
  background-color: rgba(3, 62, 74, 0.8);
}
.bg02:after {
  background-color: rgba(230, 49, 109, 0.8);
}
.bg03:after {
  background-color: rgba(68, 240, 240, 0.8);
}
.bgC-change {
  overflow: hidden;
}
.bgC-change:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 4;
}
.bgC-change:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
  overflow: hidden;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: 0.72s 0.8s;
  -moz-transition: 0.72s 0.8s;
  -o-transition: 0.72s 0.8s;
  transition: 0.72s 0.8s;
  transition-delay: 0;
}
.bgC-change:hover:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.72s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.72s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.72s cubic-bezier(0.77, 0, 0.175, 1);
}
.co-foot.black {
  background-color: #222221;
}
.co-foot {
  padding-left: 0;
  padding-right: 0;
  padding-top: 50px;
  padding-bottom: 20px;
  line-height: 20px;
  position: relative;
  z-index: 2;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #727171;
}
.co-link {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
 .co-link .co-img-link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 605px;
  height: 250px;
}
 .co-link .link-close-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 200px;
}
 .co-link .co-link-tel {
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.co-foot a {
  color: #727171;
}
.co-foot a:hover {
  color: #9f1b38;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.co-foot ul {
  width: 437px;
}
.co-foot li {
  position: relative;
  padding-top: 10px;
  padding-bottom: 20px;
}
.co-foot .co-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.co-foot .co-wrapper .fo-m {
  margin: auto;
  text-align: center;
  left: 0;
  right: 0;
  width: 89px;
}
.co-foot .co-wrapper .fo-m:hover .toTop-line {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.co-foot .fo-l {
  padding-top: 20px;
  width: 400px;
  position: relative;
}
.co-foot .fo-l .fo-contact {
  position: absolute;
  color: #9f1b38;
  font-size: 18px;
  width: 100px;
  text-align: center;
  right: 0;
  top: -10px;
}
.co-foot .fo-r {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 400px;
  text-align: right;
}
.co-foot .fo-r .fo-logo .top-line {
  width: 240px;
  top: 15px;
  right: 195px;
  left: auto;
}
.co-foot .fo-r .fo-tel {
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  padding: 8px 0;
  font-weight: 300;
  margin-top: 10px;
  width: 400px;
}
.co-foot .fo-r .fo-tel .free-tips {
  font-size: 18px;
}
.co-foot .fo-r .fo-history {
  font-size: 12px;
  line-height: 1.8;
}
.co-foot .fo-r .fo-classify {
  padding-top: 14px;
  position: relative;
  width: 400px;
  float: right;
}
.co-foot .fo-r .fo-classify a {
  padding-left: 10px;
  font-weight: 600;
}
.co-foot .fo-r .fo-classify a:hover {
  color: #9f1b38;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.co-foot .copyright {
  padding: 0 40px;
  font-size: 12px;
  text-align: left;
}
.co-foot .copyright a {
  color: #3e3a3a;
}
.nav-btn.white span {
  color: #fff;
}
.nav-btn.white b {
  color: #fff;
}
.nav-btn.white i b {
  background-color: #fff;
}
.nav-btn.white i:before,
.nav-btn.white i:after {
  background-color: #fff;
}
.nav-btn.black span {
  color: #000;
}
.nav-btn.black b {
  color: #000;
}
.nav-btn.black i b {
  background-color: #000;
}
.nav-btn.black i:before,
.nav-btn.black i:after {
  background-color: #000;
}
.nav-btn {
  float: right;
  height: 60px;
  padding-top: 18px;
}
.nav-btn.hidden i b {
  visibility: hidden;
}
.nav-btn.hidden i:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: 20% 100%;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.nav-btn.hidden i:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transform-origin: 20% 100%;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.nav-btn span {
  visibility: hidden;
  display: inline-block;
  vertical-align: middle;
  padding-right: 10px;
  color: #fff;
}
.nav-btn b {
  color: #fff;
  font-weight: 300;
}
.nav-btn i {
  display: inline-block;
  vertical-align: middle;
}
.nav-btn i b {
  display: block;
  width: 50px;
  height: 1px;
  background-color: #fff;
  margin: 10px 0;
}
.nav-btn i:before,
.nav-btn i:after {
  content: '';
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  display: block;
  width: 50px;
  height: 1px;
  background-color: #fff;
}
.navigation .nav-select .logo {
  position: fixed;
  left: 40px;
  top: 15px;
  z-index: 100;
}
.navigation .nav-select .nav-btn {
  position: fixed;
  right: 40px;
  z-index: 100;
}
.navigation .nav-content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 60px;
  padding-right: 40px;
  background-color: #9f1b38;
  z-index: 99;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform 0.72s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.72s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.72s cubic-bezier(0.77, 0, 0.175, 1);
}
.navigation .nav-content.show {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.navigation .nav-content .navc-txt {
  text-align: right;
  padding-right: 10px;
}
.navigation .nav-content .navc-txt p {
  color: #221815;
  font-size: 12px;
  padding-bottom: 5px;
}
.navigation .navc-wrap {
  font-size: 30px;
  width: 130px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 370px;
}
.navigation .navc-wrap li {
  padding-top: 20px;
  padding-bottom: 20px;
}
.navigation .navc-wrap li a {
  color: #221815;
  display: block;
  width: 100%;
}
.navigation .navc-wrap li a:hover .nw-arrow b {
  width: 67px;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.navigation .navc-wrap li a:hover .nw-arrow:after,
.navigation .navc-wrap li a:hover .nw-arrow:before {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.navigation .navc-wrap li a:hover span {
  -webkit-transform: translate3d(75px, 0, 0);
  -moz-transform: translate3d(75px, 0, 0);
  -ms-transform: translate3d(75px, 0, 0);
  -o-transform: translate3d(75px, 0, 0);
  transform: translate3d(75px, 0, 0);
  color: #fff;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.navigation .navc-wrap li a span {
  display: inline-block;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  position: absolute;
  left: 0;
}
.navigation .navc-wrap li .nw-arrow {
  display: inline-block;
  width: 67px;
  position: relative;
  vertical-align: middle;
}
.navigation .navc-wrap li .nw-arrow:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navigation .navc-wrap li .nw-arrow:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navigation .navc-wrap li .nw-arrow:after,
.navigation .navc-wrap li .nw-arrow:before {
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  content: '';
  transform-origin: right;
  display: block;
  width: 10px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0);
}
.navigation .navc-wrap li .nw-arrow b {
  display: block;
  width: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.i-banner {
  position: relative;
}
.i-banner:after {
  content: '';
  display: block;
  padding-top: 56.25%;
}
.i-banner .video-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.i-banner .video-wrap video {
  display: block;
  width: 100%;
}
.i-banner .video-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.i-banner .video-cover .line line {
  stroke: #e7b947;
  stroke-width: 1;
  animation: line;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
}
.i-banner .video-cover .line line.line9,
.i-banner .video-cover .line line.line10 {
  animation-delay: 1s;
  animation-fill-mode: backwards;
}
.i-banner .video-cover .text {
  color: #e7b947;
  text-align: center;
  font-size: 26px;
  font-weight: normal;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.i-banner .video-cover .text .little {
  font-size: 20px;
}
@keyframes line {
  from {
    stroke-dasharray: 0 100%;
  }
  to {
    stroke-dasharray: 100% 0;
  }
}
.i-banner .video-cover .txt {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.i-banner .video-cover .bird {
  position: absolute;
  left: -10px;
  bottom: 68px;
}
.i-banner .video-cover .img-ban {
  width: 401px;
  height: 400px;
  position: absolute;
  top: 21%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.i-banner .video-cover .main-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.index {
  position: relative;
  z-index: 2;
}
.index .i-news {
  background-color: #9f1b38;
  position: relative;
  height: 600px;
}
.index .i-news:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 60px;
}
.index .i-news .in-l {
  position: absolute;
  background-color: #fff;
  width: 66.7%;
  height: 510px;
  z-index: 2;
  padding-top: 60px;
}
.index .i-news .in-l ul {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
}
.index .i-news .in-l ul li {
  padding-bottom: 57px;
  padding-left: 4.6%;
  padding-right: 4.6%;
  width: 50%;
}
.index .i-news .in-l .inl-date {
  color: #c9caca;
  font-size: 14px;
  position: relative;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  width: 100%;
  max-width: 450px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dadada;
}
.index .i-news .in-l .inl-date:hover {
  -webkit-transform: translateX(15px);
  -moz-transform: translateX(15px);
  -ms-transform: translateX(15px);
  -o-transform: translateX(15px);
  transform: translateX(15px);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  color: #9f1b38;
}
.index .i-news .in-l .inl-date:after {
  content: 'O n e';
  color: #9f1b38;
  background-color: #fff;
  font-weight: 600;
  position: absolute;
  right: 0;
  bottom: -12px;
  font-size: 18px;
}
.index .i-news .in-l .inl-title {
  color: #595757;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 12px;
  padding-bottom: 22px;
}
.index .i-news .in-l .inl-title:before {
  content: '>';
  color: #9f1b38;
}
.index .i-news .in-l .inl-info {
  color: #9fa0a0;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-bottom: 20px;
}
.index .i-news .in-l .inl-more {
  color: #c9caca;
  font-size: 14px;
}
.index .i-news .in-l .inl-more:hover {
  color: #9f1b38;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.index .i-news .in-r {
  position: absolute;
  color: #fff;
  width: 33.3%;
  z-index: 1;
  height: 100%;
  right: 0;
  top: 0;
}
.index .i-news .in-r .inr-content {
  padding-top: 130px;
  margin: 0 auto;
  width: 260px;
}
.index .i-news .in-r .inr-content .circle-pd {
  padding-bottom: 20px;
}
.index .i-partner {
  padding-top: 38.54%;
  position: relative;
}
.index .i-partner:after {
  clear: both;
  display: block;
  content: "";
  height: 0;
  font-size: 0;
  visibility: hidden;
}
.index .i-partner .ip-l {
  width: 66.67%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 5%;
  padding-bottom: 5%;
  padding-left: 2%;
  padding-right: 5%;
  height: 100%;
  background: rgba(49, 48, 46, 0.8);
}
.index .i-partner .ip-l:after {
  clear: both;
  display: block;
  content: "";
  height: 0;
  font-size: 0;
  visibility: hidden;
}
.index .i-partner .ip-l .iplt-en {
  font-size: 18px;
  color: #9f1b38;
  text-decoration: line-through;
  padding-bottom: 15px;
}
.index .i-partner .ip-l .iplt-cn {
  font-size: 24px;
  color: #dadada;
  position: relative;
  padding-top: 15px;
  padding-bottom: 20px;
}
.index .i-partner .ip-l .iplt-info {
  font-size: 14px;
  color: #dadada;
  position: relative;
  padding-top: 10px;
}
.index .i-partner .ip-l .ipl-txt {
  width: 260px;
  float: left;
}
.index .i-partner .ipl-logo {
  padding-left: 37%;
  text-align: center;
}
.index .i-partner .ipl-logo table {
  width: 100%;
}
.index .i-partner .ipl-logo table tr {
  border-bottom: 1px solid #727171;
  padding-top: 2%;
  padding-bottom: 2%;
}
.index .i-partner .ipl-logo table td {
  padding-top: 4%;
  padding-bottom: 4%;
}
.index .i-partner .ip-r {
  background-color: #31302e;
  width: 33.33%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.index .i-partner .ip-r .ipr-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  padding-top: 15%;
  padding-left: 5%;
  padding-right: 5%;
  color: #fff;
}
.index .i-partner .ip-r .ipr-title {
  color: #9f1b38;
  font-size: 12px;
  text-decoration: line-through;
  padding-top: 30px;
  padding-bottom: 15px;
}
.index .i-partner .ip-r h1 {
  font-size: 24px;
  position: relative;
  width: 200px;
  font-weight: normal;
  padding-bottom: 30px;
  padding-top: 14px;
}
.index .i-partner .ip-r form {
  color: #9fa0a0;
}
.index .i-partner .ip-r form input {
  background: none;
  border: none;
  color: #9fa0a0;
}
.index .i-partner .ip-r form textarea {
  background: none;
  width: 100%;
  border: 1px solid #9fa0a0;
  border-radius: 5px;
  padding: 10px;
  color: #9fa0a0;
}
.index .i-partner .ip-r form label {
  display: block;
  padding-bottom: 5%;
  position: relative;
  padding-top: 10px;
}
.index .i-case .ic-nav {
  position: relative;
  height: 88px;
  background-color: #9f1b38;
  color: #fff;
  padding-left: 100px;
  padding-right: 100px;
}
.index .i-case .ic-nav:after {
  position: absolute;
  width: 360px;
  bottom: 100%;
  left: 0;
  content: '';
  display: block;
  height: 60px;
  background-color: #9f1b38;
}
.index .i-case .ic-nav .icn-l {
  padding-top: 13px;
  float: left;
}
.index .i-case .ic-nav .icn-l b {
  text-decoration: line-through;
}
.index .i-case .ic-nav .icn-r {
  float: right;
  text-align: right;
  padding-top: 40px;
}
.index .i-case .ic-nav .icn-r a {
  font-size: 18px;
  color: #fff;
  padding-left: 25px;
  padding-bottom: 10px;
  cursor: pointer;
  border-bottom: 1px solid #9f1b38;
}
.index .i-case .ic-nav .icn-r a.active {
  border-color: #ce7133;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.index .i-design {
  position: relative;
  width: 100%;
  min-width: 1200px;
  padding-top: 56.25%;
}
.index .i-design .id-l {
  width: 33%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #9f1b38;
}
.index .i-design .id-l .idl-wrap {
  color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  max-width: 500px;
  height: 500px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.index .i-design .id-l .idl-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.index .i-design .id-l .idl-wrap .split-line {
  margin-top: 15px;
  margin-bottom: 15px;
}
.index .i-design .id-l .idl-wrap h6 {
  font-size: 18px;
  text-decoration: line-through;
  font-weight: normal;
  letter-spacing: 5px;
}
.index .i-design .id-l .idl-wrap .idl-txt {
  font-size: 12px;
  line-height: 30px;
}
.index .i-design .id-l .idl-wrap .idl-circle {
  padding-top: 40px;
  padding-bottom: 20px;
}
.index .i-design .id-r {
  width: 67%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.index .i-design .id-r .idr-t {
  width: 100%;
  height: 50%;
  background-color: #fdc72e;
  position: absolute;
  left: 0;
  top: 0;
}
.index .i-design .id-r .idr-t .idrt-wrap {
  width: 152px;
  height: 152px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.index .i-design .id-r .idr-t .idrt-wrap:hover p {
  opacity: 0;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.index .i-design .id-r .idr-t .idrt-wrap:hover a {
  opacity: 1;
  z-index: 10;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.index .i-design .id-r .idr-t .idrt-wrap:hover .dirt-l {
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -o-transform: translateX(20px);
  transform: translateX(20px);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.index .i-design .id-r .idr-t .idrt-wrap:hover .dirt-r {
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -o-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.index .i-design .id-r .idr-t .idrt-wrap:after {
  content: '';
  display: block;
  border: 2px solid #9f1b38;
  width: 100%;
  height: 100%;
  position: absolute;
}
.index .i-design .id-r .idr-t .idrt-wrap p {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  width: 140px;
  height: 140px;
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 18px;
  color: #fff;
  background-color: #9f1b38;
  text-align: center;
  padding-top: 50px;
  text-decoration: underline;
}
.index .i-design .id-r .idr-t .idrt-wrap a {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 67px;
  margin: 0 auto;
  background-color: #fff;
  text-align: center;
  width: 126px;
  height: 27px;
  line-height: 27px;
  color: #9f1b38;
}
.index .i-design .id-r .idr-t .idrt-wrap .dirt-l {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  position: absolute;
  right: 100%;
  font-size: 14px;
  width: 256px;
  top: 70px;
  color: #221815;
  height: 20px;
}
.index .i-design .id-r .idr-t .idrt-wrap .dirt-l:after {
  content: '';
  display: block;
  width: 60%;
  background-color: #9f1b38;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 9px;
}
.index .i-design .id-r .idr-t .idrt-wrap .dirt-r {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  position: absolute;
  left: 100%;
  font-size: 14px;
  width: 256px;
  top: 70px;
  color: #221815;
  height: 20px;
  text-align: right;
}
.index .i-design .id-r .idr-t .idrt-wrap .dirt-r:after {
  content: '';
  display: block;
  width: 60%;
  background-color: #9f1b38;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 9px;
}
.index .i-design .id-r .idr-b {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.index .i-design .id-r .idr-b .idrb-l {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.index .i-design .id-r .idr-b img {
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.index .i-design .id-r .idr-b .idrb-r {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
}
.index .i-design .id-r .idr-b .idrb-r .idrbr-t {
  width: 100%;
  height: 50%;
  position: absolute;
  right: 0;
  top: 0;
}
.index .i-design .id-r .idr-b .idrb-r .idrbr-b {
  width: 100%;
  height: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.index .i-design .id-r .idr-b .idr-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 6;
}
.index .i-design .id-r .idr-b .idr-cover a {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-right: 15px;
  line-height: 30px;
  color: #fff;
  right: 0;
  text-align: right;
  font-size: 14px;
}
.index .i-design .id-r .idr-b .idr-cover a span {
  font-size: 12px;
}
.index .i-design .id-r .idr-b .idr-cover a span span {
  color: #9f1b38;
}
.index .i-design .id-r .idr-b .idr-cover a:hover span {
  color: #9f1b38;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.index .i-design .id-r .idr-b .idr-cover .idrc-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  margin: auto;
  text-align: center;
  color: #fff;
  height: 50px;
  line-height: 1.5;
  word-break: keep-all;
  white-space: nowrap;
}
.index .i-design .id-r .idr-b .idr-cover .idrc-text .en {
  font-size: 18px;
}
.index .i-design .id-r .idr-b .idr-cover .idrc-text .cn {
  font-size: 14px;
}
.index .i-design .id-r .idr-b .idr-cover .idrc-text:hover:before {
  -webkit-transform: translate(25px, -25px) rotate(-45deg);
  -moz-transform: translate(25px, -25px) rotate(-45deg);
  -ms-transform: translate(25px, -25px) rotate(-45deg);
  -o-transform: translate(25px, -25px) rotate(-45deg);
  transform: translate(25px, -25px) rotate(-45deg);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  background-color: #fff;
}
.index .i-design .id-r .idr-b .idr-cover .idrc-text:hover:after {
  -webkit-transform: translate(-25px, 25px) rotate(-45deg);
  -moz-transform: translate(-25px, 25px) rotate(-45deg);
  -ms-transform: translate(-25px, 25px) rotate(-45deg);
  -o-transform: translate(-25px, 25px) rotate(-45deg);
  transform: translate(-25px, 25px) rotate(-45deg);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  background-color: #fff;
}
.index .i-design .id-r .idr-b .idr-cover .idrc-text:before {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  display: block;
  content: '';
  position: absolute;
  right: -60px;
  top: -30px;
  width: 80px;
  height: 1px;
  background-color: #9a9999;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.index .i-design .id-r .idr-b .idr-cover .idrc-text:after {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  display: block;
  content: '';
  position: absolute;
  left: -60px;
  bottom: -30px;
  width: 80px;
  height: 1px;
  background-color: #9a9999;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.co-foot-link {
  position: relative;
  height: 200px;
}
.co-foot-link .idr-t {
  width: 100%;
  height: 100%;
  background-color: #fdc72e;
  position: absolute;
  left: 0;
  top: 0;
}
.co-foot-link .idr-t .idrt-wrap {
  width: 152px;
  height: 152px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.co-foot-link .idr-t .idrt-wrap:hover p {
  opacity: 0;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.co-foot-link .idr-t .idrt-wrap:hover a {
  opacity: 1;
  z-index: 10;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.co-foot-link .idr-t .idrt-wrap:hover .dirt-l {
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -o-transform: translateX(20px);
  transform: translateX(20px);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.co-foot-link .idr-t .idrt-wrap:hover .dirt-r {
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -o-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.co-foot-link .idr-t .idrt-wrap:after {
  content: '';
  display: block;
  border: 2px solid #9f1b38;
  width: 100%;
  height: 100%;
  position: absolute;
}
.co-foot-link .idr-t .idrt-wrap p {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  width: 200px;
  height: 80px;
  position: absolute;
  left: -22px;
  top: 38px;
  font-size: 18px;
  color: #fff;
  background-color: #9f1b38;
  text-align: center;
  padding-top: 28px;
  text-decoration: underline;
}
.co-foot-link .idr-t .idrt-wrap .get-more {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 67px;
  margin: 0 auto;
  background-color: #fff;
  text-align: center;
  width: 126px;
  height: 27px;
  line-height: 27px;
  color: #9f1b38;
}
.co-foot-link .idr-t .idrt-wrap .dirt-l {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  position: absolute;
  right: 100%;
  font-size: 14px;
  width: 256px;
  top: 70px;
  color: #221815;
  height: 20px;
}
.co-foot-link .idr-t .idrt-wrap .dirt-l a {
  cursor: pointer;
  color: #221815;
}
.co-foot-link .idr-t .idrt-wrap .dirt-l:after {
  content: '';
  display: block;
  width: 60%;
  background-color: #9f1b38;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 9px;
}
.co-foot-link .idr-t .idrt-wrap .dirt-r {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  position: absolute;
  left: 100%;
  font-size: 14px;
  width: 256px;
  top: 70px;
  color: #221815;
  height: 20px;
  text-align: right;
}
.co-foot-link .idr-t .idrt-wrap .dirt-r a {
  cursor: pointer;
  color: #221815;
}
.co-foot-link .idr-t .idrt-wrap .dirt-r:after {
  content: '';
  display: block;
  width: 60%;
  background-color: #9f1b38;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 9px;
}
.ca-item {
  overflow: hidden;
  display: none;
}
.ca-item.active {
  display: block;
}
.ca-item:after {
  clear: both;
  display: block;
  content: "";
  height: 0;
  font-size: 0;
  visibility: hidden;
}
.ca-item li {
  position: relative;
  float: left;
  border-bottom: 1px solid #c9caca;
  cursor: pointer;
  width: 33.3333%;
  padding-top: 14.229%;
}
.ca-item li .cai-img,
.ca-item li .cai-logo,
.ca-item li .cai-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  overflow: hidden;
}
.ca-item li .cai-img {
  z-index: 1;
}
.ca-item li .cai-img img {
  width: 100%;
  height: auto;
}
.ca-item li .cai-logo {
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.8);
}
.ca-item li .cai-logo img {
  width: auto;
  height: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  margin: auto;
}
.ca-item li .cai-cover {
  z-index: 3;
  opacity: 0;
  background-color: #fdc72e;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ca-item li .cai-cover:hover {
  opacity: 1;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ca-item li .cai-cover .caic-content {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  height: 150px;
  position: absolute;
  margin: auto;
  text-align: center;
}
.ca-item li .cai-cover .caic-content .polygon {
  margin: auto;
  position: relative;
  width: 133px;
  height: 133px;
  text-align: center;
  padding-top: 40px;
}
.ca-item li .cai-cover .caic-content .polygon:after {
  background: url("../img/eightPolygon.png") no-repeat center center;
  content: '';
  display: block;
  height: 133px;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 133px;
}
.ca-item li .cai-cover .caic-content .polygon:before {
  background: url("../img/eightPolygon.png") no-repeat center center;
  content: '';
  display: block;
  height: 133px;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 133px;
}
.ca-item li .cai-cover .caic-content .polygon:hover:before {
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
  transform: rotate(10deg);
}
.ca-item li .cai-cover .caic-content .polygon:hover:after {
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
  transform: rotate(-10deg);
}
.ca-item li .cai-cover .caic-content .polygon .f01 {
  font-size: 18px;
  color: #9f1b38;
  font-weight: 600;
  border-bottom: 2px solid #9f1b38;
}
.ca-item li .cai-cover .caic-content .polygon .f02 {
  font-size: 14px;
  color: #9f1b38;
}
.ca-item li .cai-cover .caic-content .f03 {
  font-size: 14px;
  color: #9f1b38;
  padding-top: 20px;
}
.case .ca-nav {
  text-align: center;
  padding-top: 5px;
  padding-bottom: 15px;
}
.case .ca-nav a {
  font-size: 18px;
  color: #222221;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.case .ca-nav a:hover {
  border-color: #cf8d9b;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.case .ca-nav a.active {
  border-color: #cf8d9b;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.case .ca-pagination {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  color: #222221;
  font-size: 18px;
}
.case .ca-pagination span {
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
}
.case .ca-pagination span:hover {
  color: #9f1b38;
}
.case .ca-pagination span.active {
  color: #9f1b38;
}
.case-inner .ci-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow-y: scroll;
}
.case-inner .iframe-case {
  position: absolute;
  width: 100%;
  height: 100%;
}
.case-inner .ci-foot {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  height: 80px;
  z-index: 10;
  background-color: #9f1b38;
  padding: 5px 45px;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  line-height: 60px;
}
.case-inner .ci-foot img {
  vertical-align: middle;
}
.case-inner .ci-foot a {
  color: #fff;
}
.case-inner .ci-foot .cif-btn {
  width: 840px;
  padding: 0 100px;
  position: relative;
  margin: 0 auto;
}
.case-inner .ci-foot .cif-btn img {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.case-inner .ci-foot .cif-btn span {
  padding-left: 60px;
  padding-right: 60px;
}
.service {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  font-size: 14px;
}
.service .page-title {
  padding-bottom: 75px;
}
.service .se-items .item {
  margin-bottom: 100px;
  height: 600px;
  color: #fff;
  position: relative;
}
.service .se-items .item-one .info {
  position: absolute;
  width: 660px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #9f1b38;
}
.service .se-items .item-one .info-content {
  padding-top: 200px;
  padding-left: 40px;
}
.service .se-items .item-one .info-content img {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.service .se-items .item-one .info-content img:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.service .se-items .item-one .co-classify {
  width: 370px;
}
.service .se-items .item-one .co-classify .cl-items {
  font-size: 0;
  padding-bottom: 5px;
}
.service .se-items .item-one .co-classify .cl-items span {
  display: inline-block;
  text-align: center;
  border-right: 2px solid #fff;
  width: 120px;
  font-size: 14px;
}
.service .se-items .item-one .co-classify .cl-items span.l {
  text-align: left;
}
.service .se-items .item-one .co-classify .cl-items span.bo-none {
  border: none;
}
.service .se-items .item-one .co-description {
  width: 550px;
}
.service .se-items .item-one .co-description p {
  line-height: 24px;
}
.service .se-items .item-one .image {
  position: absolute;
  width: 540px;
  height: 100%;
  right: 0;
  top: 0;
}
.service .se-items .item-one .image .img-wrap {
  position: absolute;
  z-index: 2;
  right: 50px;
  bottom: 50px;
  overflow: hidden;
}
.service .se-items .item-one .image .img-wrap img {
  -webkit-transition: 1s 0.8s;
  -moz-transition: 1s 0.8s;
  -o-transition: 1s 0.8s;
  transition: 1s 0.8s;
}
.service .se-items .item-one .image .img-wrap:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: 1s 0.8s;
  -moz-transition: 1s 0.8s;
  -o-transition: 1s 0.8s;
  transition: 1s 0.8s;
}
.service .se-items .item-one .image .black-block {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 15px;
  height: 570px;
  width: 280px;
  background-color: #31302e;
}
.service .se-items .item-one .image .black-block span {
  position: absolute;
  bottom: 0;
  right: 50px;
  line-height: 30px;
  font-size: 20px;
  color: #fff;
}
.service .se-items .item-one .item-title {
  position: absolute;
  z-index: 3;
  text-align: center;
  background-color: #fff;
  color: #010101;
  line-height: 1.4;
  left: 460px;
  top: 197px;
  width: 420px;
  height: 125px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 20px;
  padding-bottom: 0px;
}
.service .se-items .item-one .item-title .title-line {
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
}
.service .se-items .item-one .item-title h3 {
  font-size: 40px;
  font-weight: normal;
}
.service .se-items .item-one .item-title h6 {
  color: #c9caca;
  line-height: 30px;
  letter-spacing: 5px;
}
.service .se-items .item-one .item-title:hover h6 {
  color: #9f1b38;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.service .se-items .item-two .info {
  position: absolute;
  width: 660px;
  height: 100%;
  right: 0;
  top: 0;
  background-color: #727171;
}
.service .se-items .item-two .info-content {
  text-align: right;
  padding-top: 190px;
  padding-right: 40px;
}
.service .se-items .item-two .info-content img {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.service .se-items .item-two .info-content img:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.service .se-items .item-two .co-classify {
  width: 370px;
  float: right;
}
.service .se-items .item-two .co-classify .cl-items {
  font-size: 0;
  padding-bottom: 5px;
}
.service .se-items .item-two .co-classify .cl-items span {
  display: inline-block;
  text-align: center;
  border-right: 2px solid #fff;
  width: 120px;
  font-size: 14px;
}
.service .se-items .item-two .co-classify .cl-items span.l {
  text-align: left;
}
.service .se-items .item-two .co-classify .cl-items span.bo-none {
  border: none;
}
.service .se-items .item-two .co-description {
  width: 550px;
  float: right;
}
.service .se-items .item-two .co-description p {
  line-height: 24px;
}
.service .se-items .item-two .image {
  position: absolute;
  width: 540px;
  height: 100%;
  left: 0;
  top: 0;
}
.service .se-items .item-two .image .img-wrap {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  left: 50px;
  bottom: 50px;
}
.service .se-items .item-two .image .img-wrap img {
  -webkit-transition: 1s 0.8s;
  -moz-transition: 1s 0.8s;
  -o-transition: 1s 0.8s;
  transition: 1s 0.8s;
}
.service .se-items .item-two .image .img-wrap:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: 1s 0.8s;
  -moz-transition: 1s 0.8s;
  -o-transition: 1s 0.8s;
  transition: 1s 0.8s;
}
.service .se-items .item-two .image .black-block {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 15px;
  height: 570px;
  width: 280px;
  background-color: #31302e;
}
.service .se-items .item-two .image .black-block span {
  position: absolute;
  bottom: 0;
  left: 50px;
  line-height: 30px;
  font-size: 20px;
  color: #fff;
}
.service .se-items .item-two .item-title {
  position: absolute;
  z-index: 3;
  text-align: center;
  background-color: #fff;
  color: #010101;
  line-height: 1.4;
  left: 320px;
  top: 197px;
  width: 420px;
  height: 125px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 20px;
  padding-bottom: 0px;
}
.service .se-items .item-two .item-title .title-line {
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
}
.service .se-items .item-two .item-title h3 {
  font-size: 40px;
  font-weight: normal;
}
.service .se-items .item-two .item-title h6 {
  color: #c9caca;
  line-height: 30px;
  letter-spacing: 2px;
}
.service .se-items .item-two .item-title:hover h6 {
  color: #9f1b38;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.contact {
  position: relative;
  height: 1080px;
}
.contact .ct-line {
  position: absolute;
  left: 27px;
  top: 240px;
  z-index: 2;
  background-color: #ffff00;
  display: block;
  width: 7px;
  height: 210px;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.contact .ct-img {
  width: 978px;
  height: 308px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 180px;
  z-index: 10;
}
.contact .ct-img:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  background-color: rgba(255, 255, 255, 0);
}
.contact .ct-img:hover:before {
  background-color: rgba(255, 255, 255, 0.2);
}
.contact .ct-img:hover .ct-line {
  background-color: #9f1b38;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  top: 100%;
}
.contact .ct-l {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
.contact .ct-l .ctl-black {
  background-color: #222221;
  height: 60px;
}
.contact .ctl-info {
  color: #727171;
  font-size: 14px;
  line-height: 30px;
  padding-top: 426px;
  padding-right: 130px;
  float: right;
}
.contact .ctl-info h3 {
  font-weight: normal;
  font-size: 24px;
  padding-top: 50px;
  padding-bottom: 40px;
}
.contact .ctl-info ul {
  width: 310px;
}
.contact .ctl-info ul li {
  padding-bottom: 10px;
  border-top: 1px solid #ebebeb;
  position: relative;
}
.contact .ctl-info ul li:before {
  display: block;
  width: 0;
  position: absolute;
  content: '';
  top: -1px;
  left: 0;
  height: 1px;
  background-color: #9f1b38;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.contact .ctl-info ul li:hover:before {
  width: 100%;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.contact .ct-r {
  position: absolute;
  background-color: #9f1b38;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
.contact .ct-r h1 {
  color: #fff;
  text-decoration: line-through;
  font-weight: normal;
  letter-spacing: 5px;
  font-size: 36px;
  padding-top: 95px;
  padding-left: 80px;
}
.contact .ct-r h1:after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background-color: #fff;
  margin-top: 10px;
}
.contact .ct-r .ctr-form {
  width: 440px;
  padding-left: 45px;
  padding-top: 400px;
}
.contact .ct-r .ctr-form h2 {
  color: #fff;
  font-weight: normal;
  font-size: 24px;
  padding-bottom: 37px;
  width: 200px;
  border-top: 1px solid #cf8d9c;
  letter-spacing: 5px;
}
.contact .ct-r .ctr-form h2,
.contact .ct-r .ctr-form .form-input {
  position: relative;
}
.contact .ct-r .ctr-form h2:before,
.contact .ct-r .ctr-form .form-input:before {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  top: -1px;
  background-color: #fff;
  content: '';
}
.contact .ct-r .ctr-form h2:hover:before,
.contact .ct-r .ctr-form .form-input:hover:before {
  width: 100%;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.contact .ct-r .ctr-form label {
  border-top: 1px solid #cf8d9c;
  padding-top: 5px;
  padding-bottom: 20px;
  font-size: 14px;
  display: block;
  color: #757575;
  color: #fff;
}
.contact .ct-r .ctr-form label input {
  color: #fff;
  display: inline-block;
  height: 50px;
}
.contact .ct-r .ctr-form label.form-text {
  padding-bottom: 15px;
  border: none;
}
.contact .ct-r .ctr-form label.form-text textarea {
  border: 1px solid #cf8d9c;
  background: none;
  color: #fff;
  padding-left: 5px;
  padding-top: 5px;
  width: 100%;
  height: 78px;
  border-radius: 5px;
}
.contact .ct-r .ctr-form textarea {
  padding: 5px;
  border-radius: 5px;
  display: block;
  width: 100%;
  background: none;
  color: #fff;
  outline: none;
  border-color: #cf8d9c;
}
.contact .ct-r .ctr-form input {
  background: none;
  border: none;
  color: #757575;
}
.legal {
  padding-top: 120px;
  padding-bottom: 100px;
  position: relative;
  z-index: 10;
}
.legal h1 {
  font-size: 24px;
  line-height: 45px;
  font-weight: normal;
  color: #222221;
}
.legal .le-title {
  color: #4d4c4c;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
}
.legal .le-title:hover {
  color: #9f1b38;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.legal .le-content {
  color: #212121;
  font-size: 14px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.page-news {
  max-width: 1470px;
  width: 100%;
  margin: auto;
  padding: 40px 20px;
}
.page-news .news-list-wrapper {
  margin: auto;
  width: 100%;
  display: flex;
  align-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.page-news .news-list-wrapper .news-title {
  overflow: hidden;
  /*超出部分隐藏*/
  white-space: nowrap;
  /*禁止换行*/
  text-overflow: ellipsis;
  /*省略号*/
}
.page-news .news-list-wrapper .news-desc {
  height: 60px;
  /*需要展示行高度*/
  display: -webkit-box;
  /* 必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。*/
  -webkit-box-orient: vertical;
  /* 必须结合的属性 ，设置或检索伸缩盒对象的子元素的排列方式 。*/
  text-overflow: ellipsis;
  /* 可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。*/
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.page-news .news-list-wrapper .news-img {
  height: 210px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-news .news-list-wrapper li {
  width: 25%;
  padding: 20px 10px;
}
.page-news .news-list-wrapper li img {
  display: block;
  width: 100%;
}
.page-news .news-list-wrapper .news-title {
  padding: 10px 0;
  color: #333;
  font-size: 16px;
  border-bottom: 1px solid #666;
}
.page-news .news-list-wrapper .news-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #999;
  padding-top: 10px;
}
.page-case-list {
  padding: 0 125px 60px 125px;
  color: #595757;
}
.page-case-list .case-list-title {
  padding-top: 15px;
}
.page-case-list .case-list-title .idl-circle {
  padding-top: 10px;
  font-size: 24px;
  padding-bottom: 10px;
  width: 265px;
  border-bottom: 1px solid #acabab;
}
.page-case-list .case-list-title .idl-circle b {
  font-weight: 300;
}
.case-list-wrapper ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  /*padding-bottom: 40px;*/
}
.case-list-wrapper ul li {
  width: 20%;
  border: none;
  padding-top: 40px;
}
.case-list-wrapper ul li .case-name {
  font-size: 18px;
  padding-top: 15px;
  color: #595757;
  font-weight: 300;
}
.case-list-wrapper ul li .case-name:before {
  content: '> ';
  color: #9f1b38;
}
.case-list-wrapper ul li .case-desc {
  padding-top: 5px;
  color: #898989;
  font-size: 14px;
  font-weight: 300;
}
.page-case-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  height: 120px;
}
.page-case-banner.yellow {
  background-image: url('../img/wave.png');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fdc72e;
  color: #222;
}
.page-case-banner h1,
.page-case-banner h2 {
  font-weight: 300;
  font-size: 28px;
  padding-top: 10px;
}
.block-pd {
  height: 90px;
}
.case-nav-select {
  padding-left: 40px;
  padding-right: 40px;
  height: 120px;
  position: relative;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.case-nav-select .logo {
  padding-top: 15px;
}
.ca-nav {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.ca-nav a {
  font-size: 18px;
  color: #222221;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ca-nav a:hover {
  border-color: #cf8d9b;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ca-nav a.active {
  color: #9f1b38;
  border-color: #cf8d9b;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.page-title:after {
  display: none;
}
.page-list-wrapper {
  padding: 20px 0;
}
.sec-nav-content {
  position: fixed;
  width: 100%;
  background-color: #fff;
  left: 0;
  z-index: 98;
  height: 80px;
  top: 0;
}
/*Video-Case*/
.video-case .video-case-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-case .video-case-container li {
  position: relative;
  padding-top: 43.75%;
  width: 50%;
}
.video-case .video-case-container .video-wrapper {
  position: absolute;
  width: 100%;
  height: 64.285%;
  overflow: hidden;
  top: 0;
  left: 0;
}
.video-case .video-case-container .video-wrapper video {
  display: block;
  width: 100%;
  height: 100%;
}
.video-case .video-case-container .video-desc {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  width: 100%;
  height: 35.715%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-case .video-case-container .video-desc p {
  font-size: 14px;
  padding-top: 10px;
  color: #333;
}
.video-case .video-case-container .video-desc-title {
  width: 280px;
  border-bottom: 1px solid #acabab;
  padding-bottom: 14px;
}
.video-case .video-case-container .video-desc-title b {
  font-size: 24px;
  font-weight: 300;
  vertical-align: middle;
  margin-left: 10px;
}
.case-info-header {
  padding: 40px 0;
  background-color: #edeff1;
  text-align: center;
}
.case-info-header .case-info-title {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 34px;
  font-weight: 300;
}
.case-info-header .case-info-desc {
  color: #6c6d6e;
  line-height: 1.6;
  font-size: 14px;
  padding-bottom: 40px;
}
.case-info-header .case-info-btn {
  padding: 10px 0;
  margin: 0 auto;
  width: 200px;
  background-color: #9f1b38;
  color: #fff;
}
.case-info-container img {
  display: block;
  width: 100%;
  height: auto;
}
.swiper-container .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  /*之前是ease-out*/
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.case-info-more-btn{
    padding: 5px 0;
    width: 150px;
    margin: auto;
    background: #9f1b38;
    color: #fff;
}
.case-info-more-btn a{
 color: #fff;
}



/*20221210satrt*/
.zxtc_section{width: 100%;height: 100vh;position: fixed;left: 0;top: 0;z-index: 9999999;background: rgba(0,0,0,0.8);display: none;  justify-content: center;  align-items: center;}
.zxtc_section.on{display: flex;}
.zxtc_section.nones{display: none!important;}
.zxtc_section .content{width: 561px;height: 232px;position: relative;padding: 42px 102px 10px 106px;}
.zxtc_section .content .ico{position: absolute;left: 17px;top: -18px;width: 91px;}
.zxtc_section .content .ico img{width: 100%;display: block;}
.zxtc_section .content .none{width: 22px;position: absolute;cursor: pointer;right: 23px;top: 13px;}
.zxtc_section .content .none img{width: 100%;display: block;}
.zxtc_section .content .num{font-size: 48px;color: #595757;line-height: 52px;margin-bottom: 16px;font-weight: 700;}
.zxtc_section .content .words{font-size: 16px;color: #ffffff;line-height: 20px;margin-bottom: 8px;letter-spacing: 4px;}
.zxtc_section .content .inputbox{width: 100%;margin-bottom: 8px;overflow: hidden;border-radius: 5px;}
.zxtc_section .content .inputbox input{width: calc(100% - 124px);float: left;display: block;height: 36px;background: #fff;border: 0;font-size: 14px;color: #666;padding: 0 12px;letter-spacing: 2px;}
.zxtc_section .content .inputbox input::-webkit-input-placeholder{font-size: 14px;color: #666;}
.zxtc_section .content .inputbox input::-moz-placeholder{font-size: 14px;color: #666;}
.zxtc_section .content .inputbox input::moz-placeholder{font-size: 14px;color: #666;}
.zxtc_section .content .inputbox input:-ms-input-placeholder{font-size: 14px;color: #666;}
.zxtc_section .content .inputbox button{width: 124px;float: left;height: 36px;display: block;border: 0;background: #b40113;font-size: 14px;color: #ffffff;letter-spacing: 2px;}
.zxtc_section .content .inputbox button:hover{background: #fdc641;}
.zxtc_section .content .but{width: 100%;}
.zxtc_section .content .but a{display: block;width: 100%;font-size: 20px;color: #ffffff;line-height: 36px;background: #fdc641;text-align: center;border-radius: 5px;letter-spacing: 4px;border: 0;}
.zxtc_section .content .but a:hover{background: #b40113;}
@media  screen and (max-width: 1024px){
.zxtc_section .content{width: calc(100% - 30px);height: auto;padding: 30px 20px 20px 20px;}
.zxtc_section .content .ico{left: 10px;top: -14px;width: 40px;}
.zxtc_section .content .none{width: 18px;right: 20px;top: 10px;}
.zxtc_section .content .num{font-size: 30px;line-height: 34px;margin-bottom: 14px;}
.zxtc_section .content .words{font-size: 14px;line-height: 18px;margin-bottom: 6px;}
.zxtc_section .content .but a{font-size: 18px;}
}

.yq_section{position: absolute;left: 0;bottom: 20px;width: 100%;opacity: 0;}
.yq_section ul{overflow: hidden;width: 100%;overflow: hidden; overflow-y: auto; scrollbar-width: thin; max-height: 20px;}
.yq_section ul::-webkit-scrollbar{ width: 0;}
.yq_section ul::-webkit-scrollbar-track{ background-color: rgba(255,255,255,0); border-radius: 0;}
.yq_section ul::-webkit-scrollbar-thumb{ width: 0;  background-color: rgba(255,255,255,0); border-radius: 0;}
.yq_section ul::-webkit-scrollbar{ display: none;}
.yq_section li{float: left;padding: 0 10px;}
.yq_section li a{display: block;font-size: 14px;color: #9f1b38;line-height: 20px;}
.yq_section li a:hover{color: #91715c;}
/*20221210end*/

.side-panel,
.zxtc_section .content .but{display:none !important;}