﻿@charset "utf-8";

:root {
  --col1: #053065;
  --col2: #f44336;
  --col3: #316fbc
}

* {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  transition: .5s;
}

/*img*/
img {
  vertical-align: middle
}

a img,
img {
  -ms-interpolation-mode: bicubic
}

.img-responsive {
  max-width: 100%;
  height: auto
}

a {
  text-decoration: none;
  color: var(--col3);
}

a:hover {
  color: var(--col2);
}

body {
  /* background: url(../img/page_bg.jpg) center repeat; */
  background: no-repeat url(../img/page_bg_new.jpg) center top/cover;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  text-align: justify;
  padding-top: 45px;
}



table {
  border-collapse: collapse;
}

table td {
  padding: 1em;
  border: solid 1px #ccc;
}

/*IE下a:hover 背景闪烁*/
html {
  overflow: -moz-scrollbars-vertical;

  zoom:expression(function(ele) {
      ele.style.zoom="1"; document.execCommand("BackgroundImageCache", false, true)
    }

    (this));
}

ul li {
  list-style: none;
}

/*HTML5 reset*/
header,
footer,
section,
aside,
details,
menu,
article,
section,
nav,
address,
hgroup,
figure,
figcaption,
legend {
  display: block;
  margin: 0;
  padding: 0
}

time {
  display: inline
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1
}

audio:not([controls]) {
  display: none
}

legend {
  width: 100%;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: 40px;
  border: 0;
  border-bottom: 1px solid #e5e5e5
}

legend small {
  font-size: 14px;
  color: #999
}

svg:not(:root) {
  overflow: hidden
}

fieldset {
  border-width: 0;
  padding: 0.35em 0.625em 0.75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto
}

input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none
}

/*
	Name:			style_clearfix
	Example:		class="clearfix|cl"
	Explain:		Clearfix（简写cl）避免因子元素浮动而导致的父元素高度缺失能问题
*/
.cl:after,
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden
}

.cl,
.clearfix {
  zoom: 1
}

.width-100 {
  width: 100%;
}

.w-1200 {
  width: 1200px;
  margin: 0 auto;
}

.auto {
  margin: 0 auto;
}

.text-justify {
  text-align: justify;
}


/* 文字超出隐藏 */
.ellip {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 多行 */
.webkit2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.webkit3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.webkit4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}