
html {
    box-sizing: border-box;
    line-height: 1;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    height: 100%
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
    margin: 0;
    height: 100%;
}

*, :after, :before {
    box-sizing: inherit
}

a:active, a:focus {
    outline: none
}

a, a:focus, a:hover {
    cursor: pointer;
    color: inherit;
    text-decoration: none
}

div:focus {
    outline: none
}

#app {
    height: 100%;
}

.app-wrapper {
    height: 100%;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
}

.header {
    background-color: #3a557a;
    width: 100%;
    margin: 0 auto;
    max-width: 1920px;
    height: 90px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

.header-logo {
    width: 184px;
    height: 74px;
    background: transparent url(../img/logo.bg.png) no-repeat scroll 50%/contain;
    margin: 0 auto 0;
    cursor: pointer;
}
.detail {
    max-width: 1920px;
    margin: 0 auto;
}

.detail-title {
    color: #3c9254;
    font-size: 22px;
    text-align: center;
    padding: 30px 30px 0 30px;
    line-height: 1.4;
    margin-bottom: 20px
}

.detail-content {
    padding: 0 30px 30px 30px;
}

.detail .title {
    color: #3c9254;
    border-bottom: 1px solid #c4c2c2;
    text-indent: 0;
}

.detail p {
    margin: 0 0 20px 0;
    line-height: 1.5;
    word-wrap: break-word;
}
.detail ul {
    margin: 0;
    padding-left:  15px;
}
.detail li {
    margin: 0 0 10px 0;
    line-height: 1.5;
    font-size: 15px;
}
.detail li::before{
    color: #3c9254;
}

.footer{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #2d3745;
    padding: 15px 0 15px 0;
    /*bottom: 0;*/
    /*position: absolute;*/
}
.footer-logo{
    width: 191px;
    height: 69px;
    background: transparent url(../img/logo.bg.png) no-repeat scroll 50%/contain;
    margin: 15px auto 0 auto;
}
.footer-copyright {
    color: #fff;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #48586f;
}
.footer-copyright-item {
    margin: 5px 0;
}
.footer-link {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #623d3d;
    border-color: #48586f;
}
.footer-link .el-row{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.footer-link .el-col {
    width: 1px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.footer-link a {
    color: #fff;
    text-decoration: underline;
    display: block;
    margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
    .header {
        height: 45px
    }
    .header-logo {
        width: 92px;
        height: 37px;
    }
    .detail-title {
        padding: 15px 15px 0 15px;
    }
    .detail-content {
        padding: 0 15px 15px 15px;
    }
    .footer-logo {
        width: 114.6px;
        height: 41.4px;
    }
    .footer-copyright {
        font-size: 12px;
    }
    .footer-link a {
        font-size: 12px;
    }
}
@media only screen and (max-width: 1199px){
    .footer {
        padding-bottom: 20px;
    }
    .footer-logo {
        margin: 0 auto;
    }
}























.el-row {
    position: relative;
    box-sizing: border-box;
}
.el-row:after, .el-row:before {
    display: table;
    content: "";
}
/**, :after, :before {*/
    /*box-sizing: inherit;*/
/*}*/
.el-row:after {
    clear: both;
}
.el-col-24 {
    width: 100%;
}
[class*=el-col-] {
    float: left;
    box-sizing: border-box;
}

@media only screen and (min-width: 768px){
    .el-col-sm-20 {
        width: 83.33333%;
    }
    .el-col-sm-offset-2 {
        margin-left: 8.33333%;
    }
    .el-col-xs-24 {
        width: 100%;
    }
    .el-col-xs-offset-0 {
        margin-left: 0;
    }
}