/*  S - reset 重置CSS  */
html {
    font-size: 14px;
    font-family: Microsoft YaHei, Arial, sans-serif;
    -webkit-text-size-adjust:none;
    background: #1e1e1e;
}
body, div, p, ul, li, h3, h4, input, button,textarea, dl, dt, dd {
    margin: 0;
    padding: 0;
    font-family: Microsoft YaHei, sans-serif, Arial;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img, button {
    border: 0;
    border: none;
}
em, strong, i {
    font-style: normal;
}
a {
    color: #333; /*此处待添加默认链接颜色*/
    outline: none;
    text-decoration: none;
}
li {
    list-style: none;
}
h3, h4 {
    font-size: 100%;
    font-weight: normal;
}
input, button, textarea, select, optgroup, option {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    outline: none;
}
input, button, textarea, select {
    *font-size: 100%;
}
body{
    -webkit-text-size-adjust:none;
}
*{
    -webkit-appearance: none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
*:focus {
    outline: none;
}
input[type="checkbox"],
input[type="radio"] {
    position: absolute;
    width: 0;
    height: 0;
    border: 0;
    border: none;
    opacity: 0;
    left: -9999rem;
}
select {
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
}
select::-ms-expand { display: none; }
/* E - reset 重置CSS */
/* S - 通用样式 */
.fn-hide {
    display: none;
}
.fn-show {
    display: block;
}
.fn-fl {
    float: left;
}
.fn-fr {
    float: right;
}
.tran-5 {
    transition: all 0.5s;
}
.upAni {
    animation:upAni 1s linear infinite ;
    -moz-animation:upAni 1s linear infinite ;
    -webkit-animation: upAni 1s linear infinite ;
    -o-animation: upAni 1s linear infinite ;
}
.bigAni {
    animation:bigAni 1s linear infinite ;
    -moz-animation:bigAni 1s linear infinite ;
    -webkit-animation: bigAni 1.5s linear infinite ;
    -o-animation: bigAni 1s linear infinite ;
} 
@keyframes upAni
{
25%  {transform: translateY(5px);}
50%  {transform: translateY(8px);}
100% {transform: translateY(0);}
}
@-moz-keyframes upAni 
{
25%  {transform: translateY(5px);}
50%  {transform: translateY(8px);}
100% {transform: translateY(0);}
}

@-webkit-keyframes upAni 
{
25%  {transform: translateY(5px);}
50%  {transform: translateY(8px);}
100% {transform: translateY(0);}
}

@-o-keyframes upAni 
{
25%  {transform: translateY(5px);}
50%  {transform: translateY(8px);}
100% {transform: translateY(0);}
}
@keyframes bigAni
{
25%  {transform: scale(1.2);}
50%  {transform: scale(1.3);}
100% {transform: scale(1);}
}
@-moz-keyframes bigAni
{
25%  {transform: scale(1.2);}
50%  {transform: scale(1.3);}
100% {transform: scale(1);}
}

@-webkit-keyframes bigAni
{
25%  {transform: scale(1.2);}
50%  {transform: scale(1.3);}
100% {transform: scale(1);}
}

@-o-keyframes bigAni
{
25%  {transform: scale(1.2);}
50%  {transform: scale(1.3);}
100% {transform: scale(1);}
}
/* S - 清理浮动 */
.clearfix:after {
    overflow: hidden;
    display: block;
    clear: both;
    height: 0px;
    content: "\200B"
}
.clearfix {
    *zoom: 1;
}
/* E - 清理浮动 */
/* E - 通用样式 */

/*S-头部尾部*/
.fix-mask {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #1e1e1e;
    color: #ddd;
    font-size: 24px;
    text-align: center;
    line-height: 330px;
    z-index: 999;
}
.header-warp {
    position: fixed;
    top: 0;
    /* height: 136px; */
    width: 100%;
    font-size: 0;
    transition: all 0.8s;
    z-index: 99;
}
.g-header {
    background: #120f0d;
    text-align: right;
    padding-right: 6.7%;
    height: 40px;
    overflow: hidden;
    box-sizing: border-box;
}
.g-header a {
    display: inline-block;
    font-size: 14px;
    color: #ddd;
    line-height: 40px;
    margin: 0 20px;
    vertical-align: middle;
}
.g-header a:hover {
    color: #fff;
}
.header-search {
    display: inline-block;
    vertical-align: middle;
}
.header-search i {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url(../images/icon-search.png);
    background-size: 100% 100%;
    vertical-align: middle;
}
.header-search  input {
    width: 0;
    font-size: 14px;
    color: #fff;
    border: 0;
    line-height: 16px;
    border-bottom: 1px solid #999;
    vertical-align: middle;
    background: none;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.5s;
}
.header-search span {
    display: none;
    font-size: 18px;
    vertical-align: middle;
    color: #fff;
    cursor: pointer;
}
.g-header-sub {
    position: relative;
    line-height: 96px;
    height: 0;
    padding-left: 7.8%;
    font-size: 0;
    overflow: hidden;
    transition: all 0.8s;
    background: rgba(30,30,30,.8);
}
.home .g-header-sub {
    height: 96px;
    background: none;
}
.header-sub-r {
    float: right;
    margin-right: 7.8%;
}
.g-header-sub-more {
    display: none;
    position: absolute;
    right: 7.8%;
    top: 15px;
    width: 30px;
}
.g-header-sub-more i {
    display: block;
    height: 2px;
    background: #fff;
    margin-top: 6px;
    transform-origin:0 0;
    transition: all 0.35s;
}
.g-header-sub img {
    vertical-align: middle;
    max-width: 9%;
}
.g-header-sub a {
    font-size: 18px;
    color: #ddd;
    margin: 0 0 0 50px;
}
.g-header-sub a:hover {
    color: #fff;
}
.g-footer {
    position: relative;
    background: #222;
    height: 458px;
    overflow: hidden;
}
.footer-link {
    width: 55.8%;
    text-align: center;
    margin: 0 auto;
    padding: 20px 0;
    font-size: 0;
    border-bottom: 1px solid #454545;
}
.footer-link a {
    display: inline-block;
    line-height: 40px;
    font-size: 18px;
    color: #6b6b6b;
    margin: 0 2.5%;
    transition: all 0.3s;
}
.footer-link a:hover {
    color: #bbb;
}
.btn-share {
    position: absolute;
    top: 31px;
    left: 7.4%;
    width: 13px;
    height: 16px;
    background: url(../images/icon-share.png);
    background-size: 100% 100%;
    cursor: pointer;
}
.btn-share-con {
    display: none;
    position: absolute;
    top: -6px;
    left: 24px;
    font-size: 0;
    width: 95px;
    height: 20px;
    padding: 5px;
    border-radius: 4px;
    background: #fff;
}
.btn-share-con img {
    width: 21px;
    margin: 0 5px;
}
.btn-share-con:after {
    position: absolute;
    content: '';
    left: -10px;
    top: 8px;
    width: 0;
    height: 0;
    border: 5px solid #fff;
    border-color: transparent #fff transparent transparent;
}
.btn-top {
    position: absolute;
    top: 32px;
    right: 7.4%;
    width: 15px;
    height: 14px;
    background: url(../images/icon-top.png);
    background-size: 100% 100%;
    cursor: pointer;
}
.footer-bottom {
    margin: 0 7.8%;
    padding-top: 100px;
}
.gooter-logo {
    float: left;
}
.footer-text {
    float: right;
    text-align: right;
}
.footer-code {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 0;
    text-align: center;
}
.footer-code img {
    margin: 0 25px;
    vertical-align: middle;
}
.copyright {
    margin-top: 155px;
    line-height: 22px;
    font-size: 11px;
    font-weight: bold;
    color: #6b6b6b;
    text-align: center;
}
.footer-text p {
    font-size: 17px;
    line-height: 31px;
    color: #999;
}
.footer-text h3 {
    margin-top: 15px;
    font-size: 23px;
    line-height: 31px;
    color: #b18a47;
   /*// letter-spacing: 1px;*/
}
/*E-头部尾部*/
/* s-内页头部*/
.page-top {
    position: relative;
    margin-top: 40px;
}
.page-top img {
    display: block;
    width: 100%;
}
.page-tit {
    position: absolute;
    left: 7.8%;
    top: 50%;
    margin-top: -44px;
    color: #fff;
}
.page-tit h3 {
    font-size: 43px;
    line-height: 54px;
    font-family: Arial;
}
.page-tit p {
    font-size: 15px;
    line-height: 34px;
}
.page-tit i {
    display: inline-block;
    width: 20px;
    height: 1px;
    margin-right: 10px;
    background: #fff;
    transform: rotate(-45deg);
    vertical-align: middle;
}
.page-nav {
    height: 55px;
    padding: 0 7.8%;
    border-top: 1px solid #303030;
    border-bottom: 1px solid #303030;
    background: #1e1e1e;
    font-size: 0;
    color: #fff;
}
.page-nav-list {
    float: left;
}
.page-nav-list li {
    display: inline-block;
    font-size: 18px;
    margin-right: 60px;
    line-height: 52px;
    border-bottom: 3px solid #1e1e1e;
    cursor: pointer;
    transition: all .3s;
}
.page-nav-list li.sel {
    color: #b7965c;
    border-bottom: 3px solid #b7965c;
}
.page-nav-list li:hover {
    color: #b7965c;
}
.page-crumb {
    float: right;
    color: #424242;
}
.page-crumb a, .page-crumb span{
    display: inline-block;
    font-size: 18px;
    line-height: 55px;
    color: #424242;
}
.page-crumb span{
    margin: 0 15px;
}
.page-crumb a.sel {
    color: #fff;
}
/* e-内页头部*/
/* 分页 */
.ui-page {
    text-align: center;
    font-size: 0;
}
.ui-page-prev, .ui-page-next {
    display: inline-block;
    width: 5px;
    height: 9px;
    background:url(../images/icon.png);
    background-position: -265px 0;
    cursor: pointer;
    margin: 0 8px;
}
.ui-page-next {
    background-position: -271px 0;
}
.ui-page-num {
    display: inline-block;
    color: #fff;
}
.ui-page-num span {
    font-size: 14px;
    margin: 0 15px;
}
.ui-page-num span.sel {
    color: #b7965c;
}
/*S-首页*/
.main-con {
    position: relative;
    height: 600px;
}
.main-banner {
    overflow: hidden;
}
.main-banner .swiper-wrapper{
    height: 100%;
}
.main-banner .swiper-slide {
    height: 100%;
    background-size: cover;
    background-position: center center;
}
.banner-text {
    display: table;
    width: 100%;
    height: 100%;
}
.banner-text-con {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.banner-text-con h3 {
    font-size: 70px;
    line-height: 80px;
    color: #fff;
    text-transform: uppercase;
}
.banner-text-con p {
    font-size: 26px;
    color: #fff;
    line-height: 60px;
}
.banner-btn-box {
    position: absolute;
    right: 0;
    left: 0;
    padding: 0 7.8%;
    bottom: 70px;
    z-index: 1;
    font-size: 0;
}
.banner-go-next {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 100%;
    background: #fff;
    margin: 0 auto;
    cursor: pointer;
    text-align: center;
}
.banner-go-next a {
    display: block;
    width: 100%;
    height: 100%;
}
.banner-go-next i {
    display: inline-block;
    width: 10px;
    height: 6px;
    background: url(../images/icon-more-b.png);
    background-size: 100% 100%;
    cursor: pointer;
    vertical-align: middle;
}
.main-banner .banner-page {
    float: left;
    margin-top: 7px;
}
.banner-page .swiper-pagination-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 13px;
    border-radius: 100%;
    background: none;
    border: 2px solid #fff;
    opacity: 1;
}
.banner-page .swiper-pagination-bullet-active {
    background: #fff;
}
.banner-page-sub {
    float: right;
    margin-top: 4px;
}
.banner-prev, .banner-next{
    display: inline-block;
    width: 13px;
    height: 23px;
    background: url(../images/icon-left.png);
    background-size: 100% 100%;
    cursor: pointer;
}
.banner-next {
    margin-left: 30px;
    background-image: url(../images/icon-right.png);
}
.brand-box {
    background: #252525 url(../images/brand-bg.png) no-repeat center center;
    background-size: contain;
}
.main-con-tit {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    padding: 0 7.8%;
    text-transform: uppercase;
}
.main-con-tit span {
    font-size: 32px;
    color: #fff;
    line-height: 40px;
}
.main-con-tit i {
    font-size: 11px;
    color: #828282;
    margin-left: 15px;
}
.main-con-tit a {
    float: right;
    font-size: 16px;
    color: #fff;
    margin-top: 15px;
}
.main-con-tit.white span {
    color: #333;
} 
.main-con-tit.white a {
    color: #252525;
}
.brand-list-box-outer {
    width: 100%;
    position: absolute;
    top: 165px;
    bottom: 0;
    left: 0;
}
.brand-list-box {
    display: table;
    width: 100%;
    height: 100%;
}
.brand-swiper {
    display: none;
}
.brand-list-inner {
    display: table-cell;
    vertical-align: middle;
    padding: 0 7.8%;
    text-align: center;
}
.brand-list {
    display: inline-block;
    width: 100%;
    font-size: 0;
    margin-top: 140px;
    margin: 0 -7px;
    text-align: left;
}
.brand-list li {
    position: relative;
    float: left;
    width: 25%;
    box-sizing: border-box;
    padding: 0 7px 20px 7px;
    cursor: pointer;
}
.brand-list .brand-img-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 70%;
}
.brand-img-box-inner {
    position: absolute;
    width: 100%;
    height: 100%;
}
.brand-img-box img {
    width: 100%;
    height: 100%;
}
.brand-text {
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    transition: all .35s;
}
.brand-list li:hover .brand-text {
    background: rgba(177, 138, 71, 0.7);
}
.brand-list li:hover .brand-text-inner {
    color: #fff;
}
.brand-text-inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: transparent;
}
.brand-text-con {
    display: inline-block;
   /*// margin-top: 24px;*/
    font-size: 14px;
    color: transparent;
}
.brand-text h3 {
    line-height: 56px;
    font-family: Arial;
    transition: all .2s;
}
.brand-list li:hover h3 {
    font-size: 52px;
    color: #fff;
}
.brand-list li:hover p {
    font-size: 18px;
    color: #fff;
}
.brand-text p {
    line-height: 24px;
    font-family: Arial;
    text-align: right;
}
.project-box {
    background: #f3f3f3;
}
.project-swiper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}
.project-swiper .swiper-wrapper {
    height: 56.3%;
}
.project-swiper .swiper-slide {
    position: relative;
    height: 100%;
    margin: 40px 0;
    opacity: 0.33;
}
.project-swiper .swiper-slide-active {
    opacity: 1;
}
.project-swiper .swiper-slide h3 {
    display: none;
}
.project-swiper .swiper-slide-active h3 {
    display: block;
}
.project-tit {
    position: absolute;
    left: 7.8%;
    top: 50%;
    margin-top: -88px;
    text-transform: uppercase;
}
.project-img {
    width: 45.8%;
    height: 100%;
    margin-left: 32%;
}
.project-img img {
    width: 100%;
    height: 100%;
}
.project-tit p {
    width: 150px;
    height: 88px;
}
.project-tit h3 {
    line-height: 88px;
    font-size: 60px;
    color: #333;
}
.project-page-sub, .news-page-sub {
    position: absolute;
    right: 7.8%;
    top: 50%;
    width: 60px;
    margin-top: -37px;
    z-index: 1;
}
.project-prev, .project-next, .news-prev, .news-next {
    width: 15px;
    height: 18px;
    margin: 0 auto;
    background: url(../images/icon-up-b.png);
    background-size: 100% 100%;
    cursor: pointer;
}
.project-next {
    margin-top: 36px;
    background-image: url(../images/icon-down-b.png);
}
.news-prev {
    background-image: url(../images/icon-up-w.png);
}
.news-next {
    margin-top: 36px;
    background-image: url(../images/icon-down-w.png);
}
.project-page-sub:after, .news-page-sub:after {
    position: absolute;
    content: '';
    top: 36px;
    width: 100%;
    height: 1px;
    background: #939393;
}
.news-box {
    background: #252525;
}
.news-swiper {
    position: absolute;
    left: 22%;
    right: 0;
    top: 50%;
    height: 600px;
    margin-top: -300px;
    text-transform: uppercase;
    overflow: hidden;
}
.news-swiper .news-content {
    cursor: pointer;
    margin: 20px 0;
}
.news-page {
    position: absolute;
    left: 7.8%;
    top: 50%;
    transform: rotate(90deg);
}
.news-page span {
    display: inline-block;
    color: #fff;
    width: 26px;
    font-size: 16px;
    vertical-align: middle;
    text-align: center;
    font-family: Arial;
    letter-spacing: 2px;
}
.news-page .line {
    height: 2px;
    width: 5px;
    margin: 0 10px;
    overflow: hidden;
    background: #fff;
}
.news-left {
    display: inline-block;
    width: 32.5%;
    vertical-align: middle;
}
.news-img {
    position: relative;
    left: 0;
    display: inline-block;
    width: 160px;
    height: 160px;
    border-radius: 100%;
    border: 1px solid #6c6868;
    vertical-align: middle;
    box-sizing: border-box;
    background-size: cover;
    background-position: center center;
}
.news-img img {
    display: none;
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.news-time {
    display: inline-block;
    margin-left: 16%;
    vertical-align: middle;
    font-size: 11px;
    color: #fff;
    line-height: 160px;
}
.news-text {
    display: inline-block;
    vertical-align: middle;
}
.news-text h3 {
    font-size: 20px;
    color: #fff;
}
.news-text p {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}
.news-line {
    position: absolute;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 100%;
    top: 50%;
    left: 50%;
    margin: -3px 0 0 -3px;
}
.news-img:after {
    position: absolute;
    content: '';
    width: 65%;
    height: 1px;
    background: #fff;
    left: 50%;
    top: 50%;
    transition: all 0.9s;
}
.news-swiper .news-content:hover .news-img {
    position: absolute;
    left: 160px;
    border: 0;
}
.news-swiper .news-content:hover .news-img img {
    display: block;
}
.news-swiper .news-content:hover .news-img:after {
    width: 0;
}
.news-swiper .news-content:hover .news-line {
    display: none;
}
.news-swiper .news-content:hover h3, .news-swiper .news-content:hover .news-time{    
    color: #b7965c;
    margin-left: 0;
}
.news-more {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 11%;
    color: #4b4b4b;
    text-transform: uppercase;
    font-size: 11px;
    text-align: center;
    z-index: 1;
}
/*E-首页*/
@media (max-width: 1450px){
    .banner-text-con h3 {
        font-size: 64px;
        line-height: 74px;
    }
    .banner-text-con p {
        font-size: 24px;
    }
    .project-tit h3 {
        font-size: 48px;
    }
    .g-header-sub a {
        font-size: 16px;
    }
    .page-nav-list li {
        font-size: 16px;
    }
    .page-crumb a, .page-crumb span {
        font-size: 16px;
    }
    .footer-link a {
        font-size: 16px;
    }
}
@media (max-width: 1200px){
    .project-tit h3 {
        font-size: 44px;
    }
    .news-left {
        width: 28%;
    }
    .news-swiper {
        width: 68%;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
    }
    .news-img {
        width: 70px;
        height: 70px;
        margin: 45px 0;
    }
    .news-swiper .news-content:hover .news-img {
        left: 100px;
    }
}
@media (max-width: 1050px){
    .project-tit h3 {
        font-size: 38px;
        margin-top: 7px;
    }
    .banner-text-con h3 {
        font-size: 54px;
        line-height: 64px;
    }
    .banner-text-con p {
        font-size: 22px;
        line-height: 54px;
    }
    .brand-list li:hover h3 {
        font-size: 24px;
        line-height: 36px;
    }
    .banner-text-con h3 {
        font-size: 50px;
        line-height: 60px;
    }
    .banner-text-con p {
        font-size: 20px;
        line-height: 40px;
    }
    .brand-list {
        text-align: center;
    }
    .g-header-sub {
        height: 60px;
        line-height: 60px;
    }
    .g-header-sub img {
        max-width: 25%;
        max-height: 43px;
    }
    .header-search {
        float: right;
        line-height: 60px;
        margin-right: calc( 7.8% + 40px);
    }
    .g-header-sub.open-sub {
        background: rgba(0,0,0,0.9);
    }
    .home .g-header-sub {
        background: rgba(30,30,30,.8);
    }
    .header-sub-r {
        display: none;
    }
    .header-sub-r a {
        display: none;
        margin: 0;
        width: auto;
        text-align: center;
        line-height: 28px;
        padding-right: 8%;
    }
    .header-sub-r {
        float: none;
    }
    .g-header-sub-more {
        display: block;
    }
    
    .footer-bottom {
        padding-top: 23px;
    }
    .footer-code img {
        width: 60px;
        margin: 2px 5px;
    }
    .gooter-logo {
        float: none;
        display: block;
        margin: 0 auto 10px;
        max-width: 33%;
    }
    .footer-code {
        margin-top: 12px;
    }
    .footer-text {
        margin-top: 105px;
        float: none;
        text-align: center;
    }
    .footer-text p {
        font-size: 12px;
        margin-top: 5px;
        line-height: 20px;
    }
    .footer-text h3 {
        font-size: 16px;
        margin-top: 5px;
        line-height: 20px;
    }
    .copyright {
        margin-top: 15px;
    }
    .page-crumb span {
        margin : 0 8px;
    }
    .footer-link {
        width: 70%;
    }
    .footer-link a {
        font-size: 16px;
    }
    .home .g-header-sub {
        height: 60px;
    }
}
@media (max-width: 1000px){

    .news-swiper {
        width: 85%;
        top: 150px;
        bottom: 20px;
        height: auto;
        margin-top: 0;
    }
    .news-img {
        display: none;
    }
    .news-time {
        line-height: 30px;
        margin-left: 0;
    }
    .news-left {
        width: 100%;
    }
    .news-text {
        display: block;
    }
    .news-more {
        display: none;
    }
    .news-text h3 {
        font-size: 16px;
    }
    .news-page {
        display: none;
        left: 50%;
        bottom: 30px;
        top: auto;
        margin-left: -35px;
        transform: rotate(0);
    }
    .project-page-sub, .news-page-sub {
        right: 50%;
        top: auto;
        bottom: 10px;
        margin: 0 -36px 0 0;
        transform: rotate(-90deg);
    }
    .project-swiper {
        top: 165px;
        bottom: 60px;
    }
    .project-page-sub:after, .news-page-sub:after {
        display: none;
    }
    .project-swiper .swiper-wrapper {
        height: 100%;
    }
    .project-tit {
        top: 0;
        margin-top: 0;
    }
    .project-tit p {
        width: auto;
        height: auto;
    }
    .project-tit h3 {
        font-size: 30px;
        line-height: 40px;
    }
    .project-swiper .swiper-slide {
        margin: 0;
    }
    .project-img {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 20px;
        top: 0;
        width: 90%;
        height: auto;
        margin: 80px auto 0;
    }

    .brand-list li {
        width: 50%;
        float: none;
        display: inline-block;
    }
}
@media (max-width: 1000px) and (min-height: 900px) {
    .news-left {
        width: 28%;
    }
    .news-img {
       display: inline-block;
   }
   .news-time {
       line-height: 160px;
   }
   .news-text {
       display: inline-block;
   }
}
@media (max-width: 540px){
    .banner-page, .banner-page-sub, .brand-list-box {
        display: none;
    }
    .brand-swiper {
        position: relative;
        display: block;
        margin: 0 7.8%;
        height: 100%;
        overflow: hidden;
    }
    .brand-m-item {
        position: relative;
        height: 40%;
        margin-bottom: 5%;
        background-position: center center;
        background-size: cover;
    }
    .brand-logo-img {
        position: absolute;
        bottom: 0;
        height: 20%;
        width: 100%;
        text-align: center;
        vertical-align: middle;
        background: rgba(0, 0, 0, 0.6);
        line-height: 45px;
    }
    .brand-logo-img a {
        display: block;
        width: 100%;
        height: 100%;
    }
    .brand-logo-img img {
        max-height: 75%;
        vertical-align: middle;
    }
    .brand-page-sub {
        position: absolute;
        width: 60px;
        right: 50%;
        top: auto;
        bottom: 10px;
        margin: 0 -36px 0 0;
        transform: rotate(-90deg);
        z-index: 1;
    }
    .brand-prev, .brand-next {
        width: 15px;
        height: 18px;
        margin: 0 auto;
        background: url(../images/icon.png);
        background-position: -0 0;
        cursor: pointer;
    }
    .brand-next {
        margin-top: 36px;
        background-position: -16px 0;
    }
}
