﻿@charset "UTF-8";

/*goolge字体开始*/
/*<!-- Google Fonts -->*/
/*@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Roboto:300,300i,400,400i,500,500i,700,700i&display=swap);*/
html {
    font-size: 62.5%;
    /* 10÷16=62.5% */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: none;
}

::-webkit-scrollbar {
    height: 0px;
    width: 0px;
    background: #ccc;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
button,
blockquote,
th,
td,
p,
figure {
    font-family: '思源黑体', 'Noto Sans SC', 'Microsoft Yahei', '华文细黑', STXiHei, '华文黑体',
        'ST Heiti', 'MS黑体', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-size: 1.4rem;
}

fieldset,
img {
    border: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

ol,
ul {
    list-style: none;
    font-size: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-weight: normal;
    font-style: normal;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}

input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    vertical-align: middle;
    border: none;
}

:focus {
    outline: 0;
}

.clearfix:after {
    content: '.';
    height: 0;
    visibility: hidden;
    display: block;
    clear: both;
    font-size: 0;
    line-height: 0;
}

input[type='button'],
input[type='submit'],
input[type='reset'] {
    -webkit-appearance: none;
    outline: none;
}

/*-webkit-appearance会将webkit浏览器中的元素默认样式去除。checkbox在这个属性下就直接隐藏掉了。然后用JS获取checkbox值时Webkit浏览器会报很奇怪的错误。给这个元素重新赋上-webkit-appearance:checkbox就不会报错了。*/
.ease,
.ease div,
.ease section,
.ease article,
.ease aside,
.ease ul,
.ease ul li,
.ease li,
.ease a,
.ease li a,
.ease dt,
.ease dd {
    -o-transition: ease 0.3s;
    -ms-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center top;
}

a {
    color: #444;
    text-decoration: none;
}

/*默认链接显示颜色666666*/
a:hover {
    color: #2569b4;
    text-decoration: none;
}

/*默认链接鼠标移上去显示颜色996600*/
img,
object {
    max-width: 100%;
    vertical-align: top;
}

td {
    border: solid #efefef;
    border-width: 0px 1px 1px 0px;
}

/*td表格颜色为efefef 左1px 下1px*/
table {
    border: solid #efefef;
    border-width: 1px 0px 0px 1px;
}

/*table表格颜色为efefef 上1px 右1px*/
article,
aside,
details,
hgroup,
dialog,
footer,
header,
section,
footer,
nav,
figure,
menu,
figcaption {
    display: block;
}

/*html5*/
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

.omit1 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/*单行文字溢出省略*/
.omit2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.omit3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.omit4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.omit5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/*多行文字溢出省略*/
/*文字省略all*/
[data-css='fontshadow'] {
    text-shadow: 1px 1px 1px #000;
}

/*文字阴影X轴1px、Y轴1px、模糊1px、颜色（黑）兼容IE10+*/
.clear {
    clear: both;
}

/* 清除浮动 */

/*width*/
.w1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.w100 {
    width: 100%;
    margin: 0 auto;
}

.w50 {
    width: 50%;
    margin: 0 auto;
}

select {
    /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
    border: solid 1px #ebebeb;

    /*很关键：将默认的select选择框样式清除*/
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;

    /*在选择框的最右侧中间显示小箭头图片*/
    /* background: url("../images/select.png") no-repeat scroll 140px center transparent; */

    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding-right: 20px;
    padding-left: 5px;
}

.pc {
    display: block;
}
.mob {
    display: none;
}

@media (max-width: 786px) {
    .pc {
        display: none;
    }
    .mob {
        display: block;
    }
}



/* å›¾ç‰‡å¼¹çª— */
.galleryOverlay { width: 100%; height: 100%; position: fixed; top: 0; left: 0; opacity: 0; z-index: 100000; background-color: rgba(0,0,0,.7);  overflow: hidden; display: none; -moz-transition: opacity 0.5s ease; -webkit-transition: opacity 0.5s ease; transition: opacity 0.5s ease; }
.galleryOverlay.visible { opacity: 1; }
.gallerySlider { height: 100%; left: 0; top: 0; width: 100%; white-space: nowrap; position: absolute; }
.gallerySlider .placeholder { /*background: url("../images/loading.gif") no-repeat center center;*/ height: 100%; line-height: 1px; text-align: center; width: 100%; display: inline-block; }
.gallerySlider .placeholder:before { content: ""; display: inline-block; height: 50%; width: 1px; margin-right: -1px; }
.gallerySlider .placeholder img { display: inline-block; max-height: 100%; max-width: 100%; vertical-align: middle; }
.prevArrow, .nextArrow { border: none; text-decoration: none; /*background: url(../images/arrows.png) no-repeat;*/ opacity: 0.5; cursor: pointer; position: absolute; width:50%;height:100%; top:0; margin-top:0px; }
.prevArrow:hover, .nextArrow:hover { opacity: 1; }
.prevArrow { background-position: left top; left:0; }
.nextArrow { background-position: right top; right:0; }
.pagelimit { position: absolute; bottom: 20px; left: 50%; margin-left: -18px; color: #fff; font-size: 18px; }
.closed {cursor: pointer; position: absolute; width: 40px; height: 40px;right:2%; top: 3%;background: url(../images/close.png) no-repeat; transition-duration: 0.5s;}
.closed:hover {opacity: 0.5;}


.popup-close {z-index:1;width: 30px; height:30px;background: url("../images/xx.png") center no-repeat;background-size: 40%;text-align:center; padding:10px; position:absolute; right:1%; display:block; top:30px;cursor: pointer;}
/* 以上为通用样式 */
