﻿

#News-NewsBox * {
    list-style-type: none;
}

#News-NewsBox {
    width: calc(100% - 40px);
    margin: 0 10px;
    min-height: 200px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 10px 10px 0 10px;
    overflow: hidden;
}

.Row 
{
    width:100%;
    overflow: hidden;
}

.News-Tools 
{
    float:left;
    border: 1px solid #e4e4e4;
    background-color: white;
    min-height: 20px;
    padding: 5px 5px 5px 0;
    margin: 0 0 10px 0;
    animation: fade-in; /*动画名称*/
    animation-duration: 1s; /*动画持续时间*/
    -webkit-animation: fade-in 1s; /*针对webkit内核*/
    animation-timing-function: ease;
}

.News-Tools li 
{
    float:left;
    text-align: center;
    opacity: 0.6;
    height: 24px;
    padding-left:4px;
    overflow: hidden;
}

        .News-Tools li img {
            width: 24px;
            height: 24px;
            cursor: pointer;
        }

.News-ItemBox 
{
    background-color:White;
    border: 1px solid #e4e4e4;
    margin-bottom: 10px;
    min-height: 20px;
    padding: 10px;
    overflow: hidden;
    position: relative;
    animation: fade-in; /*动画名称*/
    animation-duration: 0.5s; /*动画持续时间*/
    -webkit-animation: fade-in 0.5s; /*针对webkit内核*/
    animation-timing-function: ease;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        left: 50px;
    }

    100% {
        opacity: 1;
        left: 0px;
    }
}

@-webkit-keyframes fade-in { /*针对webkit内核*/
    0% {
        opacity: 0;
        left: 50px;
    }

    100% {
        opacity: 1;
        left: 0px;
    }
}

.News-Delete {
    position: relative;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    float:left;
    margin:4px 0 0 4px;
}

.News-Delete img {
    width: 100%;
    opacity: 0.6;
    cursor:pointer;     
}

.News-Item 
{
    background-color:white;
    width: calc(100% - 42px);
    border: 1px dashed #e4e4e4;
    float: left;
    word-wrap: break-word;
    padding: 5px;
    overflow: hidden;
    position:relative;
}
.TypeICO
{
    position: absolute;
    top: calc(50% - 150px);
    left: calc(50% - 150px);
    width: 50px;
    font-size: 12px;
    line-height: 24px;
    background-color: red;
    color: white;
    border-radius: 10px 0 10px 0;
    opacity: 0.7;
}
.TL10
{
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    font-size: 12px;
    line-height: 24px;
    background-color: red;
    color: white;
    border-radius: 0 0 5px 0;
    text-align:center;
    opacity: 0.7;
}
.TR10
{
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    font-size: 12px;
    line-height: 24px;
    background-color: red;
    color: white;
    border-radius: 0 0 0 5px;
    text-align:center;
    opacity: 0.7;
}
.News-Item img {
    max-width: 100%;
    max-height:300px;
}

.News-Move {
    float: left;
    width: 20px;
    margin-left: 10px;
}

.News-Move img {
    width: 100%;
    opacity: 0.6;
    cursor:pointer;
}

#News-audio {
    width: 100%;
}

#News-video {
    width: 100%;
    max-height:500px;
}

.Overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    background: rgba(0, 0, 0, 0.7);
}

.OverlayBox {
    position: absolute;
    width: 90%;
    min-height: 300px;
    background: #fff;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    /*margin-top: -150px;*/
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 5px #FFF;
}
.Hide
{
    pointer-events: none;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);    
    filter: grayscale(100%);	
    filter: gray;
}
.Red
{
    cursor: default;
    display: inline;
    color: red;
    background-color: red;
    overflow: hidden;
    display: inline;
    border-radius: 10px;
    margin: 0px 5px;
}
pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    line-height: 150%;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre;
    white-space: pre-wrap;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,0.15);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    text-align:left;
    color:Black;
}
.FontSizeBox
{
    float: right;height: 36px; line-height:36px; width: 150px;
    text-align:right;
}
.FontSize
{
    padding: 4px 6px;
    border: 1px dashed #999;
    margin-right:10px;
    width:36;
    text-align:center;
    cursor:pointer;
}
.FontSizeActive
{
    border: 1px dashed #white;
    color:white;
    background-color:Green;
}