@import url("../css/reset.css");
@import url("../css/iconfont.css");

/*common*/
.w100 {
    width: 100%;
    min-width: 1200px;
}
.w1200 {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}
.mt50{
    margin-top: 50px;
}
.mb50{
    margin-bottom: 50px;
}
.text-ellipsis-1{
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.text-ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.lazy{
    max-width: 100%;
    background: url(../images/loading.gif) 50% no-repeat;
}

/*header*/
.header {
    position: fixed;
    top: 0;
    width: 100%;
    min-width: 1200px;
    height: 66px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.25);
    transition: all 0.35s;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
}
.header-nav {
    position: relative;
    width: 100%;
    height: 66px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.35s;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
}
.header-nav:hover{
    background: #333;
}
.header-logo {
    position: absolute;
    top: 12px;
    left: 30px;
}
.header-logo-pic {
    display: block;
    width: 250px;
    height: 40px;
    background: url(../images/logo.png) center center no-repeat;
    text-indent: -999em;
}
.header-menu {
    width: 100%;
    text-align: center;
}
.header-menu .header-menu-item {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.header-menu .header-menu-item.active .header-title {
    font-size: 18px;
    color: #FF6600;
    font-weight: 600;
}
.header-menu .header-menu-item.active:after {
    content: '';
    width: 16px;
    height: 3px;
    background: #FF6600;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -8px;
}
.header-menu .header-title {
    display: block;
    padding: 0 25px;
    line-height: 66px;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
}
.header-menu .header-title:hover {
    color: #FF6600;
}
.header-menu .header-title[href="javascript:void(0)"] {
    cursor: default;
}
.header-action {
    position: absolute;
    right: 30px;
    top: 0;
}
.header-action .header-status {
    float: left;
}
.header-action .header-btn-normal {
    display: inline-block;
    margin: 20px 6px;
    padding: 0 15px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 21px;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.header-action .header-btn-normal:hover {
    border: 2px solid #FF6600;
    background-color: #FF6600;
}
.header-dropdown {
    position: absolute;
    width: 100%;
    height: 0;
    top: 66px;
    overflow: hidden;
    z-index: 999;
    background: rgba(35, 35, 35, 0.9);
    background: rgb(35, 35, 35) \9;
    -webkit-transition: height 0.2s cubic-bezier(0, 0, 0.2, 1) 0ms;
    transition: height 0.2s cubic-bezier(0, 0, 0.2, 1) 0ms;
    -webkit-box-shadow: 0 30px 35px rgba(0, 0, 0, 0.1);
    box-shadow: 0 30px 35px rgba(0, 0, 0, 0.1);
}
.header-dropdown .header-submenu {
    width: 100%;
}
.header-dropdown .submenu-container {
    display: none;
    width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
    text-align: center;
}
.header-dropdown .submenu-banner {
    /*max-width: 1150px;*/
    /*margin: 0 auto;*/
    display: inline-block;
    padding-bottom: 50px;
}
.header-dropdown .submenu-banner .submenu-banner-item {
    display: block;
    float: left;
    margin-right: 50px;
    width: 330px;
    height: 100px;
    background: #181818;
    border-radius: 3px;
    margin-bottom: 30px;
}

/*footer*/
.footer {
    width: 100%;
    clear: both;
}
.footer .footer-top {
    background: #333;
    padding-top: 47px;
    padding-bottom: 20px;
}
.footer .footer-block {
    float: left;
}
.footer .footer-block.w-29 {
    width: 29%;
}
.footer .footer-block.w-25 {
    width: 25%;
}
.footer .footer-block.w-34 {
    width: 34%;
}
.footer .footer-block.w-12 {
    width: 12%;
}
.footer .footer-block .logo {
    margin-top: 10px;
}
.footer .footer-block .partner {
    margin-top: 15px;
    display: block;
    width: 65%;
    height: 30px;
    background-color: #454545;
    line-height: 30px;
    text-align: center;
    color: #b5b5b5;
    border-radius: 3px;
}
.footer .footer-block .footer-tit {
    margin-bottom: 36px;
    position: relative;
    font-size: 16px;
    color: #ccc;
    line-height: 16px;
}
.footer .footer-block .footer-tit:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 35px;
    height: 1px;
    background: #878787;
}
.footer .footer-block .hot-line {
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 26px;
    color: #ccc;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}
.footer .footer-block .hot-line:hover {
    color: #FF6600;
    font-size: 36px;
}
.footer .footer-block .foot-qq {
    display: block;
    position: absolute;
    top: -2px;
    left: 115px;
    width: 18px;
    height: 22px;
    background: url(../images/qq.png) 0 0 no-repeat;
    background-size: 100%;
}
.footer .footer-block p {
    margin-bottom: 20px;
    position: relative;
    font-size: 13px;
    color: #ccc;
    line-height: 22px;
}
.footer .footer-block p a {
    font-size: 13px;
    color: #ccc;
    line-height: 22px;
}
.footer .footer-block p.ml {
    font-size: 12px
}
.footer .footer-block p.mb-10 {
    margin-bottom: 10px;
}
.footer .footer-block .footer-ewm {
    margin-bottom: 7px;
    width: 101px;
    height: 101px;
    overflow: hidden;
}
.footer .footer-block .footer-ewm img {
    width: 100%;
    height: 100%;
}
.footer .footer-bottom {
    width: 100%;
    background: #333;
    text-align: center;
    font-size: 12px;
    color: #ccc;
    height: auto;
    padding: 10px 0;
    line-height: 20px;
    border-top: 1px solid rgba(194, 194, 194, 0.07);
}
.footer .footer-icp {
    margin-left: 15px;
    color: #ccc;
}

/*浮窗*/
.footer-help {
    position: fixed;
    width: 180px;
    height: 46px;
    bottom: 30px;
    right: 30px;
    font-size: 16px;
    z-index: 99;
}
.footer-help-btn {
    width: 180px;
    height: 46px;
    line-height: 42px;
    text-align: center;
    background: #FF6600;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
}
.footer-help-btn .iconfont {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 5px;
}
.footer-help-btn span {
    vertical-align: middle;
}
.footer-help-btn .dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
}
.footer-help-top {
    display: none;
    position: absolute;
    left: -66px;
    top: 0;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: rgba(108, 108, 108, 0.6);
    background: rgb(108, 108, 108) \9;
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}
.footer-help-top:hover {
    background: #FF6600;
}
.footer-help-top .iconfont {
    display: none \9;
}
.footer-help-top span {
    font-size: 14px;
}
.footer-help-container {
    display: none;
    position: absolute;
    z-index: 99;
    bottom: 55px;
    width: 180px;
    height: 280px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.footer-help-container .help-list {
    padding: 20px 0 0 20px;
}
.footer-help-container .help-list li {
    height: 40px;
    margin-bottom: 20px;
}
.footer-help-container .help-list a {
    color: #666;
    display: block;
}
.footer-help-container .help-list .help-icon {
    float: left;
}
.footer-help-container .help-list .help-icon .iconfont {
    font-size: 22px;
}
.footer-help-container .help-list .help-text {
    float: left;
    margin-left: 10px;
}
.footer-help-container .help-list .help-title {
    font-weight: bold;
}
.footer-help-container .help-list .help-phone {
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #FF6600;
}
.footer-help-container .help-list .help-desc {
    margin-top: 2px;
    font-size: 12px;
    color: #999;
}
.footer-help-container .help-list li:hover .help-title {
    color: #FF6600;
}
.footer-help-container .help-list li:hover .help-icon {
    color: #FF6600;
}
.footer-help-container .help-list .wx-qrcode {
    margin-left: -10px
}
.footer-help-container .help-list .wx-qrcode img {
    width: 90%;
}
.footer-help-container .help-list .wx-qrcode p {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #666;
}

/*swiper*/
.swiper-container {
    width: 100%;
    height: 650px;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    color: #fff;
    background: #fff;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
}
.swiper-slide .info {
    position: relative;
    top: -10%;
    left: 5%;
    width: 1200px;
    text-align: left;
}
.swiper-slide .info dt {
    font-size: 42px;
    margin-bottom: 20px;
}
.swiper-slide .info dd {
    font-size: 18px;
    line-height: 28px;
}
.swiper-slide .info a {
    color: #fff;
    margin-top: 20px;
    display: inline-block;
    border: 1px solid #fff;
    background: transparent;
    padding: 8px 25px;
    border-radius: 5px;
    z-index: 20;
}
.swiper-slide .info a:hover {
    color: #fff;
    background: #FF6600;
    border: 1px solid #FF6600;
}
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5
}
.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1
}