@charset "UTF-8";
/*ui styles*/
:root{
    /*defined font style*/
    font:normal normal normal 20px/1 "Microsoft YaHei","微软雅黑", Arial, sans-serif
}
html,body{
    position: relative;
    background:#FFFFFF;
    width:100%;
    height:100%;
    margin:0;
    padding:0;
    color:#646464;
}
*,*::after,*::before{box-sizing: border-box;outline: none;}
h1,h2,h3,h4,h5,h6,p,button{margin:0;padding:0;}
dl,ul,ol{list-style:none}
a{
    text-decoration: none;
    color:#646464;
    transition: all .3s ease-in-out;
}
a:hover{
    transition: all .3s ease-out;
}
a[role="button"]{
    background:linear-gradient(to right,#F75187 70%,#FE5E4B);
    display: flex;
    justify-content: center;
    align-items: center;
    width:680px;
    height:60px;
    font-size:28px;
    border-radius: 30px;
    color:#FFFFFF;
}
a[role="button"]:hover{
    transform:translateY(-3px);
    background:linear-gradient(to left,#F75187 70%,#FE5E4B);
    box-shadow: 0 5px 10px rgba(150,50,50,.35);
    cursor: pointer;
}
body > *{
    width: 100%;
    margin:0;
}
body > section,body > header{
    display: flex;
    flex-direction: column;
    align-items: center;
    width:100%;
    min-width: 1200px;
    padding:10px calc((100% - 1200px)/2);
}
div[role="main"]{
    width:1200px;
    min-width: 1200px;
}
/*header style*/
body > header {
    position: fixed;
    top:0;
    flex-direction: row;
    justify-content: space-between;
    background:#ffffff;
    height: 80px;
    z-index:999999;
    box-shadow: 0 5px 10px rgba(200,200,200,.35);
}
body > header  img{
    height:40px;
}
body > header > nav{
    display: flex;
    justify-content: space-between;
    width: 500px;
    padding:0 50px;
}
nav[role="navigation"] > a:hover{
    color:#0780FE;
}
nav[role="navigation"] > a{
    position:relative;
    letter-spacing: 1px;
}
nav[role="navigation"] > a::after{
    content: "";
    background-color: #0780FE;
    position: absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-10px;
    width:0;
    height:3px;
    border-radius:2px;
    transition: all .2s ease-in;
}
nav[role="navigation"] > a:hover::after,nav[role="navigation"] > a:active::after{
    width:100%;
}
body > header > code{
    display: flex;
    align-items: center;
    height:30px;
    color:#0780FE;
    font: normal bold 26px/35px Alibaba-PuHuiTi-B, Alibaba-PuHuiTi,Arial, serif;
}
body > header > code > img{
    height:36px;
}
/*banner style*/
body > section[role="banner"]{
    margin-top:80px;
    padding:0;
    height:560px;
    overflow:hidden;
}
section[role="banner"] > img{
    height: 100%;
}
/*note style*/
section[role="note"]{
    background:#F2F6FC;
    flex-direction: row;
    height:100px;
    font-weight: 400;
    font-size:24px;
}
section[role="note"] > button{
    background-color: #684DEE;
    height:40px;
    width:136px;
    border:0;
    border-radius: 5px;
    color:#FFFFFF;
    font-size:24px;
    margin-left:100px;
}
section[role="note"] > address{
    font-style: normal;
    padding:0 12px;
}
section[data-module]{
    background:#FBFBFD;
    padding-top:30px;
    padding-bottom:30px;
}
section[data-module] > h1,section[data-module] > h2{
    background:url(../images/subject-bg.png) no-repeat top center;
    background-size:56px 40px;
    height:100px;
    padding-top:56px;
    font-size:36px;
    font-weight: 700;
    color:#323232;
    letter-spacing: 2px;
}
section[data-module] > h3{
    font-size:28px;
    height:40px;
    line-height: 40px;
    font-weight: 400;
    text-align: center;
}
section[data-module] > h3 > mark{
    color:#684DEE;
    background:transparent;
}
/*introduction style*/
section[data-module="introduction"] > article[role="document"]{
    background: linear-gradient(#CAE2F9,#FAFDFF);
    position: relative;
    width: 1120px;
    height: 270px;
    padding:40px 60px;
    margin-top:35px;
    border-radius: 50px;
    border:1px solid #CAE2F9;
    font-size:20px;
    line-height: 35px;
}
article[role="document"]::before,article[role="document"]::after{
    display: block;
    position: absolute;
    background: linear-gradient(to top,#CAE2F9,#FAFDFF);
    border-radius: 8px;
    border:1px solid #CAE2F9;
    content:"";
    width:26px;
    height:26px;
    bottom:27px;
    right:103px;
    opacity: .6;
}
article[role="document"]::after{
    background: linear-gradient(#CAE2F9,#FAFDFF);
    width:60px;
    height:60px;
    bottom: -24px;
    right:39px;
}
article[role="document"] > p{
    margin-bottom: 15px;
}
article[role="main"]{
    display: flex;
    width:100%;
    padding:0;
}
section[data-module="analysis"]{
    background: #F2F6FC;
}
fieldset{
    display: block;
    width: 100%;
    border:0;
    padding:20px 60px;
}
fieldset > legend{
    display: block;
    position: relative;
    width: 100%;
    height:80px;
    padding:0 40px;
    font-size:26px;
    line-height: 80px;
    font-weight: 500;
    color:#006BD6;
}
fieldset[data-float="right"] > legend{
    right:0;
    text-align: right;
}
fieldset > legend::before{
    display: block;
    position: absolute;
    background: url(../images/legend-bg.png) no-repeat;
    background-size:80px;
    width: 80px;
    height:80px;
    content: "";
    top:0;
    left:10px;
}
fieldset[data-float="right"] > legend::before{
    transform:rotate(180deg);
    top:0;
    left:auto;
    right:10px;
}
[data-fluid="row"]{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding:25px 40px 0 40px;
}
[data-fluid="column"]{
    width:540px;
}
[data-fluid="column"] > *{
    margin-bottom:40px!important;
}
dl[role="group"]{
    background:#FFFFFF url(../images/card-bg.png) no-repeat left bottom;
    background-size:300px;
    list-style: none;
    display: flex;
    flex-direction: column;
    margin:0;
    padding:30px 0;
    border-radius:20px;
    box-shadow: 0 0 10px rgba(200,200,200,.45);
}
dl[role="group"] > dt{
    width:100%;
    height:26px;
    font-size:26px;
    font-weight: 500;
    line-height: 26px;
    padding-left:25px;
    color:#323232;
    border-left:8px solid #684DEE;
}
dl[role="group"] > dd{
    flex:none;
    margin:0;
    padding:30px 35px 0 35px;
    font-size:18px;
    text-align: center;
}
dl[role="group"] > dd > img{
    width: 100%;
    margin:10px 0;
}
dl[role="group"] > dd >p{
    text-align: left;
    font-weight: 300;
    line-height: 28px;
    padding-top:10px;
}
section[data-module="course"] article{
    background:linear-gradient(to left,#CAE2F9,#FAFDFF );
    width:980px;
    height:138px;
    padding:40px;
    border-radius: 20px;
    font-size:20px;
    line-height:30px;
    font-weight: 400;
    box-shadow: 0 0 5px rgba(100,100,200,.2);
    margin:-15px 0 20px 80px!important;
}
section[data-module="course"] [data-fluid="row"]{
    padding:20px 10px!important;
}
section[data-module="course"] [data-fluid="column"]{
    width: 340px!important;
}
section[data-module="course"] [data-fluid="column"] > img {
    width:100%;
    margin-bottom: 15px!important;
}

/*crowd style*/
section[data-module="crowd"]{
    background: url(../images/crowd-bg.jpg) no-repeat center;
    background-size:100% 100%;
    padding-top:60px;
    padding-bottom: 60px;
}
section[data-module="crowd"] ul[role="list"]{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    list-style:none;
    width: 100%;
    height:820px;
}
section[data-module="crowd"] li[role="listitem"]{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
section[data-module="crowd"] li[role="listitem"] > figure{
    width: 260px;
    max-width: 260px;
    text-align: center;
    font-size:22px;
    line-height: 40px;
}
section[data-module="crowd"] img{
    width:160px;
    height:160px;
}

/* guide styles */
section[data-module="guide"]{
    background: url(../images/guide-subject.jpg)no-repeat bottom;
}
section[data-module="guide"] > fieldset > ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    margin:0 auto;
    padding:40px 0 40px 90px;
    background: url(../images/guide-bg.jpg) no-repeat center;
    background-size:120%;
    width:850px;
    height:435px;
    border-radius: 20px;
    font-size:18px;
    color:#323232
}
section[data-module="guide"] > fieldset > ul > li{
    margin-bottom:35px;
}
section[data-module="guide"] > fieldset > ul > li:last-child{
    margin-bottom: 0;
}
section[data-module="guide"] > fieldset > ul > li::before{
    display: inline-block;
    background: url(../images/guide-item.png) no-repeat 0 0;
    background-size:26px 60px;
    height:20px;
    padding-left:36px;
    content: attr(title);
    color:#666666;
    margin-right: 40px;
}
section[data-module="guide"] > fieldset > ul > li:nth-child(2)::before,
section[data-module="guide"] > fieldset > ul > li:nth-child(5)::before{
    background-position-y:-40px;
}
section[data-module="guide"] > fieldset > ul > li:nth-child(4)::before,
section[data-module="guide"] > fieldset > ul > li:nth-child(7)::before{
    background-position-y:-20px;
}

/*superiority styles*/
section[data-module="superiority"] > ul[role="directory"]{
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height:400px;
    padding:0;
    margin-bottom: 50px;
}
section[data-module="superiority"] > ul[role="directory"] > li{
    display: flex;
    justify-content: space-between;
    height:180px;
    padding:0;
}
ul[role="directory"]  figure{
    position: relative;
    height: 100%;
    width:280px;
}
ul[role="directory"]  figure > figcaption{
    position: absolute;
    color:#FFFFFF;
    font-weight: 500;
    font-size:20px;
    line-height: 30px;
    text-align: center;
    top:50%;
    width: 100%;
    transform: translateY(-50%);
}
ul[role="directory"]  figure > img{
    width:100% !important;
    border-radius: 15px;
}

/*branch styles*/
section[data-module="branch"]{
    background:url(../images/branch-bg.jpg) no-repeat center;
    padding-bottom: 50px;
}
section[data-module="branch"] > h2,section[data-module="branch"] > h3{
    color:#FFFFFF!important;
}
section[data-module="branch"] > ul{
    display: flex;
    flex-direction: column;
    width: 100%;
}
section[data-module="branch"] > ul > li::before{
    background:#0A7AF2;
    content:attr(title);
    font-weight: 700;
    padding:10px;
    margin-right:30px;
    min-width: 300px;
    border-radius:50px;
    text-align:center;
    color:#FFFFFF;
}
section[data-module="branch"] > ul > li{
    display: flex;
    align-items: center;
    background:#FFFFFF;
    padding:20px;
    margin-top:20px;
    line-height: 2em;
    border-radius: 10px;
    box-shadow:0 0 10px rgba(100,100,200,.2);
    font-size:20px;
}
/*process styles*/
[data-module="process"] img{
    width: 1138px;
    margin-bottom: 20px;
}
/*book styles*/
[data-module="book"]{
    display: flex;
    flex-direction: row!important;
    background: #251B59!important;
}
[data-module="book"] figcaption{
    background: #684DEE;
    position: relative;
    color:#FFFFFF;
    height:40px;
    width:120px;
    line-height: 40px;
    padding-left:17px;
}
[data-module="book"] figcaption::after{
    display: inline-block;
    position: absolute;
    content:"";
    right:-20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 20px;
    border-color: transparent transparent transparent #684DEE;
}
[data-module="book"] > figure > img{
    height:400px;
    border-left:4px solid #684DEE;
    margin-top:15px;
    padding: 0 15px;
}
/*footer styles*/
body > footer{
    display: flex;
    background: #323232;
    justify-content: center;
    align-items: center;
    width:100%;
    color:#FFFFFF;
    font-size:14px;
    height:60px;
}
body > footer > a{
    color:#FFFFFF;
}

/*IE10~11 hack*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    [role="tablist"] > [role="tab"] > header > div:last-child{
        flex:none;
        width:548px;
    }
    [role="tabpanel"] > ol > li{
        width:884px;

    }
}