﻿.widthGray {
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #f5f7fa;
}
.widthWhite {
    width: 1400px;
    height: auto;
    overflow: hidden;
    background-color: #ebebeb;
    padding: 0;
    margin: 50px auto;
    border-radius: 10px;
}
.widthInfoShow {
    width: 1350px;
    height: auto;
    overflow: hidden;
    background-color: #fff;
    padding: 0;
    margin: 50px auto;
    border-radius: 10px;
    padding:25px 25px;
}
.pageLeft {
    width: 15%;
    float: left;
}
.pageLeftTitle {
    width: 90%;
    height: auto;
    overflow: hidden;
    padding: 20px 0 20px 10%;
    background: linear-gradient(45deg,#225aa7,#4183de);
    margin-bottom:20px;
}

    .pageLeftTitle h1 {
        line-height: 30px;
        font-size: 26px;
        font-weight: bolder;
        background: linear-gradient(to right, #fff, #fdf6e4, #a89972);
        -webkit-background-clip: text; /* 针对webkit浏览器 */
        color: transparent; /* 文字颜色设为透明，以便显示背景渐变 */
        animation: colorChange 1s infinite linear; /* 应用动画 */
    }
    .pageLeftTitle h1 span{
        text-transform:uppercase;
        font-size:14px;
    }

@keyframes colorChange {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(180deg);
    }
}
.pageNav{
    width:100%;
    height:auto;overflow:hidden;
}
    .pageNav li {
        width: 100%;
        height: 60px;
        line-height: 60px;
        overflow: hidden;
        margin: 10px auto 10px auto;
        text-align: center;
        transition: all 0.5s;
        font-size: 16px;
        border-left: 1px solid #ebebeb;
    }
        .pageNav li:hover {
            background-color: #fff;
            color: #225aa7;
            border-left: 1px solid #225aa7;
        }
    .pageNav .active {
        background-color: #fff;
        color: #225aa7;
        border-left: 1px solid #225aa7;
    }


.pageRight {
    width: 79%;
    float: left;
    background-color:#fff;
    padding:50px 3%;
}

/*位置*/
.pagePosition {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 25px;
    border-bottom: 1px solid #eee;
    color: #666;
}

    .pagePosition a {
        color: #666;
    }

.pageShowTitle{
    width:100%;
    height:auto;overflow:hidden;
    line-height:50px;
    font-size:30px;
    font-weight:bold;
    margin:30px auto 10px auto;
    text-align:center;
}
.pageTag {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align:center;
    line-height:30px;
    font-size:14px;
    color:#999;
    border-bottom:1px solid #eee;
    padding-bottom:10px;
}
.pageShowContent {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 35px;
    font-size: 16px;
    margin: 40px auto;
    min-height: 400px;
}
.pageShowContent img{
    max-width:100%;
}

@media(max-width:720px){
    .widthWhite {
        width: 90%;
    }
    .widthInfoShow {
        width: 80%;
        padding: 25px 5%;
    }
    .pageLeft {
        width: 100%;
    }

    .pageLeftTitle {display:none;}
        .pageNav li {
            width: 48%;float:left;
            height: 40px;
            line-height: 40px;
            overflow: hidden;
            margin: 10px auto 10px auto;
            text-align: center;
            transition: all 0.5s;
            font-size: 16px;
            border-left: 1px solid #ebebeb;
        }

    .pageRight {
        width: 90%;
        float: left;
        background-color: #fff;
        padding: 30px 5%;
    }

}