﻿@charset "utf-8";
/* frame */
body .wrap{
    margin: 0 auto;
    overflow: hidden;
}
a {
    transition: all 0.5s;
}
body {
    min-width: 1400px;
    font-weight: 400;
    background: #fff;
}
.clear {
    clear: both;
}
#content {
    zoom: 1;
    width: 100%;
}
.row {
    width: 1400px;
    margin: auto;
    position: relative;
}
.row:after {
    content: "";
    height: 0;
    line-height: 0;
    font-size: 0;
    clear: both;
    display: block;
    overflow: hidden;
}

/* 头部 */
#header { display: none;}

/* 头部-banner */
#header-banner {
    position: relative;
    width: 100%;
    height: 760px;
    background: linear-gradient(45deg, #0B44C7, #07AAE8);
}
#header-banner .row{
    height: 100%;
}
#header-banner .logo {
    display: block;
    width: 238px;
    height: 50px;
    float: left;
    overflow: visible;
    margin: 41px 0 100px;
}
#header-banner .logo img {
    height: 100%;
    width: auto;
}
#header-banner .links {
    height: 36px;
    position: absolute;
    top: 49px;
    right: 0;
}
#header-banner .links a {
	position: relative;
	height: 36px;
	border-radius: 18px;
	line-height: 36px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	float: left;
	padding: 0 1.5em;
	margin-left: 10px;
	background: rgba(0,0,0,.34);
	box-shadow: 0 5px 5px rgba(0,0,0,.15);
}
#header-banner .links a:hover {
    background: rgba(0,0,0,.5);
}


/* banner-文字位置 */
#header-banner .banner-txt{
    position: absolute;
    z-index: 0;
    left: 0;
    top: 252px;
}
#header-banner .title{
    margin-bottom: 20px;
    font-size: 92px;
    line-height: 1.6;
    font-weight: bold;
    color: white;
    text-shadow: 0 4px 2px rgba(0,0,0,.25);
}
#header-banner .tip{
    font-size: 18px;
    line-height: 38px;
    color: white;
}

/* banner - 图片位置 */
#header-banner .banner-pic{
    width: 560px;
    height: 505px;
    float: left;
    position: absolute;
    z-index: 1;
    right: 0px;
    top: 111px;
    background: url(../img/banner-icon.png) center top no-repeat;
}


/*页面简单描述*/
.page-tip{
	display: flex;
	align-items: stretch;
	position: relative;
	margin-top: -128px;
	padding: 30px;
	border-radius: 10px;
	box-sizing: border-box;
	background: white;
	box-shadow: 0 4px 5px rgba(0,0,0,.1);
}
.page-tip::before{
    content:"";
    width: 284px;
    margin-right: 30px;
    background: url(../img/page-tip-icon.png) center center no-repeat;
    animation-delay: 0.7s;
    animation-name: rollIn;
}
.page-tip.animated::before{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.page-tip .intro{
    font-size: 18px;
    line-height: 32px;
    overflow: hidden;
}
.page-tip .intro p{
    margin:9px 0;
    text-indent: 2em;
}


/*row-hd*/
.row-hd{
	position: relative;
	z-index: 1;
	margin:0 auto 40px;
	padding-bottom: 10px;
	text-align: center;
}
.row-hd::after,
.row-hd::before{
    content:"";
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    float: left;
    transform: translateX(-50%);
}
.row-hd::before{
    width: 200px;
    height: 1px;
    line-height: 1px;
    background: linear-gradient(45deg, rgba(11, 68, 199, 0) 0%,rgba(11, 68, 199, 1) 50%, rgba(11, 68, 199, 0) 100%);
}
.row-hd::after{
    width: 0;
    height: 0;
    border-width:10px;
    margin-bottom: -20px;
    border-style:solid;
    border-color: #0B44C7 transparent transparent  transparent;
}
.row-hd h2{
	position: relative;
	display: inline-block;
	text-align: center;
	font-size: 40px;
	padding: 0 70px;
	font-weight: bold;
	line-height: 1.6;
}
.row-hd h2::before,
.row-hd h2::after{
    content:"";
    position: absolute;
    z-index: 1;
    top: 0;
    width: 30px;
    height: 30px;
    background-position: left top;
    background-repeat: no-repeat;
}
.row-hd h2::before{
    left: 0;
    background-image: url(../img/row-hd-left.png);
}
.row-hd h2::after{
    right: 0;
    background-image: url(../img/row-hd-right.png);
}

/*通用框 & 背景色 */
.ind-box{
    padding:90px 0 100px;
}
.bg-blue{
    background-color: #EAF3FF;
}
.difference-phone{
    background-color: #F4F8FE;
}
.box-highlight{
    background-color: #F4F8FE;
}
.box-other{
    background: linear-gradient(45deg, #0B44C7,#07AAE8);
}

/*difference-info*/
.difference-info{
	margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.difference-info dl{
    box-sizing: border-box;
    width: calc((100% / 3) - 15px);
    padding: 30px 50px 52px;
    background: white;
    border-radius: 10px;
    border-top: 8px solid #07AAE8;
}
.difference-info dt{
    text-align: center;
    margin-bottom: 10px;
}
.difference-info .num{
    font-size: 64px;
    font-weight: bold;
    line-height: 1.2;
    color:rgba(11, 68, 199, 0.1)
}
.difference-info .title{
	margin-bottom: 30px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
.difference-info .intro{
    font-size: 18px;
    line-height: 32px;
}
.difference-info .intro p{
    text-indent: 2em;
}

/*更多按钮*/
.row-btn{
    text-align: center;
}
.row-btn .more{
    text-align: center;
    font-size: 24px;
    color:#486ED7;
    text-decoration: underline;
}
.row-btn .more:hover{
    text-decoration: none;
}

/*difference-list*/
.difference-phone-info{
	display: flex;
	justify-content: space-between;
    align-items: center;
}
.phone-arrow-box{
	position: relative;
    z-index: 2;
    width: 410px;
    height: 410px;
    background: url(../img/app-icon-1.png) center center no-repeat;
}
.phone-arrow-box>span.txt{
	position: absolute;
	z-index: 1;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
	align-items: center;
    text-align: center;
	padding: 17px;
	width: 70px;
	height: 70px;
	font-size: 18px;
	font-weight: bold;
	line-height: 20px;
	color:rgba(2, 76, 255, 0.5);
	background-color: #fff;
	border-radius:50%;
}
.phone-arrow-box>span:nth-child(1){
    left: 55px;
    top: 26px;
}
.phone-arrow-box>span:nth-child(2){
    right: 92px;
    top: -24px;
    width: 50px;
    height: 50px;
    padding: 0;
    color: rgba(2, 76, 255, 0.25);
}
.phone-arrow-box>span:nth-child(3){
    right: 81px;
    top: 96px;
    width: 50px;
    height: 50px;
    padding: 0;
}
.phone-arrow-box>span:nth-child(4){
    right: 61px;
    bottom: 25px;
    color: rgba(2, 76, 255, 0.35);
}
.phone-arrow-box>span:nth-child(5){
    left: 72px;
    bottom: -12px;
    color: rgba(2, 76, 255, 0.35);
}

.phone-arrow-box>span.arrow{
    position: absolute;
    z-index: 1;
    width: 90px;
    height: 57px;
    top: 50%;
    margin-top: -28.5px;
    background: url(../img/app-icon-2.png) left top no-repeat;
}
.phone-arrow-box>span.arrow-left{
    left: 0;
}
.phone-arrow-box>span.arrow-right{
	right: 0;
    background-image: url(../img/app-icon-3.png);
}

.difference-list{
	position: relative;
	z-index: 1;
	height: 450px;
	padding: 45px 30px;
	display: flex;
	flex-direction: column;
	width: 440px;
	justify-content: center;
}
.difference-phone-info .difference-list:nth-child(3) li{
	min-height: 149px;
}
.difference-list::after,
.difference-list::before{
	content:"";
    position: absolute;
   	z-index: -1;
    top: 0;
    bottom: 0;
}
.difference-list::before{
	z-index: -2;
	left: 0;
	width: 280px;
	border-radius:10px;
	background: linear-gradient(-90deg, #49A1FF, #1775FF);
}
.difference-list::after{
	left: 100px;
    width: 540px;
    height: 540px;
    background-color: #F4F8FE;
    border-radius:50%;
}
.difference-phone-info .difference-list:nth-child(3)::before{
    left: auto;
    right: 0;
    background: linear-gradient(90deg, #49A1FF, #1775FF);
}
.difference-phone-info .difference-list:nth-child(3)::after{
    left: auto;
    right: 100px;
}
.difference-list li{
	position: relative;
	z-index: 1;
	padding:20px 30px 30px 45px;
	background-color: #fff;
	border-radius:10px;
	font-size: 18px;
	line-height: 30px;
}
.difference-list li:nth-child(1){
	margin-bottom:20px;
}
.difference-list li::before{
	position: absolute;
    z-index: 1;
    left: 20px;
    top: 26px;
    content:"";
    width: 5px;
    height: 20px;
    background-color: #1C76FF;
}
.difference-list li strong{
    font-weight: bold;
    color:#1C76FF;
}

/*background-info*/
.background-info{
    
}
.background-info dl{
    margin-bottom: 20px;
    background-color: #F4F8FE;
    border-radius:10px;
}
.background-info dt{
	padding: 40px 60px 0 18px;
	display: flex;
	align-items: flex-start;
}
.background-info .num{
	font-size: 64px;
	line-height: 1.02;
	font-weight: bold;
	color: rgba(11, 68, 199, 0.1);
	padding-right: 20px;
}
.background-info .intro{
	font-size: 18px;
	line-height: 32px;
	text-align: justify;
}
.background-info dd{
	padding: 20px 60px 35px 90px;
}
.pic-list{
	display: flex;
	justify-content: space-between;
}
.pic-list li{
	width: 200px;
    padding:10px;
    border-radius:10px;
    border: 1px solid #7EA7F4;
}
.pic-list li.arrow{
	width: 80px;
    border:0;
    background: url(../img/arrow-left.png) center center no-repeat;
}

/*other-txt-list*/
.other-txt-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 34px;
}
.other-txt-list li {
    width: 49%;
    background: white;
    border-radius: 10px;
    text-align: center;
}
.other-txt-list strong {
    position: relative;
    z-index: 2;
    top: -24px;
    display: inline-block;
    width: 40%;
    height: 48px;
    line-height: 48px;
    font-size: 24px;
    color: white;
}
.other-txt-list strong::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #999;
    border-radius: 10px;
    transform: skew(-10deg, 0deg);
}
.other-txt-list li:nth-child(2) strong::after{
	background: linear-gradient(45deg, #1775FF, #49A1FF);
}
.other-txt-list p {
	font-size: 18px;
	line-height: 32px;
}
.other-txt-list .arrow{
	display: block;
	margin: 12px 0 16px;
	height: 33px;
	background: url(../img/arrow-down-gray.png) center top no-repeat;
}
.other-txt-list li:nth-child(2) .arrow{
    background-image: url(../img/arrow-down-blue.png);
}
.other-txt-list p:nth-last-child(1) {
    padding-bottom: 30px;
}

/*highlight-list*/
.highlight-list{
    
}
.highlight-list dl{
    margin-bottom: 20px;
    background-color: #fff;
    border-radius:10px;
}
.highlight-list dt{
	position: relative;
	z-index: 1;
	padding: 20px 60px 26px 56px;
	line-height: 30px;
	font-size: 18px;
}
.highlight-list dt::before{
	position: absolute;
	z-index: 1;
	left: 20px;
	top: 25px;
	content:"";
	width: 20px;
	height: 20px;
	background: url(../img/icon-2.png) left center no-repeat;
}
.highlight-list dd{
    padding:30px 75px;
}
.highlight-list dl:nth-child(1) dt{
    background-color: #EAF3FF;
    border-radius:10px 10px 0 0;
}


/*box-other*/
.box-other{
    
}
.box-other .row-hd h2{
    color:white;
}
.box-other .row-hd h2::before{
    background-image: url(../img/row-hd-left-white.png);
}
.box-other .row-hd h2::after{
    background-image: url(../img/row-hd-right-white.png);
}
.box-other .row-hd::before{
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%,rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}
.box-other .row-hd::after{
	border-top-color:white;
}
.box-other .row-tip{
	margin-bottom: 40px;
	font-size: 18px;
    line-height: 1.6;
    text-align: center;
    color:white;
}

.other-pic-list{
    display: flex;
	justify-content: space-between;
}
.other-pic-list li{
	width: auto;
}
.other-pic-list li a{
    display: block;
}
.other-pic-list li img{
    width: 224px;
    padding:20px;
    border-radius:10px;
    background-color: #fff;
}
.other-pic-list li .title{
	padding-top: 20px;
    display: block;
    font-size: 16px;
    text-align: center;
    color:white;
}