@charset "utf-8";
@media only screen and (min-width: 800px) {
     ::-webkit-scrollbar {
        width: 5px;
        height: 5px;
        background-color: #b79a7c;
    }
    /*定义滚动条轨道 内阴影+圆角*/
     ::-webkit-scrollbar-track {
        border-radius: 0px;
        background: #b79a7c;
    }
    /*定义滑块 内阴影+圆角*/
     ::-webkit-scrollbar-thumb {
        border-radius: 0px;
        background-color: #fc4d3a;
    }
}


/*=========
  基本默认值
  ==========*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-word-break: normal !important;
    word-break: normal !important;
    word-wrap: break-word !important;
}

html,
body {
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    /*苹果手机端滑动卡屏*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    /*手机端点击底部出现背景*/
    width: 100%;
    /*overflow:hidden;*/
    /*min-width: 320px;*/
    font-size: 12px;
    line-height: 1.6;
}

body {
    color: #000;
     font-family: "sans-serif";
}


/*  @media only screen and (min-width: 1000px) {
   html{
     	zoom:1.3;
   }
   .outer-bg{
   	height: 76.923vh!important;
	}
}  */

li {
    list-style: none;
}

img {
    border: none;
    vertical-align: top;
    max-width: 100%;
}

a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    color: #000;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
}

::after,
::before {
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}

table {
    border-collapse: collapse;
}

input,
textarea,
select {
    /* font-family: "Arial","SimHei"; */
    font-size: 12px;
    outline: none;
    appearance: none;
    /*清楚表单默认样式*/
    -moz-appearance: none;
    -webkit-appearance: none;
}


/** Generated by FG **/


/* @font-face {
	font-family: 'ziti';
	src: url('../fonts/dincond-regular.eot');
	src: local('☺'), url('../fonts/dincond-regular.woff') format('woff'), url('../fonts/dincond-regular.ttf') format('truetype'), url('../fonts/dincond-regular.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'ziti2';
	src: url('../fonts/DINCond-Medium.eot');
	src: local('☺'), url('../fonts/DINCond-Medium.woff') format('woff'), url('../fonts/DINCond-Medium.ttf') format('truetype'), url('../fonts/DINCond-Medium.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'ziti3';
	src: url('../fonts/Myriad Pro Light.eot');
	src: local('☺'), url('../fonts/Myriad Pro Light.woff') format('woff'), url('../fonts/Myriad Pro Light.ttf') format('truetype'), url('../fonts/Myriad Pro Light.svg') format('svg');
	font-weight: normal;
	font-style: normal;
} */


/*94%的内容*/

.container {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1680px;
    position: relative;
}

.wrap {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    position: relative;
}

@media only screen and (max-width:1280px) {
    .container {
        width: 100%;
        padding: 0 3%;
    }
    .container1 {
        width: 100%;
        padding: 0 3%;
    }
}

.fl {
    float: left;
}

.fr {
    float: right;
}


/*图片通用样式*/

.img-common {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-background-size: cover;
}


/*清楚浮动*/

.clearfix:before,
.clearfix:after {
    content: "";
    display: block;
}

.clearfix:after {
    clear: both;
}


/*Flex居中样式*/

.flex-center {
    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;
}


/*动画*/

.donghua {
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}


/*文字溢出*/

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}


/*main href 通用链接*/

.main-a .item-a {
    display: inline-block;
    margin: 35px 0;
    font-size: 14px;
}

.main-a .item-a:last-child {
    color: #666666;
    width: 38%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    cursor: initial;
}

.main-a .nn {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: #000 #000 transparent transparent;
    transform: rotate(45deg);
    margin: 0 5px;
}


/*通用view more 链接*/

.d-more {
    position: relative;
    display: inline-block;
}

.d-more::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #d7000f;
}

.d-more .more-a {
    font-size: 16px;
    color: #d7000f;
    font-weight: bold;
    /* font-family: "Arial"; */
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-right: 60px;
    padding-bottom: 30px;
}

.d-more .more-a::before {
    content: "";
    width: 22px;
    height: 2px;
    background-color: #d7000f;
    position: absolute;
    right: 0;
    top: 16%;
}

.d-more .more-a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 16%;
    border-left: 5px solid transparent;
    border-right: 5px solid #d7000f;
    border-top: 5px solid transparent;
    transform: rotate(-45deg);
}


/*清除动画*/

#need-list {
    /*overflow: hidden;*/
}


/*通用分享按钮*/

.share-to {
    float: right;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: rgba(0, 0, 0, .65);
}

.share-to .stype {
    display: inline-block;
}

.share-to .stype a {
    background-position: center;
    width: 26px;
    height: 26px;
    border: 1px solid #d7000f;
    border-radius: 50%;
    margin: 0 10px;
}

.share-to .stype .bds_sqq {
    background-image: url(/template/phone/images/new/sqq.png);
}

.share-to .stype .bds_weixin {
    background-image: url(/template/phone/images/new/sweixin.png);
}

.share-to .stype .bds_tsina {
    background-image: url(/template/phone/images/new/ssina.png);
}

.bd_weixin_popup {
    height: auto!important;
}


/* =========

	通用加载按钮

 ========= */

.load {
    text-align: center;
}

.load .loding {
    display: inline-block;
    padding: 21px 62px 21px 107px;
    font-size: 18px;
    color: #fff;
    background-color: #d7000f;
    position: relative;
    text-transform: uppercase;
}

.load .loding::before {
    content: "";
    width: 21px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 62px;
    margin-top: -1.5px;
}

.load .loding::after {
    content: "";
    width: 3px;
    height: 21px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 71px;
    margin-top: -10.5px;
}

.load .loding:hover {
    cursor: pointer;
}


/* =========

	通用大图

 ========= */

.all-banner {
    position: relative;
}

.all-banner .banner-bg {
    padding-top: calc(943 / 1920 * 100%);
}

.all-banner .b-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.all-banner .banner-title {
    padding-bottom: 35px;
    color: #fff;
    font-size: 48px;
    position: relative;
}

.all-banner .banner-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80px;
    height: 1px;
    background-color: #fff;
    margin-left: -40px;
}

@media only screen and (max-width:1280px) {
    .all-banner .banner-title {
        font-size: 40px;
        padding-bottom: 30px;
    }
}

@media only screen and (max-width:1024px) {
    .load .loding {
        padding: 18px 50px 18px 96px;
    }
    .load .loding::before {
        left: 50px;
    }
    .load .loding::after {
        left: 59px;
    }
    .d-more .more-a {
        padding-bottom: 20px;
        font-size: 14px;
    }
    .all-banner .banner-title {
        font-size: 32px;
        padding-bottom: 20px;
    }
    .main-a .item-a {
        margin: 25px 0;
    }
    .share-to .stype a {
        margin: 0 8px;
    }
}

@media only screen and (max-width:800px) {
    .load .loding {
        padding: 14px 30px 14px 62px;
        font-size: 16px;
    }
    .load .loding::before {
        left: 26px;
    }
    .load .loding::after {
        left: 35px;
    }
    .d-more .more-a {
        padding-bottom: 15px;
        padding-right: 44px;
    }
    .all-banner .banner-title {
        font-size: 28px;
        padding-bottom: 16px;
    }
    .main-a .item-a {
        margin: 18px 0;
    }
}

@media only screen and (max-width:640px) {
    .all-banner .banner-title {
        font-size: 24px;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width:414px) {
    .load .loding {
        font-size: 14px;
        padding: 10px 20px 10px 50px;
    }
    .load .loding::before {
        width: 17px;
        height: 2px;
        left: 20px;
    }
    .load .loding::after {
        width: 2px;
        height: 17px;
        left: 28px;
        margin-top: -8.5px;
    }
    .all-banner .banner-title {
        font-size: 20px;
    }
    .d-more .more-a {
        font-size: 12px;
        padding-right: 36px;
        padding-bottom: 12px;
    }
}


/* =========

	导航

 ========= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1111;
}

.headerbox.down .header {
    background-color: rgba(0, 0, 0, .7);
}

.headerbox .header .content {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.headerbox .header .logo {
    display: block;
    width: 190px;
    height: 66px;
    position: relative;
    margin-bottom: 32px;
}

.headerbox .header .logo .img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.headerbox .header .logo .img2 {
    display: none;
}


/*menu*/

.headerbox .header .rr {
    width: calc(100% - 190px);
}


/*导航菜单 搜索*/

.headerbox .header .rr .rr-lan {
    text-align: right;
    margin-bottom: 36px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.headerbox .header .rr .rr-lan .nav-language {
    display: inline-block;
    margin-right: 28px;
}

.headerbox .header .rr .rr-lan .nav-language .line {
    color: #fff;
    margin: 0 5px;
    display: inline-block;
}

.headerbox .header .rr .rr-lan a {
    display: inline-block;
    z-index: 22;
}

.headerbox .header .rr .rr-lan a .mmimg2 {
    display: none;
}

.headerbox .header .rr .rr-lan .nav-language .lang-item {
    color: #fff;
    font-size: 14px;
}

.headerbox .header .rr .rr-lan .nav-language .lang-item.on {
    color: #d7000f;
}

.headerbox .header .rr .rr-lan .searchbox {
    float: right;
    position: relative;
    width: 22px;
    cursor: pointer;
    z-index: 111;
}

.headerbox .header .rr .rr-lan .searchbox .s-bg {
    width: 24px;
    height: 16px;
    position: relative;
    z-index: 11;
}

.headerbox .header .rr .rr-lan .searchbox .s-bgg {
    display: none;
}

.headerbox .header .rr .rr-lan .searchbox .nav-menu {
    position: absolute;
    right: 0;
    top: 0;
    float: none;
}

.headerbox .header .rr .rr-lan form {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    width: 0;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
}

.headerbox .header .rr .rr-lan form input[type="text"] {
    width: 100%;
    height: 36px;
    border: 1px solid #ccc;
    padding-left: 3%;
    padding-right: 30px;
}

.headerbox .header .rr .rr-lan form input[type="submit"] {
    display: none;
}

@media only screen and (min-width:1024px) {
    .headerbox .header .rr .rr-lan .searchbox[data-on="on"] .s-bg {
        display: none;
    }
    .headerbox .header .rr .rr-lan .searchbox[data-on="on"] .s-bgg {
        transform: translateX(-50%);
        display: block;
    }
    .headerbox .header .rr .rr-lan .searchbox[data-on="on"] form {
        width: 500px;
        opacity: 1;
        visibility: visible;
    }
}

.header .nav-list {
    float: right;
    font-size: 0;
    display: block;
}

.header .nav-list .list-n {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    position: relative;
    margin: 0 23px;
}

.header .nav-list .list-n .nav-word {
    font-size: 16px;
    color: #fff;
    transition: all 0s;
    line-height: 18px;
    display: block;
    position: relative;
    z-index: 11;
    height: 46px;
}

.header .nav-list .list-n .nav-word::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: #d7000f;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.header .nav-list .list-n[data-on="on"] .nav-word::after {
    width: 100%;
    color: #d7000f;
}

.header .nav-list .list-n.on .nav-word {
    color: #d7000f;
}

.header .nav-list .list-n.on .nav-word::after {
    width: 100%;
}

.header .nav-list .list-n:hover .nav-word {
    color: #d7000f;
}

.header .nav-list .list-n .sub {
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    font-size: 0;
    z-index: 111;
    background-color: rgba(40, 40, 40, .9);
    background-image: url(/template/phone/images/new/sub-bg.png);
    background-size: 247px 173px;
    background-position: 85% center;
    padding: 40px 0;
    display: none;
}

.header .nav-list .list-n .sub .s-tit {
    color: #fff;
    display: inline-block;
    font-size: 46.5px;
    font-weight: bold;
    color: rgba(255, 255, 255, .45);
    width: 39%;
    text-transform: uppercase;
}

.header .nav-list .list-n .sub .list {
    width: 61%;
    display: inline-block;
    vertical-align: top;
}

.header .nav-list .list-n .sub .list .ss {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
    width: 20%;
    margin-bottom: 15px;
}

.header .nav-list .list-n .sub .list .ss .sub-a {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    text-align: left;
    height: 50px;
    line-height: 2rem;
    display: inline-block;
    position: relative;
    padding-right: 15px;
    margin-right: 10px;
}

.header .nav-list .list-n .sub .list .ss .sub-a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    border-color: #d7000f #d7000f transparent transparent;
    transform: rotate(45deg);
    display: none;
    opacity: 0;
}

.header .nav-list .list-n .sub .list .ss:hover .sub-a {
    color: #d7000f;
}

.header .nav-list .list-n .sub .list .ss:hover .sub-a::after {
    display: inline-block;
    opacity: 1;
}

.header .nav-menu {
    float: right;
    cursor: pointer;
    display: none;
}

@media only screen and (max-width:1280px) {
    .header .nav-list .list-n {
        margin: 0 10px;
    }
}


/*新闻页导航*/

.headnews {
    background-color: #fff;
}

.headerbox .headnews .logo .img2 {
    display: block;
}

.headnews .nav-list .list-n .nav-word {
    color: #010101;
}

.headerbox .headnews .rr .rr-lan .nav-language .lang-item {
    color: #010101;
}

.headerbox .headnews .rr .rr-lan .nav-language .line {
    color: #010101;
}

.headerbox.down .headnews {
    background-color: #fff;
}

.headerbox .headnews .logo .img1 {
    display: none;
}

.headerbox .headnews .rr .rr-lan .searchbox .s-bg {
    display: none;
}

.headerbox .headnews .rr .rr-lan .searchbox .s-bgg {
    display: inline-block;
}

.headerbox .headnews .rr .rr-lan .searchbox[data-on="on"] form {
    border: 1px solid #ccc;
}


/*小屏幕导航*/

.mmnav {
    display: none;
}

.mmnav .close {
    position: relative;
}

.mmnav .close::before {
    content: "";
    width: 36px;
    height: 2px;
    background-color: #ffc000;
    position: absolute;
    right: 35px;
    top: 50%;
    margin-top: -1px;
    transform: rotate(-45deg);
}

.mmnav .close::after {
    content: "";
    width: 36px;
    height: 2px;
    background-color: #ffc000;
    position: absolute;
    right: 35px;
    top: 50%;
    margin-top: -1px;
    transform: rotate(45deg);
}

.mmnav-list .list-n {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding: 10px 0;
}

.mmnav-list .list-n::after {
    content: "";
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: transparent #ccc #ccc transparent;
    transform: rotate(45deg);
    position: absolute;
    top: 15px;
    right: 20px;
}

.mmnav-list .list-n.on::after {
    display: none;
}

.mmnav-list .list-n:last-child {
    border-bottom: none;
}

.mmnav-list .list-n[data-on="on"]::after {
    transform: rotate(-135deg);
}

.mmnav-list .list-n .nav-word {
    color: rgba(247, 247, 247, .45);
    display: inline-block;
    font-size: 14px;
}

.mmnav-list .list-n .nav-word:hover {
    color: #fff;
}

.mmnav-list .list-n .sub .list .ss .sub-a,
.mmnav-list .list-n .sub .list .ss .job-a {
    color: rgba(247, 247, 247, .45);
    padding: 5px 0;
    display: inline-block;
}

.mmnav-list .list-n .sub .list .ss .sub-a:hover {
    color: #fff;
}

.mmnav-list .list-n .sub .list .ss .job-a {
    padding: 5px 10px;
}

.mmnav-list .mmsearch {
    background-color: #fff;
}

.mmnav-list .mmsearch form {
    padding-right: 40px;
    background-color: rgba(255, 255, 255, .55);
    position: relative;
}

.mmnav-list .mmsearch input[type="text"] {
    height: 40px;
    width: 100%;
    border: none;
    padding: 0 3%;
}

.mmnav-list .mmsearch input[type="submit"] {
    width: 40px;
    height: 40px;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: 24px 16px;
    background-size: 24px 16px;
    background-image: url(/template/phone/images/new/news-search.png);
    border: none;
    position: absolute;
    right: 0;
    top: 0;
}

.mmnav-list .mmsearch input[type="submit"]:hover {
    cursor: pointer;
}

@media only screen and (max-width:1440px) {
    .header {
        height: 100px;
    }
    .headerbox .header .rr .rr-lan {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width:1024px) {
    .header {
        height: 70px;
        padding: 15px 0;
    }
    .header .nav-list {
        display: none;
    }
    .headerbox .header .logo {
        margin-bottom: 0;
        height: 100%;
        width: 160px;
    }
    .headerbox .header .rr {
        width: calc(100% - 160px);
    }
    .headerbox .header .rr .rr-lan {
        margin-bottom: 0;
    }
    .mmnav {
        display: block;
        position: fixed;
        top: 72px;
        z-index: 1111;
        background-color: rgba(0, 0, 0, .7);
        ;
        width: 100%;
        padding: 2%;
        transition: all .5s ease;
        opacity: 0;
        visibility: hidden;
    }
    .mmnav[data-on="active"] {
        opacity: 1;
        visibility: visible;
    }
    .mmnav-list .list-n .sub {
        display: none;
    }
}

@media only screen and (max-width:768px) {
    .header {
        height: 60px;
        padding: 15px 0;
    }
    .headerbox .header .logo {
        width: 120px;
    }
    .headerbox .header .rr {
        width: calc(100% - 120px);
    }
    .mmnav {
        top: 62px;
    }
}

@media only screen and (max-width:640px) {
    .header {
        height: 50px;
        padding: 15px 0;
    }
    .mmnav {
        top: 52px;
    }
}

@media only screen and (max-width:414px) {
    .headerbox .header .logo {
        width: 100px;
    }
    .headerbox .header .rr {
        width: calc(100% - 100px);
    }
}


/* =========

	首页

 ========= */


/*首页轮播*/

.inbanner-swiper .swiper-wrapper .swiper-slide .inbanner {
    display: block;
    padding-top: calc(943 / 1920 * 100%);
    position: relative;
    transition: all 4s;
    transform: scale(1);
}

.inbanner-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .inbanner {
    transform: scale(1.1);
}

.inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-content {
    position: absolute;
    top: 40%;
    left: 3%;
    width: 94%;
}

.inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-font {
    color: #fff;
    margin-bottom: 69px;
}

.inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-font .font {
    font-size: 70px;
    font-weight: bold;
}

.inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-font .enfont {
    font-size: 22px;
    text-transform: uppercase;
}

.inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-href {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    padding: 18px 85px 18px 11px;
    border: 1px solid #fff;
    position: relative;
}

.inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-href::before {
    content: "";
    position: absolute;
    right: 13px;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin-top: -1px;
}

.inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-href::after {
    content: "";
    position: absolute;
    right: 13px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border-style: solid;
    border-width: 2px;
    border-color: #fff #fff transparent transparent;
    transform: rotate(45deg);
    margin-top: -7px;
}

.inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-href:hover {
    border: 1px solid #d7000f;
    color: #d7000f;
}

.inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-href:hover::before {
    background-color: #d7000f;
}

.inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-href:hover::after {
    border-color: #d7000f #d7000f transparent transparent;
}

@media only screen and (max-width:1280px) {
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-font {
        margin-bottom: 60px;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-font .font {
        font-size: 55px;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-href {
        padding: 16px 85px 16px 11px;
    }
}

@media only screen and (max-width:1024px) {
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-font {
        margin-bottom: 48px;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-font .font {
        font-size: 42px;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-href {
        padding: 14px 70px 14px 11px;
    }
}

@media only screen and (min-width:768px) and (max-width:1024px) {
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-font {
        margin-bottom: 36px;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-font .font {
        font-size: 36px;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-font .enfont {
        font-size: 18px;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-href {
        font-size: 16px;
        padding: 10px 55px 10px 11px;
    }
}

@media only screen and (max-width:768px) {
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-content {
        top: 55%;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-font {
        margin-bottom: 10px;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-font .font {
        font-size: 28px;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-font .enfont {
        font-size: 14px;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-href {
        font-size: 14px;
        padding: 8px 44px 8px 11px;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-href::before {
        width: 22px;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-href::after {
        width: 10px;
        height: 10px;
        margin-top: -5px;
    }
}

@media only screen and (max-width:640px) {
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner {
        height: 300px;
    }
}

@media only screen and (max-width:414px) {
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner {
        height: 250px;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-font .font {
        font-size: 24px;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-font .enfont {
        font-size: 12px;
    }
    .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner .inb-info .inb-href {
        font-size: 12px;
        padding: 8px 44px 8px 11px;
    }
}


/*发展历程*/

.history {
    width: 94%;
    margin: 0 auto;
    padding-top: 90px;
}

.history-swiper {
    width: 100%;
}

.history-swiper::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #fff;
    z-index: 112;
}

.history-swiper .swiper-slide {
    width: 33.33%;
}

.history-swiper .swiper-slide::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #f2f2f2;
}

.history-swiper .history-item {
    display: inline-block;
    width: 100%;
    padding-left: 42px;
}

.history-swiper .history-item .his-info {
    display: flex;
    flex-direction: column;
}

.history-swiper .history-item .his-info .his-tit {
    font-size: 30px;
    color: #5a5a5a;
    margin-bottom: 20px;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.history-swiper .history-item .his-info .his-titt {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 18px;
    max-height: 54px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 36px;
    max-width: 90%;
}

.history-swiper .history-item .his-info .his-href {
    background-position: right bottom;
    padding-top: calc(304 / 640 *100%)
}

.history-swiper .history-item .his-info .his-href .his-a {
    width: 60px;
    height: 60px;
    box-shadow: 2px 2px 8px #ebebeb;
    position: relative;
    float: left;
    background-color: #fff;
    bottom: 42px;
    transition: all .5s;
}

.history-swiper .history-item .his-info .his-href .his-a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 26px;
    height: 2px;
    background-color: #d7000f;
    margin-top: -1px;
    margin-left: -13px;
}

.history-swiper .history-item .his-info .his-href .his-a::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border-style: solid;
    border-width: 2px;
    border-color: #d7000f #d7000f transparent transparent;
    transform: rotate(45deg);
    margin-top: -7px;
    margin-left: -1px;
}

.history-swiper .history-item:hover .his-info .his-href .his-a {
    background-color: #d7000f;
}

.history-swiper .history-item:hover .his-info .his-href .his-a::before {
    background-color: #fff;
}

.history-swiper .history-item:hover .his-info .his-href .his-a::after {
    border-color: #fff #fff transparent transparent;
}

.history-swiper .history-prev,
.history-swiper .history-next {
    content: "";
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    border-style: solid;
    border-width: 3px;
    border-color: #d7000f #d7000f transparent transparent;
    margin-top: -24px;
    z-index: 111;
    cursor: pointer;
}

.history-swiper .history-prev {
    transform: rotate(-135deg);
    left: 10px;
}

.history-swiper .history-next {
    right: 10px;
    transform: rotate(45deg);
}

.history-swiper .history-prev.swiper-button-disabled,
.history-swiper .history-next.swiper-button-disabled {
    border-color: #c2c2c2 #c2c2c2 transparent transparent;
}

@media only screen and (max-width:1024px) {
    .history {
        margin: 0 auto 30px;
        padding-top: 50px;
    }
    .history-swiper .history-item .his-info .his-href .his-a {
        display: none;
    }
    .history-swiper .history-prev,
    .history-swiper .history-next {
        width: 36px;
        height: 36px;
        margin-top: -18px;
    }
    .history-swiper .history-item {
        padding-left: 30px;
    }
    .history-swiper .history-item .his-info .his-tit {
        font-size: 24px;
        margin-bottom: 12px;
    }
}

@media only screen and (max-width:640px) {
    .history {
        margin: 0 auto 20px;
        padding-top: 30px;
    }
    .history-swiper .history-item {
        padding: 0 10px;
    }
    .history-swiper .history-item .his-info .his-tit {
        font-size: 20px;
        margin-bottom: 6px;
    }
    .history-swiper .history-item .his-info .his-titt {
        font-size: 12px;
    }
    .history-swiper .history-prev,
    .history-swiper .history-next {
        display: none;
    }
}


/*首页通用外框*/

.main-box {
    width: 100%;
    background-color: #fff;
    padding: 80px 0;
}

.main-r {
    width: calc(100% - 306px);
    float: left;
}


/*首页通用标题*/

.intitlebox {
    float: left;
    width: 306px;
    overflow: hidden;
}

.intitlebox .cn {
    font-size: 30px;
    color: #191919;
    margin-bottom: 5px;
}

.intitlebox .scn {
    font-size: 12px;
    color: #525252;
    margin-bottom: 30px;
    text-transform: uppercase;
    padding-right: 30%;
}

.intitlebox .more {
    display: inline-block;
    padding: 13px 46px 13px 13px;
    color: #fff;
    font-size: 12px;
    background-color: #d7000f;
    position: relative;
    text-transform: uppercase;
    transition: all .5s;
}

.intitlebox .more::before {
    content: "";
    position: absolute;
    right: 13px;
    top: 50%;
    width: 14px;
    height: 1px;
    background-color: #fff;
    margin-top: -0.5px;
}

.intitlebox .more::after {
    content: "";
    position: absolute;
    right: 13px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: #fff #fff transparent transparent;
    transform: rotate(45deg);
    margin-top: -4px;
}

.intitlebox .more:hover {
    background-color: #fff;
    color: #d7000f;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
}

.intitlebox .more:hover::before {
    background-color: #d7000f;
}

.intitlebox .more:hover::after {
    border-color: #d7000f #d7000f transparent transparent;
}


/*产品与服务*/

.probox {
    border-top: 1px solid #f2f2f2;
    background-color: #efefef;
}

.pro-r .pro-swiper .pro-item {
    width: 100%;
    box-shadow: 0 0 8px #ededed;
    display: block;
    background-color: #fff;
}

.pro-r .pro-swiper .pro-item .pro-info {
    padding: 44px 10px 44px 30px;
}

.pro-r .pro-swiper .pro-item .pro-tit {
    font-size: 24px;
    color: #191919;
    margin-bottom: 8px;
    max-height: 31px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

.pro-r .pro-swiper .pro-item .pro-en {
    font-size: 12px;
    color: rgba(0, 0, 0, .45);
    text-transform: uppercase;
    min-height: 19px;
    white-space: nowrap;
    overflow: hidden;
}

.pro-r .pro-swiper .pro-item .pro-bg {
    width: 100%;
}

.pro-r .pro-swiper .pro-item .pro-bg .black {
    width: 100%;
    padding-top: calc(266 / 308 * 100%);
    background-color: rgba(0, 0, 0, .6);
    opacity: 1;
    transition: all .5s;
}

.pro-r .pro-swiper .pro-item:hover .pro-tit {
    color: #cd0007;
}

.pro-r .pro-swiper .pro-item:hover .pro-bg .black {
    visibility: hidden;
    opacity: 0;
}

.pro-r .pro-swiper .pro-prev,
.pro-r .pro-swiper .pro-next {
    content: "";
    position: absolute;
    top: 60%;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border-style: solid;
    border-width: 3px;
    border-color: #d7000f #d7000f transparent transparent;
    z-index: 111;
    cursor: pointer;
}

.pro-r .pro-swiper .pro-prev {
    transform: rotate(-135deg);
    left: 40px;
}

.pro-r .pro-swiper .pro-next {
    right: 40px;
    transform: rotate(45deg);
}

.pro-r .pro-swiper .pro-prev.swiper-button-disabled,
.pro-r .pro-swiper .pro-next.swiper-button-disabled {
    border-color: #c2c2c2 #c2c2c2 transparent transparent;
}

@media only screen and (max-width:1280px) {
    .intitlebox {
        width: 240px;
    }
}

@media only screen and (max-width:1024px) {
    .intitlebox {
        width: 100%;
        float: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .intitlebox .cn {
        font-size: 26px;
    }
    .intitlebox .scn {
        margin-bottom: 20px;
    }
    .intitlebox .more {
        padding: 10px 40px 10px 10px;
    }
    .main-r {
        width: 100%;
        float: none;
    }
    .main-box {
        padding: 65px 0;
    }
    .pro-r .pro-swiper .pro-item .pro-info {
        padding: 34px 10px 34px 24px;
    }
    .pro-r .pro-swiper .pro-item .pro-tit {
        font-size: 22px;
    }
}

@media only screen and (min-width:768px) and (max-width:1024px) {
    .main-box {
        padding: 60px 0;
    }
    .intitlebox .intit {
        width: 80%;
    }
    .pro-r .pro-swiper .pro-prev,
    .pro-r .pro-swiper .pro-next {
        width: 30px;
        height: 30px;
    }
    .pro-r .pro-swiper .pro-prev {
        left: 32px;
    }
    .pro-r .pro-swiper .pro-next {
        right: 32px;
    }
}

@media only screen and (max-width:768px) {
    .main-box {
        padding: 50px 0;
    }
    .pro-r .pro-swiper .pro-item .pro-info {
        padding: 24px 10px 24px 16px;
    }
    .pro-r .pro-swiper .pro-item .pro-tit {
        font-size: 18px;
        margin-bottom: 0;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .pro-r .pro-swiper .pro-prev,
    .pro-r .pro-swiper .pro-next {
        display: none;
    }
    .intitlebox .cn {
        font-size: 24px;
    }
}

@media only screen and (max-width:640px) {
    .main-box {
        padding: 40px 0;
    }
    .pro-r .pro-swiper .pro-item .pro-info {
        padding: 20px 10px 20px 16px;
    }
    .intitlebox .scn {
        margin-bottom: 10px;
    }
    .intitlebox .intit {
        display: inline-block;
        width: 70%;
    }
    .intitlebox .cn {
        font-size: 22px;
    }
}

@media only screen and (max-width:414px) {
    .main-box {
        padding: 30px 0;
    }
    .intitlebox .cn {
        font-size: 22px;
    }
    .intitlebox .more {
        padding: 5px 10px;
    }
    .intitlebox .more::before,
    .intitlebox .more::after {
        display: none;
    }
}


/*首页新闻中心*/

.innews-bg .innews-r .innews-item {
    padding: 30px 0;
    border-bottom: 1px solid #d7d7d7;
    position: relative;
    display: block;
}

.innews-bg .innews-r .innews-item .time {
    font-size: 12px;
    color: rgba(0, 0, 0, .45);
    margin-bottom: 17px;
}

.innews-bg .innews-r .innews-item .tit {
    font-size: 16px;
    margin-bottom: 5px;
    padding-right: 112px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

.innews-bg .innews-r .innews-item .info {
    font-size: 12px;
    color: rgba(0, 0, 0, .6);
    height: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right: 112px;
    text-transform: capitalize;
}

.innews-bg .innews-r .innews-item:hover .tit {
    color: #d7000f;
}

.innews-bg .innews-r .innews-item .more {
    display: inline-block;
    position: absolute;
    bottom: 28px;
    right: 58px;
    font-size: 12px;
    color: rgba(0, 0, 0, .45);
}

.innews-bg .innews-r .innews-item:hover .more {
    color: #d7000f;
}

@media only screen and (max-width:1024px) {
    .innews-bg .innews-r .innews-item {
        padding: 20px 0;
    }
    .innews-bg .innews-r .innews-item .more {
        display: none;
    }
    .innews-bg .innews-r .innews-item .time {
        text-align: right;
        margin-bottom: 0;
    }
    .innews-bg .innews-r .innews-item .tit,
    .innews-bg .innews-r .innews-item .info {
        padding-right: 0;
    }
}

@media only screen and (max-width:640px) {
    .innews-bg .innews-r .innews-item {
        padding: 18px 0;
    }
}

@media only screen and (max-width:414px) {
    .innews-bg .innews-r .innews-item {
        padding: 15px 0;
    }
    .innews-bg .innews-r .innews-item .tit {
        font-size: 14px;
    }
}


/*党群之家*/

.dang .intitlebox .cn {
    color: #fff;
}

.dang .intitlebox .scn {
    color: #fff;
    text-transform: uppercase;
}


/*人力资源*/

.resources .resources-r {
    display: inline-block;
}

.resources .resources-r .rr-l,
.resources .resources-r .rr-r {
    height: 432px;
    width: 46%;
    float: left;
    box-shadow: 0px 0px 20px #ededed;
}

.resources .resources-r .rr-l {
    margin-right: 4%;
    position: relative;
    display: inline-block;
}

.resources .resources-r .rr-content {
    padding: 57px 30px 0 30px;
}

.resources .resources-r .rr-content .tit {
    font-size: 24px;
    text-transform: uppercase;
}

.resources .resources-r .rr-content .en {
    font-size: 12px;
    margin-bottom: 36px;
    text-transform: uppercase;
}

.resources .resources-r .rr-content .info {
    font-size: 14px;
    line-height: 26px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 78px;
    text-transform: capitalize;
}

.resources .resources-r .rr-l .limg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.resources .resources-r .rr-l .lbg {
    padding-top: calc(186 / 416 * 100%);
}

.resources .resources-r .rr-content .more a {
    font-size: 14px;
    color: #fc0000;
    position: relative;
    padding-right: 22px;
}

.resources .resources-r .rr-content .more a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: #fc0000 #fc0000 transparent transparent;
    transform: rotate(45deg);
    margin-top: -4px;
}

.resources .resources-r .rr-r {
    float: left;
    position: relative;
    background-size: 100%;
    background-position: -29px 118%;
}

.resources .resources-r .rr-r .zp-btn {
    padding: 0 30px;
    margin-top: 79px;
}

.resources .resources-r .rr-r .zp-btn a {
    display: inline-block;
    width: calc(50% - 6px);
    float: left;
    padding: 25px 17px;
    background-color: #191919;
    color: #fff;
    font-size: 16px;
    position: relative;
    text-transform: uppercase;
}

.resources .resources-r .rr-r .zp-btn a::before {
    content: "";
    position: absolute;
    right: 17px;
    top: 50%;
    width: 26px;
    height: 1px;
    background-color: #fff;
    margin-top: -1px;
    margin-left: -13px;
}

.resources .resources-r .rr-r .zp-btn a::after {
    content: "";
    position: absolute;
    right: 17px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #fff #fff transparent transparent;
    transform: rotate(45deg);
    margin-top: -5px;
    margin-left: -1px;
}

.resources .resources-r .rr-r .zp-btn a:hover {
    background-color: #d7000f;
}

.resources .resources-r .rr-r .zp-btn a.xiao {
    float: right;
}

@media only screen and (max-width:1280px) {
    .resources .resources-r .rr-l,
    .resources .resources-r .rr-r {
        height: 400px;
        width: 48%;
    }
    .resources .resources-r .rr-l {
        margin-right: 3%;
    }
    .resources .resources-r .rr-content {
        padding: 47px 25px 0 25px;
    }
    .resources .resources-r .rr-r .zp-btn {
        padding: 0 20px;
        margin-top: 50px;
    }
    .resources .resources-r .rr-r .zp-btn a {
        padding: 20px 14px;
    }
}

@media only screen and (max-width:1024px) {
    .resources .resources-r .rr-l,
    .resources .resources-r .rr-r {
        height: 432px;
    }
    .resources .resources-r .rr-r .zp-btn {
        margin-top: 70px;
    }
}

@media only screen and (max-width:768px) {
    .resources .resources-r .rr-l,
    .resources .resources-r .rr-r {
        height: 400px;
    }
    .resources .resources-r .rr-r .zp-btn {
        margin-top: 50px;
    }
    .resources .resources-r .rr-r .zp-btn a {
        text-align: center;
    }
    .resources .resources-r .rr-r .zp-btn a::before,
    .resources .resources-r .rr-r .zp-btn a::after {
        display: none;
    }
}

@media only screen and (max-width:640px) {
    .resources .resources-r .rr-l,
    .resources .resources-r .rr-r {
        height: 400px;
        width: 100%;
        margin: 10px auto 0;
        left: 0;
    }
    .resources .resources-r .rr-l {
        margin-bottom: 15px;
    }
    .resources .resources-r .rr-content {
        padding: 30px 20px 0 20px;
    }
    .resources .resources-r .rr-content .tit {
        font-size: 18px;
    }
    .resources .resources-r .rr-content .en {
        margin-bottom: 20px;
    }
    .resources .resources-r .rr-content .info {
        font-size: 12px;
        line-height: 22px;
        min-height: 66px;
    }
    .resources .resources-r .rr-r .zp-btn a {
        padding: 15px 10px;
        text-align: center;
    }
}

@media only screen and (max-width:414px) {
    .resources .resources-r .rr-l,
    .resources .resources-r .rr-r {
        height: 320px;
    }
}


/*左边通用菜单栏*/

.main-pad {
    padding: 88px 0;
}

.main-top {
    position: relative;
    width: 100%;
    padding-bottom: 80px;
    overflow: hidden;
}

.main-top .white {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, .85);
}

.main-top .left {
    float: left;
    margin-right: 88px;
    width: 210px;
}

.main-top .left .left-a {
    display: block;
    padding: 26px 10px 19px;
    font-size: 16px;
    border-bottom: 1px solid #ececec;
    position: relative;
}

.main-top .left .left-a:hover {
    background-color: #d7000f;
    color: #fff;
}

.main-top .left .left-a.on {
    background-color: #d7000f;
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.main-top .left .job-menu {
    width: 100%;
}

.main-top .left .job-menu .job-a {
    display: block;
    padding: 23px 30px;
    font-size: 16px;
    color: #666666;
    border-bottom: 1px solid #ececec;
}

.main-top .left .job-menu .job-a.on {
    color: #d7000f;
}

.main-top .left .phone-swiper {
    display: none;
}

.mright {
    float: right;
    width: calc(100% - 300px);
    font-size: 14px;
}

.mright .main-tit {
    margin-bottom: 40px;
}

.mright .main-tit .tit-icon {
    display: inline-block;
    vertical-align: top;
    margin-right: 30px;
    margin-top: 10px;
}

.mright .main-tit .tit {
    display: inline-block;
    font-size: 36px;
    position: relative;
    padding-bottom: 24px;
}

.mright .main-tit .tit::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: #000;
}

.mright .title {
    font-size: 30px;
    position: relative;
    padding-bottom: 34px;
}

.mright .title::after {
    content: "";
    width: 80px;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 0;
}

@media only screen and (max-width:1280px) {
    .mright .main-tit {
        margin-bottom: 70px;
    }
    .mright .main-tit .tit {
        font-size: 28px;
    }
    .mright .title {
        font-size: 28px;
        padding-bottom: 30px;
    }
}

@media only screen and (max-width:1024px) {
    .main-top {
        padding-bottom: 60px;
    }
    .main-top .left {
        float: none;
        width: 100%;
        margin-bottom: 40px;
    }
    .main-top .left .pcleft {
        display: none;
    }
    .main-top .left .phone-swiper {
        display: block;
    }
    .main-top .left .phone-swiper .swiper-slide {
        width: auto;
    }
    .main-top .left .left-a {
        text-align: center;
        padding: 12px 40px;
        border-bottom: 0;
    }
    .main-top .left .left-a.on {
        font-size: 16px;
    }
    .main-top .left .phone-swiper .job-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 111;
        width: 100%;
    }
    .main-pad {
        padding: 60px 0;
    }
    .mright {
        float: none;
        width: 100%;
    }
    .mright .main-tit {
        margin-bottom: 60px;
    }
    .mright .main-tit .tit {
        font-size: 26px;
        padding-bottom: 20px;
    }
    .mright .title {
        padding-bottom: 24px;
        font-size: 26px;
    }
    .mright .title::after {
        width: 50px;
    }
}

@media only screen and (max-width:800px) {
    .main-top {
        padding-bottom: 40px;
    }
    .main-pad {
        padding: 40px 0;
    }
    .main-top .left {
        margin-bottom: 30px;
    }
    .mright .title {
        padding-bottom: 15px;
        font-size: 22px;
    }
    .mright .title::after {
        width: 44px;
    }
    .mright .main-tit .tit {
        font-size: 22px;
        padding-bottom: 14px;
    }
}

@media only screen and (max-width:640px) {
    .main-top {
        padding-bottom: 25px;
    }
    .main-pad {
        padding: 28px 0;
    }
    .mright .main-tit {
        margin-bottom: 25px;
    }
    .main-top .mright .ab-info {
        font-size: 12px;
        line-height: 20px;
    }
}

@media only screen and (max-width:414px) {
    .main-top {
        padding-bottom: 40px;
    }
    .main-top .left {
        margin-bottom: 20px;
    }
    .mright .title {
        font-size: 18px;
        padding-bottom: 10px;
    }
    .mright .title::after {
        width: 32px;
    }
    .main-top .left .left-a {
        font-size: 14px;
    }
    .mright .main-tit {
        margin-bottom: 18px;
    }
    .mright .main-tit .tit {
        font-size: 18px;
        padding-bottom: 10px;
    }
    .mright .main-tit .tit-icon {
        margin-top: 0;
        margin-right: 10px;
    }
    .main-top .left .left-a.on {
        font-size: 14px;
    }
}


/* =========

	关于宏川

 ========= */


/*集团简介*/

.main-top .mright .ab-info {
    font-size: 16px;
    line-height: 28px;
}


/*发展历程*/

.his-right .main-tit .tit {
    color: #fff;
}

.his-right .main-tit .tit::after {
    background-color: #fff;
}

.abyear {
    padding: 0 50px;
    position: relative;
    margin-bottom: 35px;
}

.abhistory .year-swiper {
    padding-bottom: 23px;
    width: 100%;
}

.abhistory .year-swiper .swiper-slide {
    color: #fff;
    font-size: 24px;
    width: 15%;
    /* font-family: "Arial"; */
    text-align: center;
    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;
}

.abhistory .year-swiper .swiper-slide.swiper-slide-thumb-active {
    color: #d7000f;
    position: relative;
}

.abhistory .year-swiper .swiper-slide:hover {
    cursor: pointer;
}

.abhistory .year-swiper .swiper-slide::after {
    content: "";
    display: block;
    clear: both;
}

.abhistory .year-swiper .swiper-slide .bb {
    width: 100%;
    left: 0px;
    position: absolute;
    height: 5px;
}

.abhistory .year-swiper .swiper-slide .bb span {
    display: block;
    position: relative;
    width: 1px;
    height: 5px;
    float: left;
    margin: 0 8px;
    background-color: #666666;
}

.abhistory .year-swiper .swiper-slide .bb a {
    width: 5px;
    position: relative;
    margin: 0 5px;
    float: left;
    display: block;
    height: 5px;
}

.abhistory .year-swiper .swiper-slide .bb a::before {
    content: "";
    display: block;
    width: 1px;
    height: 10px;
    background: #fff;
    opacity: .5;
    position: absolute;
    left: 2px;
    bottom: -5px;
}

.abhistory .year-swiper .swiper-slide .bb a .tit {
    left: 50%;
    bottom: 0px;
    width: 80px;
    margin-left: -40px;
    position: absolute;
    height: 35px;
    color: #fff;
    font-size: 24px;
}

.abhistory .year-swiper .swiper-slide .year {
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 10px;
}

.abhistory .year-swiper .swiper-slide .year::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 9px;
    margin-left: -1px;
    background-color: #666666;
}

.abhistory .year-swiper .swiper-slide.swiper-slide-thumb-active .year::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-left: 12px solid transparent;
    border-right: 12px solid #d7000f;
    border-top: 12px solid transparent;
    transform: rotate(45deg);
    margin-bottom: -4px;
    margin-left: -16px;
}

.abhistory .year-swiper .swiper-slide .year .line {
    position: absolute;
    display: inline-block;
    bottom: 0;
    right: 0;
    transform: translateX(50%);
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 0 6px;
}

.abhistory .year-swiper .swiper-slide .year .line span {
    display: inline-block;
    width: 1px;
    height: 5px;
    background-color: #666;
    vertical-align: bottom;
}

.abhistory .year-swiper .swiper-slide:last-child .year .line {
    display: none;
}

.abyear::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #d7000f;
}

.abyear .year-prev,
.abyear .year-next {
    position: absolute;
    top: 0;
    margin-top: 10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #d7000f;
    cursor: pointer;
    outline: none;
}

.abyear .year-prev {
    left: 0;
    transform: rotate(90deg);
}

.abyear .year-next {
    right: 0;
    transform: rotate(-90deg);
}

.abyear .year-prev.swiper-button-disabled,
.abyear .year-next.swiper-button-disabled {
    border-top: 10px solid #83878c;
}

.abhistory .abhis-swiper .swiper-slide {
    max-height: 620px;
    overflow-y: scroll;
}

.abhistory .abhis-swiper .swiper-slide::-webkit-scrollbar {
    display: none;
}

.abhistory .abhis-swiper .abhis-item {
    padding: 25px 60px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.abhistory .abhis-swiper .abhis-item .abfont {
    font-size: 16px;
    color: #fff;
    line-height: 24px;
}

.abhistory .abhis-swiper .abbtn {
    width: 100%;
    height: 100%;
    text-align: right;
}

.abhistory .abhis-swiper .abhis-next,
.abhistory .abhis-swiper .abhis-prev {
    width: 30px;
    height: 20px;
    position: relative;
    display: inline-block;
    margin-top: 62px;
    cursor: pointer;
}

.abhistory .abhis-swiper .abhis-prev {
    margin-right: 44px;
}

.abhistory .abhis-swiper .abhis-prev::before,
.abhistory .abhis-swiper .abhis-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 27px;
    height: 2px;
    margin-top: -1px;
    background-color: #d7000f;
}

.abhistory .abhis-swiper .abhis-prev::after,
.abhistory .abhis-swiper .abhis-next::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 15px;
    height: 15px;
    margin-top: -7.5px;
    border-style: solid;
    border-radius: 4px;
    border-width: 2px;
    border-color: #d7000f #d7000f transparent transparent;
    transform: rotate(45deg);
}

.abhistory .abhis-swiper .abhis-prev::after {
    transform: rotate(225deg);
    left: 0;
}

.abhistory .abhis-swiper .abhis-next::after {
    right: 3px;
}

.abhistory .abhis-swiper .abhis-prev.swiper-button-disabled::before,
.abhistory .abhis-swiper .abhis-next.swiper-button-disabled::before {
    background-color: #83878c;
}

.abhistory .abhis-swiper .abhis-prev.swiper-button-disabled::after,
.abhistory .abhis-swiper .abhis-next.swiper-button-disabled::after {
    border-color: #83878c #83878c transparent transparent;
}

@media only screen and (max-width:1024px) {
    .abhistory .year-swiper .swiper-slide {
        font-style: 22px;
    }
    .abyear {
        margin-bottom: 30px;
    }
    .abhistory .abhis-swiper .abhis-item {
        padding: 20px 60px;
    }
    .abhistory .abhis-swiper .abhis-next,
    .abhistory .abhis-swiper .abhis-prev {
        margin-top: 50px;
    }
}

@media only screen and (max-width:800px) {
    .main-top .mright .ab-info {
        font-size: 14px;
        line-height: 24px;
    }
    .abyear {
        padding: 0 40px;
        margin-bottom: 20px;
    }
    .abyear::after {
        bottom: 12px;
    }
    .abhistory .year-swiper {
        padding-bottom: 15px;
    }
    .abhistory .year-swiper .swiper-slide {
        font-size: 20px;
    }
    .abhistory .abhis-swiper .abhis-item {
        padding: 15px 45px;
    }
    .abhistory .abhis-swiper .abhis-item .abfont {
        font-size: 14px;
    }
    .abhistory .abhis-swiper .abhis-next,
    .abhistory .abhis-swiper .abhis-prev {
        margin-top: 40px;
    }
    .abhistory .abhis-swiper .abhis-prev {
        margin-right: 45px;
    }
}

@media only screen and (max-width:640px) {
    .abhistory .year-swiper .swiper-slide {
        font-size: 16px;
    }
    .abyear {
        padding: 0;
        margin-bottom: 10px;
    }
    .abhistory .abhis-swiper .abhis-item {
        padding: 10px 32px;
    }
    .abhistory .abhis-swiper .abhis-item .abfont {
        font-size: 12px;
        line-height: 22px;
    }
    .abhistory .abhis-swiper .abhis-next,
    .abhistory .abhis-swiper .abhis-prev {
        margin-top: 25px;
    }
    .abhistory .abhis-swiper .abhis-prev {
        margin-right: 20px;
    }
    .abyear .year-prev,
    .abyear .year-next {
        margin-top: 4px;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #d7000f;
    }
    .abyear .year-prev.swiper-button-disabled,
    .abyear .year-next.swiper-button-disabled {
        border-top: 6px solid #83878c;
    }
    .abhistory .year-swiper .swiper-slide.swiper-slide-thumb-active .year::after {
        border-left: 6px solid transparent;
        border-right: 6px solid #d7000f;
        border-top: 6px solid transparent;
        margin-left: -8px;
    }
}


/*董事长致辞*/

.zc-bg {
    background-size: unset;
    background-position: bottom;
}

.mright .zhici {
    margin-bottom: 90px;
}

.mright .zhici .zc-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
    margin-right: 45px;
}

.mright .zhici .zc-img img {
    border-radius: 50%;
}

.mright .zhici .zc-content {
    float: left;
    width: calc(100% - 245px);
    padding-top: 60px;
}

.mright .zhici .zc-content .zc-tit {
    font-size: 28px;
    color: #d7000f;
    line-height: 48px;
    margin-bottom: 70px;
}

.mright .zhici .zc-content .zc-name {
    text-align: right;
    font-size: 20px;
    line-height: 30px;
    color: #666666;
}

.mright .more-content {
    width: 80%;
    height: 100%;
    display: none;
    font-size: 16px;
    line-height: 30px;
    margin: 0 auto;
    padding: 20px 0;
}

.zc-more {
    width: 140px;
    height: 46px;
    border: 1px solid #d7000f;
    text-align: center;
    line-height: 46px;
    font-size: 14px;
    color: #d7000f;
    border-radius: 23px;
    position: relative;
    left: 50%;
    margin-left: -70px;
    display: inline-block;
    padding-left: 25px;
}

.zc-more::before {
    position: absolute;
    top: 50%;
    left: 24px;
    content: "";
    width: 12px;
    height: 12px;
    border-style: solid;
    border-width: 1px;
    border-color: transparent #d7000f #d7000f transparent;
    margin-top: -9px;
    transform: rotate(45deg);
}

.zc-more:hover {
    cursor: pointer;
}

.zc-more.on::before {
    transform: rotate(-135deg);
    margin-top: -2px;
}

@media only screen and (max-width:1024px) {
    .mright .zhici {
        margin-bottom: 60px;
    }
    .mright .zhici .zc-content {
        padding-top: 40px;
    }
    .mright .zhici .zc-content .zc-tit {
        font-size: 26px;
        line-height: 40px;
        margin-bottom: 50px;
    }
}

@media only screen and (max-width:800px) {
    .zc-more {
        width: 136px;
        height: 40px;
        line-height: 40px;
    }
    .mright .zhici {
        margin-bottom: 40px;
    }
    .mright .zhici .zc-img {
        width: 180px;
        height: 180px;
        margin-right: 25px;
    }
    .mright .zhici .zc-content {
        width: calc(100% - 205px);
        padding-top: 26px;
    }
    .mright .zhici .zc-content .zc-tit {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 28px;
    }
    .mright .zhici .zc-content .zc-name {
        font-size: 18px;
        line-height: 26px;
    }
}

@media only screen and (max-width:640px) {
    .zc-more {
        width: 120px;
        height: 35px;
        line-height: 35px;
    }
    .zc-more::before {
        width: 10px;
        height: 10px;
        margin-top: -7px;
    }
    .mright .zhici {
        margin-bottom: 25px;
    }
    .mright .zhici .zc-content .zc-tit {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 15px;
    }
    .mright .zhici .zc-content .zc-name {
        font-size: 16px;
        line-height: 22px;
    }
}

@media only screen and (max-width:414px) {
    .zc-more {
        width: 100px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
    }
    .zc-more::before {
        width: 8px;
        height: 8px;
        margin-top: -5px;
        left: 18px;
    }
    .mright .zhici {
        margin-bottom: 20px;
    }
    .mright .zhici .zc-img {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
    }
    .mright .zhici .zc-img img {
        width: 34%;
        height: 100%;
    }
    .mright .zhici .zc-content {
        width: 100%;
    }
    .mright .zhici .zc-content .zc-tit {
        font-size: 16px;
        line-height: 24px;
    }
    .mright .zhici .zc-content .zc-name {
        font-size: 14px;
        line-height: 22px;
    }
    .mright .more-content {
        font-size: 12px;
        line-height: 22px;
        margin: 0 auto 20px;
    }
}


/*企业荣誉*/

.honor-y {
    padding: 0 30px;
    position: relative;
}

.honor-y::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d7000f;
    position: absolute;
    top: 50%;
    left: 0
}

.honor-y .years-swiper .swiper-slide {
    height: 100px;
    font-size: 16px;
    position: relative;
    text-align: center;
    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;
}

.honor-y .years-swiper .swiper-slide::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d7000f;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: 50%;
    margin-left: -4px;
    z-index: 11;
}

.honor-y .years-swiper .swiper-slide:hover {
    cursor: pointer;
}

.honor-y .years-swiper .swiper-slide .years-font {
    font-size: 16px;
}

.honor-y .years-swiper .swiper-slide .yy {
    position: absolute;
    left: 50%;
    width: 100%;
    margin-left: -50px;
}

.honor-y .years-swiper .swiper-slide:nth-child(2n) .yy {
    top: 0;
}

.honor-y .years-swiper .swiper-slide:nth-child(2n+1) .yy {
    bottom: 0;
}

.honor-y .years-swiper .swiper-slide.swiper-slide-thumb-active::after {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #d7000f;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    left: 50%;
    margin-left: -7px;
    background-color: #fff;
}

.honor-y .years-swiper .swiper-slide.swiper-slide-thumb-active .yy {
    color: #fff;
    background-color: #d7000f;
    font-size: 20px;
    width: 100px;
    height: 38px;
    line-height: 38px;
    text-align: center;
}

.honor-y .years-swiper .swiper-slide.swiper-slide-thumb-active .yy::before {
    content: "";
    position: absolute;
    right: 50%;
    top: 0;
    margin-top: -1px;
    border-left: 10px solid transparent;
    border-right: 10px solid #d7000f;
    border-top: 10px solid transparent;
    transform: rotate(-135deg);
}

.honor-y .years-swiper .swiper-slide.swiper-slide-thumb-active:nth-child(2n) .yy::before {
    top: 100%;
    transform: rotate(45deg);
    margin-top: -9px;
    left: 50%;
}

.honor-y .years-prev,
.honor-y .years-next {
    position: absolute;
    top: 0;
    margin-top: 5px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #d7000f;
    cursor: pointer;
}

.honor-y .years-prev {
    left: 0;
    transform: rotate(90deg);
}

.honor-y .years-next {
    right: 0;
    transform: rotate(-90deg);
}

.honor-y .years-prev.swiper-button-disabled,
.honor-y .years-next.swiper-button-disabled {
    border-top: 10px solid #83878c;
}

.honor .yearsinfo-swiper .honor-info .honor-item {
    padding: 65px 0;
    margin-left: 60px;
    border-bottom: 1px solid #ececec;
    overflow: hidden;
}

.honor .yearsinfo-swiper .honor-info .honor-item .honor-l {
    float: left;
    width: 320px;
    position: relative;
    border: 1px solid #ececec;
}

.honor .yearsinfo-swiper .honor-info .honor-item .honor-l .ho-bg {
    padding-top: calc(260 / 320 * 100%);
}

.honor .yearsinfo-swiper .honor-info .honor-item .honor-r {
    float: right;
    width: calc(100% - 360px);
}

.honor .yearsinfo-swiper .honor-info .honor-item .honor-r .font {
    font-size: 26px;
    margin-bottom: 28px;
}

.honor .yearsinfo-swiper .honor-info .honor-item .honor-r .d-info {
    font-size: 14px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 96px;
}


/*组织架构*/

.org-tit {
    padding-bottom: 40px;
}

.org-tit .main-tit {
    display: inline-block;
    background-color: #d7000f;
    padding: 46px 25px 46px;
}

.org-tit .main-tit .tit {
    color: #fff;
}

.org-tit .main-tit .tit::after {
    background-color: #fff;
}


/*联系我们*/

.company-name {
    padding-bottom: 54px;
    border-bottom: 1px solid #ececec;
}

.company-name .name {
    font-size: 36px;
    color: #d7000f;
}

.company-name .address {
    font-size: 18px;
}

.contact-info {
    padding-top: 47px;
    margin-bottom: 60px;
    /* font-family: "Arial"; */
    line-height: 34px;
    font-size: 18px;
}

@media only screen and (max-width:1024px) {
    .honor .yearsinfo-swiper .honor-info .honor-item {
        padding: 55px 0;
        margin-left: 40px;
    }
    .honor .yearsinfo-swiper .honor-info .honor-item .honor-l {
        width: 290px;
    }
    .honor .yearsinfo-swiper .honor-info .honor-item .honor-r {
        width: calc(100% - 330px);
    }
    .honor .yearsinfo-swiper .honor-info .honor-item .honor-r .font {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .org-tit .main-tit {
        padding: 30px 20px 30px;
    }
    .company-name .name {
        font-size: 30px;
    }
    .company-name .address {
        font-size: 16px;
    }
    .contact-info {
        font-size: 16px;
        padding-top: 34px;
        margin-bottom: 40px;
    }
}

@media only screen and (max-width:800px) {
    .honor-y .years-swiper .swiper-slide {
        height: 95px;
    }
    .honor-y .years-swiper .swiper-slide .yy {
        margin-left: -38px;
    }
    .honor-y .years-swiper .swiper-slide.swiper-slide-thumb-active .yy {
        font-size: 18px;
        width: 88px;
        height: 34px;
        line-height: 34px;
    }
    .honor .yearsinfo-swiper .honor-info .honor-item {
        padding: 36px 0;
        margin-left: 20px;
    }
    .honor .yearsinfo-swiper .honor-info .honor-item .honor-l {
        width: 30%;
    }
    .honor .yearsinfo-swiper .honor-info .honor-item .honor-r {
        width: 65%;
    }
    .honor .yearsinfo-swiper .honor-info .honor-item .honor-r .font {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .honor .yearsinfo-swiper .honor-info .honor-item .honor-r .d-info {
        line-height: 22px;
        max-height: 88px;
    }
    .org-tit .main-tit {
        padding: 25px 20px 25px;
        margin-bottom: 34px;
    }
    .company-name {
        padding-bottom: 38px;
    }
    .company-name .name {
        font-size: 24px;
    }
    .company-name .address {
        font-size: 14px;
    }
    .contact-info {
        font-size: 14px;
        padding-top: 20px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width:640px) {
    .honor .yearsinfo-swiper .honor-info .honor-item {
        padding: 28px 0;
    }
    .honor .yearsinfo-swiper .honor-info .honor-item .honor-r .font {
        font-size: 16px;
    }
    .honor .yearsinfo-swiper .honor-info .honor-item .honor-r .d-info {
        -webkit-line-clamp: 3;
        line-height: 20px;
        max-height: 60px;
    }
    .honor-y .years-swiper .swiper-slide {
        height: 85px;
    }
    .honor-y .years-swiper .swiper-slide.swiper-slide-thumb-active .yy {
        font-size: 16px;
        width: 80px;
        height: 30px;
        line-height: 30px;
    }
}

@media only screen and (max-width:414px) {
    .honor-y .years-swiper .swiper-slide.swiper-slide-thumb-active .yy {
        font-size: 14px;
        width: 62px;
        height: 28px;
        line-height: 28px;
    }
    .honor-y .years-swiper .swiper-slide .yy {
        margin-left: -20px;
    }
    .honor-y .years-swiper .swiper-slide::before {
        width: 6px;
        height: 6px;
        margin-top: -3px;
        margin-left: -3px;
    }
    .honor .yearsinfo-swiper .honor-info .honor-item {
        padding: 20px 0;
        margin: 0 5px;
    }
    .honor .yearsinfo-swiper .honor-info .honor-item .honor-l {
        width: 100%;
    }
    .honor .yearsinfo-swiper .honor-info .honor-item .honor-r {
        width: 100%;
    }
    .honor .yearsinfo-swiper .honor-info .honor-item .honor-r .font {
        font-size: 16px;
        margin-bottom: 5px;
        margin-top: 5px;
    }
    .honor .yearsinfo-swiper .honor-info .honor-item .honor-r .d-info {
        font-size: 12px;
        line-height: 20px;
        max-height: 80px;
    }
    .org-tit {
        padding-bottom: 20px;
    }
    .org-tit .main-tit {
        padding: 18px 15px 18px;
    }
    .company-name .name {
        font-size: 20px;
    }
    .company-name .address {
        font-size: 12px;
    }
    .company-name {
        padding-bottom: 20px;
    }
    .contact-info {
        font-size: 12px;
    }
}


/* =========

	新闻中心

 ========= */


/*热点关注*/

.news-focu {
    padding-top: 241px;
}

.news-focu .news-title {
    font-size: 36px;
    color: #323232;
    margin-bottom: 34px;
    text-transform: uppercase;
}

.news-focu .news-swiper .swiper-slide .news-l {
    float: left;
    width: 58%;
}

.news-focu .news-swiper .swiper-slide .news-l .focu-bg {
    padding-top: calc(420 / 720 * 100%);
}

.news-focu .news-swiper .swiper-slide .news-r {
    float: right;
    width: 38%;
    display: inline-block;
}

.news-focu .news-swiper .swiper-slide .news-r .focu-time {
    font-size: 16px;
    color: #7d7d7d;
    text-align: right;
    margin-bottom: 26px;
}

.news-focu .news-swiper .swiper-slide .news-r .focu-tit {
    font-size: 24px;
    line-height: 36px;
    color: #d7000f;
    position: relative;
    margin-bottom: 26px;
    max-height: 72px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-transform: uppercase;
}

.news-focu .news-swiper .swiper-slide .news-r .focu-line {
    width: 140px;
    height: 2px;
    background-color: #323232;
    margin-bottom: 35px;
}

.news-focu .news-swiper .swiper-slide .news-r .focu-font {
    font-size: 14px;
    line-height: 26px;
    color: #323232;
    max-height: 130px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    margin-bottom: 38px;
}

.news-focu .news-swiper .swiper-slide .news-r .focu-more {
    font-size: 14px;
    color: #d7000f;
    /* font-family: "Arial"; */
    width: 120px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border: 1px solid #d7000f;
    border-radius: 17px;
    transition: all .5s;
}

.news-focu .news-swiper .swiper-slide .news-r:hover .focu-more {
    color: #fff;
    background-color: #d7000f;
    border: none;
}

.news-swiper .focu-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.news-swiper .news-prev {
    margin-right: 36px;
}

.news-swiper .news-prev,
.news-swiper .news-next {
    width: 60px;
    height: 40px;
    position: relative;
    display: inline-block;
    background-color: #d7000f;
    cursor: pointer;
}

.news-swiper .news-prev::before,
.news-swiper .news-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 27px;
    height: 2px;
    margin-top: -1px;
    margin-left: -13.5px;
    background-color: #fff;
}

.news-swiper .news-prev::after,
.news-swiper .news-next::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 15px;
    height: 15px;
    margin-top: -7.5px;
    border-style: solid;
    border-radius: 4px;
    border-width: 2px;
    border-color: #fff #fff transparent transparent;
    transform: rotate(45deg);
}

.news-swiper .news-prev.swiper-button-disabled,
.news-swiper .news-next.swiper-button-disabled {
    background-color: #fff;
    box-shadow: 0px 0px 10px #f3f3f3;
}

.news-swiper .news-prev.swiper-button-disabled::before,
.news-swiper .news-next.swiper-button-disabled::before {
    background-color: #d7000f;
}

.news-swiper .news-prev.swiper-button-disabled::after,
.news-swiper .news-next.swiper-button-disabled::after {
    border-color: #d7000f #d7000f transparent transparent;
}

.news-swiper .news-prev::after {
    transform: rotate(225deg);
    left: 17px;
}

.news-swiper .news-next::after {
    right: 17px;
}

@media only screen and (max-width:1280px) {
    .news-focu {
        padding-top: 230px;
    }
    .news-focu .news-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-time {
        margin-bottom: 20px;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-tit {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 16px;
        max-height: 60px;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-line {
        margin-bottom: 28px;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-font {
        margin-bottom: 30px;
        line-height: 24px;
    }
}

@media only screen and (max-width:1024px) {
    .news-focu {
        padding-top: 140px;
    }
    .news-focu .news-title {
        font-size: 26px;
    }
    .news-focu .news-swiper .swiper-slide .news-r {
        width: 39%;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-time {
        font-size: 14px;
        margin-bottom: 0;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-tit {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 8px;
        max-height: 52px;
        width: 88%;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-line {
        margin-bottom: 14px;
        width: 100px;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-font {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-more {
        font-size: 14px;
        width: 102px;
        height: 30px;
        line-height: 30px;
    }
    .news-swiper .news-prev,
    .news-swiper .news-next {
        width: 58px;
        height: 32px;
    }
    .news-swiper .news-prev {
        margin-right: 28px;
    }
}

@media only screen and (max-width:800px) {
    .news-focu {
        padding-top: 115px;
    }
    .news-focu .news-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .news-focu .news-swiper {
        margin-bottom: 20px;
    }
    .news-focu .news-swiper .swiper-slide .news-l {
        width: 100%;
    }
    .news-focu .news-swiper .swiper-slide .news-r {
        width: 100%;
    }
    .news-focu .news-swiper .swiper-slide .news-r {
        position: relative;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-time {
        position: absolute;
        right: 0;
        top: 5px;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-tit {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-tit {
        padding-bottom: 0;
        min-height: auto;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-tit::after {
        display: none;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-line {
        display: none;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-font {
        margin-bottom: 15px;
    }
    .news-swiper .focu-btn {
        display: none;
    }
}

@media only screen and (max-width:640px) {
    .news-focu {
        padding-top: 90px;
    }
    .news-focu .news-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .news-focu .news-swiper .swiper-slide .news-r .focu-tit {
        width: 80%;
    }
}


/*集团新闻*/

.news-content {
    margin-bottom: 80px;
}

.news-content .news-tit {
    margin: 60px 0;
}

.news-content .news-tit .title {
    font-size: 36px;
    color: #323232;
    float: left;
    text-transform: uppercase;
}

.news-content .news-list {
    margin-bottom: 40px;
}

.news-content .news-list .news-item {
    width: 33%;
    display: inline-block;
    padding: 0 42px 80px;
}

.news-content .news-list .news-item:nth-child(3n-1) {
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
}

.news-content .news-list .news-item .new-time {
    font-size: 16px;
    color: #666666;
    margin-bottom: 15px;
}

.news-content .news-list .news-item .new-img {
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}

.news-content .news-list .news-item .new-img .newbg {
    padding-top: calc(240 / 340 * 100%);
}

.news-content .news-list .news-item .new-img::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    transition: all .5s;
}

.news-content .news-list .news-item:hover .new-img::before {
    transform: translate(100%, 100%);
}

.news-content .news-list .news-item .new-tit {
    font-size: 24px;
    color: #323232;
    line-height: 36px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 20px;
    min-height: 72px;
    max-height: 72px;
}

.news-content .news-list .news-item:hover .new-tit {
    color: #d7000f;
}

.news-content .news-list .news-item .new-font {
    font-size: 14px;
    color: #666666;
    line-height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-bottom: 80px;
    max-height: 66px;
    min-height: 66px;
}

.news-content .news-list .news-item .new-more {
    font-size: 12px;
    color: #d7000f;
    position: relative;
    display: inline-block;
    padding-right: 55px;
    height: 16px;
}

.news-content .news-list .news-item .new-more::before {
    content: "";
    width: 22px;
    height: 2px;
    background-color: #d7000f;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1px;
}

.news-content .news-list .news-item .new-more::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1px;
    border-left: 5px solid transparent;
    border-right: 5px solid #d7000f;
    border-top: 5px solid transparent;
    transform: rotate(-45deg);
}

@media only screen and (max-width:1024px) {
    .news-content .news-tit .title {
        font-size: 26px;
    }
    .news-content .news-tit {
        margin: 35px 0;
    }
    .news-content .news-list .news-item {
        padding: 0 20px 68px;
    }
    .news-content .news-list .news-item .new-img {
        margin-bottom: 25px;
    }
    .news-content .news-list .news-item .new-tit {
        font-size: 20px;
        line-height: 30px;
        min-height: 60px;
        margin-bottom: 20px;
    }
    .news-content .news-list .news-item .new-font {
        margin-bottom: 45px;
    }
}

@media only screen and (max-width:800px) {
    .news-content .news-tit .title {
        font-size: 24px;
    }
    .news-content .news-tit {
        margin: 25px 0;
    }
    .news-content .news-list .news-item {
        width: 49%;
        padding: 0 15px 50px;
    }
    .news-content .news-list .news-item:nth-child(3n-1) {
        border: none;
    }
    .news-content .news-list .news-item:nth-child(2n+1) {
        border-right: 1px solid #ededed;
    }
    .news-content .news-list .news-item .new-img {
        margin-bottom: 18px;
    }
    .news-content .news-list .news-item .new-tit {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 10px;
        min-height: 52px;
    }
    .news-content .news-list .news-item .new-font {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width:640px) {
    .news-content .news-tit {
        margin: 16px 0;
    }
    .news-content .news-tit .title {
        font-size: 22px;
    }
    .select-time {
        width: 120px;
    }
    .news-content .news-list .news-item {
        width: 100%;
        padding: 0 10px 40px;
    }
    .news-content .news-list .news-item:nth-child(2n+1) {
        border: none;
    }
    .news-content .news-list .news-item .new-time {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .news-content .news-list .news-item .new-img {
        margin-bottom: 10px;
    }
    .news-content .news-list .news-item .new-tit {
        font-size: 16px;
        line-height: 26px;
        min-height: auto;
    }
    .news-content .news-list .news-item .new-font {
        font-size: 13px;
        line-height: 20px;
        max-height: 60px;
        margin-bottom: 20px;
        min-height: 60px;
    }
}


/*加载动画*/

.spinner {
    margin: 100px auto 0;
    width: 150px;
    text-align: center;
}

.spinner>div {
    width: 20px;
    height: 20px;
    background-color: #d7000f;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    /* Prevent first frame from flickering when animation starts */
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0.0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bouncedelay {
    0%,
    80%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    40% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.loadaaa {
    margin: 0 auto;
    padding: 2%;
}


/*行业资讯*/

.all-banner .newswork-bg {
    padding-top: calc(690 / 1920 * 100%);
}

.newswork-content {
    margin-bottom: 111px;
}

.newswork-content .newsw-tit {
    margin-bottom: 60px;
}

.newswork-content .newsw-tit .title {
    font-size: 36px;
    color: #323232;
    float: left;
}

.newswork-content .newsw-list {
    margin-bottom: 109px;
}

.newswork-content .newsw-list .newsw-item {
    padding-top: 60px;
    display: block;
}

.newswork-content .newsw-list .newsw-item .newsw-l {
    width: 218px;
    float: left;
}

.newswork-content .newsw-list .newsw-item .newsw-l .nw-time {
    padding-top: 36px;
    border-top: 1px solid #000;
    font-size: 41px;
    color: #666666;
    display: inline-block;
}

.newswork-content .newsw-list .newsw-item .newsw-l .nw-time .year {
    font-size: 24px;
    color: #888888;
    text-align: right;
}

.newswork-content .newsw-list .newsw-item .newsw-l .nw-tt {
    display: none;
}

.newswork-content .newsw-list .newsw-item .newsw-r {
    width: calc(100% - 218px);
    float: left;
    border-bottom: 1px solid #e6e6e6;
}

.newswork-content .newsw-list .newsw-item .newsw-r .tit {
    font-size: 24px;
    color: #323232;
    margin-bottom: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newswork-content .newsw-list .newsw-item:hover .newsw-r .tit {
    color: #d7000f;
}

.newswork-content .newsw-list .newsw-item .newsw-r .font {
    font-size: 14px;
    color: #666666;
    margin-bottom: 76px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.newswork-content .newsw-list .newsw-item .newsw-r .d-more {
    opacity: 0;
    transition: all .5s;
}

.newswork-content .newsw-list .newsw-item:hover .newsw-r .d-more {
    opacity: 1;
}

@media only screen and (max-width:1280px) {
    .newswork-content .newsw-tit .title {
        font-size: 30px;
    }
    .newswork-content .newsw-tit {
        margin-bottom: 40px;
    }
    .newswork-content .newsw-list {
        margin-bottom: 80px;
    }
    .newswork-content .newsw-list .newsw-item {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width:1024px) {
    .newswork-content {
        margin-bottom: 80px;
    }
    .newswork-content .newsw-tit {
        margin-bottom: 30px;
    }
    .newswork-content .newsw-tit .title {
        font-size: 26px;
    }
    .newswork-content .newsw-list {
        margin-bottom: 60px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-l {
        width: 188px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-l .nw-time {
        font-size: 38px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-l .nw-time .year {
        font-size: 22px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-r {
        width: calc(100% - 188px);
    }
    .newswork-content .newsw-list .newsw-item .newsw-r .tit {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-r .font {
        margin-bottom: 60px;
    }
}

@media only screen and (max-width:800px) {
    .newswork-content {
        margin-bottom: 65px;
    }
    .newswork-content .newsw-tit {
        margin-bottom: 15px;
    }
    .newswork-content .newsw-list {
        margin-bottom: 40px;
    }
    .newswork-content .newsw-list .newsw-item {
        padding-top: 30px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-r .tit {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-r .font {
        line-height: 20px;
        margin-bottom: 45px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-l {
        width: 145px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-l .nw-time {
        font-size: 34px;
        padding-top: 28px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-l .nw-time .year {
        font-size: 20px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-r {
        width: calc(100% - 145px);
    }
}

@media only screen and (max-width:640px) {
    .newswork-content {
        margin-bottom: 55px;
    }
    .newswork-content .newsw-tit {
        margin-bottom: 10px;
    }
    .newswork-content .newsw-tit .title {
        font-size: 24px;
    }
    .newswork-content .newsw-list {
        margin-bottom: 30px;
    }
    .newswork-content .newsw-list .newsw-item {
        margin-bottom: 0;
        padding-top: 25px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-l {
        width: 100%;
    }
    .newswork-content .newsw-list .newsw-item .newsw-l .nw-time {
        display: none;
    }
    .newswork-content .newsw-list .newsw-item .newsw-l .nw-tt {
        display: block;
        font-size: 16px;
        color: #888888;
        margin-bottom: 5px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-r {
        width: 100%;
    }
    .newswork-content .newsw-list .newsw-item .newsw-r .tit {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-r .font {
        margin-bottom: 25px;
        font-size: 13px;
    }
}

@media only screen and (max-width:414px) {
    .newswork-content {
        margin-bottom: 40px;
    }
    .newswork-content .newsw-tit {
        margin-bottom: 0;
    }
    .newswork-content .newsw-tit .title {
        font-size: 20px;
    }
    .newswork-content .newsw-list .newsw-item {
        padding-top: 20px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-l .nw-tt {
        font-size: 14px;
        margin-bottom: 2px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-r .tit {
        font-size: 14px;
    }
    .newswork-content .newsw-list .newsw-item .newsw-r .font {
        font-size: 12px;
        margin-bottom: 20px;
        line-height: 17px;
    }
}


/*新闻详情*/

.newsview {
    margin-top: 152px;
    margin-bottom: 92px;
}

.newsview .nv-share {
    padding-bottom: 30px;
}

.newsview .nv-share .time {
    float: left;
    display: inline-block;
    font-size: 16px;
    color: rgba(0, 0, 0, .65);
}

.newsview .newsv-content {
    padding: 55px 0 45px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 46px;
}

.newsview .newsv-content .title {
    font-size: 30px;
    text-align: center;
    width: 80%;
    margin: 0 auto 46px;
}

.newsview .newsv-content .info {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 28px;
}

.newsview .newsv-a a {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: bold;
}

.newsview .newsv-a a::before {
    content: "";
    width: 22px;
    height: 2px;
    background-color: #000;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1px;
}

.newsview .newsv-a a::after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1px;
    border-left: 5px solid transparent;
    border-right: 5px solid #000;
    border-top: 5px solid transparent;
    transform: rotate(-45deg);
}

.newsview .newsv-a a.back {
    float: left;
    padding-left: 50px;
    width: 20%
}

.newsview .newsv-a a.back::before {
    left: 0;
}

.newsview .newsv-a a.back::after {
    left: 0;
    transform: rotate(135deg);
    margin-top: -4px;
}

.newsview .newsv-a .nv-a-r {
    float: right;
    max-width: 75%;
}

.newsview .newsv-a .nv-a-r a {
    display: block;
    padding-right: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newsview .newsv-a .nv-a-r a::after {
    right: 0
}

.newsview .newsv-a .nv-a-r a.nv-prev {
    margin-bottom: 23px;
}

.newsview .newsv-a a:hover {
    color: #d7000f;
}

.newsview .newsv-a a:hover::before {
    background-color: #d7000f;
}

.newsview .newsv-a a:hover::after {
    border-right: 5px solid #d7000f;
}

.sr-bdimgshare {
    display: none!important;
}

.bdselect_share_box {
    display: none!important;
}

@media only screen and (max-width:1280px) {
    .newsview {
        margin-top: 136px;
    }
    .newsview .nv-share {
        padding-bottom: 25px;
    }
    .newsview .newsv-content {
        margin-bottom: 40px;
    }
    .newsview .newsv-content .title {
        font-size: 28px;
        margin: 0 auto 40px;
    }
}

@media only screen and (max-width:1024px) {
    .newsview {
        margin-top: 110px;
        margin-bottom: 75px;
    }
    .newsview .nv-share {
        padding-bottom: 16px;
    }
    .newsview .nv-share .time {
        font-size: 14px;
    }
    .share-to {
        font-size: 14px;
    }
    .newsview .newsv-content {
        padding: 40px 0 35px 0;
        margin-bottom: 30px;
    }
    .newsview .newsv-content .title {
        font-size: 26px;
        margin: 0 auto 30px;
    }
    .newsview .newsv-content .info {
        margin-bottom: 25px;
    }
    .newsview .newsv-a .nv-a-r a.nv-prev {
        margin-bottom: 14px;
    }
}

@media only screen and (max-width:800px) {
    .newsview {
        margin-top: 90px;
        margin-bottom: 46px;
    }
    .newsview .nv-share {
        padding-bottom: 10px;
    }
    .newsview .newsv-content {
        padding: 25px 0 30px 0;
        margin-bottom: 16px;
    }
    .newsview .newsv-content .title {
        font-size: 22px;
        margin: 0 auto 20px;
    }
    .newsview .newsv-content .info {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    .newsview .newsv-a a {
        font-size: 14px;
    }
    .newsview .newsv-a a.back {
        padding-left: 40px;
    }
    .newsview .newsv-a .nv-a-r a {
        padding-right: 40px;
    }
    .newsview .newsv-a .nv-a-r a.nv-prev {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width:640px) {
    .newsview {
        margin-top: 80px;
    }
    .newsview .newsv-content {
        padding: 20px 0 30px 0;
        margin-bottom: 10px;
    }
    .newsview .newsv-content .title {
        font-size: 18px;
        margin: 0 auto 15px;
    }
    .newsview .newsv-content .info {
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 0;
    }
    .newsview .newsv-a a {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .newsview .newsv-a a.back {
        padding-left: 30px;
        width: 25%;
    }
    .newsview .newsv-a .nv-a-r {
        width: 70%;
    }
    .newsview .newsv-a .nv-a-r a {
        padding-right: 30px;
    }
}


/* =========

	产品与服务

 ========= */

.pro-list {
    margin-top: 70px;
    margin-bottom: 172px;
}

.pro-list .pro-item {
    margin-bottom: 1px;
}

.pro-list .pro-item .pro-top {
    height: 100px;
    line-height: 100px;
    background-color: #efefef;
}

.pro-list .pro-item .pro-top .pro-icon {
    float: left;
    width: 136px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
}

.pro-list .pro-item .pro-top .pro-icon .prot-bg.hh {
    display: none;
}

.pro-list .pro-item .pro-top .pro-tit {
    float: left;
    font-size: 24px;
}

.pro-list .pro-item:hover .pro-top {
    background-color: #d7000f;
}

.pro-list .pro-item:hover .pro-top .pro-tit {
    color: #fff;
}

.pro-list .pro-item:hover .pro-top .pro-icon .prot-bg {
    display: none;
}

.pro-list .pro-item:hover .pro-top .pro-icon .prot-bg.hh {
    display: inline-block;
}

.pro-list .pro-item .pro-content {
    padding: 48px 38px;
    display: none;
}

.pro-list .pro-item .pro-content .pro-l {
    float: left;
    width: 400px;
    overflow: hidden;
}

.pro-list .pro-item .pro-content .pro-l .pbg {
    padding-top: calc(280 / 400 * 100%);
}

.pro-list .pro-item .pro-content .stit {
    float: right;
    width: calc(100% - 460px);
}

.pro-list .pro-item .pro-content .stit .tt {
    font-size: 24px;
    color: #d7000f;
    margin-bottom: 10px;
}

.pro-list .pro-item .pro-content .stit .stt {
    font-size: 18px;
    line-height: 32px;
}

.pro-list .pro-item:hover .pro-top {
    cursor: pointer;
}

.pro-list .pro-item[data-on="on"] .pro-top {
    background-color: #d7000f;
    color: #fff;
}

.pro-list .pro-item[data-on="on"] .pro-content {
    display: block;
}

.pro-list .pro-item[data-on="on"] .pro-top .pro-icon .prot-bg {
    display: none;
}

.pro-list .pro-item[data-on="on"] .pro-top .pro-icon .prot-bg.hh {
    display: inline-block;
}

@media only screen and (max-width:1280px) {
    .pro-list {
        margin-top: 60px;
        margin-bottom: 150px;
    }
    .pro-list .pro-item .pro-top {
        height: 90px;
        line-height: 90px;
    }
    .pro-list .pro-item .pro-content .pro-l {
        width: 380px;
    }
    .pro-list .pro-item .pro-content .stit {
        width: calc(100% - 440px);
    }
}

@media only screen and (max-width:1024px) {
    .pro-list {
        margin-top: 40px;
        margin-bottom: 120px;
    }
    .pro-list .pro-item .pro-top {
        height: 70px;
        line-height: 70px;
    }
    .pro-list .pro-item .pro-top .prot-bg {
        width: 30%;
    }
    .pro-list .pro-item .pro-top .pro-tit {
        font-size: 20px;
    }
    .pro-list .pro-item .pro-content {
        padding: 38px 28px;
    }
    .pro-list .pro-item .pro-content .pro-l {
        width: 40%;
    }
    .pro-list .pro-item .pro-content .stit .stt {
        font-size: 16px;
        line-height: 28px;
    }
    .pro-list .pro-item .pro-content .stit {
        width: 55%;
    }
}

@media only screen and (max-width:800px) {
    .pro-list {
        margin-top: 30px;
        margin-bottom: 90px;
    }
    .pro-list .pro-item .pro-top {
        height: 60px;
        line-height: 60px;
    }
    .pro-list .pro-item .pro-top .pro-tit {
        font-size: 18px;
    }
    .pro-list .pro-item .pro-top .pro-icon {
        width: 120px;
    }
    .pro-list .pro-item .pro-content {
        padding: 28px 18px;
    }
    .pro-list .pro-item .pro-content .stit .tt {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .pro-list .pro-item .pro-content .stit .stt {
        font-size: 14px;
        line-height: 22px;
    }
}

@media only screen and (max-width:640px) {
    .pro-list {
        margin-top: 20px;
        margin-bottom: 70px;
    }
    .pro-list .pro-item .pro-content .pro-l {
        width: 100%;
    }
    .pro-list .pro-item .pro-content {
        padding: 20px 15px;
    }
    .pro-list .pro-item .pro-content .stit {
        width: 100%;
    }
    .pro-list .pro-item .pro-content .stit .tt {
        margin-top: 5px;
    }
}

@media only screen and (max-width:414px) {
    .pro-list {
        margin-top: 10px;
        margin-bottom: 50px;
    }
    .pro-list .pro-item .pro-top {
        height: 50px;
        line-height: 50px;
    }
    .pro-list .pro-item .pro-top .pro-icon {
        width: 90px;
    }
    .pro-list .pro-item .pro-top .pro-tit {
        font-size: 16px;
    }
    .pro-list .pro-item .pro-content .stit .tt {
        font-size: 16px;
    }
    .pro-list .pro-item .pro-content .stit .stt {
        font-size: 12px;
        line-height: 20px;
    }
}


/* =========

	企业文化

 ========= */


/*企业理念*/

.company .main-tit {
    margin-bottom: 38px;
}

.company .com-list .com-item {
    padding: 35px 38px 35px 0;
    border-bottom: 1px solid #e5e5e5;
}

.company .com-list .com-item .com-l {
    float: left;
    width: 60%;
}

.company .com-list .com-item .com-l .tit {
    font-size: 16px;
    font-weight: bold;
    color: #d7000f;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.company .com-list .com-item .com-l .font {
    font-size: 24px;
    line-height: 40px;
}

.company .com-list .com-item .com-l .font.ff {
    font-size: 16px;
}

.company .com-list .com-item .com-r {
    float: right;
    width: 30%;
}

.company .com-list .com-item .com-r .com-img {
    padding-top: calc(169 / 226 * 100%);
}


/*发展战略*/

.fzzl {
    position: relative;
    width: 100%;
    background-color: #f6f6f6;
}

.fzzl .fz-bg {
    padding-top: calc(456 / 1920 * 100%);
    min-height: 150px;
}

.fzzl .fz-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.fzzl .fz-content .main-tit {
    margin-bottom: 25px;
}

.fzzl .fz-content .tit {
    font-size: 30px;
    color: #d7000f;
    position: inherit;
    padding: 7% 0 13px 0;
}

.fzzl .fz-content .tit::after {
    display: none;
}

.fzzl .fz-content .fz-icon {
    color: #d7000f;
    font-size: 52px;
    text-transform: uppercase;
    padding-left: 197px;
    position: relative;
    display: inline-block;
}

.fzzl .fz-content .fz-icon .eee {
    font-size: 14px;
    margin-top: 5px;
}


/*战略目标*/

.goal {
    margin: 88px 0;
}


/*发展路径*/

.path {
    background-color: #f7f7f7;
    padding-top: 67px;
}

.path .main-tit {
    margin-bottom: 0;
}

.path .path-img {
    max-height: 480px;
    overflow: hidden;
}

@media only screen and (max-width:1280px) {
    .company .main-tit {
        margin-bottom: 30px;
    }
    .company .com-list .com-item {
        padding: 30px 32px 30px 0;
    }
    .company .com-list .com-item .com-l .font {
        font-size: 22px;
        line-height: 36px;
    }
    .fzzl .fz-content .tit {
        font-size: 28px;
        margin-top: 0;
        padding: 28px 0 13px 0;
    }
    .fzzl .fz-content .fz-icon {
        font-size: 34px;
    }
}

@media only screen and (max-width:1024px) {
    .company .main-tit {
        margin-bottom: 20px;
    }
    .company .com-list .com-item {
        padding: 25px 30px 25px 0;
    }
    .company .com-list .com-item .com-l .tit {
        margin-bottom: 10px;
    }
    .company .com-list .com-item .com-l .font {
        font-size: 20px;
        line-height: 32px;
    }
    .fzzl .fz-content .tit {
        font-size: 26px;
    }
    .fzzl .fz-content .main-tit {
        margin-bottom: 10px;
    }
    .goal {
        margin: 60px 0;
    }
    .path {
        padding-top: 60px;
    }
    .fzzl .fz-content .fz-icon {
        font-size: 30px;
        padding-left: 160px;
    }
    .fzzl .fz-content .fz-icon::before,
    .fzzl .fz-content .fz-icon::after {
        background-size: 65%;
    }
    .fzzl .fz-content .fz-icon::before {
        left: 75px;
    }
}

@media only screen and (max-width:800px) {
    .fzzl .fz-content .tit {
        font-size: 22px;
        padding: 18px 0 10px 0;
    }
    .fzzl .fz-content .main-tit {
        margin-bottom: 5px;
    }
    .goal {
        margin: 40px 0;
    }
    .path {
        padding-top: 40px;
    }
    .fzzl .fz-content .fz-icon {
        font-size: 26px;
        padding-left: 120px;
    }
    .fzzl .fz-content .fz-icon .eee {
        font-size: 12px;
        margin-top: 0;
    }
}

@media only screen and (max-width:640px) {
    .fzzl .fz-content .fz-icon {
        font-size: 22px;
        padding-left: 68px;
    }
}

@media only screen and (max-width:414px) {
    .company .main-tit {
        margin-bottom: 10px;
    }
    .company .com-list .com-item {
        padding: 18px 0;
    }
    .company .com-list .com-item .com-l .tit {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .company .com-list .com-item .com-l .font {
        font-size: 16px;
        line-height: 24px;
    }
    .fzzl .fz-content .tit {
        font-size: 18px;
        padding: 12px 0 0 0;
    }
    .fzzl .fz-content .fz-icon {
        font-size: 18px;
        line-height: 18px;
        padding-left: 60px;
        margin-top: 10px;
    }
    .goal {
        margin: 24px 0;
    }
    .path {
        padding-top: 24px;
    }
}


/*五大文化*/

.culture .cul-tit {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 45px;
}

.culture .cul-family .fam-tit {
    font-size: 24px;
    color: #d7000f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.culture .cul-family .fam-tit img {
    margin-right: 20px;
}

.culture .cul-family .fa-list {
    margin-bottom: 75px;
}

.culture .cul-family .fa-list .fa-item .fashow {
    height: 280px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1px;
}

.culture .cul-family .fa-list .fa-item .red {
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(to left, #d7000f 0px, #d7000f 60%, transparent 100%);
    width: 70%;
    height: 100%;
}

.culture .cul-family .fa-list .fa-item .fa-font {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.culture .cul-family .fa-list .fa-item .fa-font .tt {
    font-size: 20px;
}

.culture .cul-family .fa-list .fa-item .fa-font .ff {
    font-size: 16px;
    line-height: 30px;
}

.culture .zc-more {
    left: 0;
    margin-left: 0;
    color: #fff;
    border: 1px solid #fff;
}

.culture .zc-more::before {
    border-color: transparent #fff #fff transparent;
}

.culture .zc-more:hover::before {
    transform: rotate(-135deg);
    margin-top: -2px;
}

.culture .cul-family .fa-list .fa-item[data-on="on"] .zc-more::before {
    transform: rotate(-135deg);
    margin-top: -2px;
}

.culture .cul-list .fa-item[data-on="on"] .zc-more::before {
    transform: rotate(-135deg);
    margin-top: -2px;
}

.culture .cul-family .fa-list .fa-item:nth-child(2) .red {
    left: 0;
    background: linear-gradient(to right, #f6f6f6 0px, #f6f6f6 60%, transparent 100%);
}

.culture .cul-family .fa-list .fa-item:nth-child(2) .fa-font {
    left: 10px;
    color: #000;
}

.culture .cul-family .fa-list .fa-item:nth-child(2) .fa-font .zc-more {
    color: #d7000f;
    border: 1px solid #d7000f;
}

.culture .cul-family .fa-list .fa-item:nth-child(2) .fa-font .zc-more::before {
    border-color: transparent #d7000f #d7000f transparent;
}

.culture .cul-list .cul-item .culshow {
    height: 258px;
    margin-bottom: 1px;
    position: relative;
    overflow: hidden;
}

.culture .cul-list .cul-item .black {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .45);
}

.culture .cul-list .cul-item .cult-font {
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 60px 0;
}

.culture .cul-list .cul-item .cult-font .tt {
    font-size: 24px;
    display: flex;
    align-items: center;
}

.culture .cul-list .cul-item .cult-font .tt img {
    margin-right: 20px;
}

.culture .cul-list .cul-item .cult-font .ff {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 75%;
}

.culture .cul-info {
    font-size: 16px;
    line-height: 30px;
    width: 70%;
    height: 100%;
    padding: 36px 0;
    background-color: #fff;
    margin: 0 auto;
    display: none;
}

@media only screen and (max-width:1280px) {
    .culture .cul-tit {
        margin-bottom: 40px;
    }
    .culture .cul-family .fa-list .fa-item .fashow {
        height: 250px;
    }
}

@media only screen and (max-width:1024px) {
    .culture .cul-tit {
        line-height: 26px;
        margin-bottom: 30px;
    }
    .culture .cul-family .fam-tit {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .culture .cul-family .fa-list .fa-item .fashow {
        height: 280px;
    }
    .culture .cul-list .cul-item .cult-font .tt {
        font-size: 22px;
    }
}

@media only screen and (max-width:800px) {
    .culture .cul-tit {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 24px;
    }
    .culture .cul-family .fam-tit {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .culture .cul-family .fa-list {
        margin-bottom: 55px;
    }
    .culture .cul-family .fa-list .fa-item .fashow {
        height: 220px;
    }
    .culture .cul-family .fa-list .fa-item .fa-font {
        padding: 42px 10px 42px 0;
    }
    .culture .cul-family .fa-list .fa-item .fa-font .tt {
        font-size: 18px;
    }
    .culture .cul-family .fa-list .fa-item .fa-font .ff {
        font-size: 14px;
        line-height: 24px;
    }
    .culture .cul-list .cul-item .culshow {
        height: 220px;
    }
    .culture .cul-list .cul-item .cult-font {
        padding: 40px 0;
    }
    .culture .cul-list .cul-item .cult-font .tt {
        font-size: 20px;
    }
}

@media only screen and (max-width:640px) {
    .culture .cul-family .fam-tit {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .culture .cul-family .fam-tit img {
        margin-right: 14px;
    }
    .culture .cul-family .fa-list .fa-item .fashow {
        height: 170px;
    }
    .culture .cul-family .fa-list .fa-item .red {
        width: 100%;
        background: rgba(215, 0, 15, .1);
    }
    .culture .cul-family .fa-list .fa-item .fa-font {
        padding: 30px 10px 30px 0;
    }
    .culture .cul-family .fa-list .fa-item .fa-font .tt {
        font-size: 16px;
    }
    .culture .cul-family .fa-list .fa-item .fa-font .ff {
        font-size: 12px;
        line-height: 18px;
    }
    .culture .cul-list .cul-item .culshow {
        height: 170px;
    }
    .culture .cul-list .cul-item .cult-font {
        padding: 30px 0;
    }
    .culture .cul-list .cul-item .cult-font .tt {
        font-size: 18px;
    }
    .culture .cul-list .cul-item .cult-font .tt img {
        margin-right: 15px;
    }
    .culture .cul-list .cul-item .cult-font .ff {
        font-size: 14px;
        line-height: 20px;
    }
}

@media only screen and (max-width:414px) {
    .culture .cul-tit {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 18px;
    }
    .culture .cul-family .fam-tit {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .culture .cul-family .fam-tit img {
        margin-right: 10px;
    }
    .culture .cul-family .fa-list {
        margin-bottom: 30px;
    }
    .culture .cul-family .fa-list .fa-item .fashow {
        height: 140px;
    }
    .culture .cul-family .fa-list .fa-item .fa-font {
        padding: 20px 5px 20px 0;
    }
    .culture .cul-family .fa-list .fa-item .fa-font .tt {
        font-size: 15px;
    }
    .culture .cul-family .fa-list .fa-item .fa-font .ff {
        line-height: 16px;
    }
    .culture .cul-list .cul-item .culshow {
        height: 140px;
    }
    .culture .cul-list .cul-item .cult-font {
        padding: 20px 0;
    }
    .culture .cul-list .cul-item .cult-font .tt {
        font-size: 16px;
    }
    .culture .cul-list .cul-item .cult-font .tt img {
        margin-right: 10px;
    }
    .culture .cul-list .cul-item .cult-font .ff {
        font-size: 12px;
        line-height: 16px;
    }
}


/*文化刊物*/

.book-list .book-item {
    display: inline-block;
    width: 28%;
    margin-right: 7%;
    margin-bottom: 68px;
    vertical-align: top;
}

.book-list .book-item:nth-child(3n) {
    margin-right: 0;
}

.book-list .book-item .book-img {
    box-shadow: 0px 0px 20px #bbbbbb;
}

.book-list .book-item .bookbg {
    padding-top: calc(358 / 257 * 100%);
}

.book-list .book-item .book-tit {
    font-size: 18px;
    text-align: center;
    margin-top: 15px;
}

.book-list .book-item:hover .book-tit {
    color: #d7000f;
}


/*培训与学习*/

.study-list {
    margin-bottom: 22px;
}

.study-list .study-item {
    display: inline-block;
    width: calc(50% - 12px);
    float: left;
    margin-right: 12px;
    margin-bottom: 20px;
    padding: 30px 30px 44px 30px;
    background-color: #fff;
    box-shadow: 0px 0px 20px #f0f0f0;
    position: relative;
}

.study-list .study-item:nth-child(2n) {
    margin-right: 0;
    margin-left: 12px;
}

.study-list .study-item .study-img {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.study-list .study-item .study-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    transition: all .5s;
}

.study-list .study-item:hover .study-img::before {
    transform: translate(100%, 100%);
}

.study-list .study-item .studybg {
    padding-top: calc(240 / 360 * 100%);
}

.study-list .study-item .study-tit {
    font-size: 24px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.study-list .study-item .study-font {
    font-size: 16px;
    color: #323232;
    line-height: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 140px;
    display: none;
}

.study-list .study-item .v-more {
    font-size: 10px;
    color: #000;
    /* font-family: "Arial"; */
    font-weight: bold;
    width: 90px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    border: 1px solid #000;
    border-radius: 17px;
}

.study-list .study-item:hover .v-more {
    cursor: pointer;
    border: 1px solid #d7000f;
    color: #d7000f;
}

@media only screen and (max-width:1280px) {
    .book-list .book-item {
        margin-bottom: 50px;
    }
    .study-list {
        margin-bottom: 55px;
    }
    .study-list .study-item {
        padding: 24px 24px 38px 24px;
    }
    .study-list .study-item .v-more {
        bottom: 38px;
    }
}

@media only screen and (max-width:1024px) {
    .study-list {
        margin-bottom: 30px;
    }
    .study-list .study-item .study-tit {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width:800px) {
    .book-list .book-item {
        margin-bottom: 35px;
        width: 30%;
        margin-right: 3%;
    }
    .study-list .study-item {
        width: calc(50% - 12px);
        margin-right: 12px;
        padding: 20px 20px 30px 20px;
        height: 251px;
    }
    .study-list .study-item .study-img {
        margin-bottom: 15px;
    }
    .study-list .study-item .study-tit {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .study-list .study-item .study-font {
        font-size: 14px;
        line-height: 22px;
        min-height: 110px;
        margin-bottom: 28px;
    }
    .study-list .study-item .v-more {
        bottom: 30px;
    }
}

@media only screen and (max-width:640px) {
    .study-list .study-item {
        width: calc(50% - 5px);
        margin-right: 5px;
        padding: 10px 10px 20px 10px;
        height: auto;
        margin-bottom: 10px;
    }
    .study-list .study-item .study-img {
        margin-bottom: 10px;
    }
    .study-list .study-item .study-tit {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .study-list .study-item .study-font {
        font-size: 12px;
        line-height: 18px;
        min-height: 90px;
        margin-bottom: 15px;
        -webkit-line-clamp: 5;
    }
    .study-list .study-item .v-more {
        bottom: 20px;
        position: initial;
    }
}

@media only screen and (max-width:414px) {
    .book-list .book-item {
        margin-bottom: 20px;
    }
    .book-list .book-item .book-tit {
        font-size: 12px;
        margin-top: 5px;
    }
    .study-list .study-item {
        width: 100%;
    }
}


/* =========

	党群之家

 ========= */


/*党建要闻*/

.dang .dang-top {
    margin-bottom: 34px;
}

.dang .dang-top .dang-tit {
    float: left;
}

.select-time {
    float: right;
    width: 160px;
    height: 36px;
    line-height: 36px;
    position: relative;
    margin-top: 16px;
    box-shadow: 0px 0px 1px #dcdcdc;
    background-color: #f4f4f4;
    padding: 0 10px;
    color: #888888;
    font-size: 14px;
    z-index: 11;
}

.select-time::after {
    content: "";
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: transparent #535353 #535353 transparent;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    pointer-events: none;
}

.select-time:hover {
    cursor: pointer;
}

.select-time .s-va {
    display: inline-block;
}

.select-time .s-year {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 10;
    border: 1px solid #ececec;
    display: none;
}

.select-time .s-year .yy {
    display: block;
    width: 100%;
    height: 32px;
    line-height: 32px;
    background-color: #fff;
    font-size: 14px;
    color: #666;
    padding: 0 10px;
}

.dang .dang-list {
    margin-bottom: 80px;
}

.dang .dang-list .dang-item {
    padding-top: 58px;
    border-bottom: 1px solid #e5e5e5;
    display: block;
}

.dang .dang-list .dang-item .d-tit {
    margin-bottom: 20px;
}

.dang .dang-list .dang-item .d-tit .font {
    font-size: 24px;
    color: #323232;
    float: left;
}

.dang .dang-list .dang-item:hover .d-tit .font {
    color: #d7000f;
}

.dang .dang-list .dang-item .d-tit .stime {
    font-size: 14px;
    color: #666666;
    float: right;
}

.dang .d-info {
    font-size: 14px;
    color: #666;
    line-height: 22px;
    max-height: 44px;
    text-overflow: ellipsis;
    margin-bottom: 58px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.dang .dang-list .dang-item .d-more {
    opacity: 0;
    transition: all .5s;
}

.dang .dang-list .dang-item:hover .d-more {
    opacity: 1;
}


/*智慧建党*/

.dang .zdang-list .zdang-item {
    border-bottom: 1px solid #e5e5e5;
    padding-top: 40px;
    display: block;
    padding-bottom: 37px;
}

.dang .zdang-list .zdang-item .zdang-l {
    float: left;
    width: 40%;
    position: relative;
    overflow: hidden;
}

.dang .zdang-list .zdang-item .zdang-l .black {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .45);
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.dang .zdang-list .zdang-item .zdang-l .zd-bg {
    padding-top: calc(176 / 311 * 100%);
}

.dang .zdang-list .zdang-item .zdang-r {
    float: right;
    width: 55%;
}

.dang .zdang-list .zdang-item .zdang-r .stime {
    font-size: 14px;
    color: #666666;
    margin-bottom: 18px;
}

.dang .zdang-list .zdang-item .zdang-r .font {
    font-size: 24px;
    color: #323232;
    margin-bottom: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.dang .zdang-list .zdang-item:hover .zdang-l .black {
    transform: translate(100%, 100%);
}

.dang .zdang-list .zdang-item .zdang-r .d-more {
    opacity: 0;
    transition: all .5s;
}

.dang .zdang-list .zdang-item .zdang-r .d-more .more-a {
    padding-bottom: 12px;
}

.dang .zdang-list .zdang-item:hover .zdang-r .d-more {
    opacity: 1;
}

@media only screen and (max-width:1280px) {
    .dang .dang-list .dang-item {
        padding-top: 48px;
    }
    .dang .dang-list .dang-item .d-tit .font {
        font-size: 22px;
    }
    .dang .d-info {
        margin-bottom: 50px;
    }
    .dang .zdang-list .zdang-item .zdang-r .font {
        font-size: 20px;
    }
}

@media only screen and (max-width:1024px) {
    .dang .dang-top {
        margin-bottom: 30px;
    }
    .dang .dang-list {
        margin-bottom: 60px;
    }
    .dang .d-info {
        margin-bottom: 45px;
    }
    .dang .zdang-list .zdang-item .zdang-r .stime {
        margin-bottom: 12px;
    }
    .dang .zdang-list .zdang-item .zdang-r .font {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .select-time {
        margin-top: 8px;
        width: 150px;
        height: 30px;
        line-height: 30px;
    }
}

@media only screen and (max-width:800px) {
    .dang .dang-top {
        margin-bottom: 10px;
    }
    .select-time {
        margin-top: 5px;
        width: 130px;
    }
    .dang .dang-list {
        margin-bottom: 40px;
    }
    .dang .dang-list .dang-item {
        padding-top: 30px;
    }
    .dang .dang-list .dang-item .d-tit {
        margin-bottom: 10px;
    }
    .dang .dang-list .dang-item .d-tit .font {
        font-size: 18px;
    }
    .dang .d-info {
        margin-bottom: 22px;
        line-height: 20px;
    }
    .dang .zdang-list .zdang-item {
        padding-top: 28px;
    }
    .dang .zdang-list .zdang-item .zdang-r .stime {
        margin-bottom: 5px;
    }
    .dang .zdang-list .zdang-item .zdang-r .font {
        font-size: 15px;
        margin-bottom: 5px;
    }
}

@media only screen and (max-width:640px) {
    .select-time {
        margin-top: 0;
        width: 120px;
    }
    .dang .dang-list .dang-item .d-tit .font {
        font-size: 16px;
        width: 80%;
    }
    .dang .dang-list .dang-item .d-tit .stime {
        width: 20%;
        font-size: 12px;
        text-align: right;
    }
}

@media only screen and (max-width:414px) {
    .select-time {
        width: 110px;
        height: 28px;
        line-height: 28px;
        font-size: 12px;
    }
    .select-time::after {
        margin-top: -6px;
    }
    .select-time .s-year .yy {
        font-size: 12px;
        height: 28px;
        line-height: 28px;
    }
    .dang .dang-list {
        margin-bottom: 24px;
    }
    .dang .dang-list .dang-item {
        padding-top: 18px;
    }
    .dang .dang-list .dang-item .d-tit .font {
        font-size: 14px;
    }
    .dang .d-info {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 24px;
        max-height: 36px;
    }
    .dang .zdang-list .zdang-item {
        padding-top: 20px;
    }
    .dang .zdang-list .zdang-item .zdang-l {
        width: 100%;
    }
    .dang .zdang-list .zdang-item .zdang-r {
        width: 100%;
    }
    .dang .zdang-list .zdang-item .zdang-r .stime {
        margin-bottom: 0;
    }
    .dang .zdang-list .zdang-item .zdang-r .font {
        font-size: 14px;
    }
}


/* =========

	人力资源

 ========= */


/*人才理念*/

.human .human-title {
    font-size: 36px;
    margin-bottom: 105px;
}

.human .ren-tit {
    font-size: 30px;
    margin-bottom: 20px;
}


/*宏川招聘*/

.human .human-title {
    font-size: 36px;
    padding-bottom: 32px;
    position: relative;
    margin-bottom: 54px;
}

.human .human-title::after {
    content: "";
    width: 80px;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 0;
}

.human .hc-job .search-tit {
    font-size: 30px;
    font-weight: bold;
    color: #d7000f;
    margin-bottom: 54px;
}

.human .hc-job .search-input {
    position: relative;
    margin-bottom: 48px;
}

.human .hc-job .search-input .search-t {
    width: 19%;
    display: inline-block;
    margin-right: 60px;
    position: relative;
}

.human .hc-job .search-input .search-t:last-of-type {
    margin-right: 0;
}

.human .hc-job .search-input input {
    border: none;
    padding-bottom: 18px;
    border-bottom: 1px solid #bfbfbf;
    font-size: 16px;
}

.human .hc-job .search-input select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #bfbfbf;
    font-size: 16px;
    color: #888888;
    padding-bottom: 18px;
    position: relative;
}

.human .hc-job .search-input select::after {
    content: "";
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #d7000f;
    position: absolute;
    width: 0;
    right: 0;
    top: 50%;
    margin-top: -5px;
}

.human .hc-job .search-input .search-t::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid #d7000f;
    border-top: 8px solid transparent;
    transform: rotate(45deg);
}

.human .hc-job .search-input .search-btn {
    position: absolute;
    top: calc(100% + 42px);
    right: 0;
    width: 120px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #d7000f;
    font-size: 14px;
    color: #d7000f;
    background-color: transparent;
    border-radius: 18px;
    z-index: 111;
    transition: all .5s;
}

.human .hc-job .search-input .search-btn:hover {
    cursor: pointer;
    background-color: #d7000f;
    color: #fff;
    border: none;
}

.human .hc-job .hc-now {
    font-size: 24px;
    margin-bottom: 34px;
}

.human .hc-job .job-list {
    margin-bottom: 34px;
}

.human .hc-job .job-list .job-item {
    padding: 40px 20px;
    border-bottom: 1px solid #e5e5e5;
    display: block;
}

.human .hc-job .job-list .job-item .job-tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 23px;
}

.human .hc-job .job-list .job-item .job-tit .font {
    font-size: 20px;
    color: #666;
}

.human .hc-job .job-list .job-item:hover .job-tit .font {
    color: #d7000f;
}

.human .hc-job .job-list .job-item .job-tit .time {
    font-size: 14px;
    color: #666;
}

.human .hc-job .job-list .job-item .job-to {
    font-size: 14px;
    color: #666666;
    line-height: 18px;
}

@media only screen and (max-width:1280px) {
    .human .hc-job .search-input .search-t {
        margin-right: 48px;
    }
    .human .ren-tit {
        font-size: 26px;
    }
}

@media only screen and (max-width:1024px) {
    .human .human-title {
        font-size: 28px;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    .human .human-title::after {
        width: 60px;
    }
    .human .hc-job .search-input {
        margin-bottom: 30px;
    }
    .human .hc-job .search-tit {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .human .hc-job .search-input select {
        padding-bottom: 10px;
        font-size: 14px;
    }
    .human .hc-job .search-input .search-btn {
        top: calc(100% + 30px);
    }
    .human .hc-job .hc-now {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .human .hc-job .job-list .job-item {
        padding: 24px 20px;
    }
    .human .hc-job .job-list .job-item .job-tit {
        margin-bottom: 12px;
    }
    .human .ren-tit {
        font-size: 22px;
    }
}

@media only screen and (max-width:768px) {
    .human .human-title {
        font-size: 24px;
        padding-bottom: 14px;
        margin-bottom: 20px;
    }
    .human .human-title::after {
        width: 44px;
    }
    .human .hc-job .search-tit {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .human .hc-job .search-input .search-t {
        margin-right: 44px;
    }
    .human .hc-job .search-input {
        margin-bottom: 20px;
    }
    .human .hc-job .hc-now {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .human .hc-job .search-input .search-btn {
        top: calc(100% + 20px);
        height: 30px;
        line-height: 30px;
    }
    .human .hc-job .job-list .job-item {
        padding: 15px;
    }
    .human .hc-job .job-list .job-item .job-tit {
        margin-bottom: 10px;
    }
    .human .hc-job .job-list .job-item .job-tit .font {
        font-size: 16px;
    }
    .human .hc-job .job-list .job-item .job-tit .time {
        font-size: 12px;
    }
    .human .hc-job .job-list .job-item .job-to {
        font-size: 12px;
    }
    .human .ren-tit {
        font-size: 18px;
    }
}

@media only screen and (max-width:640px) {
    .human .human-title {
        font-size: 20px;
        padding-bottom: 10px;
    }
    .human .hc-job .search-input .search-t {
        margin-right: 25px;
    }
    .human .hc-job .search-input select {
        padding-bottom: 5px;
    }
    .human .hc-job .job-list .job-item {
        padding: 10px;
    }
    .human .ren-tit {
        font-size: 14px;
    }
}

@media only screen and (max-width:414px) {
    .human .hc-job .job-list {
        margin-bottom: 26px;
    }
    .human .hc-job .job-list .job-item .job-tit .font {
        font-size: 14px;
    }
}


/*招聘详情*/

.job-detail .jd-tit {
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.job-detail .jd-tit .name {
    font-size: 30px;
    color: #d7000f;
    font-weight: bold;
}

.job-detail .jd-tit .replay {
    width: 166px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    background-color: #d7000f;
    color: #fff;
    font-size: 16px;
    display: inline-block;
    padding: 0 10px;
}

.job-detail .jd-info {
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 64px;
}

.job-detail .jd-info .jd-add {
    font-size: 14px;
    line-height: 18px;
}

.job-detail .jd-info .jd-time {
    font-size: 14px;
    color: #666666;
}

.job-detail .jd-content {
    font-size: 14px;
    line-height: 24px;
}

.job-detail .jd-font {
    font-size: 16px;
    color: #666666;
    line-height: 18px;
    margin-top: 30px;
}

@media only screen and (max-width:1024px) {
    .job-detail .jd-tit .name {
        font-size: 24px;
    }
    .job-detail .jd-tit .replay {
        width: 144px;
        height: 38px;
        line-height: 38px;
    }
    .job-detail .jd-info {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width:768px) {
    .job-detail .jd-info {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width:640px) {
    .job-detail .jd-tit .name {
        font-size: 18px;
    }
    .job-detail .jd-tit .replay {
        width: 120px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
    .job-detail .jd-info .jd-add {
        font-size: 12px;
    }
    .job-detail .jd-info .jd-time {
        font-size: 12px;
    }
}

@media only screen and (max-width:414px) {
    .job-detail .jd-tit .replay {
        width: 110px;
    }
    .job-detail .jd-tit {
        padding-bottom: 10px;
    }
    .job-detail .jd-info {
        margin-bottom: 30px;
    }
    .job-detail .jd-content {
        font-size: 12px;
        line-height: 20px;
    }
    .job-detail .jd-font {
        font-size: 12px;
    }
}


/*地图*/

.mapbox {
    padding-top: calc(570 / 840 * 100%);
    position: relative;
}

.mapbox .allmap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.mapbox .allmap img {
    max-width: none;
}

@media only screen and (max-width:1600px) {
    .all-banner .banner-themebox.contact {
        height: 320px;
    }
}

@media only screen and (max-width:1440px) {
    .all-banner .banner-themebox.contact {
        height: 300px;
    }
}

@media only screen and (max-width:1280px) {
    .all-banner .banner-themebox.contact {
        height: 280px;
    }
    .contact-bg {
        padding-top: 30px;
    }
}

@media only screen and (max-width:1024px) {
    .all-banner .banner-themebox.contact {
        height: 260px;
    }
    .contact-bg {
        padding-top: 3%;
        padding-bottom: 3%;
    }
    .contact-bg .left {
        width: 100%;
        float: none;
    }
    .contact-bg .left .en {
        font-size: 4rem;
        margin-bottom: 0;
    }
    .contact-bg .masssaged {
        width: 100%;
        float: none;
    }
    .contact-bg .masssaged .en {
        font-size: 4rem;
        margin-bottom: 2%;
    }
    .contact-bg .masssaged .my-item {
        margin-bottom: 2%;
    }
    .mapbox {
        height: 300px;
    }
}

@media only screen and (max-width:640px) {
    .all-banner .banner-themebox.contact {
        height: 220px;
    }
}

@media only screen and (max-width:414px) {
    .all-banner .banner-themebox.contact {
        height: 180px;
    }
    .contact-bg .left .en {
        font-size: 3rem;
    }
    .contact-bg .masssaged .en {
        font-size: 3rem;
    }
    .mapbox {
        height: 250px;
    }
    .contact-bg .masssaged .my-item {
        width: 100%;
        margin-right: 0;
    }
    .contact-bg .masssaged .my-item input[type="text"] {
        border-radius: 3px;
    }
    .contact-bg .masssaged .my-item-textarea textarea {
        border-radius: 3px;
    }
}

@media only screen and (max-width:320px) {
    .all-banner .banner-themebox.contact {
        height: 150px;
    }
    .contact-bg .left .en {
        font-size: 2.5rem;
    }
    .contact-bg .masssaged .en {
        font-size: 2.5rem;
    }
    .mapbox {
        height: 200px;
    }
}


/* =========

	页脚

 ========= */

.footer {
    background-color: #191919;
}

.footer .f-top {
    width: 100%;
    background-size: 507px 347px;
    background-position: 4% top;
}

.footer .footer-top {
    padding-top: 5%;
    padding-bottom: 3%;
    width: 84%;
    margin: 0 auto;
}

.footer .footer-top .contact {
    float: left;
    width: 25%;
}

.footer .footer-top .contact .contact-content {
    font-size: 14px;
    color: rgba(247, 247, 247, .55);
    line-height: 30px;
}

.footer .footer-top .contact .contact-content .f-addr {
    color: rgba(255, 0, 0, .55);
}

.footer .footer-top .footer-nav {
    width: 65%;
    float: left;
    text-align: center;
}

.footer .footer-top .footer-nav .lif {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
    padding: 0 10px;
    width: calc(100% / 6.2);
}

.footer .footer-top .footer-nav .lif:last-child {
    margin-right: 0;
}

.footer .footer-top .footer-nav .lif .nav-wordbox {
    font-size: 15px;
    color: rgba(255, 0, 0, .55);
    margin-bottom: 30px;
    display: block;
    text-align: left;
}

.footer .footer-top .footer-nav .lif .sub-menu {
    text-align: left;
}

.footer .footer-top .footer-nav .lif .sub-menu .sub-a {
    display: block;
    font-size: 12px;
    color: rgba(247, 247, 247, .55);
    margin-bottom: 15px;
    white-space: normal;
}

.footer .footer-top .footer-contact {
    width: 10%;
    float: right;
}

.footer .footer-top .footer-contact .contact-link {
    float: right;
}

.footer .footer-top .footer-contact .contact-titlebox {
    margin-bottom: 20px;
}

.footer .footer-top .footer-contact .contact-titlebox .cn {
    font-size: 1.5rem;
    color: #fff;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.footer .footer-top .footer-contact .contact-titlebox .en {
    font-size: 1.16rem;
    color: #d3d3d3;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    /* font-family: "Microsoft YaHei" */
}

.footer .footer-top .footer-contact .contact-content {
    font-size: 1.16rem;
    color: #d3d3d3;
    line-height: 2;
}

.footer .footer-top .footer-contact .contact-link .focus-tit {
    font-size: 14px;
    color: rgba(255, 0, 0, .45);
    margin-bottom: 20px;
}

.footer .footer-top .footer-contact .contact-link .link-item {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-right: 20px;
    cursor: pointer;
    position: relative;
    border: 1px solid #818181;
    margin-bottom: 25px;
}

.footer .footer-top .footer-contact .contact-link .link-item.phone {
    display: none;
}

.footer .footer-top .footer-contact .contact-link .link-item .weixin {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0;
    bottom: 100%;
    margin-left: -35px;
    transition: all .5s ease;
    transform: scale(0);
}

.footer .footer-top .footer-contact .contact-link .footer-a {
    display: block;
    vertical-align: bottom;
    margin-bottom: 15px;
    width: 102px;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding: 35px 0 25px 0;
    text-align: center;
}

.footer .footer-bottom .footer-content,
.footer .footer-bottom .footer-content a {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    font-size: 12px;
    line-height: 1.5rem;
    color: #717171;
}

.footer .footer-bottom .footer-content a:hover {
    color: #fff;
}

@media only screen and (min-width: 601px) {
    .footer .footer-top .footer-nav .lif .sub-menu .sub-a:hover {
        color: rgba(255, 0, 0, .45);
    }
    .footer .footer-top .footer-contact .contact-link .link-item:hover .weixin {
        transform: scale(1);
    }
    .footer .footer-bottom .footer-a .lia:hover {
        color: #e70300;
    }
}

@media only screen and (max-width:1280px) {
    .footer .footer-top {
        background-position: right bottom;
    }
    .footer .footer-top .footer-nav {
        width: 75%;
    }
    .footer .footer-top .footer-nav .lif .nav-wordbox {
        margin-bottom: 22px;
    }
    .footer .footer-top .footer-contact {
        width: 100%;
    }
    .footer .footer-top .footer-contact .contact-link {
        float: none;
    }
    .footer .footer-top .footer-contact .contact-link .link-item {
        margin-bottom: 0;
    }
    .footer .footer-top .footer-contact .contact-link .footer-a {
        margin-bottom: 0;
        margin-right: 10px;
        display: inline-block;
    }
}

@media only screen and (max-width:1024px) {
    .footer .f-top {
        background-size: 25%;
        background-position: right bottom;
    }
    .footer .footer-top .contact {
        width: 50%;
    }
    .footer .footer-top .footer-contact {
        width: 50%;
        float: right;
    }
    .footer .footer-top .contact .contact-content {
        line-height: 24px;
    }
    .footer .footer-top .footer-contact .contact-link {
        float: right;
    }
    .footer .footer-top .footer-contact .contact-link .footer-a {
        display: block;
    }
    .footer .footer-top .contact .con-item {
        line-height: 26px;
    }
    .footer .footer-top {
        padding: 3%;
    }
    .footer .footer-top .footer-nav {
        display: none;
    }
    .footer .footer-bottom {
        padding: 2% 0;
    }
}

@media only screen and (max-width:640px) {
    .footer .footer-top {
        width: 100%;
        padding: 20px 3%;
    }
    .footer .footer-bottom .footer-content {
        width: 94%;
        margin: 0 auto;
        text-align: left;
    }
    .footer .footer-top .contact .contact-content .f-addr {
        line-height: 18px;
    }
}

@media only screen and (max-width:414px) {
    .footer .footer-top .contact {
        width: 94%;
        margin: 0 auto;
        float: none;
        padding-left: 0;
    }
    .footer .footer-top .footer-contact {
        width: 94%;
        float: none;
        margin: 0 auto;
        text-align: left;
    }
    .footer .footer-top .contact .con-item {
        line-height: 22px;
    }
    .footer .footer-top .footer-contact .contact-link {
        float: none;
    }
    .footer .footer-top .footer-contact .contact-link .focus-tit {
        margin-bottom: 10px;
    }
    .footer .footer-top .footer-contact .contact-link .link-item {
        margin-right: 10px;
    }
    .footer .footer-bottom .footer-content {
        line-height: 18px;
    }
}


/*底部加载动画*/

.paggg {
    display: block;
    padding: 3%;
    text-align: center;
    width: 100%;
}

.loading-svg {
    width: 50px;
    height: 50px;
    text-align: center;
}

h1 {
    text-align: center;
    color: #fff;
    margin: 0 0 100px;
    font-size: 34px;
    font-weight: 100;
    text-transform: uppercase;
    background-color: #e43725;
    padding: 20px 0;
}

h1 b {
    font-weight: 700;
}

.made-with-love {
    margin-top: 20px;
    padding: 10px;
    font-size: 10px;
    color: #fff;
}

.made-with-love i {
    font-style: normal;
    color: #F50057;
    font-size: 14px;
    position: relative;
    top: 2px;
}

.made-with-love a {
    color: #fff;
    text-decoration: none;
}

.made-with-love a:hover {
    text-decoration: underline;
}


/*搜索*/

.search-main img {
    max-width: 100%;
}

.search-main {
    width: 94%;
    max-width: 1200px;
    margin: auto;
    padding: 30px 0;
    min-height: 300px;
    margin-top: 120px;
}

.search-main .list {
    margin-bottom: 30px;
}

.search-main .type {
    line-height: 50px;
    font-size: 3.33rem;
    color: #000;
    font-weight: bold;
    text-align: center;
}

.search-main .list ul li {
    display: block;
    overflow: hidden;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
    padding: 30px 0;
}

.search-main .list ul li.nothing {
    height: 100px;
    border: 0px;
    line-height: 100px;
    text-align: center;
    font-size: 18px;
    color: #999;
}

.search-main .list ul li a .text .title {
    font-size: 1.16rem;
}

.search-main .list ul li a .text .demo {
    font-size: 1rem;
    opacity: .7;
    line-height: 1.8;
    margin-bottom: 20px;
}

.search-main .list ul li a .text .rq {
    font-size: 1.16rem;
    opacity: .7;
    line-height: 1.8;
    margin-bottom: 15px;
}

.search-main .list ul li a .tu {
    margin-bottom: 20px;
}

@media only screen and (min-width:600px) {
    .search-main .list ul li a {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: -moz-box;
        display: flex;
        -ms-flex-direction: row;
        -webkit-flex-direction: row;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        flex-direction: row;
        -webkit-box-orient: horizontal;
        -ms-box-orient: horizontal;
        box-orient: horizontal;
    }
    .search-main .list ul li a .tu {
        width: 200px;
        margin-right: 30px;
        margin-bottom: 0px;
    }
    .search-main .list ul li a .text {
        -webkit-flex: 1;
        -ms-flex: 1;
        -moz-box-flex: 1;
        flex: 1;
        -webkit-box-flex: 1;
    }
}

.search-main .list ul li a span {
    float: right;
    margin-right: 20px;
}

.search-main .list ul li a:hover {
    color: #e62129;
}

@media only screen and (max-width:800px) {
    .search-main {
        margin-top: 6%;
        padding: 3% 0;
    }
    .search-main .list ul li {
        padding: 3% 0;
    }
    .search-main .list ul li a .tu {
        margin-bottom: 2%;
    }
    .search-main .list ul li a .text .demo {
        margin-bottom: 2%;
    }
    .search-main .list ul li a .text .rq {
        margin-bottom: 2%;
    }
}

@media only screen and (max-width:500px) {
    .search-main .type {
        font-size: 2.5rem;
        font-weight: normal;
    }
}


/*法律声明*/

.law-bg {
    padding: 6% 0;
    font-size: 1.16rem;
    color: #000;
    line-height: 2;
}


/*分页*/

.fenye {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fenye a {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #666;
    background-color: #fff;
    border: 1px solid #e7e7e7;
    font-size: 14px;
    position: relative;
    margin-right: 5px;
}

.fenye a:last-of-type {
    margin-right: 0;
}

.fenye a:hover,
.fenye .a1.active {
    background-color: #d7000f;
    color: #fff;
    border: none;
    cursor: pointer;
}

.fenye .btn::before,
.fenye .btn::after,
.fenye .prev::before,
.fenye .next::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 9px;
    border-style: solid;
    border-width: 1px;
    border-color: #9f9f9f #9f9f9f transparent transparent;
    transform: rotate(45deg);
    margin-top: -4.5px;
    margin-left: -11px;
}

.fenye .btn::after {
    margin-left: -2px;
}

.fenye .btn.prev::before,
.fenye .btn.prev::after {
    transform: rotate(-135deg);
    margin-left: 2px;
}

.fenye .btn.prev::after {
    margin-left: -6px;
}

.fenye .prev::before {
    transform: rotate(-135deg);
    margin-left: -2px;
}

.fenye .next.nn::before {
    margin-left: -7px;
}

.fenye .prev.pp {
    margin-right: 38px;
}

.fenye .next.nn {
    margin-left: 33px;
}

.fenye .first,
.fenye .last {
    display: none;
}

.fenye a:hover::before,
.fenye a:hover::after {
    border-color: #fff #fff transparent transparent;
}

@media only screen and (max-width:600px) {
    .fenye a {
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
    .fenye .prev.pp {
        margin-right: 20px;
    }
    .fenye .next.nn {
        margin-left: 15px;
    }
}

.md {
    position: absolute;
    top: -120px;
}