.page-wrapper {
    background-blend-mode: multiply;
    background-size: 100%;
    -webkit-animation: pageEnter .45s cubic-bezier(.455, .03, .515, .955);
    animation: pageEnter .45s cubic-bezier(.455, .03, .515, .955);
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #f0f2f5;
}

.main-wrapper {
    padding: 75px 48px 24px 48px;
    overflow: hidden;
    display: flex;
}

div.main-container {
    flex: 1;
    background: #fff;
    min-height: 800px;
    overflow: hidden;
    position: relative;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
}

div.main-container .main-header {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #cccccc;
    display: flex;
}

div.main-container .main-header .title {
    margin-left: 20px;
    font-size: 18px;
}

div.main-container .main-body {
    padding: 0 15px;
}

.component-list {
    position: relative;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    border-bottom: 1px solid #cccccc;
}

.coolreport-stage {
    position: relative;
    width: 100%;
    height: calc(100% - 50px);
    padding: 10px 10px;
}

.td-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    background: #f0f2f5;
}

.td-layout {
    overflow-x: hidden;
}

.td-layout.td-layout-has-sider {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.td-layout,
.td-layout * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

footer {
    clear: both;
    font-size: 12px;
    background: #fff;
    position: relative;
    z-index: 1;
    color: rgba(0, 0, 0, .65);
    box-shadow: 0 1000px 0 1000px #fff;
}

footer ul {
    overflow: hidden;
    margin: 0 2%;
    list-style: none;
}

footer ul li {
    float: left;
    width: 25%;
    padding: 24px 2%;
}

footer ul li>h2 {
    font-size: 14px;
    margin: 0 auto 12px;
    font-weight: 500;
    position: relative;
    color: rgba(0, 0, 0, .85);
}

footer ul li>div {
    margin: 6px 0;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}