html, body {
    margin: 0;
    padding: 0;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

a:hover {
    opacity: 0.9;
}

.FloatLeft {
    float: left;
}

.FloatRight {
    float: right;
}

.text-center {
    text-align: center;
}

.transition-delay {
    transition: 0.15s;
}

.radius {
    border-radius: 4px;
}

.row:after,
.clearFix:after {
    content: "";
    display: block;
    clear: both;
}

.widthMAX {
    width: 100%;
    min-width: 1180px;
}

.content-width {
    width: 1200px;
    margin: 0 auto;
}

.article-width {
    max-width: 800px;
    margin: 0 auto;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    float: left;
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.6%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.3%;
}

.col-5 {
    width: 41.6%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.6%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

.bg-grey {
    background: #666;
}

.bg-light-grey {
    background: #999;
}

.bg-light {
    background: #eee;
}

.bg-red {
    background: #d82626;
}

.bg-orange {
    background: #d19a10;
}

.bg-light-yellow {
    background: #fffdf8;
}

.bg-blue {
    background: #0093dd;
}

.bg-light-blue {
    background: #f5fbff;
}

.bg-green {
    background: #8baf41;
}

.bg-cyan {
    background: #38b89f;
}

.bg-gradient-red {
    background: -webkit-linear-gradient(left, #fe6c6c, #fe4343);
    background: -moz-linear-gradient(left, #fe6c6c, #fe4343);
    background: -ms-linear-gradient(left, #fe6c6c, #fe4343);
    background: -o-linear-gradient(left, #fe6c6c, #fe4343);
}

.bg-gradient-yellow {
    background: -webkit-linear-gradient(left, #ffd468, #ffbf1d);
    background: -moz-linear-gradient(left, #ffd468, #ffbf1d);
    background: -ms-linear-gradient(left, #ffd468, #ffbf1d);
    background: -o-linear-gradient(left, #ffd468, #ffbf1d);
}

.bg-gradient-blue {
    background: -webkit-linear-gradient(left, #2588e2, #076cc9);
    background: -moz-linear-gradient(left, #2588e2, #076cc9);
    background: -ms-linear-gradient(left, #2588e2, #076cc9);
    background: -o-linear-gradient(left, #2588e2, #076cc9);
}

.bg-gradient-green {
    background: -webkit-linear-gradient(left, #c6f95c, #a0dc23);
    background: -moz-linear-gradient(left, #c6f95c, #a0dc23);
    background: -ms-linear-gradient(left, #c6f95c, #a0dc23);
    background: -o-linear-gradient(left, #c6f95c, #a0dc23);
}

.bg-gradient-cyan {
    background: -webkit-linear-gradient(left, #6eecd3, #20d3b0);
    background: -moz-linear-gradient(left, #6eecd3, #20d3b0);
    background: -ms-linear-gradient(left, #6eecd3, #20d3b0);
    background: -o-linear-gradient(left, #6eecd3, #20d3b0);
}

.font-normal {
    font-weight: normal;
}

.font-weight {
    font-weight: bold;
}

.font-red {
    color: #ff1c1c;
}

.font-light-red {
    color: #ff7e7b;
}

.font-blue {
    color: #0093dd;
}

.font-white {
    color: #fff;
}

.font-black {
    color: #333;
}

.font-grey {
    color: #666;
}

.font-light-grey {
    color: #999;
}

.icon {
    display: inline-block;
    vertical-align: middle;
}

.icon-radius {
    border-radius: 50%;
}

.icon-info {
    width: 16px;
    height: 16px;
    background: url("../images/icon/icon-info.png") center no-repeat;
    background-size: 100% auto;
}

/* 步骤组件 */
.component-step {
    display: flex;
}

.component-step .item-step {
    flex: 2;
    padding-top: 30px;
}

.component-step .item-step.active {
    flex: 3;
    padding-top: 0;
}

.component-step .item-step .icon {
    width: 50px;
    height: 50px;
    font-size: 25px;
    line-height: 50px;
}

.component-step .item-step.active .icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
    line-height: 80px;
}

.component-step .item-step.active .text {
    font-size: 36px;
    margin: 15px;
}

/* 按钮组件 */
.component-btn {

}

.component-btn.btn-normal {
    display: inline-block;
    padding: 10px 15px;
    border: none;
}

.component-btn.btn-small {
    display: inline-block;
    width: 150px;
    padding: 10px 0;
    text-align: center;
}

.component-btn.btn-large {
    display: inline-block;
    width: 300px;
    padding: 10px 0;
    border: none;
    text-align: center;
}

.component-btn.btn-block {
    display: block;
    width: 100%;
    margin: 10px auto;
    padding: 15px 30px;
    border: none;

}

/* 导航组件 */
.component-guide .item-guide-control {
    display: block;
}

.component-guide .item-guide-control .btn {
    display: block;
    width: 280px;
    text-align: center;
    margin-top: 26px;
    padding: 15px 0;
    font-size: 20px;
    border-radius: 10px;
    background: #fff;
    color: #666;
    box-shadow: 0 18px 121px rgba(0, 0, 0, 0.1);
}

.component-guide .item-guide-control:hover .btn {
    color: #2588e2;
}

.component-guide .item-guide-control.active .btn {
    background: -webkit-linear-gradient(left, #2588e2, #076cc9);
    background: -moz-linear-gradient(left, #2588e2, #076cc9);
    background: -ms-linear-gradient(left, #2588e2, #076cc9);
    background: -o-linear-gradient(left, #2588e2, #076cc9);
    color: #fff;
}

/* 文章组件 */
.component-article {
    padding: 94px 0;
}

.component-article .title {
    font-size: 20px;
    color: #333;
}

.component-article .p {
    font-size: 16px;
    line-height: 170%;
    color: #666;
}

.component-article .image {
    max-width: 100%;
}

.component-article .container-image .image {
    display: block;
    margin: 0 auto;
}

/* 博客组件 */
.component-blog {

}

/* 选项卡组件 */
.component-tab {
    margin-top: 60px;
}

.component-tab .list-tab-control {
    border-radius: 40px;
    border: 1px solid #d3d3d3;
    font-size: 0;
}

.component-tab .item-tab-control {
    display: inline-block;
    width: 33.3%;
    font-size: 18px;
    text-align: center;
}

.component-tab .item-tab-control .btn {
    display: block;
    padding: 22px 0;
    border-radius: 44px;
    color: #666;
}

.component-tab .item-tab-control .btn:hover {
    color: #2588e2;
}

.component-tab .item-tab-control.active .btn {
    background: -webkit-linear-gradient(left, #2588e2, #076cc9);
    background: -moz-linear-gradient(left, #2588e2, #076cc9);
    background: -ms-linear-gradient(left, #2588e2, #076cc9);
    background: -o-linear-gradient(left, #2588e2, #076cc9);
    color: #fff;
}

.component-tab .list-tab-content {
    margin-top: 120px;
}

/* 表格组件 */
.component-table {
    width: 100%;
    border: 1px solid #d6ecff;
    border-collapse: collapse;
}

.component-table th,
.component-table .th {
    font-weight: bold;
    background: #dff0ff;
}

.component-table th td,
.component-table .th td {
    color: #449ef1;
}

.component-table td {
    padding: 10px;
    color: #666;
}

/* 表单 */
.component-form {
    padding: 30px 60px;
}

.component-form .form-row {
    padding: 10px 15px;
}

.component-form .form-row .label,
.component-form .form-row .container-input {
    display: inline-block;
    vertical-align: top;
    font-size: 20px;
}

.component-form .input,
.component-form .textarea,
.component-form .select {
    font-size: 18px;
}


.component-form .form-row .label {
    width: 120px;
    text-align: right;
}

.component-input {
    border-bottom: 1px solid #ddd;
}

.component-input .input {
    display: inline-block;
    border: none;
    outline: none;
    background: none;
}

.component-textarea .textarea {
    outline: none;
    background: none;
    border: 1px solid #ddd;
}

.component-textarea .textarea:focus {
    background: #fff;
}

.component-select .select {
    border-color: #eee;
    background: none;
    outline: none;
}

.component-form .label,
.component-form .textarea,
.component-form .select,
.component-form .input {
    padding: 10px;
}

.component-form .control {
    padding: 30px 0;
}

/* 顶部栏 */
.header {
    position: relative;
}

.TopBg {
    padding: 15px 0;
    background: #5d6061;
}

.TopBg .fast-entry .item .link {
    padding: 8px 15px;
}

.TopBg .fast-entry.right .item .link {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.TopBg .FloatLeft a:hover {
    text-decoration: underline;
}

.TopBg .FloatRight a, .TopBg .FloatRight a:link, .TopBg .FloatRight a:visited {
    color: #f3f3f3;
}

.TopBg .FloatRight a:hover {
    text-decoration: underline;
}

/* 导航栏 */

.navigation {
    padding-top: 60px;
}

.navigation .TopRight {
    width: 1000px;
    overflow: hidden;
}


.navigation .MenuBg {
    height: 36px;
}

.navigation ul.Menu {
    display: block;
    margin: 0 40px;
}

.navigation ul.Menu > li {
    float: left;
    font-size: 16px;
}

.navigation .Menu .item .link {
    position: relative;
    display: block;
    margin: 14px 15px;
    padding: 15px 0;
    border-bottom: 4px solid transparent;
}

.navigation .Menu > .item .link:hover,
.navigation .Menu > .item.active .link {
    border-color: #09669d;
}

.navigation ul.Menu > li > a:link, ul.Menu > li > a:visited {
    color: #5d6061;
}

.navigation ul.Menu > li:hover > a {
    color: #1570a6;
}

.navigation .MenuBg .FloatRight {
    margin: 30px 0 0;
}

.navigation .MenuBg .FloatRight img {
    width: 18px;
    margin-right: 3px;
    vertical-align: middle;
}

.navigation .MenuBg .FloatRight a {
    vertical-align: middle;
}

.navigation .MenuBg .FloatRight a:hover {
    text-decoration: underline;
}

.simple-header {
    background: #5d6061;
}

.simple-header .logo .img {
    display: inline-block;
    margin: 10px auto;
    width: 120px;
}

/* 面包屑 */
.bread-crumb {
    padding: 12px 0;
    background: #e5e5e5;
}

.bread-crumb .item {
    display: inline-block;
}

.bread-crumb .text,
.bread-crumb .link {
    font-size: 14px;
    color: #5d6061;
}

/* 底部栏 */
.footer {
    margin-top: 100px;
    padding: 100px 0;
    font-size: 0;
    background: #f3f3f3;
}

.footer .text,
.footer .link {
    color: #999;
}

.footer .container-image,
.footer .container-text {
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
}

.footer .container-image {
    width: 50%;
}

.footer .container-image .img {
    margin-right: 27px;
}

.footer .container-text {
    width: 50%;
}

.footer .container-text .text {
    margin: 0;
    line-height: 150%;
}

.footer .container-text .link {
    display: block;
    margin-bottom: 3px;
}

.footer .wrapper-2 {
    width: 50%;
    margin-left: 50%;
    text-align: left;
}

/* 产品 */
.product-list-tab-control {
    width: 650px;
    margin: 0 auto;
}

/*  代理 */
.agent-list-tab-control {
    margin: 0 auto;
    width: 880px;
}

.agent-list-tab-control .item-tab-control {
    width: 25%;
}