@charset "utf-8";
/* .header{
    background: #333;
} */
.inside-banner{
    width: 100%;
    height: 400px;
    background: url(../images/inside_banner.jpg) bottom center no-repeat;
    background-size: cover;
    margin-top: 100px;
}
.inside-banner p{
    text-align: center;
    color: #fff;
    font-size: 40px;
    letter-spacing: 10px;
    font-weight: bold;
    padding-top: 150px;
    position: relative;
}
.inside-banner p::before{
    content: "";
    width: 100px;
    height: 6px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    bottom: -20px;
    margin-left: -50px;
}
.inside-list{
    width: 100%;
    min-height: 80px;
    position: relative;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.inside-list ul{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.inside-list ul li{
    width: 100%;
    height: 80px;
}
.inside-list li a{
    width: 100%;
    height: 100%;
    padding: 0 10px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    transition: all 0.3s;
    overflow: hidden;
}
.inside-list li.active a,.inside-list li.active:hover a{
    background-color: #a3765a;
    color: #fff;
}
.inside-list li:hover a{
    background-color: #f9f9f9;
    color: #a3765a;
}
.inside-container{
    width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
}

.about-wrap{
    font-size: 16px;
    overflow: hidden;
}
.about-wrap img{
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.news-wrap{
    overflow: hidden;
}
.news-list li{
    padding: 20px 0;
    border-bottom: 1px dashed #d7d7d7;
    position: relative;
    overflow: hidden;
}
.news-list li .news-list-pic{
    width: 300px;
    height: 200px;
    float: left;
}
.news-list li .news-list-pic img{
    width: 300px;
    height: 200px;
    object-fit: cover;
}
.news-list li .news-list-main{
    width: 880px;
    float: right;
}
.news-list li .news-list-main h3{
    font-size: 22px;
    color: #333;
}
.news-list li .news-list-main h3:hover{
    color: #59493f;
}
.news-list li .news-list-main p{
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
    text-align: justify;
    max-height: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
}
.news-list li .news-list-main .news-list-time{
    font-size: 14px;
    color: #ddd;
    margin-top: 20px;
}
.news-show-title{
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}
.news-show-info{
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
}
.news-show-main{
    font-size: 16px;
    line-height: 26px;
}

.products-class{
    margin-top: 40px;
}
.products-class-list{
    width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #a3765a;
    padding: 10px 15px;
}
.products-class-list li{
    float: left;
    margin: 0 10px;
}
.products-class-list li a{
    display: block;
    padding: 10px 15px;
    font-size: 18px;
    color: #333;
    position: relative;
}
.products-class-list li a:hover{
    color: #a3765a;
}
.products-class-list li a.active{
    color: #a3765a;
    font-weight: bold;
}
.products-class-list li a::before{
    content: "";
    width: 1px;
    height: 20px;
    background-color: #eee;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}
.products-class-list li:first-child a::before{
    display: none;
}
.products-wrap{
    width: 1200px;
    margin: 0 auto;
}
.products-main{
    margin-top: -30px;
}
.products-item{
    width: 380px;
    float: left;
    margin: 30px 0 0 30px;
    transition: all 0.3s;
}
.products-item:nth-child(3n+1){
    margin: 30px 0 0 0;
}
.products-item .products-pic{
    width: 380px;
    height: 380px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.products-item .products-pic img{
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: cover;
}
.products-item .products-title{
    height: 60px;
    background-color: #fff;
    color: #333;
    font-size: 18px;
    border: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s;
}
.products-item:hover{
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    filter: sepia(50%);
}
.products-item:hover .products-title{
    background-color: #a3765a;
    color: #fff;
}

.product-show-title{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}
.product-show-main{
    width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}
.product-show-pic{
    width: 1000px;
    height: 1000px;
    position: relative;
}
.product-show-pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-show-info{
    margin-top: 40px;
    width: 100%;
    font-size: 18px;
}
.product-show-info td{
    padding: 15px 10px;
    border: 1px solid #ddd;
}
.product-content{
    border: 1px solid #ddd;
    margin-top: 20px;
    padding: 15px;
}
.product-content img{
    display: inline-block;
    max-width: 100%;
}
.products-page{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
.products-page a{
    font-size: 16px;
    color: #333;
    border-bottom: 1px dashed #ddd;
}
.products-page a:hover{
    color: #a3765a;
}
.related-products{
    padding-top: 30px;
    margin-top: 60px;
    border-top: 1px solid #eee;
}
.related-products-title{
    font-size: 30px;
    text-align: center;
}
.related-pro{
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}
.related-pro-item{
    width: 380px;
    float: left;
    margin: 30px 0 0 30px;
    transition: all 0.3s;
}
.related-pro-item:nth-child(3n+1){
    margin: 30px 0 0 0;
}
.related-pro-item .related-pro-pic{
    width: 380px;
    height: 380px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.related-pro-item .related-pro-pic img{
    max-width: 100%;
    max-height: 100%;
}
.related-pro-item .related-pro-title{
    height: 60px;
    background-color: #fff;
    color: #333;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s;
}
.related-pro-item:hover{
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    filter: sepia(50%);
}
.related-pro-item:hover .related-pro-title{
    background-color: #a3765a;
    color: #fff;
}

.contact-wrap{
    font-size: 20px;
    line-height: 40px;
}

.sales-wrap{
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}
.sales-wrap-list{
    overflow: hidden;
    margin-top: -30px;
}
.sales-wrap-item{
    width: 580px;
    float: left;
    margin: 30px 0 0 40px;
    transition: all 0.3s;
}
.sales-wrap-item:nth-child(2n+1){
    margin: 30px 0 0 0;
}
.sales-wrap-item .sales-wrap-title{
    height: 60px;
    background: linear-gradient(to right, #59493f, #a3765a);
    padding: 0 20px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 60px;
}
.sales-wrap-item .sales-wrap-text{
    height: 160px;
    background: url("../images/xswl_logo.png") right bottom no-repeat;
    border: 1px solid #eeeeee;
    border-top: none;
    padding: 20px;
    line-height: 30px;
    color: #333333;
    font-size: 16px;
}
.sales-wrap-item:hover{
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    filter: sepia(50%);
}

/*页码*/
.page{
    color: #666666;
    text-align: center;
    height: 32px;
    margin-top: 50px;
    vertical-align: middle;
}
.page span, .page a{
    padding: 0 10px;
    height: 32px;
    display: inline-block;
    line-height: 32px;
    border: #F0EEEF 1px solid;
    margin: 0 3px;
    color: #D3D3D3;
    background: #ffffff;
    vertical-align: middle;
}
.page a{
    border: #a3765a 1px solid;
    color: #ffffff;
    background: #a3765a;
}
.page a:hover{
    opacity: 0.9;
}