/* 初始化开始*/
* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    color: #333;
}

em, i, b {
    font-weight: normal;
    font-style: normal;
}

a {
    text-decoration: none;
    color: #333;
    -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
}

a:hover {
    text-decoration: none;
}

li {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clearfix:after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}

.clearfix {
    zoom: 1;
}
.fl{
    float: left;
}
.fr {
    float: right;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #999;
    background: none;
    outline: none;
    border: 0px;
}

input:-moz-placeholder, textarea:-moz-placeholder {
    color: #999;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: #999;
}

input:disabled {
    background-color: inherit;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #999;
}

.mt-10 {
    margin-top: 10px;
}
.w1200{
    width: 1200px;
    margin: 0 auto;
}
.va-m{
    vertical-align: middle;
}
/* 初始化结束 */
.header2{

}
.header2-fix{
    background-color: #1C1F2B;
    border-bottom: 1px solid #5EB2FE;
}
.h2-right{
    float: right;
}
.h2-right a{
    color: #fff;
    font-size: 16px;
    padding: 22px 58px;
    display: inline-block;
}
.h2-right a.active{
    background-color: #5EB2FE;
}
.indexTitle{
    color: #333333;
    font-size: 28px;
    margin-top: 48px;
    text-align: center;
    position: relative;
}
.indexTitle:before{
    content: "";
    position: absolute;
    left: 600px;
    bottom: -10px;
    width: 24px;
    height: 4px;
    background: rgba(89,187,255,1);
    border-radius: 2px;
}
.indexTitle2{
    font-size:28px;
    font-family:Helvetica;
    font-weight:400;
    color:rgba(189,228,255,1);
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
}
.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 0;
}
.joinModal{
    width:370px;
    height:370px;
    border-radius:4px;
    background: #fff;
    position: fixed;
    left: 50%;
    top: 40%;
    z-index: 10;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(-50%, calc(-50% + 100px));
    -ms-transform: translate(-50%, calc(-50% + 100px));
    -moz-transform: translate(-50%, calc(-50% + 100px));
    transform: translate(-50%, calc(-50% + 100px));
    text-align: center;
    display: none;
}
.joinModal img{
    margin-top: 40px;
}
.joinTitle1{
    margin-top: 30px;
    font-size:20px;
    font-family:Microsoft YaHei;
    font-weight:400;
    color:rgba(51,51,51,1);
    margin-bottom: 5px;
}
.joinTitle2{
    font-size:16px;
    font-family:Microsoft YaHei;
    font-weight:400;
    color:rgba(153,153,153,1);
}
.joinBtn{
    text-align: center;
    width:180px;
    height:45px;
    line-height: 45px;
    background:rgba(255,129,45,1);
    box-shadow:0px 20px 30px 0px rgba(255,129,45,0.2);
    border-radius:23px;
    display: inline-block;
    color: #fff;
    margin-top: 49px;
}
.joinModal .closeBtn{
    position: absolute;
    top: -95px;
    right: 0px;
    cursor: pointer;
}