html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
em,
i {
    font-weight: 400;
    font-style: normal;
}

ul,
ol,
li {
    list-style-type: none;
}

input,
button {
    overflow: visible;
    vertical-align: middle;
    outline: none;
}

.clearFix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

img {
    border: none;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
    padding: 0;
}

input:-moz-placeholder {
    color: #D6D6D6;
}

input::-webkit-input-placeholder {
    color: #D6D6D6;
}

input::-moz-placeholder {
    color: #D6D6D6;
}

input:-ms-input-placeholder {
    color: #D6D6D6;
}

body,
html {
    width: 100%;
    /* height: 100%; */
    font-family: "微软雅黑";
    color: #333;
    overflow-x: hidden;
}

a {
    color: #333;
    text-decoration: none;
    outline: 0;
}

a:hover {
    text-decoration: none;
}

.w1350 {
    box-sizing: border-box;
    width: 1350px;
    margin: 0 auto !important;
}

input {
    box-sizing: border-box;
    background: none;
    outline: none;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
}

input::-webkit-input-placeholder {
    color: #666;
}

input::-moz-placeholder {
    color: #666;
}

input:-ms-input-placeholder {
    color: #666;
}

/* 设置滚动条的样式 */

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}


/* 滚动槽 */

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    box-shadow: inset 6px rgba(0, 0, 0, 0.3);
}


/* 滚动条滑块 */

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #07B0CA;
    box-shadow: inset 6px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
    background-color: #07B0CA;
}

/* 布局 */
.flex {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* tab切换 */

.tab_bd {
    box-sizing: border-box;
}

.tab_bd .item {
    display: none;
}

.tab_bd .item:first-child {
    display: block;
}



/* 多行文本裁切 */

.mul_p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.multiline {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


/* 图片缩放 */

.pic {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: linear 0.5s;
    -moz-transition: linear 0.5s;
    -ms-transition: linear 0.5s;
    -o-transition: linear 0.5s;
    transition: linear 0.5s;
}

.pic:hover img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1.03, 1.03);
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -o-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
    -webkit-transition: linear 0.5s;
    -moz-transition: linear 0.5s;
    -ms-transition: linear 0.5s;
    -o-transition: linear 0.5s;
    transition: linear 0.5s;
}

/* 轮播图 */

.swiper-container {
    margin: 0;
}

.swiper-container img {
    width: 100%;
    height: 100%;
}

.swiper-container .swiper-pagination {
    text-align: right;
    box-sizing: border-box;
}

.swiper-container .swiper-pagination-bullet {
    box-sizing: border-box;
    margin-right: 8px;
    right: 0;
    opacity: 1;
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%;
}

.swiper-container .swiper-pagination-bullet-active {
    opacity: 1;
    background: #3192E1;
}

.swiper-container .swiper-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 18px;
    box-sizing: border-box;
    width: 100%;
    color: #ffffff;
    font-size: 16px;
}

.swiper-container .swiper-text p {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(100% - 120px);
}

@media only screen and (max-width: 1400px) {
    .w1350 {
        width: 1200px;
    }
}

@media only screen and (max-width: 1200px) {
    .w1350 {
        width: 996px;
    }

}

@media only screen and (max-width: 996px) {
    .w1350 {
        width: 768px;
    }
}

@media only screen and (max-width: 768px) {
    .w1350 {
        width: 97%;
    }
}

@media only screen and (max-width: 616px) {
}