.rel {
	position: relative;
  }
  .abs {
	position: absolute;
  }
  .fixed {
	position: fixed;
  }
  .flex {
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
  }
  .flex-wrap {
	flex-flow: wrap;
  }
  .flex-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
  }
  .inline-block {
	display: inline-block;
  }
  .block {
	display: block;
  }
  .hide {
	display: none;
  }
  .bold {
	font-weight: 700;
  }
  .txt-center {
	text-align: center;
  }
  .txt-left {
	text-align: left;
  }
  .txt-right {
	text-align: right;
  }
  .before {
	opacity: 0;
	visibility: hidden;
  }
  .after {
	opacity: 1;
	visibility: visible;
  }
  .font {
	font-family: Arial;
  }
  .txt {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
  }
  .upper {
	text-transform: uppercase;
  }
  .middle {
	vertical-align: middle;
  }
  .background {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
  }
  .mbackground {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
  }
  .box-container {
	width: 12.4rem;
	margin: 0 auto;
  }
  .w1200 {
	width: 1200px;
	margin: 0 auto;
  }
  body {
	font-size: 16px;
	overflow-x: hidden;
	background-color: #ffffff;
  }
  .rl {
	writing-mode: tb-rl;
	writing-mode: vertical-lr;
  }
  @font-face {
	font-family: "cn_medium";
	src: url('../fonts/MiSans-Medium.ttf');
	font-weight: normal;
	font-style: normal;
  }
  @font-face {
	font-family: "regular";
	src: url('../fonts/MISANS-REGULAR.TTF');
	font-weight: normal;
	font-style: normal;
  }
  .regular {
	font-family: "regular";
  }
  .cn_medium {
	font-family: "cn_medium";
  }
  .pic {
	font-size: 0;
	overflow: hidden;
	display: block;
	width: 100%;
  }
  .pic img {
	width: 100%;
	display: block;
	transition: transform 0.8s ease;
	-webkit-transition: transform 0.8s ease;
	-moz-transition: transform 0.8s ease;
	-ms-transition: transform 0.8s ease;
	-o-transition: transform 0.8s ease;
  }
  .pic img.phone {
	display: none;
  }
  :root {
	--fs14: 14px;
	--fs16: 16px;
	--fs18: 18px;
	--fs20: 20px;
	--fs22: 22px;
	--fs24: 24px;
	--fs28: 28px;
	--fs30: 30px;
	--fs36: 36px;
	--fs40: 40px;
	--fs48: 48px;
  }
  .phone-nav {
	display: none;
  }
  .content,
  .desc {
	text-align: justify;
  }
  .content img,
  .content input[type="image"] {
	max-width: 100%;
	height: auto!important;
	display: block;
	margin: 0 auto;
  }
  .index .header-wrapper {
	position: fixed;
	background-color: transparent;
  }
  .index .header-wrapper.shadow {
	background-color: #d00000;
  }
  .header-wrapper {
	left: 0;
	top: 0;
	z-index: 40;
	width: 100%;
	position: sticky;
	background-color: #d00000;
	transition: all 0.5s ease-out;
  }
  .header-wrapper.shadow {
	background-color: #d00000;
  }
  .header-wrapper.on {
	top: -1.1rem;
  }
  .header-wrapper .box-container {
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	height: 1rem;
	align-items: center;
  }
  .header-wrapper .logo-box {
	width: 1.88rem;
  }
  .header-wrapper .logo-box a {
	display: block;
  }
  .header-wrapper .logo-box img {
	display: block;
	width: 100%;
  }
  .header-wrapper .language,
  .header-wrapper .language a {
	font-size: var(--fs18);
	color: #fff;
  }
  .header-wrapper .language a {
	display: inline-block;
	background: url(../img/line.jpg) no-repeat;
	background-size: 0 1px;
	background-position: 100% 100%;
	transition: background-size 0.7s ease;
  }
  .header-wrapper .language a:hover {
	background-size: 100% 1px;
	background-position: 0 100%;
  }
  .pc-nav-box {
	flex: 1;
	margin-left: 1rem;
  }
  .pc-nav-box ul {
	text-align: right;
	list-style-type: none;
  }
  .pc-nav-box li {
	position: relative;
	display: inline-block;
	margin-right: 0.7rem;
  }
  .pc-nav-box li:hover:before,
  .pc-nav-box li.current-menu-item:before {
	background-size: 100% 2px;
	background-position: 0 100%;
  }
.pc-nav-box li:before {
	content: "";
	width: 100%;
	height: 2px;
	background: url(../img/line.jpg) no-repeat;
	background-size: 0 2px;
	background-position: 100% 100%;
	transition: background-size 0.7s ease;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
  }
  .pc-nav-box a {
	display: block;
	font-size: var(--fs18);
	color: #fff;
	font-family: "cn_medium";
	height: 1rem;
	line-height: 1rem;
  }
  .nav-box {
	display: none;
  }
  @media screen and (max-width: 1600px) {
	.header-wrapper .box-container {
	  height: 0.9rem;
	}
	.pc-nav-box a {
	  height: 0.9rem;
	  line-height: 0.9rem;
	}
  }
  @media screen and (max-width: 1004px) {
	.menu-trigger,
	.close-trigger {
	  position: fixed;
	  top: 0.44rem;
	  right: 0.3rem;
	  display: block;
	  width: 0.5rem;
	  height: 0.5rem;
	  z-index: 333;
	  transition: all 0.8s ease;
	  -webkit-transition: all 0.8s ease;
	  -moz-transition: all 0.8s ease;
	  -ms-transition: all 0.8s ease;
	  -o-transition: all 0.8s ease;
	  transition-delay: 0.1s;
	}
	.close-trigger {
	  z-index: 5;
	  top: 0.6rem;
	}
	.menu-trigger-bar {
	  display: block;
	  width: 100%;
	  height: 0.04rem;
	  background-color: #ffffff;
	  margin-bottom: 0.08rem;
	  transform: rotate(-45deg);
	  position: relative;
	}
	.menu-trigger-bar:before {
	  content: "";
	  position: absolute;
	  top: 0;
	  left: 0;
	  display: block;
	  width: 0%;
	  height: 100%;
	  background-color: rgba(0, 0, 0, 0.2);
	  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
	}
	.menu-trigger-bar.top {
	  width: 50%;
	  margin-bottom: 0.06rem;
	}
	.menu-trigger-bar.middle:before {
	  left: auto;
	  right: 0;
	}
	.menu-trigger-bar.bottom {
	  width: 50%;
	  margin-left: 50%;
	}
	.close-trigger-bar {
	  display: block;
	  width: 100%;
	  height: 0.04rem;
	  background-color: #fff;
	  position: relative;
	}
	.close-trigger-bar:before {
	  content: "";
	  position: absolute;
	  top: 0;
	  left: 0;
	  display: block;
	  width: 0%;
	  height: 100%;
	  background-color: rgba(255, 255, 255, 0.2);
	  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
	}
	.close-trigger-bar.left {
	  transform: translateX(100px) translateY(-100px) rotate(-45deg);
	}
	.close-trigger-bar.right {
	  transform: translateX(-100px) translateY(-100px) rotate(45deg);
	  top: -0.04rem;
	}
	.menu-container {
	  position: relative;
	  display: flex;
	  align-items: center;
	}
	.menu {
	  display: block;
	  width: 100%;
	}
	.menu-bg {
	  position: absolute;
	  display: block;
	  width: 200%;
	  left: -53%;
	  top: -25%;
	  height: 40%;
	  background-color: #000;
	}
	.menu-bg.middle {
	  top: 29%;
	  left: -53%;
	  transform: rotate(-45deg) scaleY(0);
	}
	.menu-bg.top {
	  left: -34%;
	  top: 0;
	  transform: rotate(-45deg) translateY(-152%);
	}
	.menu-bg.bottom {
	  top: 105%;
	  transform: rotate(-45deg) translateY(25%);
	  left: -20%;
	}
	.nav-box {
	  position: fixed;
	  left: 0;
	  top: 0;
	  z-index: -1;
	  width: 100%;
	  height: 100%;
	  padding-top: 1.2rem;
	  display: block;
	  opacity: 0;
	  visibility: hidden;
	}
	.nav-box.on {
	  z-index: 38;
	}
	.nav-box.on {
	  opacity: 1;
	  visibility: visible;
	  left: 0;
	}
	.nav-box ul {
	  list-style-type: none;
	  padding: 0 0.3rem;
	}
	.nav-box ul li {
	  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	.nav-box ul li a {
	  font-size: var(--fs18);
	  line-height: 1rem;
	}
	.pc-nav-box {
	  display: none;
	}
	.header-wrapper .box-container {
	  -webkit-box-pack: justify;
	  -ms-flex-pack: justify;
	  -webkit-justify-content: space-between;
	  justify-content: space-between;
	  height: 1.2rem;
	}
	.header-wrapper .logo-box {
	  width: 38%;
	}
	.header-wrapper .language,
	.header-wrapper .language a {
	  font-size: var(--fs14);
	}
	.header-wrapper .other-box {
	  padding-right: 0.9rem;
	}
  }
  .gotop {
	position: fixed;
	right: 1.38rem;
	bottom: 5%;
	z-index: 20;
	display: none;
  }
  .gotop:hover p {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	opacity: 1;
	visibility: visible;
  }
  .gotop img {
	display: block;
	width: 0.37rem;
	margin: 0 auto;
  }
  .gotop p {
	font-size: var(--fs16);
	color: #3c3c3c;
	line-height: 0.3rem;
	text-align: center;
	margin-top: 0.07rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(0.1rem);
	-webkit-transform: translateY(0.1rem);
	-moz-transform: translateY(0.1rem);
	-ms-transform: translateY(0.1rem);
	-o-transform: translateY(0.1rem);
	transition: all 0.48s ease;
	-webkit-transition: all 0.48s ease;
	-moz-transition: all 0.48s ease;
	-ms-transition: all 0.48s ease;
	-o-transition: all 0.48s ease;
	transition-delay: 0.15s;
  }
  .footer-wrapper {
	margin-top: 1.14rem;
  }
  .footer-wrapper .bottom {
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-top: 0.14rem;
	padding: 0.23rem 0 0.62rem;
	border-top: 1px solid #3c3c3c;
  }
  .footer-wrapper .contact {
	color: #fff;
	line-height: 0.3rem;
	max-width: 65%;
  }
  .footer-wrapper .contact ul {
	list-style: none;
  }
  .footer-wrapper .contact li {
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	font-size: var(--fs16);
  }
  .footer-wrapper .contact span {
	flex: 1;
  }
   .footer-wrapper .contact span em{
	color:#d00000;
  }
  .footer-wrapper .logo {
	width: 1.75rem;
  }
  .footer-wrapper .logo.phone {
	display: none;
  }
  .footer-wrapper .logo a {
	display: block;
  }
  .footer-wrapper .logo img {
	display: block;
	width: 100%;
  }
  .link {
	font-size: 0;
	text-align: center;
  }
  .link ul {
	list-style: none;
  }
  .link li {
	display: inline-block;
	position: relative;
	margin-right: 0.36rem;
  }
  .link li:last-child {
	margin-right: 0;
  }
  .link li.on a {
	color: #999;
  }
  .link li.on .hidebox {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
  }
  .link a {
	position: relative;
	font-size: var(--fs18);
	line-height: 0.3rem;
	display: inline-block;
	vertical-align: top;
	transition: color 0.3s ease;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
  }
  .link .hidebox {
	width: 1.6rem;
	position: absolute;
	left: 50%;
	bottom: 0.54rem;
	z-index: 10;
	border-radius: 6px;
	margin-left: -0.8rem;
	transition: all 0.35s ease;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-ms-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	opacity: 0;
	visibility: hidden;
	transform: translateY(0.1rem);
	-webkit-transform: translateY(0.1rem);
	-moz-transform: translateY(0.1rem);
	-ms-transform: translateY(0.1rem);
	-o-transform: translateY(0.1rem);
	background: #fff;
  }
  .link .hidebox:after {
	content: "";
	width: 100%;
	height: 0.11rem;
	background: url(../img/angle.png) no-repeat center top;
	background-size: 0.26rem;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 10;
  }
  .link .hidebox img {
	display: block;
	width: 100%;
	border-radius: 6px;
  }
  @media screen and (min-width: 1004px) {
	.link li:hover a {
	  color: #999;
	}
	.link li:hover .hidebox {
	  opacity: 1;
	  visibility: visible;
	  transform: translateY(0);
	  -webkit-transform: translateY(0);
	  -moz-transform: translateY(0);
	  -ms-transform: translateY(0);
	  -o-transform: translateY(0);
	}
  }
  @media screen and (max-width: 1600px) {
	.gotop {
	  right: 0.6rem;
	}
	.footer-wrapper .bottom {
	  padding-bottom: 0.48rem;
	}
  }
  @media screen and (max-width: 1004px) {
	.gotop {
	  display: none!important;
	}
	.footer-wrapper .bottom {
	  display: block;
	  margin-top: 0.3rem;
	  padding: 0.36rem 0 0.48rem;
	}
	.footer-wrapper .contact {
	  line-height: 0.44rem;
	  max-width: inherit;
	  width: 100%;
	}
	.footer-wrapper .contact li {
	  font-size: var(--fs15);
	}
	.footer-wrapper .logo {
	  width: 35%;
	  margin: 0 auto 0.48rem;
	  display: none;
	}
	.footer-wrapper .logo.phone {
	  display: block;
	}
	.link li {
	  margin-right: 0.16rem;
	}
	.link a {
	  font-size: 0.24rem;
	  line-height: 0.36rem;
	}
	.link .hidebox {
	  width: 1.9rem;
	  bottom: 0.64rem;
	  margin-left: -0.95rem;
	}
  }
  .case-wrapper {
	margin-top: 0.7rem;
  }
  .case-wrapper ul {
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	flex-flow: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	list-style: none;
  }
  .case-wrapper li {
	position: relative;
	width: 49.68%;
	margin-top: 0.64%;
  }
  .case-wrapper li:nth-child(-n+2) {
	margin-top: 0;
  }
  .case-wrapper li:hover .info {
	opacity: 1;
	visibility: visible;
  }
  .case-wrapper li:hover .desc,
  .case-wrapper li:hover .source {
	opacity: 1;
	visibility: visible;
  }
  .case-wrapper li:hover .pic img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
  }
  .case-wrapper li a {
	display: block;
  }
  .case-wrapper .info {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background-color: #d00000b9;
	padding: 0.44rem 0.6rem;
	transition: all 0.48s ease;
	-webkit-transition: all 0.48s ease;
	-moz-transition: all 0.48s ease;
	-ms-transition: all 0.48s ease;
	-o-transition: all 0.48s ease;
	opacity: 0;
	visibility: hidden;
  }
  .case-wrapper .desc,
  .case-wrapper .source {
	opacity: 0;
	visibility: hidden;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition-delay: 0.15s;
  }
  .case-wrapper .desc {
	font-size: var(--fs24);
	font-family: "cn_medium";
	line-height: 0.36rem;
	color: #fff;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
	overflow: hidden;
	max-height: 2.52rem;
  }
  .case-wrapper .desc.phone {
	display: none;
  }
  .case-wrapper .source {
	font-size: var(--fs36);
	color: #fff;
	line-height: 0.36rem;
	margin-bottom: 0.4rem;
	font-weight: 700;
  }
  @media screen and (max-width: 1600px) {
	.footer-wrapper {
	  margin-top: 1rem;
	}
	.design-box .source,
	.case-wrapper .source {
	  margin-bottom: 0.36rem;
	}
  }
  @media screen and (max-width: 1440px) {
	.footer-wrapper {
	  margin-top: 0.9rem;
	}
	.design-box .source,
	.case-wrapper .source {
	  margin-bottom: 0.3rem;
	}
  }
  @media screen and (max-width: 1004px) {
	.case-wrapper {
	  margin-top: 0.8rem;
	}
	.case-wrapper li {
	  width: calc((100% - 0.12rem) / 2);
	  margin-top: 0.12rem;
	}
	.case-wrapper .desc.pc {
	  display: none;
	}
	.case-wrapper .desc.phone {
	  display: -webkit-box;
	}
  }
  .contact-wrapper {
	margin-top: 1.4rem;
  }
  .contact-wrapper .base {
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
  }
  .contact-wrapper .info-box {
	width: 41.66%;
	padding-left: calc((100% - 12.4rem) / 2);
  }
  .contact-wrapper .info-box h2 {
	font-size: 0.42rem;
	line-height: 0.5rem;
	font-family: "cn_medium";
	margin-bottom: 0.07rem;
  }
  .contact-wrapper .tel a,
  .contact-wrapper .email a {
	display: inline-block;
	font-size: var(--fs18);
	color: #d00000;
	line-height: 0.3rem;
  }
  .contact-wrapper .tel,
  .contact-wrapper .address {
	margin-bottom: 0.52rem;
  }
  .contact-wrapper .address {
	position: relative;
  }
  .contact-wrapper .address h2 {
	cursor: pointer;
  }
  .contact-wrapper .address > img {
	position: absolute;
	left: 0;
	top: 0.135rem;
	z-index: 10;
	width: 0.2rem;
  }
  .contact-wrapper .address h6 {
	font-size: var(--fs18);
	color: #3c3c3c;
	line-height: 0.3rem;
	margin-right: 0.3rem;
  }
  .contact-wrapper .address h6,
  .contact-wrapper .address p {
	font-size: var(--fs20);
	line-height: 0.3rem;
  }
  .contact-wrapper .address p {
	flex: 1;
  }
  .contact-wrapper .address ul {
	list-style: none;
  }
  .contact-wrapper .address li {
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	margin-bottom: 0.24rem;
	padding-bottom: 0.24rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .contact-wrapper .address li:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
  }
  .contact-wrapper .email,
  .contact-wrapper .tel {
	position: relative;
  }
  .contact-wrapper .email em,
  .contact-wrapper .tel em {
	display: inline-block;
	width: 57px;
	line-height: 22px;
	/* background: url(../img/copybg.png) no-repeat center center; */
	background-size: 100% 100%;
	font-size: var(--fs14);
	color: #000;
	margin-left: 0.08rem;
	text-align: center;
	transform: translateX(0.1rem);
	-webkit-transform: translateX(0.1rem);
	-moz-transform: translateX(0.1rem);
	-ms-transform: translateX(0.1rem);
	-o-transform: translateX(0.1rem);
	/*opacity: 0;
	visibility: hidden;*/
	transition: all 0.35s ease;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-ms-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
  }
  .contact-wrapper .email em.on,
  .contact-wrapper .tel em.on {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
  }
  .contact-wrapper .txt {
	position: absolute;
	z-index: -1;
	opacity: 0;
  }
  .contact-wrapper .qrcode {
	width: 1.72rem;
	margin-top: 0.85rem;
	background: #fff;
	border-radius: 6px;
  }
  .contact-wrapper .qrcode img {
	display: block;
	width: 100%;
	border-radius: 6px;
  }
  .contact-wrapper .map-box {
	position: relative;
	overflow: hidden;
	width: 50%;
  }
  .contact-wrapper .map-box .pic {
	display: none;
	cursor: pointer;
  }
  .design-box {
	text-align: center;
	margin-top: 1.2rem;
  }
  .design-box ul {
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	flex-flow: wrap;
	list-style-type: none;
  }
  .design-box li {
	position: relative;
	font-size: 0;
	width: calc(100% / 3);
  }
  .design-box li:hover .info {
	opacity: 1;
	visibility: visible;
  }
  .design-box li:hover .desc,
  .design-box li:hover .source {
	opacity: 1;
	visibility: visible;
  }
  .design-box li:hover .pic img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
  }
  .design-box li a {
	display: block;
  }
  .design-box .info {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background-color: rgba(134, 0, 13, 0.8);
	padding: 0.44rem 0.6rem;
	transition: all 0.48s ease;
	-webkit-transition: all 0.48s ease;
	-moz-transition: all 0.48s ease;
	-ms-transition: all 0.48s ease;
	-o-transition: all 0.48s ease;
	opacity: 0;
	visibility: hidden;
	text-align: left;
  }
  .design-box .desc,
  .design-box .source {
	opacity: 0;
	visibility: hidden;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition-delay: 0.15s;
  }
  .design-box .desc {
	font-size: var(--fs24);
	font-family: "cn_medium";
	line-height: 0.36rem;
	color: #ffffff;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
	overflow: hidden;
	max-height: 2.52rem;
  }
  .design-box .source {
	font-size: var(--fs36);
	color: #ffffff;
	line-height: 0.36rem;
	margin-bottom: 0.4rem;
	font-weight: 700;
  }
  .loading {
	font-size: var(--fs24);
	color: #d00000;
	line-height: 0.3rem;
	margin-top: 0.56rem;
	display: inline-block;
  }
  .loading:hover span {
	background-size: 100% 2px;
	background-position: 0 100%;
  }
  .loading:hover img {
	transform: rotate(45deg);
  }
  .loading img {
	width: 0.17rem;
	display: inline-block;
	position: relative;
	top: -1px;
	margin-left: 0.1rem;
	transition: all 0.35s ease;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-ms-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
  }
  .loading span {
	background: url(../img/line.jpg) no-repeat;
	background-size: 0 2px;
	background-position: 100% 100%;
	transition: background-size 0.7s ease;
  }
  @media screen and (max-width: 1600px) {
	.contact-wrapper .info-box h2 {
	  font-size: 0.38rem;
	  line-height: 0.44rem;
	}
	.contact-wrapper .tel,
	.contact-wrapper .address {
	  margin-bottom: 0.44rem;
	}
	.contact-wrapper .qrcode {
	  margin-top: 0.6rem;
	}
	.contact-wrapper .map-box {
	  height: 5.6rem;
	}
	.contact-wrapper {
	  margin-top: 1.2rem;
	}
  }
  @media screen and (max-width: 1440px) {
	.contact-wrapper .info-box {
	  padding-left: calc((100% - 12rem) / 2);
	}
	.contact-wrapper {
	  margin-top: 1rem;
	}
	.contact-wrapper .info-box h2 {
	  font-size: var(--fs36);
	  line-height: 0.4rem;
	}
	.contact-wrapper .address > img {
	  top: 0.1rem;
	}
  }
  @media screen and (max-width: 1004px) {
	.contact-wrapper {
	  margin-top: 0.8rem;
	}
	.contact-wrapper .base {
	  display: block;
	  padding: 0 0.3rem;
	}
	.contact-wrapper .info-box {
	  position: relative;
	  width: 100%;
	  padding-left: 0;
	  padding-right: 0;
	}
	.contact-wrapper .info-box h2 {
	  font-size: var(--fs24);
	  line-height: 0.48rem;
	  margin-bottom: 0.12rem;
	}
	.contact-wrapper .tel a,
	.contact-wrapper .email a {
	  line-height: 0.48rem;
	  font-size: var(--fs16);
	}
	.contact-wrapper .tel,
	.contact-wrapper .address {
	  margin-bottom: 0.48rem;
	}
	.contact-wrapper .address > img {
	  width: 0.26rem;
	}
	.contact-wrapper .address h6 {
	  line-height: 0.48rem;
	  margin-right: 0.3rem;
	}
	.contact-wrapper .address h6,
	.contact-wrapper .address p {
	  font-size: var(--fs18);
	  line-height: 0.48rem;
	}
	.contact-wrapper .address li {
	  margin-bottom: 0.36rem;
	  padding-bottom: 0.36rem;
	}
	.contact-wrapper .email em,
	.contact-wrapper .tel em {
	  width: 1rem;
	  line-height: 0.44rem;
	  font-size: 0.24rem;
	  margin-left: 0.16rem;
	}
	.contact-wrapper .qrcode {
	  width: 2.1rem;
	  margin-top: 0.3rem;
	}
	.contact-wrapper .map-box {
	  width: 100%;
	  height: 5rem;
	  margin-top: 1rem;
	}
	.design-box {
	  margin-top: 1rem;
	  padding: 0 0.3rem;
	}
	.design-box li {
	  width: 50%;
	  display: none;
	}
	.design-box li:nth-child(-n+2) {
	  display: block;
	}
	.loading {
	  font-size: var(--fs18);
	  line-height: 0.48rem;
	  margin-top: 0.64rem;
	}
	.loading img {
	  width: 0.2rem;
	  margin-left: 0.16rem;
	}
	.case-wrapper .info,
	.design-box .info {
	  padding: 0.24rem 0.2rem;
	}
	.case-wrapper .desc,
	.design-box .desc {
	  font-size: 0.22rem;
	  line-height: 0.36rem;
	  max-height: 1.8rem;
	  -webkit-line-clamp: 5;
	}
	.case-wrapper .source,
	.design-box .source {
	  font-size: var(--fs18);
	  line-height: 0.36rem;
	  margin-bottom: 0.12rem;
	}
  }
  .info-wrapper {
	margin-top: 1.12rem;
  }
  .info-wrapper .part-1 {
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
  }
  .info-wrapper .part-1 .left {
	width: 40%;
  }
  .info-wrapper .part-1 .left h1 {
	font-size: 0.6rem;
	font-weight: 700;
	line-height: 0.72rem;
	margin-bottom: 0.06rem;
  }
  .info-wrapper .part-1 .company {
	font-size: var(--fs18);
	line-height: 0.3rem;
  }
  .info-wrapper .part-1 .qrcode {
	width: 122px;
	margin-top: 0.44rem;
  }
  .info-wrapper .part-1 .qrcode img {
	display: block;
	width: 100%;
  }
  .info-wrapper .part-1 .qrcode p {
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	margin-top: 0.06rem;
  }
  .info-wrapper .part-1 .right {
	width: 50%;
  }
  .info-wrapper .part-1 .desc {
	font-size: var(--fs30);
	line-height: 0.48rem;
	font-family: "cn_medium";
  }
  .info-wrapper .part-1 .content {
	font-size: var(--fs18);
	color: #3c3c3c;
	line-height: 0.3rem;
	display: none;
	margin-top: 0.14rem;
  }

  .info-wrapper .part-1 .content ul {
	list-style: none;
	text-indent: 2em;
	padding: 0px;
	margin: 20px auto;
  }

 


  .info-wrapper .part-1 .more {
	display: inline-block;
	font-size: var(--fs18);
	line-height: 0.3rem;
	margin-top: 0.26rem;
  }
  .info-wrapper .part-1 .more.on i {
	transform: rotateX(180deg);
  }
  .info-wrapper .part-1 .more i {
	display: inline-block;
	width: 0.17rem;
	height: 0.1rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../img/down.png);
	margin-left: 0.08rem;
  }
  .info-wrapper .part-1 .more span {
	display: inline-block;
	min-width: 0.7rem;
  }
  .info-wrapper .part-2 {
	margin-top: 1rem;
  }
  .info-wrapper .content img,
  .info-wrapper .content input[type="image"] {
	margin-bottom: 0.2rem;
  }
  .info-wrapper .content img:last-child,
  .info-wrapper .content input[type="image"]:last-child {
	margin-bottom: 0;
  }
  @media screen and (max-width: 1600px) {
	.info-wrapper {
	  margin-top: 1rem;
	}
	.info-wrapper .part-1 .left h1 {
	  font-size: 0.56rem;
	  line-height: 0.68rem;
	}
  }
  @media screen and (max-width: 1440px) {
	.info-wrapper .part-1 .left h1 {
	  font-size: 0.52rem;
	  line-height: 0.64rem;
	}
  }
  @media screen and (max-width: 1004px) {
	.info-wrapper {
	  margin-top: 1rem;
	}
	.info-wrapper .part-1 {
	  display: block;
	}
	.info-wrapper .part-1 .left {
	  position: relative;
	  width: 100%;
	  padding-right: 2rem;
	}
	.info-wrapper .part-1 .left h1 {
	  font-size: var(--fs36);
	  line-height: 0.6rem;
	  margin-bottom: 0.12rem;
	}
	.info-wrapper .part-1 .company {
	  font-size: var(--fs16);
	  line-height: 0.48rem;
	}
	.info-wrapper .part-1 .qrcode {
	  position: absolute;
	  right: 0;
	  top: -0.5rem;
	  z-index: 10;
	  width: 1.6rem;
	  margin-top: 0;
	}
	.info-wrapper .part-1 .qrcode p {
	  line-height: 0.36rem;
	  margin-top: 0.12rem;
	}
	.info-wrapper .part-1 .right {
	  width: 100%;
	  margin-top: 0.6rem;
	}
	.info-wrapper .part-1 .desc {
	  font-size: var(--fs18);
	  line-height: 0.52rem;
	}
	.info-wrapper .part-1 .content {
	  font-size: var(--fs15);
	  line-height: 0.48rem;
	  margin-top: 0.3rem;
	}
	.info-wrapper .part-1 .more {
	  font-size: var(--fs14);
	  line-height: 0.44rem;
	  margin-top: 0.4rem;
	}
	.info-wrapper .part-1 .more i {
	  width: 0.24rem;
	  height: 0.2rem;
	  margin-left: 0.12rem;
	}
	.info-wrapper .part-1 .more span {
	  min-width: 1.1rem;
	}
	.info-wrapper .part-2 {
	  margin-top: 0.8rem;
	}
  }
  .about-wrapper .top {
	margin-bottom: 0.45rem;
  }
  .about-wrapper .top .caption {
	margin-bottom: 0;
  }
  .about-wrapper .caption {
	font-size: var(--fs48);
	font-weight: 700;
	line-height: 0.72rem;
	margin-bottom: 0.3rem;
  }
  .about-wrapper .brief {
	font-size: var(--fs24);
	line-height: 0.36rem;
	margin-top: 2px;
  }
  .about-wrapper .floor-box {
	position: absolute;
	right: 0.8rem;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	z-index: 30;
	padding-left: 0.22rem;
  }
  .about-wrapper .floor-box.on {
	position: fixed;
  }
  .about-wrapper .floor-box:before {
	content: "";
	width: 2px;
	height: calc(100% - 10px);
	background-color: #d00000;
	position: absolute;
	left: 0;
	top: 5px;
	z-index: 1;
  }
  .about-wrapper .floor-box ul {
	list-style: none;
  }
  .about-wrapper .floor-box ul li {
	margin-bottom: 0.25rem;
  }
  .about-wrapper .floor-box ul li:last-child {
	margin-bottom: 0;
  }
  .about-wrapper .floor-box a {
	position: relative;
	display: block;
	font-size: var(--fs16);
	line-height: 24px;
	font-family: "cn_medium";
  }
  .about-wrapper .floor-box .icon {
	width: 16px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../img/icon.png);
	position: absolute;
	left: -26px;
	top: 0;
	z-index: 10;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
  }
  .about-wrapper .main > div {
	padding-top: 1.5rem;
  }
  .about-wrapper .part-1 .box-container {
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	flex-flow: wrap;
  }
  .about-wrapper .part-1 .caption {
	width: 100%;
	border-bottom: 2px solid #d00000;
	padding-bottom: 0.37rem;
	margin-bottom: 0.46rem;
  }
  .about-wrapper .part-1 .content {
	width: 63%;
  }
  .about-wrapper .part-1 .pic-box {
	width: 2.27rem;
	text-align: right;
  }
  .about-wrapper .part-1 .pic-box p {
	line-height: 0.36rem;
	font-size: var(--fs18);
	margin-top: 0.16rem;
  }
  .about-wrapper .part-1 .pic-box p em {
	font-size: var(--fs30);
  }
  .about-wrapper .part-2 {
	margin-top: 1.5rem;
  }
  .about-wrapper .part-2 ul {
	list-style: none;
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	flex-flow: wrap;
  }
  .about-wrapper .part-2 li {
	position: relative;
	width: calc((100% - 16px) / 5);
	margin-top: 4px;
	margin-right: 4px;
	background-color: #d00000;
	padding: 0.3rem 0.3rem 1.05rem 0.4rem;
  }
  .about-wrapper .part-2 h5,
  .about-wrapper .part-2 .date {
	color: #ffffff;
	font-family: "cn_medium";
  }
  .about-wrapper .part-2 h5 {
	font-size: var(--fs18);
	line-height: 0.3rem;
	min-height: 0.6rem;
  }
  .about-wrapper .part-2 .date {
	text-align: right;
	line-height: 0.48rem;
	height: 0.48rem;
	font-size: var(--fs18);
	margin-top: 0.32rem;
	position: absolute;
	right: 0.3rem;
	bottom: 0.25rem;
	z-index: 10;
  }
  .about-wrapper .part-2 .date span {
	display: inline-block;
	font-size: var(--fs48);
	margin-right: 0.06rem;
  }
  .about-wrapper .content,
  .about-wrapper .box-4 .desc,
  .about-wrapper .box-6 p {
	font-size: var(--fs18);
	color: #d00000;
	line-height: 0.3rem;
  }
  .about-wrapper .box-2 .list {
	padding-top: 0.3rem;
  }
  .about-wrapper .box-2 ul {
	list-style: none;
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	flex-flow: wrap;
  }
  .about-wrapper .box-2 ul li {
	width: 20%;
	text-align: center;
	padding: 0 0.3rem;
	cursor: default;
  }
  .about-wrapper .box-2 ul li:hover .icon img {
	transform: rotateY(180deg);
  }
  .about-wrapper .box-2 .icon {
	position: relative;
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 50%;
	margin: 0 auto;
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	align-items: center;
	justify-content: center;
	border: solid 2px rgba(255, 255, 255, 0.1);
  }
  .about-wrapper .box-2 .icon img {
	position: relative;
	display: block;
	width: 0.5rem;
	margin: 0 auto;
	z-index: 1;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
  }
  .about-wrapper .box-2 p {
	font-size: var(--fs24);
	line-height: 0.36rem;
	margin-top: 0.12rem;
  }
  .about-wrapper .box-4 .box-container {
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	flex-flow: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
  }
  .about-wrapper .box-4 .desc {
	width: 50%;
  }
  .about-wrapper .box-4 .content {
	width: 100%;
  }
  .about-wrapper .box-5 table {
	width: 100%;
  }
  .about-wrapper .box-5 tr th {
	height: 0.9rem;
	font-size: var(--fs30);
	font-weight: 500;
	font-family: "cn_medium";
	text-align: center;
	padding: 0 0.4rem;
  }
  .about-wrapper .box-5 tr th:first-child {
	background-color: #980f1f;
  }
  .about-wrapper .box-5 tr th:nth-child(2) {
	width: 41.12%;
	background-color: #4d4d4d;
  }
  .about-wrapper .box-5 tr:nth-child(odd) td:first-child {
	background-color: #141414;
  }
  .about-wrapper .box-5 tr:nth-child(even) td {
	background-color: #3e3e3e;
  }
  .about-wrapper .box-5 tr:nth-child(even) td:first-child {
	background-color: #424242;
  }
  .about-wrapper .box-5 td,
  .about-wrapper .box-5 th {
	color: #fff;
	line-height: 0.36rem;
  }
  .about-wrapper .box-5 td {
	padding: 0.4rem;
	height: 1.52rem;
	background-color: #272727;
  }
  .about-wrapper .box-5 td:first-child {
	width: 2.2rem;
	font-size: 0.28rem;
  }
  .about-wrapper .box-5 td:last-child {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	border-left: 2px solid rgba(255, 255, 255, 0.1);
  }
  .about-wrapper .box-6 ul {
	list-style: none;
  }
  .about-wrapper .box-6 li {
	position: relative;
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding-bottom: 0.14rem;
	margin-bottom: 0.14rem;
  }
  .about-wrapper .box-6 li:before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
	transform: scale(0);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transform-origin: left center;
  }
  .about-wrapper .box-6 li:last-child {
	margin-bottom: 0;
  }
  .about-wrapper .box-6 li:hover:before {
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
  }
  .about-wrapper .box-6 h5 {
	font-size: var(--fs36);
	line-height: 0.48rem;
	width: 2.2rem;
  }
  .about-wrapper .box-6 p {
	text-align: right;
	flex: 1;
	margin-left: 1rem;
	margin-top: 0.16rem;
  }
  @media screen and (min-width: 1004px) {
	.about-wrapper .part-2 li:nth-child(-n+5) {
	  margin-top: 0;
	}
	.about-wrapper .part-2 li:nth-child(5n) {
	  margin-right: 0;
	}
  }
  @media screen and (max-width: 1600px) {
	.about-wrapper .floor-box {
	  right: 0.48rem;
	}
	.about-wrapper .box-5 td {
	  padding: 0.36rem;
	}
	.about-wrapper .box-5 td:last-child {
	  padding-left: 0.4rem;
	  padding-right: 0.4rem;
	}
	.about-wrapper .box-5 td:first-child {
	  font-size: 0.26rem;
	}
	.about-wrapper .part-2 li {
	  padding: 0.26rem 0.26rem 0.9rem 0.3rem;
	}
	.about-wrapper .part-2 .date {
	  right: 0.26rem;
	}
  }
  @media screen and (max-width: 1440px) {
	.about-wrapper .box-5 td {
	  padding: 0.3rem;
	}
  }
  @media screen and (max-width: 1004px) {
	.about-wrapper .top {
	  margin-bottom: 0.48rem;
	}
	.about-wrapper .caption {
	  font-size: var(--fs24);
	  line-height: 0.6rem;
	  margin-bottom: 0.36rem;
	}
	.about-wrapper .brief {
	  font-size: var(--fs16);
	  line-height: 0.48rem;
	  margin-top: 4px;
	}
	.about-wrapper .floor-box {
	  display: none;
	}
	.about-wrapper .main > div {
	  padding-top: 1rem;
	}
	.about-wrapper .main > div.box-1 {
	  padding-top: 0.5rem;
	}
	.about-wrapper .part-1 .caption {
	  padding-bottom: 0.48rem;
	  margin-bottom: 0.48rem;
	  border-bottom-width: 1px;
	}
	.about-wrapper .part-1 .content {
	  width: 100%;
	}
	.about-wrapper .part-1 .pic-box {
	  width: 100%;
	  margin-top: 0.8rem;
	}
	.about-wrapper .part-1 .pic-box p {
	  line-height: 0.48rem;
	  font-size: var(--fs14);
	  margin-top: 0.3rem;
	}
	.about-wrapper .part-1 .pic-box p em {
	  font-size: var(--fs22);
	  margin-right: 0.06rem;
	}
	.about-wrapper .part-2 {
	  margin-top: 1rem;
	}
	.about-wrapper .part-2 ul {
	  -webkit-box-pack: justify;
	  -ms-flex-pack: justify;
	  -webkit-justify-content: space-between;
	  justify-content: space-between;
	  padding: 0 0.3rem;
	}
	.about-wrapper .part-2 li {
	  position: relative;
	  width: 70%;
	  margin: 6px auto 0;
	  padding: 0.26rem 0.26rem 1rem 0.36rem;
	}
	.about-wrapper .part-2 h5 {
	  font-size: var(--fs15);
	  line-height: 0.44rem;
	  min-height: 0.88rem;
	}
	.about-wrapper .part-2 .date {
	  line-height: 0.4rem;
	  height: 0.4rem;
	  font-size: var(--fs14);
	  margin-top: 0.24rem;
	  right: 0.26rem;
	  bottom: 0.2rem;
	}
	.about-wrapper .part-2 .date span {
	  font-size: var(--fs24);
	  margin-right: 0.06rem;
	}
	.about-wrapper .content,
	.about-wrapper .box-4 .desc,
	.about-wrapper .box-6 p {
	  font-size: var(--fs15);
	  line-height: 0.48rem;
	}
	.about-wrapper .box-2 .list {
	  padding-top: 0rem;
	}
	.about-wrapper .box-2 ul li {
	  width: 20%;
	  padding: 0 0.2rem;
	}
	.about-wrapper .box-2 .icon {
	  width: 1rem;
	  height: 1rem;
	  border-width: 1px;
	}
	.about-wrapper .box-2 .icon img {
	  width: 0.4rem;
	}
	.about-wrapper .box-2 p {
	  font-size: var(--fs14);
	  line-height: 0.4rem;
	  margin-top: 0.2rem;
	}
	.about-wrapper .box-4 .desc {
	  width: 100%;
	}
	.about-wrapper .box-4 .content {
	  width: 100%;
	  margin-top: 0.6rem;
	}
	.about-wrapper .box-5 table {
	  width: 100%;
	}
	.about-wrapper .box-5 tr th {
	  font-size: var(--fs18);
	  padding: 0 0.2rem;
	}
	.about-wrapper .box-5 td,
	.about-wrapper .box-5 th {
	  line-height: 0.36rem;
	}
	.about-wrapper .box-5 td {
	  padding: 0.24rem;
	  font-size: 0.24rem;
	}
	.about-wrapper .box-5 td:first-child {
	  width: 1.6rem;
	  font-size: var(--fs16);
	}
	.about-wrapper .box-5 td:last-child {
	  padding-left: 0.24rem;
	  padding-right: 0.24rem;
	  border-left-width: 1px;
	}
	.about-wrapper .box-6 ul {
	  padding-bottom: 0.36rem;
	  margin-bottom: 0.36rem;
	}
	.about-wrapper .box-6 li {
	  margin-bottom: 0.4rem;
	}
	.about-wrapper .box-6 h5 {
	  font-size: var(--fs20);
	  line-height: 0.48rem;
	}
	.about-wrapper .box-6 p {
	  line-height: 0.38rem;
	  font-size: 0.24rem;
	  margin-left: 0.3rem;
	  margin-top: 0;
	  text-align: left;
	}
  }
  @keyframes circle_1 {
	0% {
	  -webkit-transform: rotate(360deg) scaleX(1);
	}
	100% {
	  -webkit-transform: rotate(0deg) scaleX(1.1);
	}
  }
  @keyframes circle_2 {
	0% {
	  -webkit-transform: rotate(360deg) scaleX(0.9);
	}
	100% {
	  -webkit-transform: rotate(90deg) scaleX(1.1);
	}
  }
  .swiper-box {
	position: relative;
  }
  .swiper-btn {
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	z-index: 10;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
  }
  .index-banner-wrapper .index-banner-swiper .swiper-slide-active .box-container {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
  }
  .index-banner-wrapper .index-banner-swiper .swiper-slide-active img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
  }
  .index-banner-wrapper .index-banner-swiper .box-container {
	opacity: 0;
	visibility: hidden;
	transform: translateY(2rem);
	-webkit-transform: translateY(2rem);
	-moz-transform: translateY(2rem);
	-ms-transform: translateY(2rem);
	-o-transform: translateY(2rem);
	transition: all 1.5s ease;
	-webkit-transition: all 1.5s ease;
	-moz-transition: all 1.5s ease;
	-ms-transition: all 1.5s ease;
	-o-transition: all 1.5s ease;
	transition-delay: 0.4s;
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .index-banner-wrapper .swiper-slide {
	overflow: hidden;
  }
  .index-banner-wrapper .swiper-slide a {
	display: block;
  }
  .index-banner-wrapper .swiper-slide img {
	display: block;
	width: 100%;
	transition: transform 6s ease;
	-webkit-transition: transform 6s ease;
	-moz-transition: transform 6s ease;
	-ms-transition: transform 6s ease;
	-o-transition: transform 6s ease;
  }
  .index-banner-wrapper .swiper-slide img.phone {
	display: none;
  }
  .index-banner-wrapper .info {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	align-items: center;
  }
  .index-banner-wrapper h2 {
	font-size: 0.6rem;
	font-weight: 700;
	line-height: 0.72rem;
	color: #fff;
  }
  .index-banner-wrapper .swiper-pagination {
	display: block;
	bottom: 0.4rem;
	font-size: 0;
  }
  .index-banner-wrapper .swiper-pagination .swiper-pagination-bullet {
	opacity: 1;
	background: #fff;
	margin: 0 4px;
	width: 8px;
	height: 8px;
	border: none;
	transition: background 0.3s ease;
	-webkit-transition: background 0.3s ease;
	-moz-transition: background 0.3s ease;
	-ms-transition: background 0.3s ease;
	-o-transition: background 0.3s ease;
  }
  .index-banner-wrapper .swiper-pagination .swiper-pagination-bullet:link,
  .index-banner-wrapper .swiper-pagination .swiper-pagination-bullet:visited,
  .index-banner-wrapper .swiper-pagination .swiper-pagination-bullet:active,
  .index-banner-wrapper .swiper-pagination .swiper-pagination-bullet:focus {
	outline: none;
  }
  .index-banner-wrapper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #c1000b;
  }
  @media screen and (min-width: 1004px) {
	.page-banner-wrapper img,
	.index-banner-wrapper .swiper-slide img {
	  height: 100vh;
	  object-fit: cover;
	}
  }
  @media screen and (max-width: 1600px) {
	.index-banner-wrapper h2 {
	  font-size: 0.58rem;
	}
  }
  @media screen and (max-width: 1440px) {
	.index-banner-wrapper h2 {
	  font-size: 0.56rem;
	}
  }
  @media screen and (max-width: 1366px) {
	.index-banner-wrapper h2 {
	  font-size: 0.54rem;
	}
  }
  @media screen and (max-width: 1004px) {
	.index-banner-wrapper .swiper-slide img {
	  display: none;
	}
	.index-banner-wrapper .swiper-slide img.phone {
	  display: block;
	}
	.index-banner-wrapper .info {
	  padding-top: 0.6rem;
	}
	.index-banner-wrapper h2 {
	  font-size: var(--fs36);
	  line-height: 0.7rem;
	}
	.index-banner-wrapper .swiper-pagination {
	  bottom: 0.3rem;
	}
	.index-banner-wrapper .swiper-pagination .swiper-pagination-bullet {
	  width: 6px;
	  height: 6px;
	}
  }
  .case-wrapper {
	margin: 0.7rem auto 1.14rem;
  }
  .page-wrapper .content {
	font-size: var(--fs16);
	line-height: 0.36rem;
  }
  .search-wrapper .result {
	margin-bottom: 0.2rem;
  }
  .search-wrapper .result span {
	display: inline-block;
	font-size: var(--fs16);
	margin-right: 0.3rem;
	line-height: 0.48rem;
  }
  .search-wrapper .result b {
	display: inline-block;
	margin: 0 4px;
	color: #cd0000;
	font-family: "mb";
	text-decoration: underline;
  }
  .search-wrapper .list li {
	position: relative;
	list-style: none;
	border-bottom: 1px dashed #eee;
  }
  .search-wrapper .list li:first-child {
	border-top: 1px dashed #eee;
  }
  .search-wrapper .list li:hover .title {
	color: #86000d;
  }
  .search-wrapper .list li a {
	display: flex;
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	padding: 0.1rem 0;
	align-items: center;
  }
  .search-wrapper .list .title {
	flex: 1;
	font-size: var(--fs16);
	color: #666;
	line-height: 0.48rem;
	margin-right: 1rem;
	transition: color 0.3s ease;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
  }
  .search-wrapper .list p {
	font-size: var(--fs16);
	color: #999;
	font-family: "mr";
  }
  @media screen and (max-width: 1004px) {
	.page-wrapper .content {
	  line-height: 0.48rem;
	}
	.search-wrapper .result {
	  margin-bottom: 0.3rem;
	}
	.search-wrapper .result span {
	  font-size: var(--fs14);
	  margin-right: 0.48rem;
	}
	.search-wrapper .list li a {
	  padding: 0.2rem 0;
	}
	.search-wrapper .list .title {
	  font-size: var(--fs14);
	  line-height: 0.48rem;
	  margin-right: 0.6rem;
	}
	.search-wrapper .list p {
	  font-size: var(--fs14);
	}
  }
  .imgScale {
	position: relative;
  }
  .imgScale:hover:before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
  }
  .imgScale:hover img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
  }
  .imgScale:before {
	position: absolute;
	top: 0;
	left: -90%;
	z-index: 2;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
	-webkit-transition: All 0.5s ease;
	transition: All 0.5s ease;
  }
  @-webkit-keyframes shine {
	100% {
	  left: 125%;
	}
  }
  @keyframes shine {
	100% {
	  left: 125%;
	}
  }
  @keyframes circle-chart-fill {
	to {
	  stroke-dasharray: 0 100;
	}
  }
  @-webkit-keyframes circle-chart-fill {
	to {
	  stroke-dasharray: 0 100;
	}
  }
  @-moz-keyframes circle-chart-fill {
	to {
	  stroke-dasharray: 0 100;
	}
  }
  @-ms-keyframes circle-chart-fill {
	to {
	  stroke-dasharray: 0 100;
	}
  }
  @media screen and (min-width: 1024px) {
	::-webkit-scrollbar {
	  width: 5px;
	  background-color: #f7f8f9;
	}
	::-webkit-scrollbar-thumb {
	  background-color: #86000d;
	}
  }
  @media screen and (max-width: 1600px) {
	:root {
	  --fs18: 17px;
	  --fs20: 18px;
	  --fs22: 20px;
	  --fs24: 22px;
	  --fs28: 26px;
	  --fs30: 28px;
	  --fs36: 34px;
	  --fs40: 36px;
	  --fs48: 44px;
	}
  }
  @media screen and (max-width: 1440px) {
	.box-container {
	  width: 12rem;
	}
	:root {
	  --fs16: 15px;
	  --fs18: 16px;
	  --fs20: 17px;
	  --fs22: 0.2rem;
	  --fs24: 0.22rem;
	  --fs28: 0.26rem;
	  --fs30: 0.28rem;
	  --fs36: 0.3rem;
	  --fs40: 0.32rem;
	  --fs48: 0.4rem;
	}
  }
  @media screen and (max-width: 1366px) {
	:root {
	  --fs14: 13px;
	  --fs16: 14px;
	}
  }
  @media screen and (max-width: 1280px) {
	:root {
	  --fs14: 12px;
	}
  }
  @media screen and (max-width: 1004px) {
	:root {
	  --fs14: 0.24rem;
	  --fs16: 0.28rem;
	  --fs18: 0.3rem;
	  --fs20: 0.32rem;
	  --fs22: 0.36rem;
	  --fs24: 0.38rem;
	  --fs28: 0.4rem;
	  --fs30: 0.42rem;
	  --fs36: 0.44rem;
	  --fs40: 0.46rem;
	  --fs48: 0.48rem;
	}
	.box-container,
	.w1200 {
	  width: 100%;
	  padding: 0 0.3rem;
	}
	.pic img.pc {
	  display: none;
	}
	.pic img.phone {
	  display: block;
	}
  }