/*为保证通用性 尽量多添加父级div来帮助指定内容的大小和位置*/
/*min-height 指定容器默认高度*/
/*CSS书写顺序*/
/*1.位置属性(position, top, right, z-index,display, float等)*/
/*另，布局排版优先采用display: flex;*/
/*2.大小(width, height, padding, margin)*/
/*3.文字系列(font, line-height, letter-spacing, color- text-align等)*/
/*4.背景(background, border等)*/
/*5.其他(animation, transition等)*/

*, *:before, *:after {
    box-sizing: border-box;
    -webkit-box-sizing:border-box;
}
@font-face {
    font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;
}
@font-face {
    font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;
}
html, body {
    font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;
    line-height: normal;
} 
body {
    margin: 0 auto;
    min-height: 100vh;
    background-color: white;
}
ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}
a, a:link, a:visited, a:hover {
    text-decoration: none;
}

.f {
	display: none!important;
}

.t {
	display: block!important;
}

.ti {
	display: inline-block!important;
}

.header {
    position: relative;
}
.header, .header a {
    color: #FFF;
}
.loginbar {
    padding: 0 40px;
    height: 40px;
    line-height: 40px;
    border-bottom: solid 1px rgba(255, 255, 255, .2);
}

.loginbar>li:last-child {
    clear: both;
    float: right;
}
.logo {
    position: relative;
}
.logoimg {
    position: absolute;
    left: -5px;
    display: block;
    padding: 5px;
    min-width: 40px;
    height: 40px;
}
.columnbar {
    height: 60px;
    line-height: 60px;
}
.columnbar>li:hover {
    border-bottom: solid 2px #218EEB;
}
.columnbar>li:hover>a {
    color: #218EEB;
}
.columnbar>li:hover>.subnav{
    visibility: visible;
}
.subnav {
    position: absolute;
    top: 103px;
    left: 0;
    display: flex;
    visibility: hidden;
    width: 100%;
    padding: 0 40px;
    background-color: #272B2E;
    transition: visibility .25s;
}
.banner-bg1 {
    background: linear-gradient(#1B1755, #012564);
    filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#1B1755,endcolorstr=#012564,gradientType=0);
}
.banner-bg2 {
    background: linear-gradient(#1B1654, #126E97);
    filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#1B1654,endcolorstr=#126E97,gradientType=0);
}
.banner-bg3 {
    background: linear-gradient(#271D7A, #663399);
    filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#271D7A,endcolorstr=#663399,gradientType=0);
}
.banner-content {
	position: relative;
    margin: 0 auto;
}
.banner-right {
    right: 0;
}
.bi-title {
  display: initial;
    font-size: 54px;
	float: left;
    color: #75f3e9;
}
.bi-desc {
    font-size: 20px;
    line-height: 1.5em;
}
.bi-btn {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 140px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    border: solid 1px white;    
    cursor: default;
}
.bi-img {
    height: 100%;
}
@keyframes fadeIn {
    from {opacity: 0;}
    30% {opacity: 1;}
    to {}
}
@keyframes fadeInUp {
    from {opacity: 0;transform: translate(0, 50px);}
    30% {opacity: 1;}
    to {transform: translate(0, 0);}
}

.fadeIn {animation: fadeIn 1s ease-in-out;}
.fadeInUp {animation: fadeInUp 1s ease-in-out;}
.banner-control {
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform:translateX(-50%);
    transform:translateX(-50%);
}
.banner-control>span {
	display: inline-block;
    margin: 0 10px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: solid 1px rgba(255, 255, 255, .5);
}
.act-active {
    border: solid 1.2px rgba(255, 255, 255, 1) !important;
}
.content {
	position: relative;
}
.menu {
    width: 100%;
    text-align:center;
}
.menu, .menu a {
    color: white;
}
.menu-fixed {
    position: fixed;
    top: 0;
    z-index: 10;
}
.menu-isclick {}
.menu-list{
	cursor: pointer;
	text-align: center;
}
.menu>ul {
	display: inline-block;
	width: 1200px;
	height: 80px;
    text-align: left;
}
.menu li {
    float: left;
}
.main {
	background-color: #f5f5f6;
}
.container-title {
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 30px;
    text-align: center;
}
.bi-btn, .bodyBottom1A1Font {
	font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;
}
