@charset "utf-8";
html, body {
    width: 100%;
    height: 100%;
    background: #e7e7e7;
}
.wrap {
    position: relative;
    width: 85%;
    min-height: 100%;
    max-width: 800px;
    margin: auto;
    padding-bottom: 5%;
    background: #fff;
    border-left: 1px solid #cacaca;
    border-right: 1px solid #cacaca;
    -webkit-box-shadow: 0 0 2px 1px #cacaca;
    -moz-box-shadow: 0 0 2px 1px #cacaca;
    box-shadow: 0 0 2px 1px #cacaca;
}
.content {
    margin: auto;
    width: 92%;
    padding: 15px 0;
}
hr {
    margin: auto;
    height: 4px;
    background: #2b6991;
    border: none;
}
h2.title {
    font-size: 16px;
    color: #2b6991;
    margin: 0;
    padding: 10px 0 0 0;
}
.main {
    padding-top: 80px;
}
.left-area {
    float: left;
    width: 30%;
}
.attr-ceil h3 {
    margin: 0;
    padding: 4px 0;
    font-weight: 200;
    font-size: 20px;
}
.attr-ceil p {
    margin: 0;
    padding: 8px 0;
    font-size: 12px;
    color: #2b6991;
    text-align: justify;
}
.right-area {
    width: 62%;
    float: right;
}
.pic-area img {
    display: block;
    margin: auto;
}
/*图表*/
.table-area table {
    width: 100%;
}
.table-area caption {
    font-weight: 700;
    font-size: 14px;
}
.table-area th {
    font-size: 12px;
    font-weight: 100;
    text-align: center;
    border-left: 1px dotted #ddd;
    border-bottom: 1px solid #ddd;
}
.table-area thead th {
    background: #2b6991;
    color: #fff;
    border-bottom: none;
    border-left: 1px solid #fff;
}
.table-area tr th:nth-child(1) {
    border-left: none;
}
.table-area th span {
    float: right;
    padding-right: 5px;
}
.table-area th strong {
    float: left;
    padding-left: 5px;
    font-weight: normal;
}
.content .bottom {
    position: absolute;
    bottom: 20px;
    left: 6%;
    width: 88%;
    height: 1px;
}
.content .bottom:after {
    display: block;
    content: "福建省龙氟新材料有限公司";
    text-align: right;
    font-size: 12px;
}
/*侧边栏*/
.aside-area {
    position: fixed;
    right: -200px;
    top: 0;
    width: 200px;
    height: 100%;
    -webkit-transition: right 0.5s;
    -moz-transition: right 0.5s;
    -ms-transition: right 0.5s;
    -o-transition: right 0.5s;
    transition: right 0.5s;
}
.aside-area.open {
    right: 0px;
}
.aside-area .select-window {
    position: absolute;
    left: -60px;
    top: 10px;
    width: 36px;
    height: 30px;
    background-image: none;
    border: 1px solid transparent;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border-color: #bbb;
    background-color: #ddd;
    cursor: pointer;
}
.aside-area.open .select-window {
    top: 50%;
    left: -19px;
    width: 20px;
    height: 30px;
    margin-top: -15px;
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
    background: #fff;
    border-right: none;
}
.aside-area .select-window .right-arrow {
    display: none;
}
.aside-area.open .select-window .right-arrow {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 28px;
    text-align: right;
    color: #777777;
}
.aside-area.open .select-window .icon-bar {
    display: none;
}
.aside-area .select-window .icon-bar {
    display: block;
    width: 22px;
    height: 1px;
    border-radius: 1px;
    background-color: #888;
    margin: 6px auto 0;
}
.aside-area ul {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border-left: 1px solid #ccc;
}
.aside-area li {
    list-style: none;
    padding: 4px 0 4px 8px;
}
.aside-area li.selected {
    background: #e7e7e7;
}
.aside-area a {
    color: #777;
    font-size: 14px;
    text-decoration: none;
}
.aside-area a:hover {
    color: #444;
}
@media screen and (max-width: 1000px) {
    .right-area {
        width: auto;
        float: inherit;
    }
    .left-area {
        width: auto;
        float: inherit;
    }
    .table-area th strong {
        font-size: 0.5rem;
    }
}