﻿/*顶部*/
.top {
    width: 100%;
    height: 80px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #e88843;
    padding: 30px 0 10px 0;
    z-index:9999;
}
.topLogo{
    width:50%;float:left;
}
.topLogo img{
    max-height:80px;
}
.topLink{
    width:30%;float:left;
    margin-top:20px;
}
.topLink li{
    float:right;
    margin-right:10px;
}
.topMenu{
    width:20%;float:left;
}


/*菜单*/
.mobile {
    width: 85%;
    margin: 0 auto;
    position: fixed;
    top: 35px;
    right: 10%;
    z-index: 9999;
}

.mobile-inner {
    width: 50%;
    margin-left: 50%;
    position: relative;
}

.mobile-inner-header {
    width: 150px;
    height: 55px;
    position: absolute;
    top: 0px;
    right: 0;
}

.mobile-inner-header-icon {
    color: #fff;
    height: 55px;
    font-size: 25px;
    text-align: center;
    float: left;
    width: 70px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

    .mobile-inner-header-icon:hover {
        background-color: rgba(0,0,0,0.2);
        cursor: pointer;
    }

    .mobile-inner-header-icon span {
        position: absolute;
        left: calc((100% - 25px) / 2);
        top: calc((100% - 1px) / 2);
        width: 30px;
        height: 1px;
        background-color: rgba(255,255,255,1);
    }

.mobile-inner-header h2 {
    width: 80px;
    float: left;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    color:#fff;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    background-color: rgba(232,136,67,0.8);
    width: 70%;
    position: absolute;
    top: 50px;
    left: 30%;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
}

    .mobile-inner-nav li {
        display: inline-block;
        line-height: 45px;
        text-decoration: none;
        width: 80%;
        margin-left: 10%;
        color: #FFFFFF;
        border-bottom: solid 1px rgba(255,255,255,0.3);
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        font-weight: 300;
    }

        .mobile-inner-nav li:hover {
            color: rgba(255,255,255,0.4);
            border-bottom: solid 1px rgba(255,255,255,0.2);
        }
.subList {
    width: 100%;
    height: auto;
    overflow: hidden;
}
    .subList dd {
        width: 80%;
        height: auto;
        overflow: hidden;
        line-height: 45px;
        padding: 0 10%;
        margin: 0 auto;
        border-bottom: solid 1px rgba(255,255,255,0.3);
        color:#fff;
    }
        .subList dd:hover {
            color: rgba(255,255,255,0.4);
        }

    .topPadding {
        width: 100%;
        height: 120px;
    }
.topShape {
    width: 100%;
    height: 80px;
    background-color: #e88843;
    clip-path: polygon(0% 0%, 100% 0%, 0% 50%);
    position: fixed;
    top: 120px;
    left: 0;
    z-index: 9999;
}
#pcBanner{display:block;}
#wapBanner{display:none;}
#banner {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
#banner img{
    width:100%;
}
/*底部*/
.bottom {
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #e88843;
    padding: 30px 0;
}
.bottomLogo{
    width:25%;float:left;
}
.bottomLogo img{
    max-width:100%;
    max-height:80px;
}
.bottomMenu{
    width:55%;float:left;
    height:80px;overflow:hidden;
}
.bottomMenu a{
    float:left;
    display:inline-block;
    width:33%;
    text-align:center;
    line-height:80px;
    font-size:24px;
    font-weight:bold;
    color:#fff;
    transition:all 0.5s;
}
    .bottomMenu a:hover {
        color: #ffdac0;
    }
.bottomOtherLink{
    width:20%;float:left;
    margin-top:10px;
}
.bottomOtherLink li{
    float:right;
    margin-right:10px;
}
    .bottomOtherLink li img{
        width:35px;
        height:35px;
    }

@media(max-width:720px){
    /*顶部*/
    .top {
        height: 40px;
        padding: 30px 0 0 0;
    }

    .topLogo {
        width: 70%;
    }

        .topLogo img {
            max-width:90%;
        }

    .topLink {display:none;}
    /*菜单*/
    .mobile {
        width: 85%;
        margin: 0 auto;
        position: fixed;
        top: 15px;
        right: 0;
        z-index: 9999;
    }

    .mobile-inner-nav {
        background-color: rgba(0,0,0,0.8);
        width: 100%;
        position: fixed;
        top: 70px;
        left: 0;
        padding-top: 30px;
        padding-bottom: 80px;
        display: none;
    }

        .mobile-inner-nav li {
            line-height: 35px;
        }

        .subList dd {
            line-height: 35px;
        }
    .topPadding {
        width: 100%;
        height: 70px;
    }

    .topShape {
        width: 100%;
        height:30px;
        background-color: #e88843;
        clip-path: polygon(0% 0%, 100% 0%, 0% 50%);
        position: fixed;
        top: 70px;
        left: 0;
        z-index: 9999;
    }
    .bottom {display:none;}
    .bottomPadding {display:none;}

    #pcBanner {
        display: none;
    }

    #wapBanner {
        display: block;
    }
}