@charset "utf-8";
.file {
    position: relative;
    display: inline-block;
    border: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    border: 1px solid var(--light-gray);
    background: var(--light-blue);
    text-align: center;
    overflow: hidden;
    color: var(--blue);
    text-decoration: none;
    margin-top: 10px;
    font-weight: normal;
    color: var(--gray);
}
.file .iconfont {
	font-size: 30px;
}
.file input {
    position: absolute;
    font-size: 100px;
    right: 0;
    top: 0;
    opacity: 0;
}
.file:hover {
    text-decoration: none;
    color: var(--blue);
    border: 1px solid var(--blue);
}
.warn_yellow {
	color: var(--oranage);
}
.imgDiv,.videoDiv {
	margin: 10px 0;
	width: auto;
	max-width: 100%;
}
.imgDiv img {
	width: 100%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 0 0 5px #DDD;
}