body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family:Microsoft YaHei,Arial,Sans-serif;
}

form,
input,
ul,
dl,
dd,
p,
h1,
h2,
h3,
h4,
h5,
h6,
textarea,
pre {
    margin: 0;
}

ul,
input {
    padding: 0;
}

ol,
ul {
    list-style: none;
    list-style-position: outside;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea {
    font-size: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    outline: none;
    color: #6b6b6b;
}

a {
    text-decoration: none;
    color: #000;
}

img {
    border: none;
}

a img {
    border: none;
}

a:hover {
    text-decoration: none;
}

a,
button {
    cursor: pointer;
}

i {
    font-style: normal;
}

b {
    font-weight: bold;
}

textarea {
    overflow: auto;
    resize: none;
}

input,
button,
select,
textarea {
    outline: none
}

textarea {
    resize: none;
}

.navbar-inverse .navbar-link {
    margin-left: 25px;
    color: black;
    font-size: 16px;
}

.navbar.navbar-inverse.navbar-fixed-top {
    border-bottom: none;
    opacity: 0.8;
}

.footnav {
    color: #fff;
    padding: 0 0 20px 0;
}

.navbar-nav {
    float: right;
    padding-right: 60px;
    margin: 0;
}

div.container-fluid {
    padding: 0;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    padding: 0;
}

div.row {
    margin: 0;
}

.footdiv {
    vertical-align: middle;
    margin-right: 20px;
    float: left;
}

.phone {
    color: #ea5504;
    font-size: 20px;
}

.footdiv2 {
    padding-right: 45px;
}

.rightp {
    margin-top: 20px;
}

.footnav p {
    margin-bottom: 5px;
}

.navbar-inverse .navbar-link:hover {
    color: #fff;
}

.navbar {
    margin-bottom: 0
}

.navbar-brand {
    padding: 0 50px 0 30px;
    margin-right: 50%;
}

.cty {
    background: #141414;
}

.container-fuild-ds {
    width: 1200px;
    margin: 0 auto;
}

.cty1 {
    padding-left: 50px;
}

.ytee {
    margin-top: 5px;
    color: #9a9a9a;
}

.ytee1 {
    font-size: 22px;
}

.ytee2 {
    width: 100%;
    float: left;
}

.ytee2 span {
    width: 50px;
    border-bottom: 1px solid #fff;
    float: left;
}

.footdiv-st {
    margin-top: 10px;
}

.tuouy {
    margin-bottom: 10px!important;
}

.tuouy1 {
    color: #9a9a9a;
}

.container-fuild-sg {
    background: #fff;
}

.cty{
    border-radius: 0;
}
.foottop{
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    margin-bottom: 20px;
}
.zxbtn{
    display:inline-block;
    border-radius: 20px;
    background: #343434;
    color: #646464;
    padding: 5px 30px;
    margin-left: 50px;
    cursor: pointer;
}
.empty{
    display: inline-block;
    width: 100px;
}
.zzzz{
    position: fixed;
    left:0;
    top:0;
    background: rgba(0,0,0,0.6);
    z-index:999;
    width:100%;
    height:100%;
    display: none;
}
.zzzz1{
    width:300px;
    height:160px;
    background: #fff;
    position: relative;
    left:50%;
    top:50%;
    margin-top:-80px;
    margin-left:-150px;
    padding: 20px;
    animation: righteaseinAnimate 1s ease 1;
    /*调用已定义好的动画righteaseinAnimate，全程运行时间1S，进入的速度曲线为ease，只播放一次*/
    -webkit-animation: righteaseinAnimate 1s ease 1;
    -moz-animation: righteaseinAnimate 1s ease 1;
    -ms-animation: righteaseinAnimate 1s ease 1;
    -o-animation: righteaseinAnimate 1s ease 1;
    /*规定动画的最后状态为结束状态*/
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
}
@keyframes righteaseinAnimate {
    0% {
        transform: translateX(2000px);
        opacity: 0;
    }
    /*在0%时设置文字在想X轴2000px位移处（右边），透明度为0，也就是看不见文字*/
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
    /*在100%时设置文字在想X轴0px位移处，也就是原始布局的位置，透明度为1，也就是文字可以看见了*/
}

@-webkit-keyframes righteaseinAnimate {
    0% {
        -webkit-transform: translateX(2000px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0px);
        opacity: 1;
    }
}

@-o-keyframes righteaseinAnimate {
    0% {
        -o-transform: translateX(2000px);
        opacity: 0;
    }
    100% {
        -o-transform: translateX(0px);
        opacity: 1;
    }
}

@-moz-keyframes righteaseinAnimate {
    0% {
        -moz-transform: translateX(2000px);
        opacity: 0;
    }
    100% {
        -moz-transform: translateX(0px);
        opacity: 1;
    }
}
.side {
    position: fixed;
    width: 40px;
    height: 275px;
    right: 20px;
    top: 50%;
    z-index: 100;
}

.side ul li {
    width: 40px;
    height: 40px;
    float: left;
    position: relative;
    margin-bottom: 10px;
}

.side ul li .sidebox {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    transition: all 0.3s;
    background: #f32836;
    color: #fff;
    font: 14px/40px "微软雅黑";
    overflow: hidden;
    border-radius: 10px;
}

.side ul li .sidetop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    background: url("../img/side_icon06.png") no-repeat #e5e5e5 center center;
    border-radius: 10px;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    /* Firefox 4 */
    -webkit-transition: all 0.3s;
    /* Safari 和 Chrome */
    -o-transition: all 0.3s;
    /* Opera */
}

.side ul li .sidetop:hover {
    background: url("../img/side_icon05.png") no-repeat #f32836 center center;
}

.side ul li img {
    float: left;
}

.side ul li a.py {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    background: #f32836;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.py-a {
    position: absolute;
    left: -111px;
    top: -69px;
    display: none;
}

.side ul li a.py:hover .py-a {
    display: block;
}