<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* common */
.common_title{
    text-align: center;
}
.common_title&gt;h6{
    font-size: 35px;
    color: #333;
    line-height: 1;
}
.common_title&gt;p{
    font-size: 20px;
    color: #333;
    line-height: 1;
    margin-top: 32px;
}
/* common */

/* banner_wrapper */
.banner_wrapper{
    width: 100%;
    padding: 202px 0 160px;
    box-sizing: border-box;
    background: url(../../images/solution/comShopping/banner.png) no-repeat center/cover;
}
.banner_wrapper .banner_txt{
    width: 1200px;
    margin: 0 auto;
}
.banner_txt&gt;h4{
    font-weight: bold;
    font-size: 50px;
    color: #fff;
    line-height: 1;
    margin-bottom: 28px;
}
.banner_txt&gt;p{
    font-size: 30px;
    color: #fff;
    line-height: 1;
    margin-bottom: 78px;
}
.banner_txt&gt;a{
    display: block;
    font-size: 16px;
    color: #ba3a00;
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #fff;
    border-radius: 6px;
}
/* banner_wrapper */

/* comShop_sec1 */
.comShop_sec1{
    width: 100%;
    padding: 112px 0 75px;
    box-sizing: border-box;
}
.comShop_sec1 .sex1_box{
    margin-top: 114px;
}
.sex1_box&gt;li{
    float: left;
    width: 17.5%;
    text-align: center;
}
.sex1_box&gt;li .sec1_img{
    margin-bottom: 20px;
}
.sex1_box&gt;li .sec1_img&gt;img{
    max-width: 100%;
    width: 100%;
}
.sex1_box&gt;li .sec1_txt{
    font-size: 14px;
    color: #333;
}
.sex1_box&gt;.arrow{
    float: left;
    width: 2%;
    margin: 90px 4% 0;
}
.sex1_box&gt;.arrow&gt;img{
    max-width: 100%;
    width: 100%;
    animation: move 2s infinite ease-in-out;
    -moz-animation: move 2s infinite ease-in-out;
    -webkit-animation: move 2s infinite ease-in-out;
    -o-animation: move 2s infinite ease-in-out;
}
@keyframes move {
    0% {
     -webkit-transform: translateX(0);
     -ms-transform: translateX(0);
     -o-transform: translateX(0);
     transform: translateX(0);
    }
    50% {
     -webkit-transform: translateX(20px);
     -ms-transform: translateX(20px);
     -o-transform: translateX(20px);
     transform: translateX(20px);
    }
    100% {
     -webkit-transform: translateX(0);
     -ms-transform: translateX(0);
     -o-transform: translateX(0);
     transform: translateX(0);
    }
}
.comShop_sec1 .sec1_btn{
    display: block;
    font-size: 16px;
    color: #fff;
    width: 180px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 100px auto 0;
    background-color: #ee6d3d;
    border-radius: 25px;
}
/* comShop_sec1 */

/* comShop_sec2 */
.comShop_sec2{
    width: 100%;
    padding: 106px 0 145px;
    box-sizing: border-box;
    background-color: #f4f4f4;
}
.comShop_sec2 .sec2_box{
    margin-top: 108px;
}
.sec2_box&gt;li{
    position: relative;
    float: left;
    width: 16.8%;
    margin-right: 4%;
    padding-top: 38px;
}
.sec2_box&gt;li:last-child{
    margin-right: 0;
}
.sec2_box&gt;li .sec2_num{
    position: absolute;
    left: 50%;
    top: 0;
    font-weight: bold;
    font-size: 60px;
    color: #fff;
    line-height: 1;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.sec2_box&gt;li .sec2_part{
    position: relative;
    width: 100%;
    text-align: center;
    padding: 52px 0 60px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    z-index: 0;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.sec2_part .sec2_img{
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    margin: 0 auto 20px;
    background-color: #4381ff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(36, 116, 255, .3);
}
.sec2_part .sec2_img&gt;img{
    display: none;
    margin-top: 8px;
}
.sec2_part .sec2_img&gt;img:nth-child(1){
    display: inline-block;
}
.sec2_part .sec2_txt&gt;h6{
    font-weight: bold;
    font-size: 20px;
    color: #333;
    line-height: 1;
    margin-bottom: 12px;
}
.sec2_part .sec2_txt&gt;.line{
    width: 20px;
    height: 1px;
    background-color: #999;
    margin: 0 auto 15px;
}
.sec2_part .sec2_txt&gt;p{
    font-size: 14px;
    color: #666;
    line-height: 1;
    margin-top: 10px;
}

.sec2_box&gt;li:hover .sec2_num{
    z-index: 1;
}
.sec2_box&gt;li:hover .sec2_part{
    background-color: #4381ff;
    box-shadow: 0 6px 20px rgba(0, 83, 227, .35);
}
.sec2_box&gt;li:hover .sec2_part .sec2_img{
    background-color: #fff;
}
.sec2_box&gt;li:hover .sec2_part .sec2_img img:nth-child(1){
    display: none;
}
.sec2_box&gt;li:hover .sec2_part .sec2_img img:nth-child(2){
    display: inline-block;
}
.sec2_box&gt;li:hover .sec2_part .sec2_txt&gt;h6,
.sec2_box&gt;li:hover .sec2_part .sec2_txt&gt;p{
    color: #fff;
}
.sec2_box&gt;li:hover .sec2_part .sec2_txt&gt;.line{
    background-color: #fff;
}
/* comShop_sec2 */

/* comShop_sec3 */
.comShop_sec3{
    width: 100%;
    padding: 96px 0 106px;
    box-sizing: border-box;
    background-color: #fff;
}
.comShop_sec3 .sec3_box{
    margin-top: 12px;
}
.sec3_box&gt;li{
    float: left;
    width: 19%;
    text-align: center;
    margin-right: 8%;
    margin-top: 70px;
}
.sec3_box&gt;li:nth-child(4n){
    margin-right: 0;
}
.sec3_box&gt;li .sec3_img{
    width: 110px;
    height: 126px;
    margin: 0 auto 18px;
}
.sec3_box&gt;li .sec3_img&gt;img{
    max-width: 100%;
    width: 100%;
}
.sec3_box&gt;li .sec3_txt&gt;h6{
    font-weight: bold;
    font-size: 20px;
    color: #333;
    line-height: 1;
    margin-bottom: 16px;
}
.sec3_box&gt;li .sec3_txt&gt;p{
    font-size: 14px;
    color: #333;
    line-height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 66px;
}
.sec3_box&gt;li:hover .sec3_img&gt;img{
    transform:rotate(-360deg);
	-ms-transform:rotate(-360deg); 	
	-moz-transform:rotate(-360deg); 	
	-webkit-transform:rotate(-360deg); 
    -o-transform:rotate(-360deg);
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
/* comShop_sec3 */
/* news_list */
.news_list {
	width: 100%;
    padding: 96px 0 80px;
    box-sizing: border-box;
    background-color: #f4f4f4;
}
.news_list .news_box {
	margin-top: 38px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
}
.news_list .news_box .bottom_part_L {
	width: 580px;
    margin-right: 40px;
    overflow: hidden;
}
.news_list .news_box .bottom_part_L &gt;img{
    max-width: 100%;
    width: 100%;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.news_list .news_box .bottom_part_L&gt;img:hover{
    -webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
    transform: scale(1.1);
}
.news_list .news_box .bottom_part_R{
    width: calc(100% - 620px);
}
.news_list .news_box .bottom_part_R li {
	margin-top: 12px;
}
.news_list .news_box .bottom_part_R li:hover .title{
	color: #257dff;
}
.news_list .news_box .bottom_part_R li:first-child {
	margin-top: 0;
}
.news_list .news_box .bottom_part_R li .title {
	font-size: 16px;
	font-weight: bold;
	color: #333;
	line-height: 25px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap	;
}
.news_list .news_box .bottom_part_R li .title span {
	display: inline-block;
	width: 25px;
	height: 25px;
	background: #DFDFDF;
	color: #fff;
	border-radius: 2px;
	text-align: center;
	line-height: 25px;
	font-weight: normal;
	margin-right: 10px;
}
.news_list .news_box .bottom_part_R li:nth-child(1) .title span{
	background: #FD6600;
}
.news_list .news_box .bottom_part_R li:nth-child(2) .title span{
	background: #FE9703;
}
.news_list .news_box .bottom_part_R li:nth-child(3) .title span{
	background: #F3B61E;
}
.news_list .news_box .bottom_part_R li .keywords {
	display: none;
}
.news_list .news_box .bottom_part_R li .descr {
	font-size: 13px;
	color: #999;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-top: 5px;
	margin-left: 35px;
}
/* news_list */</pre></body></html>