/* 全局默认 */
body{ font-size:14px}
a{font-size:14px}
a:hover{ font-weight:bold}
a{ text-decoration:none}
a:hover{ text-decoration:underline}
a{ color:#000}
a:hover{ background:burlywood}/* 鼠标经过悬停字体颜色 */
/* css 注释说明：以上代码为设置html中超链接统一字体颜色 */

.div a{ color:#000}
.div a:hover{ color:#F00}
/* css注释说明：以上代码为设置html中.div对象内超链接字体颜色 */
table{border: 0;width: 600px;}
td{width: 25%;}
/* ---全局默认--- */
/* index样式 */
.bodyy {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
/*.container {*/
/*    display: flex;*/
/*    min-width: 300px;*/
/*}*/
.left-column {
    width: 150px;
    min-height: 100vh;
    position: fixed;
    background-color: #f1f1f1;
    padding: 20px;
    text-align: right;
}
.right-column {
    margin-left: 200px; /* 左栏宽度 + 左栏内边距 */
    /* padding: 20px; */
    background-color: #fff;
    min-height: 100vh;
    width: 100%;
}
.right-column iframe {
    /*width: 1000px;*/
    /*height: 100%;*/
    /*width: 1000px;*/
    /*height: 1000px;*/
    border: none;
}
.indexul{
    list-style-type: none;
}
.indexli{
    margin-bottom: 15px;
}
/* ---index样式--- */
.titlebkg{
    background-color: #424242;
    color: #ffffff;
}
@media screen and (min-width:600px ) {
.container {
    display: flex;
    min-width: 300px
}
.right-column iframe {
    width: 100%;
    height: 100%;
}

}

@media screen and (max-width:598px ) {
.container {
        display: flex;
        min-width: 1200px
    }
.right-column iframe {
     width: 1000px;
    height: 5000px;
}
}