/**
 * @name: common.css
 * @author:shmen
 * @modify: qianyuting
 * @last modify date: 20210119
 */

@font-face {
    font-family: "SourceHanSansCN-Regular";
    src: url("../fonts/SourceHanSansCN-Regular.woff") format("woff"),
        url("../fonts/SourceHanSansCN-Regular.ttf") format("truetype"),
        url("../fonts/SourceHanSansCN-Regular.eot") format("embedded-opentype");
}

@font-face {
    font-family: "SourceHanSansCN-Medium";
    src: url("../fonts/SourceHanSansCN-Medium.woff") format("woff"),
        url("../fonts/SourceHanSansCN-Medium.eot") format("embedded-opentype"),
        url("../fonts/SourceHanSansCN-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "SourceHanSansCN-Bold";
    src: url("../fonts/SourceHanSansCN-Bold.woff") format("woff"),
        url("../fonts/SourceHanSansCN-Bold.eot") format("embedded-opentype"),
        url("../fonts/SourceHanSansCN-Bold.ttf") format("truetype");
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font: 14px/1.231 "SourceHanSansCN-Regular", arial, helvetica, clean, sans-serif;
    color: #333;
    min-height: 100%;
}

img {
    border: 0;
    vertical-align: middle;
}

table {
    font-size: inherit;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed
}

th {
    font-style: inherit;
    font-weight: inherit;
}

ol,
ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal
}

iframe {
    display: block;
}

select,
input,
button,
textarea {
    font: 14px/1.231 "SourceHanSansCN-Regular", arial, helvetica, clean, sans-serif;
    outline: none;
    *font-size: 99%;
    background: transparent
}

button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
    cursor: pointer;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

a {
    text-decoration: none;
    color: inherit;
}

::-webkit-input-placeholder {
    color: #999;
}

:-moz-placeholder {
    color: #999;
}

::-moz-placeholder {
    color: #999;
}

:-ms-input-placeholder {
    color: #999;
}

.placeholder {
    color: #999;
}


/* utilities */

.clearfix {
    *zoom: 1;
}

.clearfix:after {
    display: table;
    line-height: 0;
    content: "";
}

.clearfix:after {
    clear: both;
}

.l {
    float: left;
}

.r {
    float: right;
}

.tal {
    text-align: left;
}

.tar {
    text-align: right;
}

.tac {
    text-align: center;
}

.hide {
    display: none;
}

.block {
    display: block;
}

.iblock {
    display: inline-block
}

.vhide {
    visibility: hidden;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.flex {
    display: flex;
}

.aicenter {
    align-items: center
}

.jcbetween {
    justify-content: space-between
}

.jccenter {
    justify-content: center;
}

.fade,
.fadein>*,
.fadeall * {
    -webkit-transition: all ease-in-out .2s;
    -moz-transition: all ease-in-out .2s;
    -ms-transition: all ease-in-out .2s;
    -o-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s;
}


/**
 * 以下可追加项目中的公共样式，
 * 比如body上进行全局的文字设置（字体，大小，行高），全局a链接的基本状态定义，
 * 适合页面的栅格系统
 * 页面公共头尾部分等
 */

body {
    min-width: 1200px;
    background-color: #f7f7f7;
    overflow: auto;
}

a {
    cursor: pointer;
}

.container {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.top {
    height: 80px;
    background: url('/dzbh/images/bg-top.jpg') no-repeat center;
    background-size: 100% 100%;
    overflow: hidden;
}

.top .container {
    position: relative;
}

.top .container>img {
    display: block;
    margin: 0 auto;
}
.back{
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    line-height: 80px;
    padding-left: 56px;
    font-size: 24px;
    color: #fff;
    background: url('/dzbh/images/back_icon.png') 0 center no-repeat;
}
.top .date-time {
    position: absolute;
    top: 28px;
    right: 0;
}

.top .date-time * {
    line-height: 1;
    color: #ffffff;
}

.top .date-time .time {
    font-size: 30px;
    border-right: 1px solid #ffffff;
    padding-right: 13px;
    margin-right: 13px;
}

.top .date-time .day {
    font-size: 14px;
    margin-bottom: 4px;
}

.top .date-time .date {
    font-size: 12px;
}

.main {
    position: absolute;
    top: 80px;
    bottom: 50px;
    left: 0;
    right: 0;
    padding: 30px 0;
    overflow: auto;
}

input {
    border: none;
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    line-height: 50px;
    color: #fff;
    background-color: #08348b;
    text-align: center;
}