* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "微软雅黑";
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

.clear {
    overflow: hidden;
    clear: both;
}



/* 手机导航 */

.mobile-inner-header {
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 60px;
    display: none;
    line-height: 60px;
    text-align: center;
    color: #333;
    font-weight: bold;
    font-size: 22px;
}

.mobile-inner-header-icon {
    color: #333;
    height: 60px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 60px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    outline: none;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(51, 51, 51, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgba(51, 51, 51, 1);
}

.mobile-inner-header img {
    height: 75%;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0px;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
    z-index: 999;
}

.mobile-inner-nav a {
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    width: 80%;
    margin-left: 10%;
    color: #333;
    border-bottom: solid 1px rgba(51, 51, 51, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav a:hover {
    color: rgba(51, 51, 51, 0.4);
    border-bottom: solid 1px rgba(51, 51, 51, 0.2);
}


/* 导航 */

.nav {
    width: 100%;
    overflow: hidden;
    left: 0;
    top: 50px;
    z-index: 9999;
    position: fixed;
}

.nav_main {
    max-width: 1650px;
    overflow: hidden;
    margin: auto;
}

.nav ul {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.nav ul li {
    float: left;
    padding: 0 2.4%;
    text-align: center;
    font-size: 18px;
    height: 100px;
    line-height: 100px;
    position: relative;
}

.nav ul li a {
    color: #fff;
    display: inline-block;
    position: relative;
}


/* banner */

.banner1 {
    width: 100%;
    z-index: 1;
    position: relative;
}

.banner_01 img {
    width: 100%;
}

.logo {
    width:100%;
    overflow: hidden;
    margin: auto;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 9999;
	font-size:0;
}

.logo_main{
	max-width:1700px;
	overflow:hidden;
	margin:auto;
}
.logo_main a{
	display:inline-block;
	width:calc(100% / 3);
	overflow:hidden;
	text-align:center;
}
.logo_main a img{
	width:100%;}
.logo_main a:nth-child(2) img{
	width:70%;
}
.logo_main a:nth-child(3) img{
	width:85%;
}
.copy {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    color: #fff;
    text-align: center;
    background: none;
    z-index: 9999;
    font-size: 12px;
}

.copy a {
    color: #fff;
    margin-left: 10px;
}

.copy a::before {
    content: "|";
    color: #fff;
    height: 10px;
    width: 1px;
    padding-right: 10px;
}


/* 内页头部 */

.header {
    width: 100%;
    height: 145px;
    line-height: 145px;
    position: fixed;
    z-index: 9999;
    background: #fff;
    left: 0;
    top: 0;
}

.header_main {
    max-width: 1700px;
    height: 145px;
    line-height: 145px;
    margin: auto;
    position: relative;
}

.header_logo {
    width: 19.83%;
    height: 145px;
    line-height: 145px;
    float: left;
}

.header_logo img {
    width: 100%;
}

.header_right {
    float: right;
    width: 66.47%;
    height: 145px;
    line-height: 145px;
}

.header_nav {
    width: 88.5%;
    height: 145px;
    line-height: 145px;
    float: left;
    font-size: 0;
}

.header_nav a {
    display: inline-block;
    width: calc(100% / 8);
    height: 145px;
    line-height: 145px;
    font-size: 19px;
    color: #000000;
    text-align: center;
}

.header_icon {
    float: left;
    width: 11.5%;
}

.header_tel {
    float: left;
    margin-right: 25px;
}

.header_wechat {
    float: left;
    margin-right: 25px;
}

.header_search {
    float: left;
}

.header_search_form {
    display: none;
    width: 20%;
    position: absolute;
    top: 145px;
    right: 1%;
    z-index: 9999;
}

.header_search_form input[type=text] {
    width: 80%;
    height: 50px;
    line-height: 50px;
    padding-left: 10px;
    float: left;
    outline: none;
    border: none;
    font-size: 16px;
}

.header_search_form input[type=submit] {
    width: 20%;
    height: 50px;
    line-height: 50px;
    padding-left: 10px;
    float: left;
    outline: none;
    border: none;
    background: #0065b6;
    color: #fff;
    font-size: 16px;
}


/* 内页页脚 */

.foot {
    width: 100%;
    overflow: hidden;
    background: #606060;
    padding-top: 40px;
}

.foot_nav {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
}

.foot_nav a {
    display: inline-block;
    font-size: 19px;
    color: #ffffff;
    width: 6%;
    margin-right: 40px;
    text-align: center;
}

.foot_main {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
}

.foot_logo {
    width: 56.94%;
    float: left;
    overflow: hidden;
    margin-top: 80px;
}

.foot_logo img {
    width: 100%;
}

.foot_contact {
    float: left;
    color: #fff;
    margin-left: 3%;
    margin-top: 30px;
}

.foot_contact_word {
    font-size: 18px;
}

.foot_contact_num {
    font-size: 36px;
    font-weight: 700;
    margin-top: 20px;
}

.foot_ma {
    float: right;
    width: 22.35%;
    overflow: hidden;
    color: #ffffff;
}

.foot_ma_01 {
    float: left;
    font-size: 16px;
    margin-right: 50px;
    text-align: center;
    line-height: 2.5;
}

.foot_ma_01:last-child {
    margin-right: 0;
}

.foot_ma_01 img {
    width: 100%;
}

.incopy {
    width: 100%;
    padding: 20px 0;
    color: #fff;
    text-align: center;
    background: none;
    z-index: 9999;
    font-size: 16px;
    background: #000000;
}

.incopy a {
    color: #fff;
    margin-left: 10px;
}

.incopy a::before {
    content: "|";
    color: #fff;
    height: 10px;
    width: 1px;
    padding-right: 10px;
}

.banner {
    width: 100%;
    z-index: 1;
    position: relative;
    margin-top: 110px;
}

.banner_01 img {
    width: 100%;
}


/* 品牌服务 */

.service_title {
    width: 100%;
    overflow: hidden;
    background: #f6f6f6;
    text-align: center;
    font-size: 28px;
    color: #000000;
    font-weight: 700;
    padding: 70px 0;
}

.service_content {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    text-align: center;
    font-size: 20px;
    color: #000000;
    line-height: 2.2;
    margin-top: 55px;
}

.service {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    margin-top: 55px;
}

.service_main_01 {
    width: 100%;
    overflow: hidden;
    background: #eeeeee;
    margin-bottom: 30px;
}

.service_main_01:nth-child(2n+1) .service_left {
    float: left;
    width: 51%;
    overflow: hidden;
}

.service_main_01:nth-child(2n+1) .service_left img {
    width: 100%;
}

.service_main_01:nth-child(2n+1) .service_right {
    width: 49%;
    float: right;
    padding: 60px 50px;
}

.service_main_title {
    font-size: 28px;
    color: #000;
    font-weight: 700;
    margin-left: 40px;
}

.service_main_content {
    margin-top: 30px;
    font-size: 24px;
    color: #000000;
    line-height: 2.2;
}

.service_main_01:nth-child(2n) .service_right {
    float: right;
    width: 51%;
    overflow: hidden;
}

.service_main_01:nth-child(2n) .service_right img {
    width: 100%;
}

.service_main_01:nth-child(2n) .service_left {
    width: 49%;
    float: left;
    padding: 60px 50px;
}


/* 产品中心 */

.product_title {
    width: 100%;
    /*overflow: hidden;*/
    background: #f6f6f6;
    text-align: center;
    font-size: 28px;
    color: #000000;
    font-weight: 700;
    padding: 70px 0;
}

.product_title ul{
	width:100%;
	margin-bottom:0;
}

.product_title ul li{
	display: inline-block;
    margin-right: 50px;
    /*padding-right: 50px;*/
    /*border-right: 1px solid #000;*/
	position:relative;
}

.product_title a {
    color: #000000;
    display: inline-block;
   /* margin-right: 50px;*/
    padding-right: 50px;
	border-right: 1px solid #000;
	
}

.product_title li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.product_title a:hover {
    color: #31407f;
}

.product_xiala{
	width:100%;
	position:absolute;
	left:0;
	top:40px;
	display:none;
}


.product_title .product_xiala a{
	font-size:20px;
	font-weight:700;
	border:none;
	margin-right: 0px;
    padding-right: 20px;
	
}

.product {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.product_main_01 {
    width: 32%;
    overflow: hidden;
    float: left;
    margin-right: 2%;
    margin-bottom: 30px;
}

.product_main_01:nth-child(3n) {
    margin-right: 0;
}

.product_pic {
    width: 100%;
    overflow: hidden;
}

.product_pic img {
    width: 100%;
}

.product_word {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    color: #000;
}


/* 产品详情 */

.proshow {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    margin-top: 20px;
    padding-bottom: 40px;
}

.proshow_main {
    width: 100%;
    overflow: hidden;
}

.proshow_main_01 {
    width: 100%;
    overflow: hidden;
}

.proshow_left {
    width: 65.53%;
    overflow: hidden;
    float: left;
}

.proshow_left_pic {
    display: none;
    width: 100%;
    overflow: hidden;
}

.proshow_left img {
    width: 100%;
}

.proshow_right {
    width: 34%;
    overflow: hidden;
    float: right;
    background: #f0f0f0;
    padding: 10px;
    padding-bottom: 25px;
}

.proshow_mr_pic {
    width: 100%;
    overflow: hidden;
}

.proshow_mr_pic img {
    width: 100%;
}

.proshow_mr_form {
    width: 100%;
    overflow: hidden;
    padding: 10px;
}

.proshow_mr_form p {
    font-size: 25px;
    color: #000000;
    padding: 15px 0;
    text-align: center;
    font-weight: 700;
}

.proshow_mr_form input[type=text] {
    width: 100%;
    height: 45px;
    line-height: 45px;
    padding-left: 10px;
    font-size: 14px;
    color: #000;
    margin-bottom: 15px;
    outline: none;
    border: none;
    background: #fff;
}

.proshow_mr_form textarea {
    width: 100%;
    height: 168px;
    padding: 10px;
    font-size: 14px;
    color: #000;
    margin-bottom: 15px;
    outline: none;
    border: none;
    background: #fff;
}

.proshow_mr_form input[type=submit] {
    background: #31407f;
    width: 100%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    outline: none;
    border: none;
    font-size: 18px;
    color: #fff;
}

.proshow_switch {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.proshow_switch_01 {
    float: left;
    width: 23.5%;
    height: auto;
    margin-right: 2%;
    position: relative;
}

.proshow_switch_01:last-child {
    margin-right: 0;
}

.proshow_switch_pic {
    width: 100%;
    overflow: hidden;
}

.proshow_switch_pic img {
    width: 100%;
}

.proshow_switch_color {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(133, 131, 129, 0.6);
    top: 0;
    left: 0;
    transition: all 0.6s;
}

.proshow_switch_01.activer .proshow_switch_color {
    background: none;
}

.proshow_rec {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.proshow_rec_title {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    color: #000;
    padding-left: 15px;
    background: #eeeeee;
}

.proshow_rec_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.proshow_rm_01 {
    width: 100%;
    overflow: hidden;
}

.proshow_rm_pic {
    width: 100%;
    overflow: hidden;
}

.proshow_rm_pic img {
    width: 100%;
}

.proshow_rm_word {
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 18px;
    color: #000000;
}


/* 设计工艺 */

.design_title {
    width: 100%;
    overflow: hidden;
    background: #f6f6f6;
    text-align: center;
    font-size: 28px;
    color: #000000;
    font-weight: 700;
    padding: 70px 0;
}

.design {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
    padding-bottom: 40px;
}

.design_word {
    line-height: 2.5;
    font-size: 20px;
    color: #000;
}

.design_pic {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.design_pic img {
    width: 100%;
}


/* 新闻资讯内页 */

.info_title {
    width: 100%;
    overflow: hidden;
    background: #f6f6f6;
    text-align: center;
    font-size: 28px;
    color: #000000;
    font-weight: 700;
    padding: 70px 0;
}

.info {
    width: 100%;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 60px;
}

.info_main {
    max-width: 1700px;
    margin: auto;
    overflow: hidden;
}

.info_main_01 {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px #eee solid;
    position: relative;
}

.info_left {
    float: left;
    width: 25.8%;
}

.info_left img {
    width: 100%;
}

.info_right {
    float: right;
    width: 74%;
    padding-left: 20px;
}

.info_right_top {
    font-size: 18px;
    line-height: 50px;
    width: 99%;
    border-bottom: 1px #eee solid;
}

.info_right_date {
    font-size: 15px;
    line-height: 40px;
    color: #7f7f7f;
}

.info_right_main {
    line-height: 30px;
    font-size: 16px;
    color: #7f7f7f;
}

.info_right_button {
    margin-top: 20px;
    background-color: #7e6b5a;
    width: 93px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    /* position: absolute;
    bottom: 20px;
    left: 460px; */
}

.info_right_button a {
    display: block;
    color: #fff;
}


/* 新闻详情 */

.news_d_title {
    margin: 5px 0;
    padding: 0;
    text-align: center;
    font-size: 16px;
}

.news_d_info {
    text-align: center;
    color: #999;
    border: 1px solid #e1e1e1;
    border-left: 0;
    border-right: 0;
    margin: 10px 0;
    padding: 5px 0;
}

#art_content {
    word-break: break-all;
    font-size: 16px;
    line-height: 2.2;
    padding: 0 0 10px 0;
}

#art_content img {
    max-width: 100%;
}

.newshow {
    width: 100%;
    overflow: hidden;
}

.newshows {
    max-width: 1700px;
    margin: 20px auto 40px;
}


/* 联系我们 */

.p12-aboutinfo-1 {
    max-width: 1700px;
    margin: auto;
    overflow: hidden;
    z-index: 9999;
}

.p12-aboutinfo-1 .tit {
    height: 80px;
    background: url(../image/d63899212b4c4e7d99ac9ed293b3ac9f_2.jpg)no-repeat center 91px;
    clear: both;
    text-align: center;
}

.p12-aboutinfo-1 .tit span {
    display: block;
    font-size: 28px;
    color: #000;
    padding-top: 10px;
}

.p12-aboutinfo-1 .tit em {
    font-style: normal;
    color: #999;
    text-transform: uppercase;
    font-family: "Times New Roman";
    padding-top: 5px;
    display: block;
}

.g-gywm {
    height: 530px;
    max-width: 1600px;
    margin: auto;
    overflow: hidden;
}

.wm-l {
    width: 50%;
    float: left;
    color: #fff;
    height: 420px;
    overflow: hidden;
    background: #0f6dc2;
    padding: 100px 0 0 40px;
}

.wm-l h4 {
    font: 20px "Microsoft YaHei";
    line-height: 60px;
    padding-bottom: 30px;
    margin: 0;
}

.wm-l li {
    font: 16px "Microsoft YaHei";
    color: #fff;
    line-height: 40px;
}

.wm-l li b {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
}

.wm-r {
    float: left;
    width: 50%;
}

#map {
    width: 100%;
    height: 460px;
    border: 1px solid rgb(204, 204, 204);
    font-size: 12px;
}

.map-title {
    font-size: 16px;
    line-height: 24px;
}

.map-list {
    font-size: 14px;
    line-height: 22px;
    color: #333;
    margin-top: 6px;
}


/* 在线留言 */

.listcontacts {
    width: 100%;
    background: #f1f1f1;
    overflow: hidden;
}

.listcontacts>div {
    max-width: 1600px;
    margin: 5rem auto;
    overflow: hidden;
}

.listcontacts>div>span {
    font-size: 28px;
    color: #6a6a6a;
}

.listcontacts>div>span>i {
    font-style: normal;
    font-size: 19px;
    color: #8d8c8c;
    font-family: Arial Regular;
    text-transform: uppercase;
    margin-left: 5px;
}

.listcontactsTitle {
    overflow: hidden;
    margin-top: 3rem;
}

.listcontactsTitle input {
    height: 58px;
    display: block;
    float: left;
    padding-left: 47px;
    box-sizing: border-box;
    width: 48%;
    font-size: 16px;
    margin-bottom: 2rem;
    border: 1px solid #ccc;
    outline: none;
}

.listcontactsTitle input:nth-child(1) {
    background: url(../image/122.png)left 0 no-repeat #fff;
    background-position: 11px;
}

.listcontactsTitle input:nth-child(2) {
    float: right;
    background: url(../image/123.png)left 0 no-repeat #fff;
    background-position: 17px;
}

.listcontactsTitle input:nth-child(3) {
    background: url(../image/124.png)left 0 no-repeat #fff;
    background-position: 8px;
}

.listcontactsTitle input:nth-child(4) {
    float: right;
    background: url(../image/125.png)left 0 no-repeat #fff;
    background-position: 12px;
}

.listcontactsTextarea {
    width: 100%;
    border: 1px solid #ccc;
    background: url(../image/126.png)left 0 no-repeat #fff;
    background-position: 12px 16px;
    padding-left: 47px;
    font-size: 16px;
    padding-top: 18px;
    height: 174px;
    outline: none;
}

.listcontactsubmit {
    text-align: center;
    margin-top: 3rem;
}

.listcontactsubmit input {
    background: #0f6ec2;
    color: #fff;
    border: 0;
    width: 260px;
    height: 50px;
    font-size: 16px;
    margin: 0 5px;
}

.listcontactsubmit input:nth-child(2) {
    background: #484848;
}


/* 展厅展示 */

.hall_title {
    width: 100%;
    overflow: hidden;
    background: #f6f6f6;
    text-align: center;
    font-size: 28px;
    color: #000000;
    font-weight: 700;
    padding: 70px 0;
}

.hall_nav{
	max-width:1600px;
	overflow:hidden;
	margin:auto;
	margin-top:20px;
	text-align: center;
}
.hall_nav a{
	font-size: 22px;
    color: #000000;
    font-weight: 700;
	margin-right:20px;
}

.hall_nav a:hover{
	color: #31407f;
}

.hall {
    width: 100%;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
    position: relative;
}

.hall_pic_01 {
    width: 49.5%;
    overflow: hidden;
    float: left;
    margin-right: 1%;
    margin-bottom: 20px;
}

.hall_pic_01:nth-child(2n) {
    margin-right: 0;
}

.hall_pic_01 img {
    width: 100%;
}

.hall_big_pic {
    width: 100%;
    height: 100%;
    background: rgba(50, 50, 50, 0.5);
    position: fixed;
    top: 145px;
    left: 0;
    z-index: 999;
    display: none;
}

.hallclose {
    font-size: 80px;
    float: right;
    cursor: pointer;
    color: #fff;
}

.hall_big_pic img {
    display: block;
    width: 60%;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}


/* 设计师选品 */

.designer_title {
    width: 100%;
    overflow: hidden;
    background: #f6f6f6;
    text-align: center;
    font-size: 28px;
    color: #000000;
    font-weight: 700;
    padding: 70px 0;
}

.designer {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.designer_main {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
}

.designer_main_01 {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.designer_main_01:nth-child(2n+1) .designer_left {
    width: 34.41%;
    overflow: hidden;
    float: left;
    margin-left: 15.88%;
    padding-top: 70px;
}

.designer_main_01:nth-child(2n) .designer_right img {
    width: 100%;
}

.designer_main_title {
    display: inline-block;
    font-size: 36px;
    color: #000000;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
}

.designer_main_mintitle {
    font-size: 27px;
    color: #000;
}

.designer_main_content {
    font-size: 24px;
    color: #8e8e8e;
    margin-top: 20px;
    line-height: 2.2;
}

.designer_right {
    width: 42.35%;
    overflow: hidden;
    float: right;
}

.designer_right img {
    width: 100%;
}

.designer_main_01:nth-child(2n) .designer_left {
	width: 34.41%;
    overflow: hidden;
    float: right;
    margin-left: 5%;
    padding-top: 70px;
}

.designer_main_01:nth-child(2n) .designer_left img {
    width: 100%;
}

.designer_main_01:nth-child(2n) .designer_right {
width: 56.47%;
    overflow: hidden;
    float: left;
    margin-left: 0;
}

.designer_bg1 {
    width: 100%;
    height: 184px;
    background: url(../images/designer_bg.jpg) left 0 center no-repeat;
    position: absolute;
    left: 0;
    top: 445px;
    z-index: -1;
}

.designer_bg2 {
    width: 100%;
    height: 184px;
    background: url(../images/designer_bg.jpg) left 0 center no-repeat;
    position: absolute;
    left: 0;
    bottom: 455px;
    z-index: -1;
}