* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none!important;
}
ul,ol,li {
    list-style: none;
}

/* 定宽布局 */
.w {
    width: 1200px;
    /*width: 1450px;*/
    margin: 0 auto;
}
/* body 样式 */
.my-body {
    /* background: url() no-repeat center; */
    background-color: #fff;
    background-size: cover;
}
.banner {
    width: 100%;
    height: 600px;
    margin-bottom: 20px;
    
}
.banner img {
    width: 100%;
    height: 100%;
}
.ct-banner {
    width: 100%;
    height: 300px;
    background-color: pink;
}
.ct-banner img {
    width: 100%;
    height: 100%;
}

/*标题样式*/
.public-title {
    width: 100%;
    /*text-align: center;*/
    text-align: center;
    margin: 25px 0;
}

.public-title .title-top {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.blink {
    width: 120px;
    height: 3px;
    background-color: #00bed2;
}

.public-title .title-top h2 {
    font-size: 24px;
    color: #333;
    margin: 0 15px;
}
.public-title h4 {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}





/*其他样式 -------------------------------------------------------------------------------------------------------*/
/*鼠标移入 图片放大*/
.scale-img{overflow: hidden;}
.scale-img img{
    width: 100%;
    height: 100%;
    -webkit-object-fit: cover;
    object-fit: cover;    
    transition: .5s all linear;
    -ms-transition: .5s all linear; /* IE 9 */
    -moz-transition: .5s all linear; /* Firefox */
    -webkit-transition: .5s all linear; /* Safari 和 Chrome */
    -o-transition: .5s all linear; /* Opera */
}
.scale-img:hover img{
    transform: scale3d(1.1,1.1,1.1);
    -ms-transform: scale3d(1.1,1.1,1.1);
    -moz-transform: scale3d(1.1,1.1,1.1);
    -webkit-transform: scale3d(1.1,1.1,1.1);
    -o-transform: scale3d(1.1,1.1,1.1);
}
.m-a {
    width: 100px;
    display: inline-block;
    height: 40px;
    /*background-color: #e84430;*/
    border: 2px solid #e84430;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    color: #555;
    transition: all .3s;
    border-radius: 20px;
    font-size: 14px;
    padding: 10px;
    box-sizing: border-box;
    background-color: #e84430;
    color: #fff;
}
/*.m-a:hover {*/
/*    background-color: #e84430;*/
/*    color: #fff;*/
/*}*/
.m-a:hover {
    color: #fff;
}


/*导航区块==================================================================================*/
.n-logo {
    width: 200px;
    height: 80px;
    
}
.n-logo img {
    width: 100%;
    height: 100%;
}
.n-list {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.n-list a {
    color: #333;
    font-size: 14px;
    margin: 0 5px;
    font-weight: 500;
}

.m-header {
    width: 100%;
    height: 100px;
}
.m-header .w {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*底部区块====================================================================================*/





/*资讯区块=====================================================================================*/


/*关于我们区块===============================================================================*/

.us-con {
   width: 100%;
    height: 411px;
    background-color: pink;
    margin: 60px 0;
    text-align: center;
    /* line-height: 56px; */
    padding-top: 4%;

}
.us-con  h2{
    font-size: 24px;
    color: #dadada;
    text-transform: uppercase;
}

.us-con  h4 {
     font-size: 24px;
    color: #fff;
        margin: 30px 0;
}

.us-con p {
    font-size: 14px;
    color: #fff;
    line-height: 31px;
    text-indent: 30px;
}













































































































































