:root {
  --main-color-a: #f91f28;
  --main-color-b: #f85e2b;
  --main-color-c: #FB8732;
  --main-color-d: #F6C418;
  --main-color-bg: #fff3e7;
  --main-color-e: #1782ec;
}
.container {
    width: 1200px;
    margin: 0 auto;
	position: relative;
}

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

ol, ul, li {
    list-style: none;
}

.btn-wrap {
    padding-top: 130px;
    padding-left: 60px;
    width: 600px;
}

.btn-wrap .btn-div {
    text-align: left;
    margin-top: 40px;
}

.btn-wrap .btn-div .btn {
    margin-right: 8px;
}

.btn-wrap .desc {
    color: #FFFFFF;
    margin-bottom: 35px;
}

.btn-wrap .desc h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}
.btn-wrap .desc .title {
    font-size: 20px;
    line-height: 42px;
    font-weight: normal;
}
.btn-wrap .desc .title p:first-child {
    margin-bottom: 3px;
}


.section {
    padding: 60px 0 50px 0;
}

.section-bg {
    background: #F5F5FA !important;
}

.btn-div {
    text-align: center;
    margin: 50px auto 0;
}

.btn-div .btn {border-radius: 2px;line-height: 60px;font-size: 16px;width: 200px;height: 60px;
display: inline-block;box-sizing: border-box;vertical-align: bottom;text-align: center;cursor: pointer;}
.btn:hover {opacity: 0.9;}
.btn-div .border-fff{border: 1px solid #fff;color: #fff;}
.btn-div .border-fff:hover{background-color: #FFFFFF;}

.btn-div .btn-f-red{background: #fff;color: var(--main-color-a);}
.btn-div .btn-bg-red{background: linear-gradient(90deg, var(--main-color-a), var(--main-color-b));color: #fff;}
.btn-div .border-red{border: 1px solid var(--main-color-a);color: var(--main-color-a);}
.btn-div .hover-red:hover {color: var(--main-color-a);}



.section-title {
    text-align: center;
    padding-top: 70px;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}
.section-title p {
    font-size: 16px;
    color: #666;
    line-height: 34px;
}

.section-title div {
    font-size: 22px;
    padding-bottom: 20px;
    margin-bottom: 15px;
    position: relative;
}

.section-title div:after {
    content: '';
    position: absolute;
    width: 26px;
    height: 3px;
    display: block;
    background: linear-gradient(90deg, var(--main-color-a), var(--main-color-b));
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}


.section-title.white h2 {
    color: #fff;
}

.section-title.white p {
    color: #fff;
}


/*从隐藏到显示*/
.op {
    animation: op 0.1s;
    opacity: 1 !important;
}

/*kl1从左到右50*/
.kf-l-r1 {
    animation: kf-l-r 0.4s;
}

.kf-l-r2 {
    animation: kf-l-r 0.5s;
}

.kf-l-r3 {
    animation: kf-l-r 0.6s;
}

.kf-l-r4 {
    animation: kf-l-r 0.7s;
}

.kf-l-r5 {
    animation: kf-l-r 0.8s;
}

.kf-l-r6 {
    animation: kf-l-r 0.9s;
}

/* kr1从右到左50*/
.kf-r-l1 {
    animation: kf-r-l 0.4s;
}

.kf-r-l2 {
    animation: kf-r-l 0.5s;
}

.kf-r-l3 {
    animation: kf-r-l 0.6s;
}

.kf-r-l4 {
    animation: kf-r-l 0.7s;
}

.kf-r-l5 {
    animation: kf-r-l 0.8s;
}

.kf-r-l6 {
    animation: kf-r-l 0.9s;
}


/*新官网特效开始*/
/*kf-t-b从下到上250距离*/
@keyframes kf-t-b {
    from {
        transform: translateY(250px);
    }
    to {
        transform: translateY(0px);
    }
}

/*kf-t-b从上到下250距离*/
@keyframes kf-b-t {
    from {
        transform: translateY(-250px);
    }
    to {
        transform: translateY(0px);
    }
}

/*放大 pic_scale从小到大*/
@keyframes pic_scale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes op {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*kl1从右到左50*/
@keyframes kf-l-r {
    from {
        transform: translateX(-200px);
    }
    to {
        transform: translateX(0px);
    }
}

/*kl1从左到右50*/
@keyframes kf-r-l {
    from {
        transform: translateX(200px);
    }
    to {
        transform: translateX(0px);
    }
}

/*kf-t-b从上到下250距离*/
.kf-t-b1 {
    animation: kf-t-b 0.4s;
}

.kf-t-b2 {
    animation: kf-t-b 0.5s;
}

.kf-t-b3 {
    animation: kf-t-b 0.6s;
}

.kf-t-b4 {
    animation: kf-t-b 0.7s;
}

/*kf-t-b从下到上250距离*/
.kf-b-t1 {
    animation: kf-b-t 0.4s;
}

.kf-b-t2 {
    animation: kf-b-t 0.5s;
}

.kf-b-t3 {
    animation: kf-b-t 0.6s;
}

.kf-b-t4 {
    animation: kf-b-t 0.7s;
}



.s_banner{
	height: 425px;
	position: relative;
	overflow: hidden;
}
.s_banner_bg{
	position: absolute;
	z-index: 1;
	height: 425px;
	width: 1920px;
	left: calc(50% - 960px);
}
.s_banner_box{
	position: relative;
	z-index: 2;
}

.navigation.active {position: fixed;top: 0;z-index: 99999;}

.navigation {
    border-bottom: 1px solid #EEEEEE;
    width: 100%;
    background: #fff;
    text-align: center;
}

.navigation_box div {
    width: 100px;
    display: inline-block;
    padding: 0 15px;
    text-align: center;
    cursor: pointer;
}

.navigation_box div:last-child {
    padding: 0;
}

.navigation_box div span {
    font-size: 16px;
    color: #000;
    padding: 26px 10px;
    display: inline-block;
}

.navigation_box div.active span {
    border-bottom: 2px solid var(--main-color-a);
    color: var(--main-color-a);
}

.gn_box{
	padding-top: 0;
}
.gn_ul{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.gn_li{
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 195px;
	height: 230px;
	background: #fff;
	margin-right: 30px;
	overflow: hidden;
	border-radius: 5px;
}
.gn_li img{
	display: block;
	width: 90px;height: 90px;
	margin: 22px auto 5px;
}
.gn_li h3{
	font-size: 20px;
	color: #333;
	font-weight: bold;
	margin: 15px 0 10px 0;
}
.gn_li p{
	font-size: 14px;
	line-height: 1.5;
	color: #888;
	text-align: center;
}

.com-imgs{
	display: block;
	width: 100%;
}
.com-imgs img{
	display: block;
	width: 1200px;
	height: auto;
}

.ts_box{
	padding-top: 0;
}
.ts_ul{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.ts_li{
	width: 240px;
	height: 260px;
	background: #fff;
	margin: 0 20px 26px 0;
	padding: 0 20px;
	border-radius: 5px;
	box-shadow: 0px 10px 30px 0px #00000014;
	display: flex;
	align-items: center;
	flex-direction: column;
}
.ts_li img{
	width: 90px;
	height: 90px;
	margin: 32px auto 5px;
}
.ts_li h3{
	font-size: 20px;
	color: #333;
	font-weight: bold;
	margin: 22px 0 10px 0;
}
.ts_li p{
	font-size: 14px;
	color: #888;
	line-height: 1.5;
	text-align: center;
}


.c_nav_t{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: linear-gradient(0deg, #f91f28, #f85e2b);
	color: #fff;
	width: 64px;
	height: 120px;
	border-radius: 5px;
	margin-bottom: 10px;
}
.c_nav_t img{
	display: block;
	width: 40px;
	height: 40px;
	transition: all 0.5s;
	margin-bottom: 8px;
}
.c_nav_t:hover .c_nav_ico {
    transform: rotate(360deg);
}
.c_nav_t p{
	letter-spacing: 3px;
	line-height: 24px;
	font-size: 16px;
	text-align: center;
}
.c_nav_b{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	width: 64px;
	background: #fff;
    border-radius: 5px;
}
.c_nav_b:hover{
	background: linear-gradient(0deg, #f91f28, #f85e2b);
}
.c_nav_b img{
	display: block;
	width: 24px;
	height: 14px;
}
.c_nav_b p{display: none;}
.c_nav_b:hover img{display: none;}
.c_nav_b:hover p{
	display: block;
	color: #fff;
}
.c_nav_c{}
.c_nav_li{
	position: relative;
	transition: all 0.5s;
}
.c_nav_li_show{
	background: #FFF;
	box-shadow: 0px 5px 10px 0px #d4c5c54f;
	display: block;
	width: 62px;
	height: 62px;
	border-radius: 5px;
	border: #f91f28 1px solid;
	font-size: 12px;
	text-align: center;
	margin-bottom: 10px;
	line-height: 1;
}
.c_nav_li_show img{
	display: block;
	width: 28px;
	height: 22px;
	padding: 11px 0 9px 0;
	transition: all 0.5s;
	margin: 0 auto;
}
.c_nav_li_show p{}
.c_nav_li_hide{
	position: absolute;
	bottom: -40px;
	display: none;
	height: 160px;
	width: 140px;
	position: absolute;
	right: 84px;
	min-height: 90px;
	border-radius: 3px;
	box-shadow: 0px 5px 10px 0px rgba(25, 33, 49, 0.18);
	text-align: center;
	background: linear-gradient(0deg, #f91f28, #f85e2b);
	font-size: 13px;
	color: #fff;
	line-height: 30px;
}
.c_nav_li_hide img{
	display: block;
	width: 108px;
	height: 108px;
	padding-top: 14px;
	margin: 0 auto;
}
.c_nav_li_hide p{
	line-height: 2.5;
}
.c_nav_li_show:hover img{
	transform: rotate(360deg);
}
.c_nav_li:hover .c_nav_li_hide{
	display: block;
}
.c_nav_t2{
	width: 62px;
	height: 62px;
	transition: all 0.5s;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 5px;
	border: #f91f28 1px solid;
	overflow: hidden;
	background: #fff;
}
.c_nav_t2_show{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.c_nav_t2_show img{
	display: block;
	width: 22px;
	height: 22px;
	padding: 4px 0 10px 0;
}
.c_nav_t2_show p{
	font-size: 12px;
}
.c_nav_t2_hide{
	display: none;
	width: 232px;height: 62px;
	color: #fff;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(0deg, #f91f28, #f85e2b);
	box-sizing: border-box;
	padding: 10px 20px;
}
.c_nav_t2_hide img{
	display: block;
	width: 30px;
}
.c_nav_t2_hide div{
	width: calc(100% - 38px);
}
.c_nav_t2_hide h3{
	font-size: 24px;
	line-height: 1.2;
}
.c_nav_t2_hide p{
	font-size: 14px;
	line-height: 1.6;
}
.c_nav_t2:hover{
	width: 230px;
}
.c_nav_t2:hover .c_nav_t2_show{
	display: none;
}
.c_nav_t2:hover .c_nav_t2_hide{
	display: flex;
}

.c_nav .c_nav_t{
    -webkit-animation: rotateInDownRight 1.5s 0.5s ease both;
    -moz-animation: rotateInDownRight 1.5s 0.5s ease both;
}
.c_nav .c_nav_t2 {
    -webkit-animation: rotateInDownLeft 1.5s 1.5s ease both;
    -moz-animation: rotateInDownLeft 1.5s 1.5s ease both;
}
.c_nav .li4 {
    position: relative;
    -webkit-animation: rotateInDownRight 1.5s 2s ease both;
    -moz-animation: rotateInDownRight 1.5s 2s ease both;
}
.c_nav .li5 {
    -webkit-animation: rotateInDownLeft 1.5s 2.5s ease both;
    -moz-animation: rotateInDownLeft 1.5s 2.5s ease both;
    position: relative;
}

.c_nav .c_nav_b {
    -webkit-animation: rotateInDownRight 1.5s 3.5s ease both;
    -moz-animation: rotateInDownRight 1.5s 3.5s ease both;
    cursor: pointer;
}



/*右侧悬浮开始*/
.c_nav {
    position: fixed;
    right: 10px;
    z-index: 9999;
    width: 72px;
    top: 50%;
    margin-top: -158px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
}

.c_nav li {
    float: right;
}

.c_nav li a {
    background: #FFFFFF;
    box-shadow: 0px 5px 10px 0px #d4c5c54f;
    display: block;
    width: 62px;
    height: 62px;
    border-radius: 5px;
    border: #f91f28 1px solid;
    font-size: 12px;
    text-align: center;
    margin-bottom: 9px;
    line-height: 1;
}

.c_nav li a i {
    display: inline-block;
    width: 28px;
    height: 22px;
    padding: 11px 0 9px 0;
    transition: all 0.5s;
}
.c_nav li a:hover i,.c_nav li a:hover img.c_nav_ico {
    transform: rotate(360deg);
}

.c_nav li.li1 a {
    background: linear-gradient(0deg, #f20d23, #f85f2a);
    color: #fff;
    transition: all 0.5s;
    height: 120px;
}

.c_nav li.li1 a p {
    letter-spacing: 3px;
    line-height: 24px;
    font-size: 16px;
}

.c_nav li.li1 .c_nav_ico {
    /* background: url('../images/side_icon_01.png') center no-repeat; */
    width: 40px;
    height: 40px;
}

.c_nav li.li2 a {
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
}

.c_nav li.li2 .hides {
    width: 230px;
    height: 70px;
    position: absolute;
    left: 0px;
    top: -5px;
    background: url(../images/side_tel_02.png) 20px center no-repeat;
    padding: 0 15px;
    text-align: left;
    display: none;
    text-indent: 50px;
}

.c_nav li.li2 .hides h2 {
    font-size: 12px;
    color: #fff;
    line-height: 1;
    padding: 17px 0 7px 0;
}

.c_nav li.li2 .hides p {
    font-size: 24px;
    color: #fff;
    font-family: "Arial";
    line-height: 1;
}

.c_nav li.li2 i {
    background: url('../images/side_tel_01.png') center no-repeat;
}


.c_nav li.li2 a:hover {
    background: linear-gradient(0deg, #f20d23, #f85f2a);
}

.c_nav li.li2 a:hover .hides {
    display: block;
}

.c_nav li.li2 a:hover .shows {
    display: none;
}

.c_nav li.li2 a:hover {
    width: 230px;
}

.c_nav li.li4 a:hover {
    background: linear-gradient(0deg, #f20d23, #f85f2a);
    color: #FFFFFF;
}

.c_nav li.li4 a:hover i {
    background: url('../images/side_wx_02.png') center no-repeat;
}

.c_nav li.li4 i {
    background: url('../images/side_wx_01.png') center no-repeat;
}

.c_nav li.li4:hover .ewm_div {
    display: block;
}

.c_nav li.li4 .ewm_div {
    display: none;
    height: 160px;
    width: 140px;
    position: absolute;
    right: 84px;
    min-height: 90px;
    border-radius: 3px;
    box-shadow: 0px 5px 10px 0px rgba(25, 33, 49, 0.18);
    text-align: center;
    background: linear-gradient(0deg, #f20d23, #f85f2a);
    font-size: 13px;
    color: #ffffff;
    line-height: 30px;
    top: -51px;
}

.c_nav li.li4 .ewm_div .arrow {
    position: absolute;
    width: 9px;
    height: 18px;
    background: url(../images/side_bg_arrow1.png) no-repeat;
    right: -8px;
    top: 70px;
}

.c_nav li.li4 .ewm_div .img_div {
    background: url(../images/wx.jpg) center no-repeat;
    width: 119px;
    height: 119px;
    margin: 11px 11px auto;
}

.c_nav li.li5 a {
    position: relative;
    transition: all 0.5s;
}

.c_nav li.li5 a:hover {
    background: linear-gradient(0deg, #f20d23, #f85f2a);
    color: #FFFFFF;
}

.c_nav li.li5 a:hover i {
    background: url('../images/side_ewm_02.png') center no-repeat;
}

.c_nav li.li5 i {
    background: url('../images/side_ewm_01.png') center no-repeat;
}

.c_nav li.li5 .img {
    width: 108px;
    padding: 15px;
    border-radius: 5px;
    background: #0cd579;
    position: absolute;
    left: 180px;
    top: -48px;
}

.c_nav li.li5 .img img {
    width: 108px;
    height: 108px;
    display: block;
}

.c_nav li.li5 .img p {
    font-size: 16px;
    color: #fff;
    margin-top: 8px;
    letter-spacing: 2px;
}

.c_nav li.li5:hover .ewm_div {
    display: block;
}

.c_nav li.li5 .ewm_div {
    display: none;
    height: 160px;
    width: 140px;
    position: absolute;
    right: 84px;
    min-height: 90px;
    border-radius: 3px;
    box-shadow: 0px 5px 10px 0px rgba(25, 33, 49, 0.18);
    text-align: center;
    background: linear-gradient(0deg, #f20d23, #f85f2a);
    font-size: 13px;
    color: #ffffff;
    line-height: 30px;
    top: -51px;
}

.c_nav li.li5 .ewm_div .arrow {
    position: absolute;
    width: 9px;
    height: 18px;
    background: url(../images/side_bg_arrow1.png) no-repeat;
    right: -8px;
    top: 70px;
}

.c_nav li.li5 .ewm_div .img_div {
    background: url(../images/ewm.jpg) center no-repeat;
    width: 119px;
    height: 119px;
    margin: 11px 11px auto;
}

.c_nav li.li6 .out {
    background: url(../images/side_icon_05.png) center no-repeat #FFFFFF;
}

.c_nav li.li6 .top_return {
    box-shadow: 0px 5px 10px 0px #d4c5c54f;
    display: block;
    width: 62px;
    height: 30px;
    border-radius: 5px;
}

.c_nav li.li6 .over {
    display: none;
    background: linear-gradient(0deg, #f20d23, #f85f2a);
    line-height: 35px;
    color: #ffffff;
    text-align: center;
}

.c_nav li.li6:hover .over {
    display: block;
}

.c_nav li.li6:hover .out {
    display: none;
}

.c_nav li.li1,.c_nav .c_nav_t{
    -webkit-animation: rotateInDownRight 1.5s 0.5s ease both;
    -moz-animation: rotateInDownRight 1.5s 0.5s ease both;
}

.c_nav li.li2,.c_nav .c_nav_t2 {
    -webkit-animation: rotateInDownLeft 1.5s 1.5s ease both;
    -moz-animation: rotateInDownLeft 1.5s 1.5s ease both;
}

.c_nav li.li4,.c_nav .li4 {
    position: relative;
    -webkit-animation: rotateInDownRight 1.5s 2s ease both;
    -moz-animation: rotateInDownRight 1.5s 2s ease both;
}

.c_nav li.li5,.c_nav .li5 {
    -webkit-animation: rotateInDownRight 1.5s 2.5s ease both;
    -moz-animation: rotateInDownRight 1.5s 2.5s ease both;
    position: relative;
}

.c_nav li.li7 {
    -webkit-animation: rotateInDownLeft 1.5s 3s ease both;
    -moz-animation: rotateInDownLeft 1.5s 3s ease both;
    cursor: pointer;
}

.c_nav li.li6,.c_nav .c_nav_b {
    -webkit-animation: rotateInDownRight 1.5s 3.5s ease both;
    -moz-animation: rotateInDownRight 1.5s 3.5s ease both;
    cursor: pointer;
}

.c_nav .d {
    display: none;
    width: 320px;
    background: #fff;
    position: absolute;
    right: 84px;
    min-height: 90px;
    border-radius: 3px;
    box-shadow: 0px 5px 10px 0px rgba(25, 33, 49, 0.18);
}

.c_nav .d .arrow {
    position: absolute;
    width: 9px;
    height: 18px;
    background: url(../images/side_bg_arrow.png) no-repeat;
    right: -8px;
    top: 190px;
}


.info_box{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.info_l{
	width: 50%;
}
.info_r{
	width: 40%;
}
.info_r .h1 {
    font-size: 34px;
    color: #333;
    font-weight: 600;
}

.info_r .color-h {
    font-size: 15px;
    color: #888888;
    display: inline-block;
    line-height: 34px;
    margin: 10px 0px;
    width: 433px;
}

.info_r .color-ye {
    font-size: 20px;
    color: var(--main-color-b);
    background: var(--main-color-bg);
    padding: 15px 0;
    margin: 21px 0;
    width: 437px;
    text-align: center;
}

.big-title{
	position: relative;
    font-size: 22px;
    padding-bottom: 24px;
    margin-bottom: 13px;
}
.big-title:before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 24px;
	height: 3px;
	background: linear-gradient(0deg, var(--main-color-a), var(--main-color-b));
}


.fays-title {
    position: absolute;
    top: 50px;
    left: 425px;
	text-align: center;
	font-size: 40px;
}
.fays{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.fays_li{
	width: 33%;
	box-sizing: border-box;
	padding: 0 20px;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.fays_li img{
	display: block;
	width: auto;
	height: 160px;
}
.fays_li h3{
	font-size: 20px;
    color: #444;
    font-weight: bold;
	left: 1.5;
	padding: 10px 0;
}
.fays_li p{
	font-size: 14px;
	color: #505050;
	line-height: 25px;
	text-align: center;
}

/* ------------------------- */

.scan{
	background: #F7F9FC;
	padding-top: 0;
}
.scan_box{
	color: #333333;
	width: 100%;
	/* text-align: center; */
}
.scan_li{
	display: inline-block;
	width: 200px;
	height: 240px;
	margin: 20px 18px;
	background: #ffffff;
	box-shadow: 0px 10px 20px 0px #3636361a;
}
.scan_li img{
	height: 150px;
	width: 150px;
	margin: 20px auto;
	display: block;
}
.scan_li p{
	color: #333;
	font-size: 16px;
	text-align: center;
}

.tool_box{
	padding-top: 0;
}
.tool_ul{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.tool_li{
	width: 240px;
	height: 230px;
	background: #fff;
	margin: 0px 60px 10px;
	overflow: hidden;
	text-align: center;
	transition: all ease 300ms;
	padding: 0 20px;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.tool_li:hover{
	-webkit-box-shadow: 0px 20px 40px 0px rgba(83, 86, 90, 0.15);
	box-shadow: 0px 20px 40px 0px rgba(83, 86, 90, 0.15);
	-webkit-transform: translateY(-30px);
	-ms-transform: translateY(-30px);
	transform: translateY(-30px);
}
.tool_li img{
	display: block;
	width: 68px;
	height: 68px;
	margin: 22px auto 5px;
}
.tool_li h3{
	font-size: 20px;
	color: #333;
	font-weight: bold;
	margin: 30px 0 10px 0;
}
.tool_li p{
	font-size: 14px;
	color: #888;
	line-height: 1.5;
}


.p_show{
	position: relative;
	height: 740px;
	overflow: hidden;
	padding: 0;
    background: linear-gradient(
-79deg, var(--main-color-b), var(--main-color-a));
}
.p_show_bg{
	position: absolute;
	width: 1920px;height: 740px;
	top: 0;left: calc(50% - 960px);
}
.p_show_box{
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 55px;
}
.p_show_imgs{
	width: 290px;
	height: 600px;
	border: 15px solid #fff;
	background: #fff;
	border-radius: 20px 20px 40px 40px;
	margin-left: 150px;
}
.p_show_imgs img{
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 20px 20px 40px 40px;
}
.p_show_txts{
	width: 600px;
	color: #fff;
}
.p_show_title{
	position: relative;
	font-size: 40px;
	font-weight: 400;
	line-height: 1;
	padding: 30px 0;
	margin-bottom: 30px;
}
.p_show_title::after{
	position: absolute;
	content: '';
	width: 30px;
	height: 4px;
	background: #3fddd6;
	left: 0;bottom: 0;
}
.p_show_txt{
	width: 80%;
	line-height: 1.5;
	font-size: 16px;
}
.p_show_btns{
	display: flex;
	flex-wrap: wrap;
}
.p_show_btns p{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;height: 60px;
	margin-right: 30px;
	margin-bottom: 20px;
	cursor: pointer;
	border-radius: 5px;
	font-size: 18px;
}
.p_show_btns p.act{
	color: var(--main-color-e);
	background: #fff;
}
.p_show_btns p:nth-child(3n){
	margin-right: 0;
}

.p_show_btns p span{
	display: block;position: relative;
	width: 30px;height: 30px;overflow: hidden;
	margin-right: 10px;
}
.p_show_btns p span::before{
	position: absolute;
	content: '';
	background: url() no-repeat center;
	background-size: 100% 100%;
	width: 30px;
	height: 30px;
	display: block;
	filter:drop-shadow(30px 0 #fff);
	-webkit-filter:drop-shadow(32px 0 #fff);
	left: -100%;
}
.p_show_btns p.act span::before{
	filter:drop-shadow(30px 0 var(--main-color-e));
}

.p_show_btns p img{
	display: block;
	width: 20px;height: 20px;
	margin-right: 10px;
}



.xt{
	padding-top: 0;
	padding-bottom: 30px;
}
.xt_box{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 40px;
}
.xt_li{
	width: 280px;
}
.xt_li img{
	display: block;
	width: 100%;
	height: 180px;
}
.xt_li h3{
	padding: 10px 10px 5px;
	font-size: 19px;
	line-height: 1.5;
}
.xt_li p{
	padding: 0px 10px;
	line-height: 1.5;
	font-size: 15px;
	color: #999;
}

/* 底部遮罩 --开始 */
.mask_fixed_l .container {
    position: relative;
}

.mask_fixed_l .text {
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 10px;
}

.mask_fixed_l .red-number {
    color: var(--main-color-d);
    font-size: 17px;
    font-style: italic;
    font-weight: 700;
    margin: 0 10px;
}

.mask_fixed_l .form {
    padding-top: 15px;
    overflow: hidden;
}

.mask_fixed_l .form .input {
    width: 200px;
    height: 40px;
    background: #FFFFFF;
    float: left;
    margin-right: 10px;
}

.mask_fixed_l .form .input input {
    padding: 8px 10px;
    height: 24px;
    border: 0;
    width: calc(100% - 20px);
    font-size: 16px;
    color: #888888;
}

.mask_fixed_l .form .btn {
    float: left;
    width: 150px;
    height: 40px;
    background: linear-gradient(-90deg, var(--main-color-c), var(--main-color-d));
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    color: #FFFFFF;
    cursor: pointer;
}

.mask_fixed{
	position: fixed;
	z-index: 55;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(-79deg, var(--main-color-b), var(--main-color-a));
	transition: all 0.5s;
}
.mask_fixed.hidden{
	bottom: -100px;
}
.mask_fixed_box{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	box-sizing: border-box;
	padding-bottom: 6px;
}
.mask_fixed_l{}
.mask_fixed_r{
	position: relative;
}
.mask_close{
	position: absolute;
	top: -20px;
	right: -23px;
	width: 20px;height: 20px;
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: var(--main-color-a);
	border-radius: 100%;
	cursor: pointer;
	line-height: 1;
}
.mask_btn{
	width: 180px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: var(--main-color-a);
	font-size: 18px;
	font-weight: bold;
}

/* 底部遮罩 --结束 */
