.idx-body {
    background-image: url('idx1.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.idx-header {
    position: relative;
    width: 100%;
    height: 100px;
}

.idx-header img {
    position: absolute;
    top: 20px;
    left: 100px;
}

.idx-header span {
    margin-left: 200px;
    line-height: 100px;
    font-weight: bold;
    font-size: 1.8em;
    color: #fff;
}

.idx-header .idx-user {
    position: absolute;
    top: 0px;
    right: 100px;
    height: 100px;
}

.idx-header .idx-user img {
    position: static;
    margin-bottom: -10px;
    margin-right: 10px;
    height: 35px;
}

.idx-header .idx-user span {
    margin-left: 0px;
    font-weight: normal;
    font-size: 1.2em;
    letter-spacing: 0em;
}

.idx-container {
    position: absolute;
    left: 14%;
    top: 6%;
    width: 85%;
    height: 70%;
    display: inline-flex;
}

.idx-container .idx-container-left {
    width: 85%;
    height: 100%;
    display: inline-block;
}

.idx-container .idx-container-right { 
    width: 35%;
    height: 98%;
}

.idx-container .idx-block {
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
}

.idx-container .idx-block:hover {
    transform: scale(1.1);
    z-index: 99;
}

.idx-container .idx-block-title {
    position: absolute;
    width: 100%;
    bottom: 25px;
    text-align: center;
    font-size: 1.2em;
    color: #fff;
}

.idx-container .idx-block-img {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 40%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
} 

.idx-container .idx-block-2 {
    display: inline-block;
    width: 99%;
    margin: 1%;
}

.idx-container .idx-block-1 {
    display: inline-block;
    width: 22%;
    margin: 1%;
}

.idx-container .idx-news {
    color: #fff;
    background-color: #4970b1;
    margin-top: 3.1%;
    padding: 20px;
    height: 91%;
}

.idx-container .idx-news .idx-news-title {
    font-size: 1.4em;
}

.idx-container .idx-news .idx-news-more {
    float: right;
    font-size: 1.2em;
    margin-top: 5px;
    transition: all 0.2s;
}

.idx-container .idx-news .idx-news-more:hover {
    cursor: pointer;
    color: #efb631;
}

.idx-container .idx-news .ul-container {
    height: 90%;
    overflow-y: auto;
}

.idx-container .idx-news .ul-container ul {
    list-style: none;
    margin: 0px;
    padding: 3px;
}

.idx-container .idx-news .ul-container ul li {
    line-height: 28px;
    cursor: pointer;
    position: relative;
}

.idx-container .idx-news .ul-container ul li:hover {
    transition: all 0.2s;
    color: #efb631;
}

.idx-container .idx-news .ul-container ul li .dot {
    position: absolute;
    top: 12px;
    left: 0;
    display: block;
    width: 5px;
    height: 5px;
    background: #da4453;
}

.idx-container .idx-news .ul-container ul li .news-title {
    margin-left: 12px;
    font-size: 1.1em;
}

.idx-bottom {
position: absolute;
bottom: 0px;
width: 100%;
height: 80px;
background-color: rgba(71, 71, 71, 0.7);
}

.idx-bottom .idx-time {
    line-height: 80px;
    margin-left: 15%;
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
}

.idx-bottom .idx-exit {
    float: right;
    width: 50px;
    margin-right: 15%;
    margin-top: 15px;
    cursor: pointer;
    opacity: 0.9;
    transition: all 0.2s;
}

.idx-bottom .idx-exit:hover {
    opacity: 1;
    transform: scale(1.1);
}