nyx-div, nyx-h1, nyx-header, nyx-nav, nyx-section, nyx-footer {
  display: block;
}
nyx-i, nyx-span, nyx-em, nyx-label{
  display: inline;
}

.t-dialog {
    position: fixed;
    border-radius: 4px 4px 3px 3px;
    background: #f8f8f8;
    z-index: 2147483640;
    box-shadow: 0 0 12px 0 rgba(0,0,0,0.5);
}
.t-dialog .t-dialog-inner {
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 3px 0 0 rgba(0,0,0,0.1);
    overflow: hidden;
}
.t-dialog nyx-header {
    height: 31px;
    background: #393f4f;
    box-sizing: border-box;
    border-radius: 3px 3px 0 0;
    cursor: all-scroll;
}
.t-dialog nyx-header nyx-h1 {
    margin: 0;
    font-size: 14px;
    font-family: "Microsoft YaHei";
    padding: 0;
    line-height: 30px;
    padding-left: 0;
    color: #fff;
    text-align: center;
}
.t-dialog nyx-nav {
    padding-right: 0;
    padding-top: 7px;
    float: right;
    position: absolute;
    right: 0px;
}

.t-dialog nyx-nav nyx-span {
    border: 0;
    padding: 0;
    margin: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
    margin-right: 10px;
    display: inline-block;
    cursor: pointer;
    opacity: 0.7;
}

.t-dialog nyx-nav nyx-span:hover {
    opacity: 1;
}

.t-dialog nyx-nav nyx-span nyx-em {
    display: none;
}

.t-dialog .icon-full {
    background-image: url(icon_full.png);
    background-position: 0;
}
.t-dialog .icon-full.active {
    background-image: url(icon_full_active.png);
}

.t-dialog .icon-min {
    background-image: url(icon_min.png);
    background-position: 0;
}
.t-dialog .icon-min.active {
    background-image: url(icon_min_active.png);
}

.t-dialog .icon-close {
    background-image: url(icon_close.png);
    background-position: 0;
}

.t-dialog nyx-article {
    position: absolute;
    top: 35px;
    left: 0;
    right: 2px;
    bottom: 30px;
}

.t-dialog nyx-article .iframe-overflow {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: gbb(255,255,255);
    display: none;
}

.t-dialog .t-content{
	height: 100%;
}
.t-dialog .form-iframe {
    height: 100%;
    border: 0;
    width: 100%;
}

.t-dialog nyx-footer {
    position: absolute;
    height: 30px;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 30px;
}

.t-dialog nyx-footer nyx-div {
    cursor: pointer;
    display: inline-block;
    padding: 3px 10px 4px 10px;
    margin: 0 5px;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fefefe;
    line-height: 12px;
}
.t-dialog nyx-footer nyx-div:hover {
    color: #900;
    background: #ffc;
}

.t-dialog.mini {
    background: rgba(255,255,255,0);
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
}
.t-dialog.mini .t-dialog-inner {
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
}

.t-dialog.mini nyx-article {
    visibility: hidden;
}
.t-dialog.mini nyx-header {
    background: rgba(255,255,255,0);
    border-bottom-color: rgba(255,255,255,0);
}
.t-dialog.mini nyx-header nyx-h1 {
    visibility: hidden;
}
.t-dialog.mini nyx-header .icon-full {
    visibility: hidden;
}
.t-dialog.mini nyx-header .icon-close {
    visibility: hidden;
}

.t-overflow {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.05);
    z-index: 9998;
}

.anim {
    -webkit-transition: 0.3s;
    -ms-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.t-dialog-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 2147483635;
}

.t-dialog-mask.active {
    background: rgba(0,0,0,0);
}

.noselect {-webkit-user-select:none;}