/* CSS reset */
/*body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}*/
@font-face {
    font-family: 'mianbao';
    src: url('..//font/TENSENTYPE-MIANBAOJ.TTF');
}

* {
    margin: 0;
    padding: 0;
    font-family: "微软雅黑";
}

html {
    /* 锚点平滑过渡 */
    scroll-behavior: smooth;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before,
q:after {
    content: '';
}

input,
button {
    border: none;
    font-family: '微软雅黑';
}

button {
    background-color: transparent;
    cursor: pointer;
}

input:focus {
    /* box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 3px;
    -moz-box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 3px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 3px; */
}

input,
button:focus {
    outline: none;
}

input,
textarea,
select {
    border: 0;
    -webkit-appearance: none;
    border-radius: 0;
}


/* 定位  浮动*/
.tl {
    text-align: left;
}

.tc {
    text-align: center;
}

.tr {
    text-align: right;
}

.bc {
    margin-left: auto;
    margin-right: auto;
}

.fl {
    float: left;
    display: block;
}

/* 可修复IE6中双倍边距bug */
.fr {
    float: right;
    display: block;
}

.cb {
    clear: both;
}

.cl {
    clear: left;
}

.cr {
    clear: right;
}

.clearfix::after {
    content: '';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
}

.zoom {
    zoom: 1;
}

.none {
    display: none;
}

/*
@功能：全局css定义
*/
body {
    font-size: 16px;
    color: #333333;
    font-family: "微软雅黑";
    min-width: 1200px;
    max-width: 1920px;
    margin: 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

/*去除input的默认样式  number的箭头*/
/*在chrome下：*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}

input::-webkit-input-placeholder {
    color: #999999;
    font-size: 14px;
}

input:-moz-placeholder {
    color: #999999;
    font-size: 14px;
}

input::-moz-placeholder {
    color: #999999;
    font-size: 14px;
}

input:-ms-input-placeholder {
    color: #999999;
    font-size: 14px;
}

/*Firefox下：*/
input[type="number"] {
    -moz-appearance: textfield;
}

.row::after {
    content: '.';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.container {
    width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.container::after {
    content: '.';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.imgBox img {
    display: block;
    width: 100%;
    height: 100%;
}

/* 头部 */
.header {
    width: 1200px;
    height: 120px;
    margin: 0 auto;
}

.header .logo {
    display: block;
    width: 490px;
    height: 88px;
    background: url(../img/logo.png) center no-repeat;
    margin-top: 14px;
}

.header .logo span {
    display: block;
    margin-left: 130px;
    margin-top: 10px;
    font-size: 20px;
    line-height: 1;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 4px;
    color: #c4261d;
}

.header .fr {
    padding-top: 43px;
}

.header .top {
    overflow: hidden;
    max-width: 336px;
}

.header .home {
    display: block;
    float: left;
    line-height: 34px;
    margin-right: 30px;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 1px;
    color: #333333;
}

.header .searth {
    width: 230px;
    height: 34px;
    background-color: #f3f3f3;
    border-radius: 15px;
    overflow: hidden;
    float: left;
}

.header .searth input {
    width: 195px;
    height: 24px;
    background-color: #f3f3f3;
    margin-top: 5px;
    border-right: solid 1px #999999;
    box-sizing: border-box;
    padding-left: 19px;
    float: left;
}

.header .searth a {
    display: block;
    float: right;
    width: 17px;
    height: 17px;
    background: url(../img/searth.png) center no-repeat;
    margin-top: 8px;
    margin-right: 9px;
}

.footer {
    width: 100%;
    height: 100px;
    background-color: #e43516;
    padding-top: 20px;
    box-sizing: border-box;
}

.footer p {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 18px;
    letter-spacing: 1px;
    color: #ffffff;
    margin-top: 10px;
    text-align: center;
}

#videoplayer {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

#videoplayer .videoplayer-main {
    width: 100%;
    max-width: 960px;
    height: 540px;
    /* background-color: #fff; */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#videoplayer .videoplayer-main>iframe {
    width: 100%;
    height: 100%;
    background-color: #000;
    border: none;
}

#videoplayer .videoplayer-main>.videoplayer-close {
    width: 38px;
    height: 37px;
    background: url(../img/close_zxbm.png) center no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
}

#videoplayer .videoplayer-main:hover .videoplayer-close {
    opacity: 1;
}