/* 英文默认字体 */

@font-face {
	font-family: openSans;
	src: url('../fonts/OPEN-SANS-2.woff2')
}

* {
	font-family: 微软雅黑, Arial, Helvetica, sans-serif;
}

html, body {
	font-size: 0.48rem;
	background-color: #fff;
	-webkit-text-size-adjust: 100% !important;
	text-size-adjust: 100% !important;
	-moz-text-size-adjust: 100% !important;
}

body, div, a, li, ul, ol, dl, img, span, input {
	padding: 0px;
	margin: 0px;
	list-style: none;
	border: 0px;
}

a:link {
	color: #000;
	text-decoration: none;
}

a:visited {
	text-decoration: none;
	color: #000;
}

a:hover {
	text-decoration: none;
	color: #000;
}

a:active {
	text-decoration: none;
	color: #000;
}

/* 外边距和后台一致 */

p {
	margin: 0.05rem 0;
}

ul {
	list-style-type: none;
}

img {
	max-width: 100%;
}

.clear {
	clear: both;
}

.f-l {
	float: left;
}

.f-r {
	float: right;
}

.after:after {
	content: '';
	display: block;
	clear: both;
}

.mr-0 {
	margin-right: 0px!important;
}

/* 表格初始化 */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td {
	border: 0.01px solid #eee;
	padding: 0.07rem;
	font-size: 0.14rem;
}

.o-v {
	overflow-y: hidden;
}

/* 加载 */

.loading {
	background-color: #fff;
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 9999;
}

.loading .icon {
	position: absolute;
	left: 50%;
	top: 40%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.loading .icon i {
	font-size: 0.9rem;
}

.loading .icon p {
	margin: 0;
	font-size: 0.42rem;
	margin-top: 0.6rem;
	color: #666;
}

/* 头部 */

#header .box {
	position: absolute;
	padding: 0.45rem;
	width: 100%;
	box-sizing: border-box;
	z-index: 9998;
}

#header .logo {
	float: left;
	font-size: 0;
}

#header .logo img {
	height: 28px;
}

#header .menu {
	float: right;
	position: relative;
	height: 22px;
	width: 28px;
	cursor: none;
}

#header .menu span {
	display: block;
	height: 4px;
	width: 28px;
	background-color: #000;
	border-radius: 15px;
	position: absolute;
	left: 0;
	transition: all .3s ease .1s;
	opacity: 1;
	top: 0;
}

#header .menu span:nth-of-type(2) {
	top: 9px;
}

#header .menu span:nth-of-type(3) {
	top: 18px;
}

#header .menu.active span:nth-of-type(2) {
	opacity: 0;
}

#header .menu.active span:nth-of-type(1) {
	top: 0.12rem;
	transform: rotateZ(45deg);
}

#header .menu.active span:nth-of-type(3) {
	top: 0.12rem;
	transform: rotateZ(-45deg);
}

#header .nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	z-index: 9997;
	padding-top: 1.83rem;
	padding-left: 0.3rem;
	padding-right: 0.3rem;
	box-sizing: border-box;
	display: none;
	overflow-x: hidden;
	padding-bottom: 1rem;
}

#header .nav .search {
	margin: 1rem 0;
	position: relative;
}

#header .nav .search input {
	line-height: 1rem;
	padding-left: 0.8rem;
	width: 100%;
	border: 0.03rem solid #eee;
	box-sizing: border-box;
	color: #333;
	outline: none;
	-webkit-appearance: none;
}

#header .nav .search i {
	position: absolute;
	top: 0.35rem;
	left: 0.3rem;
	font-size: 0.33rem;
	color: #eee;
}

#header .nav .list a {
	display: block;
	font-size: 0.4rem;
	font-weight: bold;
	color: #010101;
	border-bottom: 1px solid #eee;
	padding: 0.5rem 0;
	opacity: 0;
}

#header .nav.active .list a:nth-of-type(1) {
	transition: all .2s cubic-bezier(0.4, 0.8, 0.74, 1) 0s;
}

#header .nav.active .list a:nth-of-type(2) {
	transition: all .2s cubic-bezier(0.4, 0.8, 0.74, 1) .15s;
}

#header .nav.active .list a:nth-of-type(3) {
	transition: all .2s cubic-bezier(0.4, 0.8, 0.74, 1) .2s;
}

#header .nav.active .list a:nth-of-type(4) {
	transition: all .2s cubic-bezier(0.4, 0.8, 0.74, 1) .25s;
}

#header .nav.active .list a:nth-of-type(5) {
	transition: all .2s cubic-bezier(0.4, 0.8, 0.74, 1) .3s;
}

#header .nav.active .list a:nth-of-type(6) {
	transition: all .2s cubic-bezier(0.4, 0.8, 0.74, 1) .35s;
}

#header .nav.active .list a {
	opacity: 1;
}

/* 首页 */

#home .banner {
	height: 100vh;
	width: 100%;
	position: relative;
}

#home .banner .bg {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

#home .banner .bg:nth-of-type(2) {
	display: none;
}

@media screen and (min-width:811px) {
	#home .banner .bg:nth-of-type(2) {
		display: block;
	}
}

#home .banner .arrows {
	position: absolute;
	bottom: 70px;
	left: 0%;
	width: 100%;
	text-align: center;
	animation: arrow 2.5s infinite;
}

#home .banner .arrows i {
	color: #fff;
	display: block;
	font-size: 0.9rem;
	line-height: 0.75rem;
}

/* banner 箭头动画 */

@keyframes arrow {
	0% {
		bottom: 70px;
		opacity: 1;
	}
	50% {
		bottom: 55px;
		opacity: .5
	}
	100% {
		bottom: 70px;
		opacity: 1;
	}
}

/* banner 箭头动画 */

@-webkit-keyframes arrow {
	0% {
		bottom: 70px;
		opacity: 1;
	}
	50% {
		bottom: 55px;
		opacity: .5
	}
	100% {
		bottom: 70px;
		opacity: 1;
	}
}

#home .website {
	background-color: #f7f7f7;
	padding: 1.60rem 0;
}

#home .website .title {
	text-align: center;
}

#home .website .title .box p {
	display: inline-block;
	margin: 0;
}

#home .website .title .box .icon {
	width: 0.81rem;
	height: 0.81rem;
	background-image: url(../images/icon.png);
	background-size: 5.38rem auto;
	background-position: 0 -0.4rem;
	vertical-align: middle;
}

#home .website .title .box p:nth-of-type(2) {
	font-size: 0.72rem;
	color: #333;
	margin-left: 0.3rem;
}

#home .website .title>p {
	font-size: 0.3rem;
	color: #999;
	margin: 0;
	margin-top: 0.3rem;
	font-family: Arial, Helvetica, sans-serif;
}

#home .website .slogan {
	margin-top: 1rem;
}

#home .website .slogan p {
	font-size: 0.46rem;
	color: #666;
	line-height: 1rem;
	margin: 0;
	text-align: center;
}

#home .website .more {
	text-align: center;
	margin-top: 1.35rem;
}

#home .website .more a {
	display: inline-block;
	width: 2.8rem;
	font-size: 0;
}

#home .website .pc {
	text-align: center;
	margin-top: 0.8rem;
}

#home .website .pc img {
	width: 7.55rem;
}

#home .website .list {
	text-align: center;
	margin-top: 1rem;
}

#home .website .list li {
	width: 3.67rem;
	height: 2rem;
	display: inline-block;
	margin-right: 0.6rem;
	background-image: linear-gradient(110deg, #43c6fc, #606ff9, #915bf9);
	border-radius: 0.15rem;
}

#home .website .list li:nth-of-type(n+3) {
	margin-top: 0.6rem;
}

#home .website .list li:nth-of-type(2n) {
	margin-right: 0;
}

#home .website .list li p {
	margin: 0;
	color: #fff;
	font-size: 0.36rem;
	display: inline-block;
	margin-top: 0.7rem;
}

#home .website .list li .icon {
	display: inline-block;
	width: 0.61rem;
	height: 0.61rem;
	background-image: url(../images/icon.png);
	background-size: 5.38rem auto;
	margin-top: 0.65rem;
	vertical-align: top;
	margin-right: 0.25rem;
}

#home .website .list li:nth-of-type(1) .icon {
	background-position: 0 -1.2rem;
}

#home .website .list li:nth-of-type(2) .icon {
	background-position: -0.7rem -1.2rem;
}

#home .website .list li:nth-of-type(3) .icon {
	background-position: -1.4rem -1.2rem;
}

#home .website .list li:nth-of-type(4) .icon {
	background-position: -2.1rem -1.2rem;
}

#home .case {
	padding: 1rem 0.45rem;
}

#home .case .title p:nth-of-type(1) {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.36rem;
}

#home .case .title p:nth-of-type(2) {
	font-weight: bold;
	font-size: 0.6rem;
}

#home .case .title p:nth-of-type(2) span {
	color: #666;
	font-size: 0.36rem;
	font-weight: 500;
	margin-left: 0.5rem;
}

#home .case .list {
	margin-top: 0.6rem;
}

#home .case .list a {
	display: block;
}

#home .case .list a .img {
	padding-top: 80%;
	height: 0;
	width: 100%;
	background-size: cover;
	border-radius: 0.3rem;
}

#home .case .list a .box .title {
	font-size: 0.4rem;
	margin-top: 0.5rem;
	float: left;
	width: calc(100% - 2.26rem);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#home .case .list a .box .icon {
	margin-top: 0.565rem;
	float: right;
}

#home .case .list a .box .icon span {
	float: left;
	width: 0.62rem;
	height: 0.39rem;
	background-image: url(../images/icon.png);
	background-size: 5.38rem auto;
	margin-right: 0.2rem;
}

#home .case .list a .box .icon span:nth-of-type(1) {
	background-position: -0.9rem 0rem;
}

#home .case .list a .box .icon span:nth-of-type(2) {
	width: 0.4rem;
	background-position: -1.72rem 0rem;
}

#home .case .list a .box .icon span:nth-of-type(3) {
	background-position: -2.51rem 0rem;
	width: 0.21rem;
}

#home .case .list a .box .icon span:last-child {
	margin-right: 0;
}

#home .case .list a .box .type {
	margin-top: 0.4rem;
	font-size: 0.3rem;
	color: #666;
}

#home .case .list a .box .type, #home .case .list a .box .url {
	margin-top: 0.2rem;
	font-size: 0.3rem;
	color: #666;
	width: 50%;
	float: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 0.7rem;
}

#home .case .list a .box .url {
	text-align: right;
}

#home .case .more {
	display: block;
	font-size: 0.42rem;
	line-height: 1.15rem;
	width: 100%;
	background-color: #333;
	color: #fff;
	border-radius: 0.15rem;
	text-align: center;
	margin-top: 0.67rem;
}

/* 其他页公共部分 */

#main .banner {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#main .banner p {
	margin: 0;
	color: #fff;
	text-align: center;
}

#main .banner p:nth-of-type(1) {
	line-height: 8.1rem;
	font-size: 0.9rem;
	height: 6.8rem;
}

#main .banner p:nth-of-type(2) {
	line-height: 1.3rem;
	font-size: 0.44rem;
	background-color: rgba(20, 47, 60, 0.3);
}

/* 建站 */

#main .website .flow-path .title {
	padding: 1.3rem 0.45rem;
}

#main .website .flow-path .title p:nth-of-type(1) {
	font-size: 0.72rem;
	font-weight: bold;
	color: #333;
	margin: 0;
}

#main .website .flow-path .title p:nth-of-type(2) {
	line-height: 0.9rem;
	color: #666;
	font-size: 0.4rem;
	margin: 0;
	margin-top: 0.7rem;
}

#main .website .flow-path .list li {
	position: relative;
	width: 50%;
	height: 0;
	padding-top: 40%;
	background-color: red;
	float: left;
}

#main .website .flow-path .list li .box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#main .website .flow-path .list li .icon {
	height: 0.98rem;
	width: 1rem;
	margin: 0 auto;
	background-image: url(../images/icon.png);
	background-size: 5.38rem auto;
}

#main .website .flow-path .list li p {
	margin-top: 0.65rem;
	font-size: 0.48rem;
	color: #fff;
}

#main .website .flow-path .list li:nth-of-type(1) {
	background-color: #f67524;
}

#main .website .flow-path .list li:nth-of-type(2) {
	background-color: #248CF6;
}

#main .website .flow-path .list li:nth-of-type(3) {
	background-color: #28E396;
}

#main .website .flow-path .list li:nth-of-type(4) {
	background-color: #24C2F6;
}

#main .website .flow-path .list li:nth-of-type(5) {
	background-color: #F7C725;
}

#main .website .flow-path .list li:nth-of-type(6) {
	background-color: #FF5500;
}

#main .website .flow-path .list li:nth-of-type(7) {
	background-color: #1576D7;
}

#main .website .flow-path .list li:nth-of-type(8) {
	background-color: #18CE83;
}

#main .website .flow-path .list li:nth-of-type(9) {
	background-color: #15B1E4;
}

#main .website .flow-path .list li:nth-of-type(10) {
	background-color: #F6A925;
}

#main .website .flow-path .list li:nth-of-type(1) .icon {
	background-position: 0 -2.5rem;
}

#main .website .flow-path .list li:nth-of-type(2) .icon {
	background-position: -1.11rem -2.5rem;
}

#main .website .flow-path .list li:nth-of-type(3) .icon {
	background-position: -2.22rem -2.5rem;
}

#main .website .flow-path .list li:nth-of-type(4) .icon {
	background-position: -3.3rem -2.5rem;
}

#main .website .flow-path .list li:nth-of-type(5) .icon {
	background-position: -4.36rem -2.5rem;
}

#main .website .flow-path .list li:nth-of-type(6) .icon {
	background-position: 0 -3.6rem;
}

#main .website .flow-path .list li:nth-of-type(7) .icon {
	background-position: -1.11rem -3.6rem;
}

#main .website .flow-path .list li:nth-of-type(8) .icon {
	background-position: -2.22rem -3.6rem;
}

#main .website .flow-path .list li:nth-of-type(9) .icon {
	background-position: -3.33rem -3.6rem;
}

#main .website .flow-path .list li:nth-of-type(10) .icon {
	background-position: -4.38rem -3.6rem;
}

#main .website .adv {
	background-color: #F5F8FF;
	padding: 0 0.45rem;
	padding-bottom: 1.67rem;
}

#main .website .adv .title {
	padding: 1.3rem 0;
}

#main .website .adv .title p:nth-of-type(1) {
	font-size: 0.72rem;
	font-weight: bold;
	color: #333;
	margin: 0;
}

#main .website .adv .title p:nth-of-type(2) {
	line-height: 0.9rem;
	color: #666;
	font-size: 0.4rem;
	margin: 0;
	margin-top: 0.7rem;
}

#main .website .adv .list li {
	width: calc(50% - 0.25rem);
	height: 0;
	padding-top: 26%;
	float: left;
	position: relative;
	margin-right: 0.5rem;
	background-image: linear-gradient(110deg, #43c6fc, #606ff9, #915bf9);
	border-radius: 0.15rem;
}

#main .website .adv .list li:nth-of-type(n+3) {
	margin-top: 0.5rem;
}

#main .website .adv .list li:nth-of-type(2n) {
	margin-right: 0;
}

#main .website .adv .list li .box {
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translate(0%, -50%);
}

#main .website .adv .list li .icon {
	height: 0.53rem;
	width: 0.57rem;
	margin: 0 auto;
	background-image: url(../images/icon.png);
	background-size: 5.38rem auto;
	float: left;
	margin-left: 0.6rem;
}

#main .website .adv .list li p {
	font-size: 0.4rem;
	color: #fff;
	float: left;
	margin: 0;
	margin-left: 0.4rem;
}

#main .website .adv .list li:nth-of-type(1) .icon {
	background-position: 0rem -4.72rem;
}

#main .website .adv .list li:nth-of-type(2) .icon {
	background-position: -0.6rem -4.72rem;
}

#main .website .adv .list li:nth-of-type(3) .icon {
	background-position: -1.26rem -4.72rem;
}

#main .website .adv .list li:nth-of-type(4) .icon {
	background-position: -1.84rem -4.72rem;
}

#main .website .adv .list li:nth-of-type(5) .icon {
	background-position: -2.44rem -4.72rem;
}

#main .website .adv .list li:nth-of-type(6) .icon {
	background-position: 0rem -5.3rem;
}

#main .website .adv .list li:nth-of-type(7) .icon {
	background-position: -0.6rem -5.29rem;
}

#main .website .adv .list li:nth-of-type(8) .icon {
	background-position: -1.2rem -5.28rem;
}

#main .website .adv .list li:nth-of-type(9) .icon {
	background-position: -1.8rem -5.3rem;
}

#main .website .adv .list li:nth-of-type(10) .icon {
	background-position: -2.44rem -5.3rem;
}

#main .website .admin {
	padding: 0 0.45rem;
	padding-bottom: 1.67rem;
}

#main .website .admin .title {
	padding: 1.3rem 0;
}

#main .website .admin .title p:nth-of-type(1) {
	font-size: 0.72rem;
	font-weight: bold;
	color: #333;
	margin: 0;
}

#main .website .admin .title p:nth-of-type(2) {
	line-height: 0.9rem;
	color: #666;
	font-size: 0.4rem;
	margin: 0;
	margin-top: 0.7rem;
}

/* 案例组件 */

.case-list::after {
	content: "";
	clear: both;
	display: block;
}

.case-list a {
	float: left;
	width: 4.94rem;
}

.case-list a:nth-of-type(2n) {
	float: right;
}

.case-list a .img {
	height: 0;
	padding-top: 4rem;
	width: 100%;
	background-size: cover;
	border-radius: 0.15rem;
}

.case-list a .title p {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.case-list a .title p:nth-of-type(1) {
	font-size: 0.34rem;
	margin-top: 0.6rem;
	line-height: 0.40rem;
}

.case-list a .title p:nth-of-type(2) {
	font-size: 0.3rem;
	color: #666;
	margin-top: 0.2rem;
}

.case-list a:nth-of-type(n+3) {
	margin-top: 0.8rem;
}

/* 案例模块 */

#main .case .search {
	position: relative;
}

#main .case .search input {
	padding-left: 0.45rem;
	line-height: 1.16rem;
	height: 1.16rem;
	background-color: #EDEDED;
	font-size: 0.34rem;
	outline: none;
	width: 100%;
	color: #999;
	padding-right: 1.61rem;
	box-sizing: border-box;
}

#main .case .search button {
	position: absolute;
	height: 1.16rem;
	width: 1.16rem;
	right: 0;
	top: 0;
	background-color: #bbb;
	border: 0px;
	box-sizing: border-box;
}

#main .case .search button {
	font-size: 0.37rem;
	color: #fff;
}

#main .case .series {
	text-align: center;
	font-size: 0;
	padding: 0.88rem 0;
}

#main .case .series a {
	line-height: 1rem;
	padding: 0 0.7rem;
	display: inline-block;
	font-size: 0.36rem;
	color: #666;
	border: 1px solid #ccc;
	margin-right: 0.63rem;
}

#main .case .series a:last-child {
	margin-right: 0;
}

#main .case .series a.active {
	background-image: linear-gradient( 110deg, #43c6fc, #606ff9, #915bf9);
	border: 0px;
	color: #fff;
}

#main .case .list {
	padding: 0 0.45rem;
}

/* 案例内页 */

#main .case-view {
	background-color: #F6F6F6;
}

#main .case-view .search button {
	font-size: 0.37rem;
	color: #fff;
}

#main .case-view .series {
	text-align: center;
	font-size: 0;
	padding: 0.88rem 0;
}

#main .case-view .series a {
	line-height: 1rem;
	padding: 0 0.7rem;
	display: inline-block;
	font-size: 0.36rem;
	color: #666;
	border: 1px solid #ccc;
	margin-right: 0.63rem;
}

#main .case-view .series a i {
	display: inline-block;
	width: 0.29rem;
	height: 0.24rem;
	background-image: url(../images/icon.png);
	background-size: 5.38rem auto;
}

#main .case-view .series a:last-child {
	margin-right: 0;
}

#main .case-view .series a:nth-of-type(1) i {
	background-position: -2.89rem 0rem;
}

#main .case-view .series a:nth-of-type(2) i {
	background-position: -3.2rem 0rem;
}

#main .case-view .series a:nth-of-type(3) i {
	background-position: -3.6rem 0rem;
}

#main .case-view .series a.active {
	background-image: linear-gradient( 110deg, #43c6fc, #606ff9, #915bf9);
	border: 0px;
	color: #fff;
}

#main .case-view .series a.active:nth-of-type(1) i {
	background-position: -2.89rem -0.3rem;
}

#main .case-view .series a.active:nth-of-type(2) i {
	background-position: -3.2rem -0.3rem;
}

#main .case-view .series a.active:nth-of-type(3) i {
	background-position: -3.6rem -0.3rem;
}

#main .case-view .body {
	padding: 0 0.45rem;
}

#main .case-view .body img {
	width: 100%;
	margin-bottom: 0.7rem;
	box-shadow: 0 0 0.12rem rgb(0 0 0 / 70%);
}

#main .case-view .other-products {
	background-color: #fff;
	padding: 1rem 0;
}

#main .case-view .other-products>.title {
	font-size: 0.72rem;
	color: #333;
	text-align: center;
	padding-bottom: 1rem;
}

#main .case-view .other-products .list {
	padding: 0 0.45rem;
}

/* 新闻模块 */

#main .news .list li {
	padding: 1.92rem 0.45rem;
}

#main .news .list li>a {
	color: #015fbf;
	font-size: 0.6rem;
	font-weight: bold;
	line-height: 1rem;
}

#main .news .list li .time {
	font-size: 0.4rem;
	color: #999;
	padding: 1rem 0;
}

#main .news .list li .time i {
	margin-right: 0.2rem;
}

#main .news .list li .introduction {
	line-height: 0.9rem;
	color: #666;
	font-size: 0.48rem;
}

#main .news .list li:nth-of-type(2n) {
	background-color: #F7F7F7;
}

/* 新闻内页 */

#main .news-view .box {
	padding: 1rem 0.45rem;
}

#main .news-view .title {
	font-size: 0.6rem;
	line-height: 1rem;
	text-align: center;
	font-weight: bold;
}

#main .news-view .time-back {
	padding: 0.9rem 0rem;
	text-align: center;
	font-size: 0;
}

#main .news-view .time-back p {
	display: inline-block;
	font-size: 0.4rem;
	margin: 0;
	color: #999;
	margin-right: 0.8rem;
}

#main .news-view .time-back a {
	color: #666;
	display: inline-block;
	border: 1px solid #666;
	border-radius: 0.15rem;
	padding: 0 0.5rem;
	line-height: 0.65rem;
	font-size: 0.3rem;
}

#main .news-view .body {
	padding: 0.7rem 0;
	border-bottom: 1px solid #d2d2d2;
	border-top: 1px solid #d2d2d2;
}

#main .news-view .other-news {
	background-color: #F5F8FF;
	padding: 1.45rem 0.45rem;
}

#main .news-view .other-news>.title {
	font-size: 0.72rem;
}

#main .news-view .other-news>.more {
	text-align: center;
	padding: 0.8rem 0;
}

#main .news-view .other-news>.more a {
	display: inline-block;
	line-height: 0.76rem;
	padding: 0 0.6rem;
	font-size: 0.3rem;
	color: #fff;
	background-color: #bbb;
	border-radius: 0.15rem;
}

#main .news-view .other-news .list a {
	background-color: #fff;
	padding: 0.8rem 0.4rem;
	display: block;
}

#main .news-view .other-news .list a:nth-of-type(n+2) {
	margin-top: 0.3rem;
}

#main .news-view .other-news .list a p:nth-of-type(1) {
	color: #0060c1;
	font-size: 0.48rem;
	padding-bottom: 0.4rem;
	line-height: 1rem;
	font-weight: bold;
	margin: 0;
}

#main .news-view .other-news .list a p:nth-of-type(2) {
	font-size: 0.36rem;
	color: #666;
	line-height: 0.7rem;
	margin: 0;
	height: 1.4rem;
	overflow: hidden;
}

/* 联系我们 */

#main .contact .info .title {
	padding: 1.25rem 0.45rem;
	font-weight: bold;
	font-size: 0.68rem;
	text-align: center;
}

#main .contact .info .list li {
	background-color: #f5f8ff;
	padding: 1.3rem 0.45rem;
}

#main .contact .info .list li:nth-of-type(n+2) {
	margin-top: 0.23rem;
}

#main .contact .info .list li>p:nth-of-type(1) {
	font-size: 0.48rem;
	padding-bottom: 0.45rem;
	font-weight: bold;
}

#main .contact .info .list li>p:nth-of-type(2) {
	font-size: 0.42rem;
	color: #666;
}

#main .contact .info .list li .qq{
	padding: 0 0.6rem;
}
#main .contact .info .list li .qq a {
	/* padding: 0 0.4rem; */
	float: left;
	line-height: 1rem;
	color: #333;
	border: 1px solid #000;
	font-size: 0.3rem;
	text-align: center;
	border-radius: 1rem;
	width: 4rem;
	text-align: center;
}

#main .contact .info .list li .qq a:nth-of-type(n+3) {
	margin-top: 0.45rem;
}

#main .contact .info .list li .qq a:nth-of-type(2n) {
	float: right;
}

#main .contact .qr-code {
	font-size: 0;
	padding: 1.1rem 0;
	text-align: center;
}

#main .contact .qr-code img {
	width: 5.3rem;
}

#main .contact .qr-code p {
	color: #b8b8b8;
	font-size: 0.36rem;
	margin: 0;
	margin-top: 0.4rem;
}

#main .contact .address {
	background-color: #F5F8FF;
	padding: 1.1rem 0.45rem;
}

#main .contact .address .title p:nth-of-type(1) {
	font-size: 0.72rem;
	color: #333;
	font-weight: bold;
	margin: 0;
}

#main .contact .address .title p:nth-of-type(2) {
	font-size: 0.36rem;
	color: #666;
	line-height: 0.9rem;
	padding: 0.6rem 0;
	margin: 0;
}

#main .contact .message {
	padding: 1.1rem 0.45rem;
}

#main .contact .message .title p:nth-of-type(1) {
	font-size: 0.72rem;
	color: #333;
	font-weight: bold;
	margin: 0;
}

#main .contact .message .title p:nth-of-type(2) {
	font-size: 0.36rem;
	color: #666;
	line-height: 0.9rem;
	padding: 0.6rem 0;
	margin: 0;
}

#main .contact .message .form .label {
	float: left;
	font-size: 0.36rem;
	width: 1.4rem;
}

#main .contact .message .form .label span {
	color: #f40;
	margin-right: 0.15rem;
}

#main .contact .message .form .radio {
	float: left;
	width: calc(100% - 1.6rem);
}

#main .contact .message .form .radio label {
	padding: 0 0.3rem;
	line-height: 0.60rem;
	float: left;
	height: 0.6rem;
	border: 1px solid #000;
	text-align: center;
	margin-right: 0.23rem;
	cursor: pointer;
	font-size: 0.28rem;
	box-sizing: border-box;
}

#main .contact .message .form .radio label:last-child {
	margin-right: 0;
}

#main .contact .message .form .radio input {
	opacity: 0;
	height: 0;
	width: 0;
}

#main .contact .message .form .radio input:checked+label {
	background-color: #000;
	color: #fff;
}

#main .contact .message .form .item {
	position: relative;
	margin-top: 0.45rem;
}

#main .contact .message .form .item input, #main .contact .message .form textarea {
	height: 0.74rem;
	line-height: 0.74rem;
	display: block;
	width: 100%;
	border: 1px solid #a9a9a9;
	outline: none;
	padding: 0 0.6rem;
	box-sizing: border-box;
	font-size: 0.28rem;
	-webkit-appearance: none;
}

#main .contact .message .form .item span {
	color: #f40;
	position: absolute;
	top: 0.1rem;
	left: 0.3rem;
	font-size: 0.3 rem;
}

#main .contact .message .form textarea {
	height: 1.89rem;
	padding-left: 0.3rem;
	font-size: 0.28rem;
	margin-top: 0.45rem;
}

#main .contact .message .form .item button {
	background-color: #000;
	padding: 0 1rem;
	height: 0.74rem;
	float: right;
	font-size: 0.3rem;
	border: 0px;
	color: #fff;
}

/* 底部 */

#footer {
	background-color: #222;
}

#footer .contact {
	text-align: center;
	border-bottom: 1px solid #4e4e4e;
	font-size: 0;
	padding: 0.6rem 0;
}

#footer .contact .box {
	display: inline-block;
}

#footer .contact .box:nth-of-type(2) {
	margin-left: 1rem;
}

#footer .contact .box i {
	color: #fff;
	margin-right: 0.3rem;
	float: left;
	font-size: 0.75rem;
}

#footer .contact .box span {
	color: #fff;
	font-size: 0.3rem;
	float: left;
	line-height: initial;
	margin-top: 0.15rem;
}

#footer .link {
	text-align: center;
	padding: 0.4rem 1rem;
}

#footer .link a {
	font-size: 0.3rem;
	line-height: 0.48rem;
	color: #fff;
	margin-right: 0.3rem;
}

#footer .copyright {
	font-size: 0.3rem;
	color: #999;
	padding-bottom: 0.4rem;
	text-align: center;
}

#footer .copyright p {
	margin: 0;
}

/* 返回顶部 */

.back-top {
	position: fixed;
	right: 0.6rem;
	bottom: 1rem;
	color: #333;
	background-color: #fff;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
	width: 1.2rem;
	height: 1.2rem;
	text-align: center;
	line-height: 1.2rem;
	border-radius: 1rem;
	display: none;
}

.back-top {
	font-size: 0.6rem;
}