/*reset*/
body {
    margin: 0;
    padding: 0;
    min-width: 1240px;
    font-size: 12px;
    color: #323232;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Microsoft YaHei", tahoma, arial, "\5B8B\4F53";
    font-weight: normal !important;
    background-color: #FFF;
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, blockquote, p {
    padding: 0;
    margin: 0;
}

table, td, tr, th {
    font-size: 12px;
}

li {
    list-style-type: none;
}

img {
    vertical-align: top;
    border: 0;
}

ol, ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 14px;
}

address, code, em, th, s, i {
    font-weight: normal;
    font-style: normal;
}

s {
    color: #909090;
    margin: 0 10px;
    text-decoration: none;
}

body.right-open {
    overflow-y: clip;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/*form*/
label input {
    vertical-align: middle;
    margin-right: 3px;
}

label {
    cursor: pointer;
}

textarea {
    resize: none;
    font-size: 12px;
}

:focus {
    outline: 0;
}

select {
    padding: 4px 5px;
    border: 1px solid #cbcbcb;
    border-radius: 2px;
    margin-right: 3px;
}

/*font-size*/
.fB {
    font-weight: bold;
}

.f12 {
    font-size: 12px;
}

.f14 {
    font-size: 14px;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 16px;
}

/*float*/
.l, .left {
    float: left;
}

.r, .right {
    float: right;
}

.clearfix {
    display: block;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

* html .clearfix {
    height: 1%;
}

/*scrollbar*/
::-webkit-scrollbar {
    width: 3px;
    height: 6px;
}

::-webkit-scrollbar-button:vertical {
    display: none;
}

::-webkit-scrollbar-track:vertical {
    background-color: black;
}

::-webkit-scrollbar-track-piece {
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb:vertical {
    margin-right: 6px;
    background-color: #bbb;
}

::-webkit-scrollbar-thumb:vertical:hover {
    background-color: #aaa;
}

::-webkit-scrollbar-corner:vertical {
    background-color: #535353;
}

/*placeholder*/
::-webkit-input-placeholder { /* WebKit browsers */
    color: #aaa;
    font-size: 14px;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #aaa;
    font-size: 14px;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #aaa;
    font-size: 14px;
}

/*display*/
.hide {
    display: none;
}

.block {
    display: block;
}

/*a*/
a {
    color: #323232;
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    color: #4385F5;
    transition: all 0.5s;
}

a:active {
    color: #4385F5;
}

/*省略行数*/
.text-overflow-1, .text-overflow-2, .text-overflow-3, .text-overflow-4, .text-overflow-5 {
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.text-overflow-2 {
    -webkit-line-clamp: 2;
}

.text-overflow-3 {
    -webkit-line-clamp: 3;
}

.text-overflow-4 {
    -webkit-line-clamp: 4;
}

.text-overflow-5 {
    -webkit-line-clamp: 4;
}

/*----------------导航-----------------*/
.header {
    width: 100%;
    height: 60px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 996;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, .1);
    background: rgba(255, 255, 255, 255);
    transition: all 0.5s;
}

.nav-box {
    width: 1240px;
    height: 60px;
    margin: 0 auto;
}

.nav-logo {
    width: 180px;
    height: 60px;
}

.nav-logo a {
    width: 180px;
    height: 60px;
    display: block;
}

.navbar {
    padding: 9px 0;
    height: 42px;
}

.navbar ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    font-size: 14px;
    color: #323232;
    font-weight: 400;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 4px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
    color: #186AF2;
}

.navbar .search-btn {
    padding-left: 74px;
    width: 19px;
    height: 20px;
    background: url(../images/header-search.png) bottom center no-repeat;
    /*background-size: cover;*/
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 3px;
}

/*.navbar .dropdown ul li {min-width: 200px;}*/
.navbar .dropdown ul a {
    padding: 8px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #186AF2;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

.navbar li a.nav-img {
    height: 32px;
    text-align: center;
    padding: 0 20px;
    display: block;
    line-height: 32px;
    font-size: 16px;
}

.nav-img img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #fff;
    margin-right: 6px;
}

@media (max-width: 1280px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }

    .nav-box {
        width: 1026px;
    }

    .navbar a {
        padding: 10px 18px;
    }
}

/*----------------页脚-----------------*/
.footer {
    width: 100%;
    background-color: #F4F1F2;
}

.footer-header {
    display: flex;
    height: 60px;
    width: 1240px;
    margin: 0 auto;
    padding-top: 50px;
    border-bottom: 1px solid #DCDCDC;
}

.footer-header .text-link {
    width: 50%;
    margin-top: 18px;
}

.footer-header .search {
    width: 50%;
}

.footer .footer-header .input-block {
    border: 1px solid #E1E1E1;
    background-color: #FFF;
    outline: 0;
    width: 385px;
    height: 40px;
    float: right;
}

.footer .footer-header .footer-search {
    border: 0;
    outline: 0;
    padding: 8px 10px 2px 10px;
    width: 320px;
    height: 30px;
}

.footer .footer-header .input-block .input-vline {
    border-right: 1px solid #E1E1E1;
    padding: 2px;
    width: 1px;
    height: 18px;
    z-index: 99;
    position: absolute;
    margin-top: -30px;
    margin-left: 330px;
}

.footer .footer-header .input-block .input-search-btn {
    border: 0;
    outline: 0;
    margin-top: -30px;
    z-index: 99;
    position: absolute;
    margin-left: 350px;
    width: 21px;
    height: 21px;
    background: url(../images/footer-search.png) no-repeat;
}

.footer-top {
    width: 100%;
    height: 315px;
    /*background: url(../images/footer.jpg) no-repeat center bottom;*/
    /*background-size: 100% auto;*/
}

.footer-top-box {
    width: 1200px;
    margin: 0 auto;
    color: #888;
}

.footer-bottom {
    width: 100%;
    background-color: #484748;
    height: 90px;
    overflow: hidden;
}

.footer-bottom-box {
    width: 1200px;
    height: 100%;
    line-height: 36px;
    margin: 0 auto;
    color: #909090;
    text-align: center;
}

.footer-bottom-box .a {
    margin-left: 10px;
    color: #bbb;
}

.footer-bottom-box .l {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.footer-bottom-box .r {
    color: #bbb;
}

.footer-link {
    padding: 35px 160px 50px 0;
}

.footer-link dt {
    font-size: 16px;
    height: 48px;
    line-height: 36px;
    font-weight: 600;
    color: #2F2F2F;
}

.footer-link dt a {
    color: #2F2F2F;
}

.footer-link dd {
    font-size: 14px;
    line-height: 32px;
}

.footer-link a {
    color: #2F2F2F;
}

.footer-link a:hover {
    color: #2F2F2F;
}

.footer-about {
    padding: 50px 0;
}

.footer-about dt {
    font-size: 18px;
    height: 48px;
    line-height: 36px;
    color: #2F2F2F;
}

.footer-about dd {
    line-height: 32px;
    font-size: 14px;
}

.footer-about a {
    line-height: 27px;
    color: #909090;
}

.footer-about a:hover {
    color: #fff;
}

/*----------------分页-----------------*/
.pagebox {
    width: 100%;
    text-align: center;
    font-size: 14px;
}

.pagebox a, .pagebox span {
    min-width: 16px;
    height: 33px;
    line-height: 33px;
    margin: 0 4px;
    padding: 0 10px;
    color: #333;
    border-radius: 1px;
    text-align: center;
    border: 1px solid #ddd;
    background-color: #fff;
    display: inline-block;
}

.pagebox a:hover, .pagebox span {
    background-color: #d79c00;
    color: #fff;
    border: 1px solid #d79c00;
}

.data-none {
    padding: 30px 0;
    text-align: center;
    color: #999;
}

/*----------------动画---------------*/
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
