@charset "utf-8";
@import url('font-awesome.css');
@import url('bootstrap.css');
@import url('ionicons.min.css');

:root {
    --btn-color: #6408a3;
    --btn-hover-color: #ffffff;
    --green-color: #6408a3;
    --yellow-color: #007aff;
    --blue-color: #007aff;
    --white-color: #ffffff;
    --grey-color: #333;

}

.scrolltopcontrol {
    width: 54px;
    height: 54px;
    background-color: var(--yellow-color);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 8px 0 var(--yellow-color);
    box-shadow: 0 0 8px 0 var(--yellow-color);
    transition: .5s all ease;
}

.scrolltopcontrol:hover {
    width: 54px;
    height: 54px;
    background-color: var(--green-color);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 8px 0 var(--blue-color);
    box-shadow: 0 0 8px 0 var(--green-color);
}

.scrolltopcontrol:before {
    content: "\f077";
    font-family: 'FontAwesome';
    cursor: pointer;
    color: #fff;
    display: block;
    text-align: center;
    padding-top: 18px;
}

.ulist {
    padding: 0 0 10px 19px;
    margin: 0 0 0 15px;
}

.ulist li {
    list-style: disc;
    line-height: 32px;
    text-align: left;
}

a:hover {
    transition: color .3s;
}

a {
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Proxima Nova Rg";
    background-position: top center;
    background-repeat: no-repeat;
    font-weight: normal;
    font-size: 16px;
    -webkit-text-size-adjust: none;
    color: #333;
}

.clear {
    clear: both;
}


/*banner-css*/
.banner {
    position: relative;
    width: 100%;
    height: 35vw;
    background-color: #e6e6e6;
    overflow: hidden;
}

.banner ul.flicks {
    width: 10000%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.banner ul.flicks > li {
    float: left;
    width: 1%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: table;
}
.banner ul.flicks > li.banner1{
	background-image: url(../images/banner-1.jpg?v=526);
	background-image: -webkit-image-set(url("../images/banner-1.webp") 1x);
    background-image: image-set(url("../images/banner-1.jpg") 1x);
}
.banner ul.flicks > li.banner2{
	background-image: url(../images/banner-2.jpg?v=526);
	background-image: -webkit-image-set(url("../images/banner-2.webp") 1x);
    background-image: image-set(url("../images/banner-2.jpg") 1x);
}

.banner ul.flicks > li .flick-inner {
    height: 100%;
    color: #fff;
    display: table-cell;
    vertical-align: middle;
}

.banner ul.flicks > li .flick-inner .flick-content p{
	    text-shadow: 1px 1px 2px #000;
}
.btn {
    background: #619fcc;
    color: #fff;
    display: inline-block;
    border: 2px solid transparent;
    text-align: center;
    height: 50px;
    line-height: 45px;
    width: 120px;
    z-index: 0;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    font-size: 16px;
    padding-bottom: 5px;
    cursor: pointer;
}

.btn::after {
    width: 0;
    height: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.btn:hover::after {
    background: var(--btn-hover-color);
    width: 100%;
    opacity: 1;
}

.btn:hover {
    color: #000;;
    border-color: #6408a3;

}

.banner .arrow-navigation {
    position: absolute;
    height: 80%;
    width: 5%;
    top: 10%;
    z-index: 100;
    overflow: hidden;
}

.banner .arrow-navigation .arrow {
    display: block;
    height: 100%;
    width: 100%;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.banner .arrow-navigation:hover, .banner .arrow-navigation .arrow:hover {
    cursor: pointer;
}

.banner .arrow-navigation.left {
    left: 0%;
}

.banner .arrow-navigation.left .arrow {
    opacity: 0;
    margin: 0px 0px 0px 50%;
    background-image: url("../images/arrow-left-light.png");
    background-repeat: no-repeat;
    background-position: left;
}

.banner .arrow-navigation.right {
    right: 0%
}

.banner .arrow-navigation.right .arrow {
    opacity: 0;
    margin: 0px 0px 0px -50%;
    background-image: url("../images/arrow-right-light.png");
    background-repeat: no-repeat;
    background-position: right
}

.banner .arrow-navigation.left.hover .arrow {
    opacity: 1;
    margin: 0px 0px 0px 0px;
}

.banner .arrow-navigation.right.hover .arrow {
    opacity: 1;
    margin: 0px 0px 0px 0px;
}

.banner .dot-navigation {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 100;
}

.banner .dot-navigation ul {
    text-align: center;
    list-style: none;
    padding: 0px 15px;
}

.banner .dot-navigation ul li {
    display: inline-block;
    float: none
}

.banner .dot-navigation .dot {
    width: 14px;
    height: 14px;
    margin: 0px 6px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -webkit-transition: background-color 0.2s ease-out;
    -moz-transition: background-color 0.2s ease-out;
    -o-transition: background-color 0.2s ease-out;
    -ms-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out
}

.banner .dot-navigation .dot:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.5);
}

.banner .dot-navigation .dot.active {
    /*background-color:#f97425;*/
    background-color: rgba(255, 255, 163, 0.9);
    width: 25px;
    height: 14px;
    border-radius: 20px;
}

.banner.animate-transform-slide ul.flicks {
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0%, 0px, 0px);
    -webkit-transform: translate3d(0%, 0px, 0px);
    -webkit-transition: -webkit-transform 0.6s;
    -o-transition: -o-transform 0.6s;
    -moz-transition: -moz-transform 0.6s;
    transition: transform 0.6s
}

.banner.animate-transition-slide ul.flicks {
    position: relative;
    left: 0%;
    -webkit-transition: left 0.4s ease-out;
    -moz-transition: left 0.4s ease-out;
    -o-transition: left 0.4s ease-out;
    -ms-transition: left 0.4s ease-out;
    transition: left 0.4s ease-out
}

@media (min-width: 1280px) {
    .banner ul.flicks > li .flick-inner .flick-content h2,.banner ul.flicks > li .flick-inner .flick-content .banner-title {
        color: #fff;
        font-size: 3.5rem;
        margin: 30px auto 0 auto;
        font-weight: 900;
        padding: 0;
        text-align: left;
        line-height: 80px;
        width: 100%;
        float: left;
        font-weight: bold;
    }
    .banner ul.flicks > li .flick-inner .flick-content h1 {
        color: #fff;
        font-size: 3.5rem;
        margin: 30px auto 0 auto;
        font-weight: 900;
        padding: 0;
        text-align: left;
        line-height: 80px;
        width: 100%;
        float: left;
    }

    .banner ul.flicks > li .flick-inner .flick-content p {
        color: #fff;;
        font-size: 18px;
        margin: 20px auto;
        text-align: left;
        line-height: 28px;
        width: 100%;
        float: left;
    }

    .banner ul.flicks > li .flick-inner .flick-content p span {
        color: #fff;;
        font-size: 18px;
        margin: 2px auto;
        text-align: left;
        width: 35%;
        display: inline-block;
    }

    .banner ul.flicks > li .flick-inner .flick-content p span a {
        color: #fff;
    }

    .banner ul.flicks > li .flick-inner .flick-content p span a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .banner ul.flicks > li .flick-inner .flick-content {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        height: auto;
        overflow: hidden;

    }
}

@media (min-width: 1024px) and (max-width: 1280px) {

    .banner {
        top: 0;
        height: 600px;
    }

    .banner ul.flicks > li .flick-inner .flick-content h2,.banner ul.flicks > li .flick-inner .flick-content .banner-title {
        color: #fff;
        font-size: 2rem;
        margin: 30px auto 0 auto;
        font-weight: 900;
        padding: 20px 0;
        text-align: left;
        line-height: 40px;
    }
    .banner ul.flicks > li .flick-inner .flick-content h1 {
        color: #fff;
        font-size: 2rem;
        margin: 30px auto 0 auto;
        font-weight: 900;
        padding: 20px 0;
        text-align: left;
        line-height: 40px;
    }

    .banner ul.flicks > li .flick-inner .flick-content p {
        color: #fff;;
        font-size: 18px;
        margin: 10px auto;
        text-align: left;
    }

    .banner ul.flicks > li .flick-inner .flick-content p span {
        color: #fff;;
        font-size: 18px;
        margin: 2px auto;
        text-align: left;
        width: 35%;
        display: inline-block;
    }

    .banner ul.flicks > li .flick-inner .flick-content p span a {
        color: #fff;
    }

    .banner ul.flicks > li .flick-inner .flick-content p span a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .banner ul.flicks > li .flick-inner .flick-content {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;

    }
}

@media (max-width: 1023px) {
    .banner {
        top: 0;
        height: 500px;
    }

    .banner ul.flicks > li .flick-inner .flick-content h2,.banner ul.flicks > li .flick-inner .flick-content .banner-title {
        color: #fff;
        font-size: 1.5rem;
        margin: 30px auto 0 auto;
        font-weight: 900;
        text-align: left;
        line-height: 30px;
    }
    .banner ul.flicks > li .flick-inner .flick-content h1 {
        color: #fff;
        font-size: 1.5rem;
        margin: 30px auto 0 auto;
        font-weight: 900;
        text-align: left;
        line-height: 30px;
    }

    .banner ul.flicks > li .flick-inner .flick-content p {
        color: #fff;;
        font-size: 1.2rem;
        margin: 10px auto;
        text-align: left;
        line-height: 28px;
    }

    .banner ul.flicks > li .flick-inner .flick-content p span {
        color: #fff;;
        font-size: 18px;
        margin: 2px auto;
        text-align: left;
        width: 100%;
        display: inline-block;
    }

    .banner ul.flicks > li .flick-inner .flick-content p span a {
        color: #fff;
    }

    .banner ul.flicks > li .flick-inner .flick-content p span a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .banner ul.flicks > li .flick-inner .flick-content {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;

    }
}

/*menu 2 css*/
.menu-mobile {
    display: none;
    padding: 20px;
    color: #fff;
    text-decoration: none;
    text-align: left;
}

.navi-menu-4 {
    display: none;
}

.navi-menu-4 li {
    list-style: disc;
}

.menu {
    width: 100%;
    text-align: center;
}

.menu-mobile:after {
    content: "\f0c9";
    font-family: "FontAwesome";
    font-size: 1.4rem;
    padding: 0;
    float: right;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
    color: #fff;
}

.menu-dropdown-icon:before {
    content: "\f0dd";
    font-family: "FontAwesome";
    cursor: pointer;
    float: right;
    padding: 18px 10px 0 0;
    color: #333;
    display: block;
    font-size: 14px;

}

.navi-submenu:before {
    content: "\f0dd";
    font-family: "FontAwesome";
    cursor: pointer;
    float: right;
    color: #444;
    display: block;
    padding: 0em 0px 0 0;
}


.menu > ul {
    margin: 0 auto;
    list-style: none;
    padding: 0;
    position: relative;
    box-sizing: border-box;

}


.menu > ul > li {
    padding: 0;
    margin: 0;
    display: inline-block;
    font-size: 18px;
    text-align: left;
    margin-top: 25px;

}

.menu > ul > li a {
    text-decoration: none;
    padding: 1em 1em 1em 1em;
    color: #333;
    display: inline-block;
    position: relative;
}

.menu > ul > li:hover {
    /* background: #3b5998;*/
}

.menu > ul > li > ul {
    display: none;
    width: 100%;
    background: #fff;
    padding: 20px 30px;
    position: absolute;
    z-index: 9999;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 5px 5px;
    height: auto;
    overflow: hidden;
}

.menu > ul > li > ul > li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    width: 33%;
    display: inline-block;
    padding-right: 25px;
}

.menu > ul > li > ul > li a {

    padding: .4em 0 .4em 0;
    width: 95%;
    border-bottom: 1px solid #ccc;
    color: #6408a3;
    font-size: 16px;
    max-width: calc(100% - 15px);
    display: inline-block;
}

.menu > ul > li > ul > li a span {
    float: right;
    text-align: right;
}

.menu > ul > li > ul > li > ul {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    font-weight: normal;
    overflow: auto;
    float: left;
    max-height: 400px;
    margin-bottom: 20px
}
.menu > ul > li > ul > li > ul::-webkit-scrollbar {
    width: 4px;     
}
.menu > ul > li > ul > li > ul::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #6408A3;
    width: 4px;     
}
.menu > ul > li > ul > li > ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px #1e1e1e;
    border-radius: 10px;
    background: #fff;
}

.menu > ul > li > ul > li > ul > li {
    float: left;
    width: 100%;
    margin: 0;
    font-size: 18px;
    font-weight: normal;
    padding-right: 15px;
}

.menu > ul > li > ul > li > ul > li a {
    border: 0;
    color: #444;
    width: auto;
}

.menu > ul > li > ul > li > ul > li a:hover {
    border: 0;
    color: #3c4a83;
}

.menu > ul > li > ul.normal-sub {
    width: 260px;
    left: auto;
    padding: 5px 0 5px 20px;
    font-size: 16px;

}

.menu > ul > li > ul.normal-sub > li {
    width: 100%;
}

.menu > ul > li > ul.normal-sub > li a {
    border: 0;
    padding: 0.5em 0;
    font-weight: normal;
    color: #444;
}

.menu > ul > li > ul.normal-sub > li a:hover {
    color: #3c4a83;
}

.top-header-left{
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.top-header-left p{
	line-height: 20px;
	margin: 0px 0px;
}


/* Mobile style's */

@media only screen and (max-width: 1100px) {
	.menu > ul > li > ul > li{
		float: left;
	}
}

@media only screen and (max-width: 1024px) {
    .menu {
        width: 100%;
        text-align: left;
        position: absolute;
        background: #444444;
        z-index: 999999;
        left: 0px;
    }

    .menu-container {
        width: 100%;
    }

    .menu-mobile {
        display: block;
    }

    .menu-dropdown-icon:before {
        display: block;
        padding: 1.2em 2em;
        color: #fff;

    }

    .menu > ul {
        display: none;
        padding: 0;
        background-color: #585858;
    }

    .menu > ul > li {
        width: 100%;
        float: none;
        display: block;
    }

    .menu > ul > li a {
        padding: 1em;
        color: #fff;
    }

    .menu > ul > li > ul {
        position: relative;
            max-height: 90vh;
    overflow: auto;
    }

    .menu > ul > li > ul.normal-sub {
        width: 100%;
    }

    .menu > ul > li > ul > li {
        float: none;
        width: 100%;
        margin-top: 10px;
    }

    .menu > ul > li > ul > li:first-child {
        margin: 0;
    }

    .menu > ul > li > ul > li > ul {
        position: relative;
        float: none;
        overflow: inherit;
        max-height: none;
    }

    .menu > ul > li > ul > li > ul > li {
        float: none;
    }

    .menu .show-on-mobile {
        display: block;
        z-index: 999;
    }
}


/*** Table Css style ***/

.ollist {
    padding: 0 0 0 19px;
    margin: 0 0 10px 0;
}

.ollist li {
    list-style-type: decimal;
    padding: 5px 0;
}

.ollist li > ul > li {
    list-style-type: lower-latin
}

.reference {
    padding-bottom: 0;
    line-height: 20px !important;
    color: #888888 !important;
}

.ullist {
    padding: 0 0 0 19px;
    margin: 0 0 10px 0;
}

.ullist li {
    list-style: disc;
    line-height: 26px;
    font-size: 16px;
}

.ollist li {
    list-style-type: decimal
}

.ullist li > ul > li {
    list-style-type: circle
}

.ollist li > ul > li {
    list-style-type: lower-latin
}

.hollow-disc li {
    list-style-type: circle !important;
}

.ullist li a {
    color: var(--green-color);
    text-decoration: none;
}

.ullist li a:hover {
    color: #f84949;
}

.reference {
    padding-bottom: 0;
    color: #888888 !important;
}

/*table {*/
/*    border-collapse: collapse;*/
/*    margin: 0;*/
/*    width: 100%;*/
/*    border: 1px solid #ddd;*/
/*}*/

/*table tr,*/
/*table th,*/
/*table td {*/
/*    border: none;*/
/*    border-bottom: 0 solid #ddd;*/
/*    font-size: 1rem;*/
/*}*/

/*table th,*/
/*table td {*/
/*    padding: 12px;*/
/*    text-align: left;*/
/*    line-height: 26px;*/
/*}*/

/*table th {*/
/*    background: var(--green-color);*/
/*    color: #fff;*/
/*    text-transform: uppercase;*/
/*    border-bottom: 1px solid #ddd;*/
/*}*/

/*table tr td {*/
/*    background: #f0f7fa;*/
/*    color: #333;*/
/*    border-bottom: 1px solid #ddd;*/
/*}*/

/*table tr td img {*/
/*    padding-right: 5px;*/
/*    vertical-align: middle;*/
/*}*/

/*table tr td a {*/
/*    color: #3c4a83;*/
/*    text-decoration: none;*/
/*    vertical-align: middle;*/
/*}*/

/*table tr:nth-of-type(2n+2) td {*/
/*    background: #fff;*/
/*}*/
.service-table tr:first-child,
.service-table tr:first-child td{
    background: #6408A3;
    color: #fff;
}
table.bt tfoot th,
table.bt tfoot td,
table.bt tbody td {
    font-size: 1rem;
    padding: 0;
}

table.bt tfoot th:before,
table.bt tfoot td:before,
table.bt tbody td:before {
    padding: 10px;
}

table.bt tfoot th .bt-content,
table.bt tfoot td .bt-content,
table.bt tbody td .bt-content {
    display: inline-block;
    padding: 2px 5px;
}

table.bt tfoot th:first-of-type:before,
table.bt tfoot th:first-of-type .bt-content,
table.bt tfoot td:first-of-type:before,
table.bt tfoot td:first-of-type .bt-content,
table.bt tbody td:first-of-type:before,
table.bt tbody td:first-of-type .bt-content {
    padding-top: 10px;
}

table.bt tfoot th:last-of-type:before,
table.bt tfoot th:last-of-type .bt-content,
table.bt tfoot td:last-of-type:before,
table.bt tfoot td:last-of-type .bt-content,
table.bt tbody td:last-of-type:before,
table.bt tbody td:last-of-type .bt-content {
    padding-bottom: 10px;
}


table.bt thead,
table.bt tbody th {
    display: none;
}

table.bt tfoot th,
table.bt tfoot td,
table.bt tbody td {
    border: none;
    display: block;
    vertical-align: top;
}

table.bt tfoot th:before,
table.bt tfoot td:before,
table.bt tbody td:before {
    content: attr(data-th) ": ";
    font-weight: bold;
    width: 30%;
    display: inline-block;
}

table.bt tfoot th.bt-hide,
table.bt tfoot td.bt-hide,
table.bt tbody td.bt-hide {
    display: none;
}

table.bt tfoot th .bt-content,
table.bt tfoot td .bt-content,
table.bt tbody td .bt-content {
    vertical-align: top;
    width: 55%;
    display: inline-block;
    padding-top: 10px;
}


.table_COA .tab-nav {
    background: #fff;
    width: 100%;
    height: 48px;
    border-bottom: 0;
    margin-top: 30px;
}

.table_COA .tab-nav a {
    text-align: left;
    text-decoration: none;
    height: 48px;
    color: #fff;
    background-color: #666;
    margin-right: 10px;
    padding: 15px 20px;
    float: left;
    border-radius: 5px 5px 0 0;
}

.table_COA .tab-nav a.current {
    color: #fff;
    background: var(--green-color);
    border: 0;
}

.table_COA .tab-con {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    margin-bottom: 30px;
    padding: 20px;
}

.table_COA .tab-con-item {
    display: none;
    width: 100%;
    text-align: left;
}

.table_COA .tab-con-item p {
    margin: 0;
    display: block;
}

.pagelist {
    text-align: left;
    margin-top: 20px;
    padding-left: 5px;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 5px 0;
}

.pagination > li > a, .pagination > li > span {
    margin-right: 10px;
    border-radius: 6px;
    background: none;
    border: 1px solid #00b965;
}

.pagination > li > a:hover, .pagination > li > span:hover {
    border: 1px solid #00b965;
    background: #00b965;
    color: #fff;
}

.pagination > li:first-child > a, .pagination > li:first-child > span, .pagination > li:last-child > a, .pagination > li:last-child > span {
    border-radius: 5px;
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 4px 10px;
    line-height: 1.428571429;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
}

.pagination > li {
    display: inline-block;
    list-style-type: none;
}

.pdf {
    position: relative;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.pdf li {
    position: relative;
    font-weight: 400;
    color: var(--green-color);
}

.pdf li a {
    color: var(--green-color);
    text-decoration: none;
    font-size: 18px;
}

.pdf li a:hover {
    color: var(--yellow-color);
}

.pdf li .icon {
    padding-right: 10px;
}

.successinfo {
    line-height: 22px;
    color: #888888;
    padding-right: 20px;
    padding-bottom: 20px;
}

.successinfo .iconarea {
}

.successinfo .iconarea .iconunit {
    text-align: center;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: #6408a3;
    color: #ffffff;
    line-height: 40px;
    font-weight: bolder;
    font-size: 22px;
    position: relative;
    z-index: 9;
}

.successinfo .tit {
    font-size: 20px;
    font-weight: bold;
    color: #6408a3;
    display: block;
}

.successinfo .iconarea .iconunit img {
    top: 10px;
    left: 5px;
    position: absolute;
    z-index: 10;
}

.ServiceShowPic {
    font-size: 0.95em !important;
    text-align: center;
    line-height: 1.5em;
    color: #666666;
}
.ServiceShowPic img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto auto 10px auto;
}

.ullist {
    /*margin-left: 17px;*/
}
.ullist li {
    list-style: disc;
}

.ollist {
    /*margin-left: 17px;*/
}
.ollist li {
    list-style: decimal;
}

.ullist-circle{
    /*margin-left: 17px;*/
}
.ullist-circle li {
    list-style: circle;
}
