﻿/*common样式开始 */
* {
    padding: 0px;
    margin: 0px;
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: none;
}
/*****！！页面通用css样式定义开始******/
/* body的css定义:这里定义页面上下左右边距，页面背景颜色，滚动条颜色样式 */
body {
    font-family: microsoft yahei,Arial, Tahoma,"宋体";
    font-size: 12px;
    color: #5a5a5a;
}

a {
    text-decoration: none;
}
    /* 链接无下划线,有为underline */
    a:link {
        color: #333333;
    }
    /* 未访问的链接 */
    a:visited {
        color: #333333;
    }
    /* 已访问的链接 */
    a:hover {
        color: #eb1315;
        text-decoration: none;
    }
    /* 鼠标在链接上 */
    a:active {
        color: #333333;
    }
/* 点击激活链接 */
h1, h2, h3, h4, h5, h6 {
    font-size: 12px;
}

fieldset, img {
    border: 0;
    vertical-align: middle
}

.clear {
    clear: both;
    line-height: 0;
    height: 0;
    font-size: 0px;
}

    .clear:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }
/*清除浮动*/
.fl {
    float: left;
    display: inline;
}

.fr {
    float: right;
    display: inline
}
/*表格样式定义 */
checkbox {
    border: 0px;
}
/*选择框样式定义 */
.nj-part {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    font-family: microsoft yahei;
}

    .nj-part img {
        width: 100%;
        display: block;
    }
/*banner*/
.banner {
    position: relative;
}
/*part1*/
.part1 {
    position: relative;
}

    .part1 a {
        width: 24%;
        bottom: 130.5rem;
        left: 14%;
        position: absolute;
        display: block;
        -webkit-animation: hover 2s linear infinite;
        animation: hover 2s linear infinite;
    }

@-webkit-keyframes hover {
    0% {
        -webkit-transform: scale(0.9);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(0.9);
        opacity: 1;
    }
}

@keyframes hover {
    0% {
        -webkit-transform: scale(0.9);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(0.9);
        opacity: 1;
    }
}
