:root {
    --body-text-color:#3f3f3f;
    --heading-text-color:#111111;
    --menu-link-color:#111111;
    --white-color:#ffffff;
    --very-light-gray:#f2f2f2;
    --light-gray:#ebebeb;
    --gray:#cccccc;
    --dark-gray:#797979;
    --success:#28a745;
    --success-bg:#d4edda;
    --info:#17a2b8;
    --info-bg:#cce5ff;
    --warning:#ffc107;
    --warning-bg:#fff3cd;
    --danger:#dc3545;
    --danger-bg:#f8d7da;
}
/** 一些全局的css样式 **/

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    margin:0;
    padding:0;
    line-height:1.2;
}

.h1{
    font-family: 'Source Sans Pro', sans-serif;
    font-size:48px;
    font-weight:bold;
    color:var(--heading-text-color);
    letter-spacing:-1px;
    margin-bottom:18px;
}

h4,.h4 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: var(--heading-text-color);
    letter-spacing: -0.4px;
    margin-bottom: 18px;
}


.container {
    max-width: 1200px;
}



.section-padding {
    padding: 100px 0px;
}

.row{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.empty-space-60 {
    height: 60px;
}


.nav-link {
    display: block;
    padding: .5rem 1rem;
}

.nav-tabs>li {
    float: none;
}

.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

/** 媒体盘问的样式 **/
@media only screen and (min-width:1200px) {
    .col-lg-3-1 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }
}

@media only screen and (max-width:1199px) {
    h1, .h1{font-size: 42px;}
    h2, .h2{font-size: 38px;}
}


@media only screen and (max-width:767px) {
    h1, .h1{font-size:36px;}
    h2, .h2{font-size:32px;}
    h3, .h3{font-size:30px;}
    h4, .h4{font-size:26px;}

    .vertical-tab .st-tab-btn .nav-tabs .nav-item .nav-link, .st-tab-btn .nav-tabs .nav-link{padding:15px; }
    .vertical-tab .st-tab-btn .nav-tabs{display:none;}

    .col-lg-3-1,.col-sm-6,.col-md-4{
        width: 100%;
    }


    .how-it-work-wrapper.three-step .item{flex: 0 0 100%; max-width: 100%; padding: 15px 0px 0px;}

}




/** 段落样式 **/

.heading-wrapper{
    margin-bottom:30px;
}
.heading-wrapper span{
    font-family:'Alegreya', serif;
    font-style:italic;
}
.heading-wrapper span.sub-title{
    text-transform: uppercase;
    font-weight:700;
    font-size: 18px;
    letter-spacing:1px;
    font-family:'Source Sans Pro', sans-serif;
    font-style:normal;
}
.style-dark .heading-wrapper span{
    color:#ffffff;
}
.lead-text, .lead-text p{
    font-size:20px;
    line-height:1.6;
}
.intro-header-slider{
    padding-top:60px;
    margin-bottom:-300px;
}
.heading-wrapper.with-separator h1:after,
.heading-wrapper.with-separator h2:after,
.heading-wrapper.with-separator h3:after{
    height:6px;
    width:60px;
    content:"";
    display:block;
    margin-top:18px;
}
.heading-wrapper.with-separator.text-center h1:after,
.heading-wrapper.with-separator.text-center h2:after,
.heading-wrapper.with-separator.text-center h3:after{
    display:table;
    margin-left:auto;
    margin-right:auto;
}

.heading-wrapper span{
    color:#2a1fbc;
}
.heading-wrapper.with-separator h1:after,
.heading-wrapper.with-separator h2:after,
.heading-wrapper.with-separator h3:after{
    background: -moz-linear-gradient(left, #2E388F 0%, #2E388F 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #2E388F), color-stop(100%, #2E388F));
    background: -webkit-linear-gradient(left, #2E388F 0%, #2E388F 100%);
    background: linear-gradient(to right, #2E388F 0%, #2E388F 100%);
}


.features-block{
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}
.features-block p:last-child{
    margin-bottom:0;
}
.features-block.theme-one .inner-box{
    background:var(--white-color);
    -webkit-border-radius:6px;
    border-radius:6px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition:all 400ms ease-in-out;
    transition:all 400ms ease-in-out;
    padding:30px 30px;
    position:relative;
    text-align:center;
    overflow:hidden;
    cursor:pointer;
}
.features-block.theme-one .inner-box:before{
    -webkit-transform:translateY(102%);
    transform:translateY(102%);
    width:100%;
    position:absolute;
    top:0;
    left:0;
    content:"";
    height:100%;
    -webkit-transition:all 500ms ease-in-out;
    transition:all 500ms ease-in-out;
}
.features-block.theme-one .inner-box:hover:before{
    -webkit-transform:translateY(0);
    transform:translateY(0);
}
.features-block.theme-one .inner-box > *{
    position:relative;
}
.features-block.theme-one .icon{
    margin:0px auto 18px;
    text-align:center;
    display:table;
}
.features-block.theme-one .icon img{
    max-width:70px;
    -webkit-transition:all 400ms ease-in-out;
    transition:all 400ms ease-in-out;
}

.features-block.theme-one h4{
    font-size:24px;
    -webkit-transition:all 400ms ease-in-out;
    transition:all 400ms ease-in-out;
}
.features-section .inner-row .col-lg-6:nth-child(2){
    margin-top:80px;
}
.features-section .inner-row .col-lg-6:nth-child(3){
    margin-top:-80px;
}
.features-section .inner-row .col-lg-6:nth-child(5){
    margin-top:-80px;
}


/*  Feature Style 2 */
.features-block.theme-two .inner-box{
    background:rgba(255,255,255,0.1);
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
    padding: 40px 30px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    cursor:pointer;
}
.features-block.theme-two .inner-box:hover{
    background:rgba(255,255,255,0.12);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.features-block.theme-two .text{
    padding-left:30px;
}
.features-block.theme-two h4 {
    font-size: 24px;
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
    position:relative;
}
.features-block.theme-two h4::before, .features-block.theme-two h4::after {
    content: "";
    width: 3px;
    height: 10px;
    background: var(--heading-text-color);
    position: absolute;
    top: 11px;
    left:-30px;
}
.features-block.theme-two h4::after {
    left:-24px;
    width: 10px;
}
.style-dark .features-block.theme-two h4::before, .style-dark .features-block.theme-two h4::after {
    background: var(--white-color);
}
.features-block.theme-three .inner-box {
    background: var(--white-color);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    border:1px solid var(--light-gray);
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
    padding:30px 15px;
    position: relative;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}
.features-block.theme-three .inner-box:hover{
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    border:1px solid var(--gray);
}
.features-block.theme-three .icon {
    margin: 0px auto 18px;
    text-align: center;
    display: table;
    font-size:45px;
}
.features-block.theme-three .icon img {
    max-width:68px;
    max-height:68px;
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}
.features-block.theme-three h4 {
    font-size:18px;
    margin-bottom:0;
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}
.features-block.theme-four .inner-box{
    background:var(--white-color);
    -webkit-border-radius:6px;
    border-radius:6px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition:all 400ms ease-in-out;
    transition:all 400ms ease-in-out;
    padding:40px 50px;
    position:relative;
    overflow:hidden;
    cursor:pointer;
    display: flex;
}
.features-block.theme-four .inner-box:before{
    display:none;
}
.features-block.theme-four .inner-box > * {
    position: relative;
}
.features-block.theme-four .icon {
    margin:0px 30px 0px 0px;
    text-align: center;
    display: table;
}
.features-block.theme-four .icon img {
    max-width: 90px;
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}
.features-block.theme-four h4 {
    font-size: 24px;
    margin:0 0 10px;
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}
.fontbg p{color:#111;}
.features-block.theme-five:last-child{
    margin:0;
}
.features-block.theme-five .inner-box{
    -webkit-transition:all 400ms ease-in-out;
    transition:all 400ms ease-in-out;
    padding:15px 0px;
    position:relative;
    overflow:hidden;
    cursor:pointer;
    display: flex;
}
.features-block.theme-five .inner-box:before{
    display:none;
}
.features-block.theme-five .inner-box > * {
    position: relative;
}
.features-block.theme-five .icon {
    margin:0px 30px 0px 0px;
    text-align: center;
    display: table;
}
.features-block.theme-five .icon img {
    max-width:68px;
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}
.features-block.theme-five h4 {
    font-size: 24px;
    margin:0 0 10px;
    -webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}


.dark-bg {
    background: #2E388F;
}
.gradient-heading-bg {
    position: relative;
}
.style-dark {
    color: #fff;
}
.style-dark a{
    /*color:var(--white-color);*/
    color:#fff;
}
.style-dark h1, .style-dark h2, .style-dark h3, .style-dark h4, .style-dark h5{
    /*color:var(--white-color) !important;*/
    color:#fff!important;
}

.gradient-heading-bg:before {
    background: url(/static/guanhou/css/images/half-circle-bg.png) no-repeat scroll bottom center;
    background-size: cover;
    content: "";
    height: 300px;
    width: 100%;
    position: absolute;
    top: 0;
}


.tab-wrapper.vertical-tab {
    display: flex;
    flex-wrap: wrap;
}
.tab-wrapper {
    margin: 0px;
}

.st-tab-btn{
    padding:0px 0px 0px;
    margin-bottom:15px;
}
.vertical-tab .st-tab-btn{
    flex:0 0 25%;
    width:100%;
    max-width:25%;
    padding:0px;
    margin:0;
}
.vertical-tab .st-tab-btn .nav-tabs{
    border-bottom:0px;
    display: block;
}
.vertical-tab .st-tab-btn .nav-tabs .nav-item{
    display:block;
    padding:0;
    margin:0;
}
.st-tab-content{
    padding:30px 0px 0px;
}
.vertical-tab .st-tab-content{
    flex:0 0 75%;
    width:100%;
    max-width:75%;
    padding:0px 0px 0px 50px;
    border-left:3px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.st-tab-btn .nav-tabs .nav-item{
    border:0px;
    margin:0px 15px 0px 0px;
    padding:0px 0px;
}
.wms-h{margin-top:10px;}
.st-tab-btn .nav-tabs .nav-item:last-child{
    margin:0;
}
.st-tab-btn .nav-tabs .nav-item .nav-link, .st-tab-btn .nav-tabs .nav-link{
    border:0px;
    background:none;
    color:var(--heading-text-color);
    font-weight:700;
    font-family: 'Source Sans Pro', sans-serif;
    font-size:18px;
    padding:15px;
    position:relative;
}
.vertical-tab .st-tab-btn .nav-tabs .nav-item .nav-link, .st-tab-btn .nav-tabs .nav-link{
    padding:15px 0px;
}
.st-tab-btn .nav-tabs .nav-item .nav-link:after{
    content:"";
    height:3px;
    background:#2E388F;
    position:absolute;
    bottom:-3px;
    right:0;
    width:0;
    transition:all 0.5s ease-in-out;
}
.vertical-tab .st-tab-btn .nav-tabs .nav-item .nav-link::after{
    bottom:0px;
    height:0;
    width:3px;
    right:-3px;
}
.st-tab-btn .nav-tabs .nav-item.show .nav-link:after, .st-tab-btn .nav-tabs .nav-link.active:after{
    left:0;
    width:100%;
}
.vertical-tab .st-tab-btn .nav-tabs .nav-item.show .nav-link:after, .vertical-tab .st-tab-btn .nav-tabs .nav-link.active:after{
    top:0;
    height:100%;
    left:auto;
    width:3px;
}

.st-tab-btn .nav-tabs .nav-link.active {
    color: #2E388F;
}


.how-it-work-wrapper{
    display:flex;
    flex-wrap:wrap;
    width:100%;
}
.how-it-work-wrapper .item{
    text-align:center;
    padding:15px 30px 0px;
    margin: 0;
}
.how-it-work-wrapper.three-step .item{
    flex:0 0 33.3334%;
    max-width:33.3334%;
    width:100%;
}
.how-it-work-wrapper .step-number{
    height:120px;
    width:120px;
    line-height:120px;
    text-align:center;
    -webkit-border-radius:50%;
    border-radius:50%;
    margin:0px auto 15px;
    background:rgba(255,255,255,0.1);
    font-size:48px;
    font-weight:bold;
    font-family: 'Source Sans Pro', sans-serif;
    font-style:italic;
}
.how-it-work-wrapper .step-title{
    font-size:24px;
}
/* 效果 */
.production1-result {
}

.production1-result .top .title h2 {
	line-height: 1.75;
	font-weight: bold;
	text-align: center;
	font-size: 42px;
	color: #fff;
}

.production1-result .bottom-list {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	padding-top: 50px;
	justify-content: space-between;
}

.production1-result .item {
	width: calc(50% - 30px);
	background: #FFFFFF;
	border: 1px solid #EEEEEE;
	border-radius: 6px;

	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 50px;
	margin-bottom: 30px;
	transition: all .3s;
}

@media only screen and (max-width: 767px) {
	.production1-result .item {
		width: calc(100% - 15px);

	}
}

.production1-result .item .item-img {
	width: 56px;
	height: 56px;
}

.production1-result .item .item-img img {
	width: 100%;
	height: 100%;
}
.production1-result .item p {
	line-height: 28px;
	color: #666666;
	padding-left: 35px;
	font-size: 16px;
}

/*新增单页样式*/
.row-margin-t-20{
    margin-top: 20px;
}

.row-padding-tb-20{
    padding: 20px 10px;
}
.bg-blue {
	background-color: #182dde;
}
.bg-dark {
    background-color: #F8F8F8;
}
.font-white {
	color: #FFFFFF;
}
.font-size-20-bold {
    font-size: 20px;
    font-weight: bold;
}

.title-before-flag {
    position: relative;
    padding-left: 20px;
}
.title-before-flag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background: #182dde;
}<!--耗时1763813558.1248秒-->