﻿@charset "utf-8";
/* CSS Document */

/*============================================================== 初始化页面样式 ===========================================================*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
button,
input,
textarea,
p,
blockquote {
  padding: 0;
  margin: 0;
}
body {
  /*用 ascii 字符表示，使得在任何编码下都无问题*/
  font: 12px/1.5 Verdana, "Microsoft YaHei", Tahoma, "Simsun", sans-serif;
  word-wrap: break-word;
  color: #666666;
  background: #fafafa;
}
legend {
  /*解决ie下默认字体颜色无效*/
  color: #666666;
}
fieldset,
img,
abbr,
acronym {
  border: 0;
}
sub,
botton {
  cursor: pointer;
}
ol,
ul {
  list-style: none;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
address,
caption,
cite,
code,
dfn,
em,
var {
  font-weight: normal;
  font-style: normal;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
label {
  display: inline-block;
}
select,
input,
button,
textarea {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  vertical-align: middle;
  color: #000000;
}
a:link,
a:visited,
a:active {
  color: #666666;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

* {
  box-sizing: border-box;
}

/*============================================================== 初始化页面样式 END ========================================================*/

/*================================================================= 公用样式 ==============================================================*/

/*=== 清除浮动(clearfix) ===*/
.clearfix {
  /*IE*/
  zoom: 1;
}
.clearfix:after {
  /*非IE*/
  clear: both;
  content: "";
  height: 0;
  visibility: hidden;
  display: block;
}
.clear {
  /*消除浮动*/
  clear: both;
  height: 0px;
  font-size: 0;
  line-height: 0;
  display: block;
}
/*=== 清除浮动(clearfix) END ===*/

/*======= 公共样式 ======*/
.align-r {
  text-align: right;
}
.title-style {
  position: relative;
  height: 38px;
  font-size: 18px;
  font-weight: normal;
  border-bottom: 2px solid #dedede;
  color: #333333;
}
.title-style span {
  display: inline-block;
  /* height:30px; */
  line-height: 30px;
  border-bottom: 2px solid #f8ab00;
  position: absolute;
  bottom: -2px;
  left: 0;
  padding-right: 20px;
  padding-bottom: 8px;
}
.ts2 span {
  border-bottom-color: #f8ab00;
}
.orang-btn {
  display: inline-block;
  width: 115px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #f87900;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
}
.apple,
.android,
.windows {
  background: url(../img/icon.png) no-repeat;
  display: inline-block;
}
.apple {
  background-position: 0 -41px;
  width: 20px;
  height: 21px;
}
.apple:hover {
  background-position: 0 -1px;
}
.android {
  background-position: -47px -40px;
  width: 20px;
  height: 22px;
}
.android:hover {
  background-position: -47px 0;
}
.windows {
  background-position: -93px -42px;
  width: 19px;
  height: 18px;
}
.windows:hover {
  background-position: -93px -2px;
}
.f-l {
  float: left;
}
.f-r {
  float: right;
}
/*======= 公共样式 END ======*/
/*遮罩层*/
.mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99990;
  background: #000;
  filter: alpha(opacity=70);
  /*支持 IE 浏览器*/
  -moz-opacity: 0.7;
  /*支持 FireFox 浏览器*/
  opacity: 0.7;
  /*支持 Chrome,Opera,Safari 等浏览器*/
}
.pop-box-style {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 99999;
  background: #ffffff;
  border: 8px solid #cccccc;
  line-height: 30px;
  color: #333333;
  padding: 40px;
  font-size: 16px;
}
.pop-box-style h2 {
  font-weight: normal;
  font-size: 16px;
}
.pop-box-style p {
  text-indent: 2em;
}
.pop-box-style p strong {
  color: #f00;
}
.close {
  position: absolute;
  right: 20px;
  top: 20px;
}
.main {
  width: 1190px;
  margin: 0 auto;
}
.main2 {
  width: 1920px;
  margin: 0 auto;
}
.header {
  width: 100%;
  height: 63px;
}
.logo {
  float: left;
  margin-top: 11px;
}
.nav {
  float: right;
}
.nav li {
  float: left;
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  color: #999999;
  padding: 3px 25px 0 25px;
}
.nav li a {
  display: inline-block;
  height: 60px;
  text-decoration: none;
}
.nav li.cur,
.nav li:hover {
  padding-top: 0;
  border-top: 3px solid #f87900;
  color: #f87900;
}
.nav li.cur a,
.nav li:hover a {
  color: #f87900;
}
.banner {
  overflow: hidden;
  height: 320px;
  position: relative;
}

.banner .img_wrap {
  margin: 0 auto;
  width: 100%;
  height: 320px;
  text-align: center;
  background-color: #fbc367;
}

.img_wrap > img {
  max-width: 1920px;
}

.banner ul.ul1 li {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 6;
}
.banner ul.ul1 li {
  float: left;
}

.product {
  position: relative;
  margin-bottom: 40px;
  height: 400px;
}

.product:last-child {
  margin-bottom: 0;
}

.product_img {
  width: 800px;
  height: 400px;
}

.product_info {
  position: absolute;
  top: 64px;
  padding: 0 40px;
  width: 780px;
  height: 280px;
  opacity: 0.9;
  color: #333333;
}

.product_enter {
  padding-left: 12px;
  float: right;
  display: flex;
  font-size: 20px;
  font-weight: bold;
  align-items: center;
  color: #f87900 !important;
  cursor: pointer;
  text-decoration: none !important;
}

.product_enter img {
  width: 18px;
  height: 18px;
}

.product_info .product_info_bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.9;
}

.product_info .product_title {
  position: relative;
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
}

.product_info .product_desc {
  position: relative;
  font-size: 16px;
  line-height: 28px;
}

.apps_wrap {
  margin-top: 30px;
  display: flex;
}

.app {
  margin-right: 34px;
  width: 272px;
  height: 272px;
  background: #ffffff;
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.app a {
  text-decoration: none !important;
}

.app:last-child {
  margin-right: 0;
}

.app_img {
  margin-top: 30px;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
}

.app_name {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  line-height: 24px;
}

.app_desc {
  margin-top: 10px;
  font-size: 14px;
  color: #999999;
  line-height: 18px;
}

.app_btn {
  margin-top: 18px;
  width: 88px;
  height: 32px;
  line-height: 32px;
  background: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  color: #f87900;
  border: 1px solid #f87900;
  text-align: center;
  cursor: pointer;
}

.app_desc2 {
	margin-top: 18px;
	color: #F87900;
}

.small-circle{
	text-align:center;
	position:absolute;
	width:100%;
	z-index:10;
	bottom:20px;
}
.small-circle li{
	display:inline-block;
	background:url(../img/icon.png) no-repeat 0 -99px;
	width:15px;
	height:15px;
	margin:0 10px;
	cursor:pointer;
}
.small-circle li.cur{
	background-position:-30px -99px;
}
.b-left{
	float:left;
	width:840px;
	margin-top:30px;
}
.web-box{
	padding:20px 0;
}
.web-box .logo2{
	float:left;
}
.web-box .web-info{
	width:552px;
	float:left;
	height:161px;
	margin-left:30px;	
}
.web-box .web-info h2{
	font-size:20px;
	color:#333333;
}
.web-box .web-info p{
	line-height:40px;
	color:#969696;
	font-size:16px;
	margin:5px 0 15px 0;
}
.web-box2{
	padding:20px;
	background:#f5f5f5;
	margin-top:20px;
}
.web-box2 .web-info{
	width:190px;
	height:105px;
	margin-left:15px;	
}
.web-box2 .web-info h2{
	font-size:14px;
}
.web-box2 .web-info p{
	color:#969696;
	font-size:12px;
	line-height:24px;
	margin-bottom:5px;
}
.web-box2 .web-info .btn-box a{
	margin-right:30px;
}
.b-right{
	float:left;
	width:320px;
	margin:30px 0 0 30px;
}
.footer{
	width:100%;
	text-align:center;
	border-top:2px solid #DEDEDE;
	height:110px;
	margin-top:40px;
	color:#999999;
	padding-top:30px;
	font-size:14px;
}
.footer p{
	margin-top:10px;
}
.footer a:link{
	color:#999999;
	margin:0 5px;
}
.footer a:visited{
	color:#999999;
}

.banner2{
	background:#018299;
	margin-bottom:50px;
}


.banner3_layout {
	position: relative;
}

.banner3 {
  background: #fbc367;
  margin-bottom: 50px;
}

.banner3_active {
	cursor: pointer;
}

.switch_banner_layout {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.switch_banner_layout > div {
  width: 16px;
  height: 8px;
  background: #ffffff;
  border-radius: 4px;
  opacity: 0.5;
	cursor: pointer;

  &:not(:last-child) {
    margin-right: 8px;
  }
}

.switch_banner_layout .dot_active {
  width: 24px;
  height: 8px;
  background: #f87900;
  border-radius: 4px;
	opacity: 1;
}

.ab-us-con p{
	text-indent:2em;
	font-size:16px;
	margin-top:20px;
	line-height:28px;
}
.ab-img{
	text-indent:0;
	margin-bottom:40px;
}
.ab-img img{
	width:200px;
	margin:0 39px;
}
.rec-con{
	padding:30px 0;
	border-bottom:1px dashed #cccccc;
}
.rec-con .num{
	float:left;
	display:inline-block;
	width:34px;
	height:34px;
	line-height:34px;
	color:#FFFFFF;
	text-align:center;
	font-size:16px;
	background:url(../img/circle.png);
	margin-right:20px;
	font-family:Arial;
}

.rec-con .info{
	float:left;
	font-size:16px;
	line-height:30px;
	width:525px;
}
.rec-con .info h2{
	font-size:24px;
	color:#000000;
	font-weight:normal;
	margin-bottom:20px;
}


.show-module-box{
	margin-top:80px;
}
.nav2{
	margin-bottom:80px;
}
.nav2 li{
	background:url(../img/circle-o-g.png);
	width:150px;
	height:150px;
	display:inline-block;
	float:left;
	text-align:center;
	line-height:150px;
	font-size:18px;
	color:#333333;
	margin:0 24px;
	cursor:pointer;
}
.nav2 li.cur{
	color:#000000;
	background:url(../img/circle-o-b.png);
}
.module-style h2{
	padding-left:20px;
	background:url(../img/diamond.png) no-repeat left center;
	height:30px;
	line-height:30px;
	color:#000000;
}
.module-style p{
	text-indent: 2em;
	font-size: 16px;
	margin-top: 20px;
	line-height: 28px;
}
.module-style p.img-box{
	text-indent:0;
	text-align:center;
	margin-top:50px;
}
.module-style p.img-box img{
	margin:0 35px;
}
.m-ul-style li{
	width:530px;
	float:left;
	text-align:center;
	margin:0 25px;
	padding-bottom:40px;
}
.m-ul-style{
	padding:40px 0 0 0;
	border-bottom:1px dashed #DEDEDE;
}
.m-ul-style:last-child {
	border-bottom: none;
}
.m-ul-style li p{
	text-indent:0;
	text-align:left;
}
.m-ul-style li img{
	border:3px solid #DEDEDE;
}
.j-us .f-l,.j-us .f-r{
	width:580px;
}

.desc_box {
  margin-bottom: 20px;
  text-indent: 2em;
  font-size: 16px;
}

.desc_box_time {
  color: #000;
  font-weight: bold;
}
