html, body {
    width: 100%;
    height: 100%;
    background-color: rgba(220,236,241,1);
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-family: "Microsoft YaHei", helvetica, arial, sans-serif;
    font-weight: lighter;
    color: rgba(0, 0, 0, .86);
    min-width: 1420px;
    overflow: scroll;
}

* {
    box-sizing: border-box;
    margin:0;
    padding:0;
}

.textIndent {
    text-indent: 35px;
}

.main{
    width: 100%;
    height: 100%;
    min-width: 1420px;
}
.main .nav{
    position: fixed;
    width: 220px;
    background-color: rgba(61,83,175,1);
    padding: 40px 12px 48px;
    height: 100%;
    text-align: center;
    overflow-y: scroll;
    z-index: 9999;
}
.main .nav .logo{
    margin: 30px auto;
}
.main .nav .logo img{

}
.main .nav .nav-item{
    flex: 1;
    margin-top: 24px;
    text-align: center;
    cursor: pointer;
}
.main .nav .nav-item img{
    margin: 0 auto;
}
.main .nav .nav-item .content-text{
    margin-top: 6px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}
.main .nav .code{
    margin: 36px auto 0;
    text-align: center;
}
.main .nav .linkList{
    display: flex;
}

.main .content{
    height: 100%;
    padding-left: 220px;
    position: relative;
}
.main .content .banner{
    width: 100%;
    position: relative;
}
.main .content .banner img{
    width: 100%;
}

.bottom{
    background: rgba(38,38,38,1);
}
.bottom .bottomContent{
    width: 1060px;
    margin: 0 auto;
    padding: 36px 24px;
}
.bottom .bottomContent .bottomLogo{
    float: left;
}
.bottom .bottomContent .bottomInfo{
    margin-top: 15px;
    float: left;
    margin-left: 24px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}
.bottom .bottomContent .bottomInfo .bottomInfoItem{
    float: left;
    margin-right: 54px;
    cursor: pointer;
}
.bottom .bottomContent .copy{
    margin-top: 20px;
}
.bottom .bottomContent .bottomCode{
    float: right;
    text-align: center;
}
.bottom .bottomContent .bottomCode .bottomCodeInfo{
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-top: 16px;
}



/*dialog*/
.dialogShadow {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .3);
    z-index: 10000;
}

.dialogContainer {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 450px;
    /*height:150px;*/
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 1001;
    border-radius: 4px;
}

.dialogContent {
    margin: 15px;
}

.dialogContent .dialogContentTitle {
    margin-bottom: 20px;
    font-size: 18px;
}

.dialogContent .dialogContentText {
    margin: 10px 0;
    font-size: 14px;
}

.dislogContentFooter {
    margin-top: 5px;
    text-align: right;
}

.dialog-close{
    width:44px;
    height:44px;
    position:absolute;
    top:-20px;
    right:-20px;
    background:url("../images/icon_close.png") no-repeat top left;
    cursor: pointer;
    z-index:9999;
}
.dialog-close:hover{
    background-image: url("../images/icon_close_selected.png");
}


.dialogMessage{
    width: 640px;
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-320px,-50%);
    z-index: 10003;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 48px 36px;
    color: rgba(0,0,0,0.86);
    line-height: 30px;
}
.dialogMessage .dialogMessageTitle{
    font-size: 36px;
    text-align: center;
    color: rgba(0,0,0,0.85);
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.dialogMessage .closeBtn{
    margin: 36px auto 0;
    border: 1px solid rgba(0,0,0,0.1);
    color: rgba(0,0,0,0.75);
    font-size: 15px;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}