.centered {
    width: 1200px;
    margin: 0 auto;
}

.centered_index {
    width: 1200px;
    margin: 0 auto;
}

.min_width {
    min-width: 1200px;
}


.index_centered {
    width: 1200px;
    margin: 0 auto;
}

.centered_page {
    width: 1200px;
    margin: 20px auto;
}

.page_centered {
    width: 1200px;
    margin: 0 auto;
}

.centered_page_right {
    width: 950px;
    overflow: hidden;
}

/* 重置样式reset */
body, div, p, ul, ol, dl, dt, dd, li, form, input, table, th, td, img, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

body {
    background: #fff;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-family: 'Microsoft Yahei','微软雅黑','Simsun','宋体','Arial',sans-serif;
}

em, b, i {
    font-style: normal;
}

li {
    list-style: none;
}

img {
    border: none;
}

a {
    text-decoration: none;
    color: #000;
}

    a:hover {
        _text-decoration: underline;
        color: #fea306;
    }

table {
    border-spacing: 0;
    border-collapse: collapse;
}
/* 清除浮动 */
.clearboth {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

    .clearfix:before, .clearfix:after {
        display: table;
        line-height: 0;
        content: "";
    }

    .clearfix:after {
        clear: both;
    }
/* 定位 */
.fl {
    float: left;
}

.fr {
    float: right;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
}

.vh {
    visibility: hidden;
}

.dn {
    display: none;
}

.oh {
    overflow: hidden;
}

/* 变量 */
/* 过渡 */
/* 旋转 */
/* 首页 */
.link {
    position: relative;
}


.header {
    background: #fff;
    transition: 0.5s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.16);
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.16);
    -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.16);
}

.header {
    position: relative;
    z-index: 99 !important;
}

    .header .top {
        height: 30px;
        line-height: 30px;
        background: #eeeeee;
        box-shadow: 0px 1px 7px 0px rgba(89,84,84,0.26);
        position: relative;
        z-index: 1;
    }

        .header .top p {
            color: #666666;
        }

            .header .top p span {
                color: #fea306;
                margin-left: 10px;
            }

        .header .top ul li {
            float: left;
            color: #666666;
        }

            .header .top ul li a {
                padding: 0 20px;
                color: #666666;
            }

                .header .top ul li a:hover {
                    color: #fea306;
                }

    .header .bottom {
        height: 100px;
        position: relative;
    }

        .header .bottom .table {
            display: table;
            vertical-align: middle;
            height: 100px;
            width: 300px;
        }

            .header .bottom .table .table-cell {
                display: table-cell;
                vertical-align: middle;
            }

        .header .bottom .logo {
            margin-top: 10px;
            max-width: 450px;
            max-height: 80px;
            width: auto;
            height: auto;
            vertical-align: bottom;
        }

    .header .mynav {
        width: 840px;
        height: 80px;
    }

        .header .mynav > ul {
            text-align: right;
            position: relative;
        }

            .header .mynav > ul > li {
                padding: 37px 0;
                transition: all 0.5s;
                -moz-transition: all 0.5s;
                -webkit-transition: all 0.5s;
                -o-transition: all 0.5s;
                float: left;
                position: relative;
                text-align: center;
                width: 0;
            }

                .header .mynav > ul > li > a {
                    font-size: 16px;
                    color: #474646;
                    display: inline-block;
                    line-height: 23px;
                    position: relative;
                    z-index: 2;
                    box-sizing: border-box;
                    max-width: 100%;
                    padding: 0px 5px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }

                .header .mynav > ul > li::before {
                    content: '';
                    display: block;
                    width: 100%;
                    height: 0px;
                    background: #fea306;
                    -webkit-background-size: 100% 80px;
                    background-size: 100% 80px;
                    position: absolute;
                    bottom: 0;
                    transition: 0.4s;
                    -ms-transition: 0.4s;
                    -moz-transition: 0.4s;
                    -webkit-transition: 0.4s;
                    -o-transition: 0.4s;
                    z-index: 0;
                }

                .header .mynav > ul > li.on > a {
                    transition: 0.5s;
                    -ms-transition: 0.5s;
                    -moz-transition: 0.5s;
                    -webkit-transition: 0.5s;
                    -o-transition: 0.5s;
                    color: #fff;
                    font-size: 16px;
                }

                .header .mynav > ul > li.on::before {
                    height: 80px;
                }

                .header .mynav > ul > li > ul {
                    display: none;
                    position: absolute;
                    top: 80px;
                    left: 0%;
                    width: 100%;
                    text-align: left;
                    background: rgba(51,51,51,0.9);
                    z-index: 2;
                    box-sizing: border-box;
                    padding: 20px 0;
                }

                    .header .mynav > ul > li > ul > li {
                        transition: all 0.5s;
                        -ms-transition: all 0.5s;
                        -moz-transition: all 0.5s;
                        -webkit-transition: all 0.5s;
                        -o-transition: all 0.5s;
                        overflow: visible;
                        white-space: nowrap;
                        text-align: center;
                        line-height: 30px;
                        padding: 0px 10px;
                    }

                        .header .mynav > ul > li > ul > li > a {
                            font-size: 14px;
                            color: #fff;
                            transition: all 0.5s;
                            -ms-transition: all 0.5s;
                            -moz-transition: all 0.5s;
                            -webkit-transition: all 0.5s;
                            -o-transition: all 0.5s;
                        }

                        .header .mynav > ul > li > ul > li:hover {
                            background: #fea306;
                        }

                            .header .mynav > ul > li > ul > li:hover > a {
                                color: #fff;
                            }

table {
    border-spacing: 0;
    border-collapse: collapse;
}
.footer_bottom {
    margin-top: 20px;
    border-top: 1px solid #363e45;
    padding: 20px 0;
    text-align: center;
}

    .footer_bottom .rows {
        line-height: 30px;
    }

    .footer_bottom * {
        color: #818487;
        font-size: 14px;
    }

h3.tittle1 {
    font-size: 3.5em;
    text-align: center;
    color: #c52d2f;
}
.services-grid-w3layouts-agileits h4 {
    font-size: 2em;
    text-transform: capitalize;
    color: #00959F;
}

.services-grid-w3layouts-agileits p {
    font-size: 1em;
    line-height: 1.8em;
    color: #999;
}

.services-grids, .team-grids {
    margin-top: 20px;
}



.zhuyingywContent {
    width: 100%;
}

.ywContentItem {
    margin-top: 12px;
    font-family: 'Microsoft Yahei','微软雅黑','Simsun','宋体','Arial',sans-serif;
    color: #818487;
    font-size: 14px;
    font-style: normal;
    text-align: center;
}


    .ywContentTitle {
        font-size: 18px;
        color: #D7D7D7;
        text-align: center;
    }

.ywContentItem span {
    font-size: 18px;
    letter-spacing: 0.2px;
}
