@charset "utf-8";
/*=================
      通用样式
==================*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
}


@font-face {
    font-family: 'BebasNeue';
    src: url('../fonts/BebasNeue.ttf');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'Microsoft YaHei';
}

a:hover {
    text-decoration: none;
}

li {
    list-style: none;
}

html {
    font-size: 62.5%;
    position: relative;
}

body {
    position: relative;
}
@media print {
    input {
        height:24pt;
        border: 0;
        font-size:18pt;
        padding-left: 5pt;
        margin-top:3pt;
    }
   li {
       list-style: none;

   }
    label {
        margin-top: 10pt;
    }
    textarea {
        width: 100%;
        height: 300pt;
        font-size:16pt;
    }
    table {
        width:100%;
    }
    tbody {
        width:100%;
    }
    tr {
        width: 100%;
    }
    th {
        height: 40pt;
        width: 20%;
        text-align: center;
        font-size:16pt;
    }
    td {
        height: 40pt;
        width: 20%;
        text-align: center;
        font-size:16pt;
    }
    span {
        font-size:16pt;
    }
    h3 {
        font-size:18pt;
    }
    /*弹窗*/
    #Tc {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9;
        transition: all .2s cubic-bezier(0, 0.05, 0, 0.68);
        -webkit-transition: all .2s cubic-bezier(0, 0.05, 0, 0.68);
        -moz-transition: all .2s cubic-bezier(0, 0.05, 0, 0.68);
        -ms-transition: all .2s cubic-bezier(0, 0.05, 0, 0.68);
        -o-transition: all .2s cubic-bezier(0, 0.05, 0, 0.68);
    }

    #Tc.active {
        top: 0;
    }

    #Tc .Bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .5);
    }

    #Tc .Bg i {
        width: 50px;
        height: 50px;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        transition: all .2s linear;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -ms-transition: all .2s linear;
        -o-transition: all .2s linear;
    }

    #Tc .Bg i:after,
    #Tc .Bg i::before {
        content: "";
        display: block;
        width: 100%;
        height: 5px;
        background: #ef4343;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -moz-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg);
    }

    #Tc .Bg i::before {
        -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        -moz-transform: translate(-50%, -50%) rotate(-45deg);
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    #Tc .Con-Wrap {
        position: relative;
        z-index: 1;
        width: 1000px;
        max-height: 90%;
        overflow-y: scroll;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background: #f7f7f7;
        border-radius: 5px;
    }

    #Tc .Con-Wrap h1 {
        font-size: 24px;
        color: #1b67b2;
        height: 86px;
        line-height: 76px;
        padding: 10px 36px 0 36px;
        border-bottom: 1px solid #dbdbdb;
    }

    #Tc .Con-Wrap .Con {
        padding: 45px 70px;
    }

    #Tc .Con-Wrap .Con > ul {
        padding: 0 30px;
    }

    #Tc .Con-Wrap .Con > ul li {
        height: 30px;
        margin-bottom: 16px;
    }

    #Tc .Con-Wrap .Con > ul li span {
        width: 90px;
        display: inline-block;
        font-size: 16pt;
        color: #333;
        text-align: right;
        padding-right: 10px;
    }

    #Tc .Con-Wrap .Con > ul li.clearFix .f-l,
    #Tc .Con-Wrap .Con > ul li.clearFix .f-r {
        width: 100%;
    }

    #Tc .Con-Wrap .Con > ul li input,
    #Tc .Con-Wrap .Con > ul li select {
        width: 220px;
        height: 30px;
        line-height: 30px;
        border: 1px solid #ccc;
        font-size: 16px;
        color: #666;
    }

    #Tc .Con-Wrap .Con > ul li select {
        margin-left: -4px;
    }

    #Tc .Con-Wrap .Con > ul li.wid label {
        width: 100%;
    }

    #Tc .Con-Wrap .Con > ul li.wid label input {
        width: calc(100% - 90px);
    }

    #Tc .Con-Wrap .Con .table {
        border: 1px solid #dcdada;
        margin-top: 30px;
    }

    #Tc .Con-Wrap .Con .table table {
        width: 100%;
        text-align: center;
        width: 100%;
    }

    #Tc .Con-Wrap .Con .table table th {
        text-align: center;
        font-size: 16px;
        color: #1b67b2;
        height: 42px;
        line-height: 42px;
        background: #f3f3f3;
        width:20%;
    }

    #Tc .Con-Wrap .Con .table table tr {
        height: 42px;
        line-height: 42px;
        font-size: 16px;
        color: #4c4c4c;
    }

    #Tc .Con-Wrap .Con .table table tr:nth-child(even) {
        background: #fff;
    }

    #Tc .Con-Wrap .Con .table table tr:nth-child(odd) {
        background: #eef7ff;
    }

    #Tc .Con-Wrap .Con .Tex h3 {
        font-size: 16px;
        color: #1b67b2;
        font-weight: bold;
        line-height: 60px;
    }

    #Tc .Con-Wrap .Con .Tex textarea {
        border: 1px solid #ccc;
        font-size: 16px;
        color: #666;
        width: 100%;
        height: 250px;
        padding: 10px;
    }

    #Tc .Con-Wrap .Con > ul li input:focus,
    #Tc .Con-Wrap .Con > ul li select:focus,
    #Tc .Con-Wrap .Con .Tex textarea:focus {
        border: 1px solid #ef4343;
    }

    #Tc .Con-Wrap .Con button {
        width: 130px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
        color: #fff;
        background: #ef4343;
        border: 0;
        border-radius: 3px;
        display: block;
        margin: 40px auto 0;
        transition: all .2s linear;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -ms-transition: all .2s linear;
        -o-transition: all .2s linear;
    }

    #Tc .Con-Wrap .Con button:hover,
    #Tc .Bg i:hover:after,
    #Tc .Bg i:hover::before {
        background: #EF553F;
    }

}