/* 创客源码（22vd.com）做最好的织梦整站模板下载网站 */
@charset "utf-8";

/* CSS Document */



/* !- Animate on scroll*/



/* Scale Up animation */

@-webkit-keyframes mk_scale {
 0% {
 -webkit-transform: scale(0.3);
 opacity: 0.1;
}
 100% {
 -webkit-transform: scale(1);
 opacity: 1;
}
}
 @-moz-keyframes mk_scale {
 0% {
 -moz-transform: scale(0.3);
 opacity: 0.1;
}
 100% {
 -moz-transform: scale(1);
 opacity: 1;
}
}
 @-o-keyframes mk_scale {
 0% {
 -o-transform: scale(0.3);
 opacity: 0.1;
}
 100% {
 -o-transform: scale(1);
 opacity: 1;
}
}
 @keyframes mk_scale {
 0% {
 transform: scale(0.3);
 opacity: 0.1;
}
 100% {
 transform: scale(1);
 opacity: 1;
}
}





/* Fade In animation */

@-webkit-keyframes mk_fade {
 0% {
 opacity: 0.1;
}
 100% {
 opacity: 1;
}
}
 @-moz-keyframes mk_fade {
 0% {
 opacity: 0.1;
}
 100% {
 opacity: 1;
}
}
 @-o-keyframes mk_fade {
 0% {
 opacity: 0.1;
}
 100% {
 opacity: 1;
}
}
 @keyframes mk_fade {
 0% {
 opacity: 0.1;
}
 100% {
 opacity: 1;
}
}



/* Left to Right animation */

@-webkit-keyframes mk_left_to_right {
 0% {
 -webkit-transform: translate(-20px, 0);
 opacity: 0;
}
 100% {
 -webkit-transform: translate(0, 0);
 opacity: 1;
}
}
 @-moz-keyframes mk_left_to_right {
 0% {
 -moz-transform: translate(-20px, 0);
 opacity: 0;
}
 100% {
 -moz-transform: translate(0, 0);
 opacity: 1;
}
}
 @-o-keyframes mk_left_to_right {
 0% {
 -o-transform: translate(-20px, 0);
 opacity: 0;
}
 100% {
 -o-transform: translate(0, 0);
 opacity: 1;
}
}
 @keyframes mk_left_to_right {
 0% {
 transform: translate(-20px, 0);
 opacity: 0;
}
 100% {
 transform: translate(0, 0);
 opacity: 1;
}
}



/* Right To Left animation */

@-webkit-keyframes mk_right_to_left {
 0% {
 -webkit-transform: translate(20px, 0);
 opacity: 0;
}
 100% {
 -webkit-transform: translate(0, 0);
 opacity: 1;
}
}
 @-moz-keyframes mk_right_to_left {
 0% {
 -moz-transform: translate(20px, 0);
 opacity: 0;
}
 100% {
 -moz-transform: translate(0, 0);
 opacity: 1;
}
}
 @-o-keyframes mk_right_to_left {
 0% {
 -o-transform: translate(20px, 0);
 opacity: 0;
}
 100% {
 -o-transform: translate(0, 0);
 opacity: 1;
}
}
 @keyframes mk_right_to_left {
 0% {
 transform: translate(20px, 0);
 opacity: 0;
}
 100% {
 transform: translate(0, 0);
 opacity: 1;
}
}



/* Bottom to Top animation */

@-webkit-keyframes mk_bottom_to_top {
 0% {
 -webkit-transform: translate(0, 20px);
 opacity: 0;
}
 100% {
 -webkit-transform: translate(0, 0);
 opacity: 1;
}
}
 @-moz-keyframes mk_bottom_to_top {
 0% {
 -moz-transform: translate(0, 20px);
 opacity: 0;
}
 100% {
 -moz-transform: translate(0, 0);
 opacity: 1;
}
}
 @-o-keyframes mk_bottom_to_top {
 0% {
 -o-transform: translate(0, 20px);
 opacity: 0;
}
 100% {
 -o-transform: translate(0, 0);
 opacity: 1;
}
}
 @keyframes mk_bottom_to_top {
 0% {
 transform: translate(0, 20px);
 opacity: 0;
}
 100% {
 transform: translate(0, 0);
 opacity: 1;
}
}



/* Top to Bottom animation */

@-webkit-keyframes mk_top_to_bottom {
 0% {
 -webkit-transform: translate(0, -20px);
 opacity: 0;
}
 100% {
 -webkit-transform: translate(0, 0);
 opacity: 1;
}
}
 @-moz-keyframes mk_top_to_bottom {
 0% {
 -moz-transform: translate(0, -20px);
 opacity: 0;
}
 100% {
 -moz-transform: translate(0, 0);
 opacity: 1;
}
}
 @-o-keyframes mk_top_to_bottom {
 0% {
 -o-transform: translate(0, -20px);
 opacity: 0;
}
 100% {
 -o-transform: translate(0, 0);
 opacity: 1;
}
}
 @keyframes mk_top_to_bottom {
 0% {
 transform: translate(0, -20px);
 opacity: 0;
}
 100% {
 transform: translate(0, 0);
 opacity: 1;
}
}
/*------------ init ------------*/

.no-touch.cssanimations .anim_emt {
	visibility: hidden;
}
/*

.ios8 .anim_emt,

.no-touch .anim_emt {

    visibility: hidden;

}

.no-csstransitions .anim_emt,

.ie-mobile .anim_emt {

	visibility: visible;

}

*/





.anim_emt.start-animation.scale_up {
	-webkit-animation: mk_scale 0.5s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-moz-animation: mk_scale 0.5s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-o-animation: mk_scale 0.5s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95);
	animation: mk_scale 0.5s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95);
	visibility: visible;
}
.anim_emt.start-animation.fade_in {
	-webkit-animation: mk_fade 0.7s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-moz-animation: mk_fade 0.7s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95);
	-o-animation: mk_fade 0.7s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95);
	animation: mk_fade 0.7s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95);
	visibility: visible;
}
.anim_emt.start-animation.r_to_l {
	-webkit-animation: mk_right_to_left 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	-moz-animation: mk_right_to_left 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	-o-animation: mk_right_to_left 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	animation: mk_right_to_left 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	visibility: visible;
}
.anim_emt.start-animation.l_to_r {
	-webkit-animation: mk_left_to_right 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	-moz-animation: mk_left_to_right 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	-o-animation: mk_left_to_right 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	animation: mk_left_to_right 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	visibility: visible;
}
.anim_emt.start-animation.t_to_b {
	-webkit-animation: mk_top_to_bottom 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	-moz-animation: mk_top_to_bottom 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	-o-animation: mk_top_to_bottom 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	animation: mk_top_to_bottom 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	visibility: visible;
}
.anim_emt.start-animation.b_to_t {
	-webkit-animation: mk_bottom_to_top 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	-moz-animation: mk_bottom_to_top 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	-o-animation: mk_bottom_to_top 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	animation: mk_bottom_to_top 0.6s 1 cubic-bezier(0.77, 0, 0.175, 1);
	visibility: visible;
}


/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2016-08-24 10:52:10
 * @version $Id$
 */
/***************************
   Text Inputs + Textarea
****************************/
::-webkit-input-placeholder {
    color: #d1d1d1;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #d1d1d1;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #d1d1d1;
}

:-ms-input-placeholder {
    color: #d1d1d1;
}

input:not([type]),
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=time],
input[type=date],
input[type=datetime-local],
input[type=tel],
input[type=number],
input[type=search],
textarea.materialize-textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    border-radius: 0;
    outline: none;
    height: 3rem;
    width: 100%;
    font-size: 14px;
    margin: 0 0 15px 0;
    padding: 0;
    box-shadow: none;
    box-sizing: content-box;
    transition: all .3s;
}

    input:not([type]):disabled, input:not([type])[readonly="readonly"],
    input[type=text]:disabled,
    input[type=text][readonly="readonly"],
    input[type=password]:disabled,
    input[type=password][readonly="readonly"],
    input[type=email]:disabled,
    input[type=email][readonly="readonly"],
    input[type=url]:disabled,
    input[type=url][readonly="readonly"],
    input[type=time]:disabled,
    input[type=time][readonly="readonly"],
    input[type=date]:disabled,
    input[type=date][readonly="readonly"],
    input[type=datetime-local]:disabled,
    input[type=datetime-local][readonly="readonly"],
    input[type=tel]:disabled,
    input[type=tel][readonly="readonly"],
    input[type=number]:disabled,
    input[type=number][readonly="readonly"],
    input[type=search]:disabled,
    input[type=search][readonly="readonly"],
    textarea.materialize-textarea:disabled,
    textarea.materialize-textarea[readonly="readonly"] {
        color: rgba(0, 0, 0, 0.26);
        border-bottom: 1px dotted rgba(0, 0, 0, 0.26);
    }

        input:not([type]):disabled + label, input:not([type])[readonly="readonly"] + label,
        input[type=text]:disabled + label,
        input[type=text][readonly="readonly"] + label,
        input[type=password]:disabled + label,
        input[type=password][readonly="readonly"] + label,
        input[type=email]:disabled + label,
        input[type=email][readonly="readonly"] + label,
        input[type=url]:disabled + label,
        input[type=url][readonly="readonly"] + label,
        input[type=time]:disabled + label,
        input[type=time][readonly="readonly"] + label,
        input[type=date]:disabled + label,
        input[type=date][readonly="readonly"] + label,
        input[type=datetime-local]:disabled + label,
        input[type=datetime-local][readonly="readonly"] + label,
        input[type=tel]:disabled + label,
        input[type=tel][readonly="readonly"] + label,
        input[type=number]:disabled + label,
        input[type=number][readonly="readonly"] + label,
        input[type=search]:disabled + label,
        input[type=search][readonly="readonly"] + label,
        textarea.materialize-textarea:disabled + label,
        textarea.materialize-textarea[readonly="readonly"] + label {
            color: rgba(0, 0, 0, 0.26);
        }

    input:not([type]):focus:not([readonly]),
    input[type=text]:focus:not([readonly]),
    input[type=password]:focus:not([readonly]),
    input[type=email]:focus:not([readonly]),
    input[type=url]:focus:not([readonly]),
    input[type=time]:focus:not([readonly]),
    input[type=date]:focus:not([readonly]),
    input[type=datetime-local]:focus:not([readonly]),
    input[type=tel]:focus:not([readonly]),
    input[type=number]:focus:not([readonly]),
    input[type=search]:focus:not([readonly]),
    textarea.materialize-textarea:focus:not([readonly]) {
        border-bottom: 1px solid #c8161e;
        box-shadow: 0 1px 0 0 #c8161e;
    }

        input:not([type]):focus:not([readonly]) + label,
        input[type=text]:focus:not([readonly]) + label,
        input[type=password]:focus:not([readonly]) + label,
        input[type=email]:focus:not([readonly]) + label,
        input[type=url]:focus:not([readonly]) + label,
        input[type=time]:focus:not([readonly]) + label,
        input[type=date]:focus:not([readonly]) + label,
        input[type=datetime-local]:focus:not([readonly]) + label,
        input[type=tel]:focus:not([readonly]) + label,
        input[type=number]:focus:not([readonly]) + label,
        input[type=search]:focus:not([readonly]) + label,
        textarea.materialize-textarea:focus:not([readonly]) + label {
            color: #c8161e;
        }

    input:not([type]).valid, input:not([type]):focus.valid,
    input[type=text].valid,
    input[type=text]:focus.valid,
    input[type=password].valid,
    input[type=password]:focus.valid,
    input[type=email].valid,
    input[type=email]:focus.valid,
    input[type=url].valid,
    input[type=url]:focus.valid,
    input[type=time].valid,
    input[type=time]:focus.valid,
    input[type=date].valid,
    input[type=date]:focus.valid,
    input[type=datetime-local].valid,
    input[type=datetime-local]:focus.valid,
    input[type=tel].valid,
    input[type=tel]:focus.valid,
    input[type=number].valid,
    input[type=number]:focus.valid,
    input[type=search].valid,
    input[type=search]:focus.valid,
    textarea.materialize-textarea.valid,
    textarea.materialize-textarea:focus.valid {
        border-bottom: 1px solid #4CAF50;
        box-shadow: 0 1px 0 0 #4CAF50;
    }

        input:not([type]).valid + label:after,
        input:not([type]):focus.valid + label:after,
        input[type=text].valid + label:after,
        input[type=text]:focus.valid + label:after,
        input[type=password].valid + label:after,
        input[type=password]:focus.valid + label:after,
        input[type=email].valid + label:after,
        input[type=email]:focus.valid + label:after,
        input[type=url].valid + label:after,
        input[type=url]:focus.valid + label:after,
        input[type=time].valid + label:after,
        input[type=time]:focus.valid + label:after,
        input[type=date].valid + label:after,
        input[type=date]:focus.valid + label:after,
        input[type=datetime-local].valid + label:after,
        input[type=datetime-local]:focus.valid + label:after,
        input[type=tel].valid + label:after,
        input[type=tel]:focus.valid + label:after,
        input[type=number].valid + label:after,
        input[type=number]:focus.valid + label:after,
        input[type=search].valid + label:after,
        input[type=search]:focus.valid + label:after,
        textarea.materialize-textarea.valid + label:after,
        textarea.materialize-textarea:focus.valid + label:after {
            content: attr(data-success);
            color: #4CAF50;
            opacity: 1;
        }

    input:not([type]).invalid, input:not([type]):focus.invalid,
    input[type=text].invalid,
    input[type=text]:focus.invalid,
    input[type=password].invalid,
    input[type=password]:focus.invalid,
    input[type=email].invalid,
    input[type=email]:focus.invalid,
    input[type=url].invalid,
    input[type=url]:focus.invalid,
    input[type=time].invalid,
    input[type=time]:focus.invalid,
    input[type=date].invalid,
    input[type=date]:focus.invalid,
    input[type=datetime-local].invalid,
    input[type=datetime-local]:focus.invalid,
    input[type=tel].invalid,
    input[type=tel]:focus.invalid,
    input[type=number].invalid,
    input[type=number]:focus.invalid,
    input[type=search].invalid,
    input[type=search]:focus.invalid,
    textarea.materialize-textarea.invalid,
    textarea.materialize-textarea:focus.invalid {
        border-bottom: 1px solid #F44336;
        box-shadow: 0 1px 0 0 #F44336;
    }

        input:not([type]).invalid + label:after,
        input:not([type]):focus.invalid + label:after,
        input[type=text].invalid + label:after,
        input[type=text]:focus.invalid + label:after,
        input[type=password].invalid + label:after,
        input[type=password]:focus.invalid + label:after,
        input[type=email].invalid + label:after,
        input[type=email]:focus.invalid + label:after,
        input[type=url].invalid + label:after,
        input[type=url]:focus.invalid + label:after,
        input[type=time].invalid + label:after,
        input[type=time]:focus.invalid + label:after,
        input[type=date].invalid + label:after,
        input[type=date]:focus.invalid + label:after,
        input[type=datetime-local].invalid + label:after,
        input[type=datetime-local]:focus.invalid + label:after,
        input[type=tel].invalid + label:after,
        input[type=tel]:focus.invalid + label:after,
        input[type=number].invalid + label:after,
        input[type=number]:focus.invalid + label:after,
        input[type=search].invalid + label:after,
        input[type=search]:focus.invalid + label:after,
        textarea.materialize-textarea.invalid + label:after,
        textarea.materialize-textarea:focus.invalid + label:after {
            content: attr(data-error);
            color: #F44336;
            opacity: 1;
        }

    input:not([type]) + label:after,
    input[type=text] + label:after,
    input[type=password] + label:after,
    input[type=email] + label:after,
    input[type=url] + label:after,
    input[type=time] + label:after,
    input[type=date] + label:after,
    input[type=datetime-local] + label:after,
    input[type=tel] + label:after,
    input[type=number] + label:after,
    input[type=search] + label:after,
    textarea.materialize-textarea + label:after {
        display: block;
        content: "";
        position: absolute;
        top: 65px;
        opacity: 0;
        transition: .2s opacity ease-out, .2s color ease-out;
    }

.input-field {
    position: relative;
    margin-top: 1rem;
}

    .input-field label {
        color: #9e9e9e;
        position: absolute;
        top: 0.8rem;
        left: 0.75rem;
        font-size: 1rem;
        cursor: text;
        transition: .2s ease-out;
    }

        .input-field label.active {
            font-size: 0.8rem;
            -webkit-transform: translateY(-140%);
            transform: translateY(-140%);
        }

    .input-field .prefix {
        position: absolute;
        width: 3rem;
        font-size: 2rem;
        transition: color .2s;
    }

        .input-field .prefix.active {
            color: #c8161e;
        }

        .input-field .prefix ~ input,
        .input-field .prefix ~ textarea {
            margin-left: 3rem;
            width: 92%;
            width: calc(100% - 3.75rem);
        }

        .input-field .prefix ~ textarea {
            padding-top: .8rem;
        }

        .input-field .prefix ~ label {
            margin-left: 3rem;
        }

@media only screen and (max-width: 992px) {
    .input-field .prefix ~ input {
        width: 86%;
        width: calc(100% - 3.75rem);
    }
}

@media only screen and (max-width: 600px) {
    .input-field .prefix ~ input {
        width: 80%;
        width: calc(100% - 3.75rem);
    }
}

.input-field input[type=search] {
    display: block;
    line-height: inherit;
    padding-left: 4rem;
    width: calc(100% - 4rem);
}

    .input-field input[type=search]:focus {
        background-color: #fff;
        border: 0;
        box-shadow: none;
        color: #444;
    }

        .input-field input[type=search]:focus + label i,
        .input-field input[type=search]:focus ~ .mdi-navigation-close,
        .input-field input[type=search]:focus ~ .material-icons {
            color: #444;
        }

    .input-field input[type=search] + label {
        left: 1rem;
    }

    .input-field input[type=search] ~ .mdi-navigation-close,
    .input-field input[type=search] ~ .material-icons {
        position: absolute;
        top: 0;
        right: 1rem;
        color: transparent;
        cursor: pointer;
        font-size: 2rem;
        transition: .3s color;
    }

textarea {
    width: 100%;
    height: 3rem;
    background-color: transparent;
}

    textarea.materialize-textarea {
        overflow-y: hidden;
        /* prevents scroll bar flash */
        padding: 1.6rem 0;
        /* prevents text jump on Enter keypress */
        resize: none;
        min-height: 3rem;
    }

.hiddendiv {
    display: none;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    /* future version of deprecated 'word-wrap' */
    padding-top: 1.2rem;
    /* prevents text jump on Enter keypress */
}

/***************
  Radio Buttons
***************/
/* Remove default Radio Buttons */
[type="radio"]:not(:checked),
[type="radio"]:checked {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

    [type="radio"]:not(:checked) + label,
    [type="radio"]:checked + label {
        position: relative;
        padding-left: 35px;
        cursor: pointer;
        display: inline-block;
        height: 25px;
        line-height: 25px;
        font-size: 1rem;
        transition: .28s ease;
        /* webkit (konqueror) browsers */
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

[type="radio"] + label:before,
[type="radio"] + label:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    margin: 4px;
    width: 16px;
    height: 16px;
    z-index: 0;
    transition: .28s ease;
}

/* Unchecked styles */
[type="radio"]:not(:checked) + label:before {
    border-radius: 50%;
    border: 2px solid #5a5a5a;
}

[type="radio"]:not(:checked) + label:after {
    border-radius: 50%;
    border: 2px solid #5a5a5a;
    z-index: -1;
    -webkit-transform: scale(0);
    transform: scale(0);
}

/* Checked styles */
[type="radio"]:checked + label:before {
    border-radius: 50%;
    border: 2px solid transparent;
}

[type="radio"]:checked + label:after {
    border-radius: 50%;
    border: 2px solid #c8161e;
    background-color: #c8161e;
    z-index: 0;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

/* Radio With gap */
[type="radio"].with-gap:checked + label:before {
    border-radius: 50%;
    border: 2px solid #c8161e;
}

[type="radio"].with-gap:checked + label:after {
    border-radius: 50%;
    border: 2px solid #c8161e;
    background-color: #c8161e;
    z-index: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}

/* Disabled Radio With gap */
[type="radio"].with-gap:disabled:checked + label:before {
    border: 2px solid rgba(0, 0, 0, 0.26);
}

[type="radio"].with-gap:disabled:checked + label:after {
    border: none;
    background-color: rgba(0, 0, 0, 0.26);
}

/* Disabled style */
[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.26);
}

[type="radio"]:disabled + label {
    color: rgba(0, 0, 0, 0.26);
}

[type="radio"]:disabled:not(:checked) + label:before {
    border-color: rgba(0, 0, 0, 0.26);
}

[type="radio"]:disabled:checked + label:after {
    background-color: rgba(0, 0, 0, 0.26);
    border-color: #BDBDBD;
}

/***************
   Checkboxes
***************/
/* CUSTOM CSS CHECKBOXES */
form p {
    margin-bottom: 10px;
    text-align: left;
}

    form p:last-child {
        margin-bottom: 0;
    }

/* Remove default checkbox */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}


    [type="checkbox"] + label {
        position: relative;
        padding-left: 35px;
        cursor: pointer;
        display: inline-block;
        height: 25px;
        line-height: 25px;
        font-size: 1rem;
        -webkit-user-select: none;
        /* webkit (safari, chrome) browsers */
        -moz-user-select: none;
        /* mozilla browsers */
        -khtml-user-select: none;
        /* webkit (konqueror) browsers */
        -ms-user-select: none;
        /* IE10+ */
    }

        [type="checkbox"] + label:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 18px;
            height: 18px;
            z-index: 0;
            border: 2px solid #5a5a5a;
            border-radius: 1px;
            margin-top: 2px;
            transition: .2s;
        }

    [type="checkbox"]:not(:checked):disabled + label:before {
        border: none;
        background-color: rgba(0, 0, 0, 0.26);
    }

    [type="checkbox"]:checked + label:before {
        top: -4px;
        left: -3px;
        width: 12px;
        height: 22px;
        border-top: 2px solid transparent;
        border-left: 2px solid transparent;
        border-right: 2px solid #c8161e;
        border-bottom: 2px solid #c8161e;
        -webkit-transform: rotate(40deg);
        transform: rotate(40deg);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
    }

    [type="checkbox"]:checked:disabled + label:before {
        border-right: 2px solid rgba(0, 0, 0, 0.26);
        border-bottom: 2px solid rgba(0, 0, 0, 0.26);
    }

    /* Indeterminate checkbox */
    [type="checkbox"]:indeterminate + label:before {
        left: -10px;
        top: -11px;
        width: 10px;
        height: 22px;
        border-top: none;
        border-left: none;
        border-right: 2px solid #c8161e;
        border-bottom: none;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
    }

    [type="checkbox"]:indeterminate:disabled + label:before {
        border-right: 2px solid rgba(0, 0, 0, 0.26);
        background-color: transparent;
    }

    [type="checkbox"].filled-in + label:after {
        border-radius: 2px;
    }

    [type="checkbox"].filled-in + label:before,
    [type="checkbox"].filled-in + label:after {
        content: '';
        left: 0;
        position: absolute;
        /* .1s delay is for check animation */
        transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
        z-index: 1;
    }

    [type="checkbox"].filled-in:not(:checked) + label:before {
        width: 0;
        height: 0;
        border: 3px solid transparent;
        left: 6px;
        top: 10px;
        -webkit-transform: rotateZ(37deg);
        transform: rotateZ(37deg);
        -webkit-transform-origin: 20% 40%;
        transform-origin: 100% 100%;
    }

    [type="checkbox"].filled-in:not(:checked) + label:after {
        height: 20px;
        width: 20px;
        background-color: transparent;
        border: 2px solid #5a5a5a;
        top: 0px;
        z-index: 0;
    }

    [type="checkbox"].filled-in:checked + label:before {
        top: 0;
        left: 1px;
        width: 8px;
        height: 13px;
        border-top: 2px solid transparent;
        border-left: 2px solid transparent;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        -webkit-transform: rotateZ(37deg);
        transform: rotateZ(37deg);
        -webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
    }

    [type="checkbox"].filled-in:checked + label:after {
        top: 0px;
        width: 20px;
        height: 20px;
        border: 2px solid #c8161e;
        background-color: #c8161e;
        z-index: 0;
    }

    [type="checkbox"].filled-in:disabled:not(:checked) + label:before {
        background-color: transparent;
        border: 2px solid transparent;
    }

    [type="checkbox"].filled-in:disabled:not(:checked) + label:after {
        border-color: transparent;
        background-color: #BDBDBD;
    }

    [type="checkbox"].filled-in:disabled:checked + label:before {
        background-color: transparent;
    }

    [type="checkbox"].filled-in:disabled:checked + label:after {
        background-color: #BDBDBD;
        border-color: #BDBDBD;
    }
.faf {
    font-family: 'Font Awesome 5 Free' !important;
}

.mt-10 {
    margin-top: -10px;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}



.content {
    width: 100%;
    padding: 0 15px;
    background-color: #fff;
    padding-top: 50px;
    min-height: 540px;
}

.content-top {
    padding: 20px 0px 20px 0px;
    margin: 0 -15px;
}

::-moz-selection {
    color: #fff;
    background: #c8161e;
}

::selection {
    color: #fff;
    background: #c8161e;
}

::-moz-selection {
    color: #fff;
    background: #c8161e;
}

textarea {
    resize: none;
    min-height: 80px;
}

img {
    max-width: 100%;
}


h1,
h2,
h3,
h4,
h5 {
    font-weight: bold;
    line-height: 1.2;
    font-style: normal;
    margin: 0;
    text-transform: uppercase;
}

span,
a {
    line-height: 1;
}

    a:hover {
        opacity: .9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4,
.p18 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

p {
    margin: 10px 0;
}

.pmt0 p {
    margin-top: 0;
}

a p {
    line-height: 1.5;
}

a {
    color: #c8161e;
    display: block;
    cursor: pointer;
}

    a,
    a:active,
    a:hover {
        outline: 0;
        text-decoration: none;
    }

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

.valid-max-width {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

.mr10 {
    margin-right: 10px;
}

.mr20 {
    margin-right: 20px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb100 {
    margin-bottom: 100px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mtb20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mt100 {
    margin-top: 100px;
}

.mt50 {
    margin-top: 50px;
}

.p-0 {
    padding: 0;
}

.pt-top {
    padding-top: 100px;
}

.plr-15 {
    padding: 0 15px;
}

.p-t-b-80 {
    padding: 80px 0;
}

.min-h-400 {
    min-height: 540px;
}

.black {
    color: #000;
}
/*---------- 清除浮云 ----------*/
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

.upper {
    text-transform: uppercase;
}

.green {
    color: #339900
}

.red {
    color: #951c23;
}
/*----------colors----------*/
.c_white,
.c_white h1,
.c_white h2,
.c_white h3,
.c_white h4,
.c_white h5,
.c_white p {
    color: #fff;
}

.c_gray {
    color: #666;
}

.c_dark {
    color: #333;
}

.c_red {
    color: #c8161e;
}

.font-normal {
    font-weight: normal;
}

.bg_white {
    background-color: #fff;
}

.bg_red {
    background-color: #c8161e;
}

.bg-grey {
    background-color: #d9d9d9;
}

.full-content {
    width: 100%;
}
/*----------buttons----------*/
.grey-link {
    display: inline-block;
    color: #666;
    text-decoration: underline;
    margin: 0 5px;
}

.btn_red,
.btn_white {
    display: inline-block;
    float: left;
    padding: 15px 20px;
    margin: 0 10px 10px 0;
    line-height: 1;
    font-size: 12px;
}

.btn_red {
    border: 1px solid #c8161e;
}

.btn_white {
    background-color: #fff;
}

.no-touch .btn_red:hover,
.no-touch .btn_white:hover {
    background-color: #c8161e;
    color: #fff;
}

.red-btn {
    background-color: #951c23;
    margin-bottom: 5px;
    width: 280px;
    height: 45px;
    color: #fff;
    border: 0;
    text-align: center;
    padding: 0;
    line-height: 45px;
    display: inline-block;
    border-radius: 0;
}

    .red-btn.btn-sm {
        width: 120px;
    }

    .red-btn:hover,
    .red-btn:focus {
        color: #fff;
    }

    .red-btn.disabled {
        background-color: #d4d4d4 !important;
        color: #fff !important;
        cursor: not-allowed !important;
    }

.grey-btn {
    margin-right: 10px;
    margin-bottom: 5px;
    background-color: #d8d8d8;
    width: 100px;
    height: 45px;
    color: #323232;
    border: 0;
    text-align: center;
    padding: 0;
    line-height: 45px;
    display: inline-block;
    border-radius: 0;
}

    .grey-btn.disabled {
        background-color: #d4d4d4 !important;
        color: #fff !important;
        cursor: not-allowed !important;
    }

table {
    width: 100%;
}

    table.full-table {
        width: 100%;
    }

        table.full-table th,
        table.full-table td {
            padding: 10px;
            color: #000;
        }

            table.full-table th a, table.full-table td a {
                color: #000;
                display: block;
            }

                table.full-table th a img, table.full-table td a img {
                    margin-right: 10px;
                }

    table.grey-th th {
        background-color: #a1a19f;
        color: #fff;
    }

    table.one-line-td {
        display: block;
    }

        table.one-line-td tbody,
        table.one-line-td tr,
        table.one-line-td td {
            display: block;
            width: 100%;
        }

        table.one-line-td td,
        table.one-line-td a {
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            /*white-space: nowrap;*/
            color: #000;
            display: block;
        }

            table.one-line-td td img, table.one-line-td a img {
                margin-right: 10px;
            }

        table.one-line-td tr:last-child td {
            border-bottom: 0;
        }

.swiper-pagination-bullet-active {
    background: #951c23;
}

.swiper-container {
    padding-bottom: 45px;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
}

.input-field {
    margin-bottom: 40px;
    margin-top: 10px;
}

    .input-field input {
        margin-bottom: 0;
        margin-left: 75px;
        margin-left: 60px;
        margin-left: 3.75rem;
    }

    .input-field label {
        font-size: 14px;
        top: 0;
        font-weight: normal;
    }

        .input-field label.active {
            font-size: 12px;
        }

    .input-field .prefix ~ input,
    .input-field .prefix ~ textarea {
        margin-left: 75px;
        margin-left: 60px;
        margin-left: 3.75rem;
    }

.export-btn {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    margin-left: 15px;
    height: 32px;
    width: 80px !important;
    margin-bottom: 10px;
    line-height: 32px;
    border-radius: 3px;
}

    .export-btn:hover {
        opacity: .9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

.tabs-left .nav .table-top-title {
    margin-bottom: 0;
    padding-bottom: 0;
    display: block;
    word-break: break-word;
}

.tabs-left table.full-table td {
    padding: 15px 10px;
}

.tabs-left .nav {
    position: relative;
    z-index: 2;
}

    .tabs-left .nav li {
        margin-bottom: 15px;
        margin-top: 25px;
    }

.tabs-left .dashed-td-table {
    border: 0;
}

.tabs-left .nav-tabs > li.active > a {
    box-shadow: -2px 0 0 #951c23;
    border-top-width: 1px !important;
    border-left: none !important;
    margin-left: 1px !important
}

.tabs-left > .nav-pills > li,
.tabs-left > .nav-tabs > li {
    float: none;
    border-radius: 0;
}

    .tabs-left > .nav-pills > li > a,
    .tabs-left > .nav-tabs > li > a {
        min-width: 74px;
        width: 210px;
        margin-right: 0;
        margin-bottom: 3px;
        border-radius: 0;
        padding: 15px;
    }

.tabs-left > .nav-pills,
.tabs-left > .nav-tabs {
    float: left;
    margin-right: 0;
    border-right: 1px solid #ddd
}

.tabs-left > .nav-pills {
    border-right: none
}

.tabs-left > .nav-tabs > li > a {
    margin-right: -1px
}

    .tabs-left > .nav-tabs > li > a:focus,
    .tabs-left > .nav-tabs > li > a:hover {
        border-color: #eee #d5d5d5 #eee #eee
    }

.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:focus,
.tabs-left > .nav-tabs .active > a:hover {
    border-color: #d5d5d5 transparent #d5d5d5 #ddd;
    *border-right-color: #fff
}

.tabs-left > .tab-content {
    margin-left: 210px;
    padding-left: 25px;
    border-left: 1px solid #ddd;
    min-height: 450px;
}

.tabs-right > .nav-tabs {
    float: right;
    margin-left: 19px;
    border-left: 1px solid #ddd
}

    .tabs-right > .nav-tabs > li > a {
        margin-left: -1px
    }

        .tabs-right > .nav-tabs > li > a:focus,
        .tabs-right > .nav-tabs > li > a:hover {
            border-color: #eee #eee #eee #ddd
        }

    .tabs-right > .nav-tabs .active > a,
    .tabs-right > .nav-tabs .active > a:focus,
    .tabs-right > .nav-tabs .active > a:hover {
        border-color: #ddd #ddd #ddd transparent;
        *border-left-color: #fff
    }

.tabs-below > .nav-tabs,
.tabs-left > .nav-tabs,
.tabs-right > .nav-tabs {
    border-bottom: 0
}

.tabs-left > .tab-content .table-top-title {
    display: none;
}

.ie-hide, .ie-show {
    display: none;
}

.grey-angle {
    position: relative;
}

    .grey-angle:before {
        content: "";
        display: block;
        position: absolute;
        border-top: 10px solid #fafafa;
        border-right: 13px solid transparent;
        border-left: 13px solid transparent;
        top: 0;
        left: 50%;
        margin-left: -13px;
    }


/*Home page tile*/
.tile-table {
    width: 98%;
    text-align: center;
    margin: 15px auto;
    margin-bottom: 25px;
    border: 1px solid #FFFFFF;
    border: 1px solid rgba(255,255,255,.1);
}

    .tile-table td, .tile-table th {
        padding: 2px;
        text-align: center;
        border-right: 1px solid rgba(255,255,255,.1);
        font-size: 18px;
        font-weight: normal;
        border-right: 0;
    }

    .tile-table .title {
        padding: 10px 8px;
        border: 1px solid #FFFFFF;
        border: 1px solid rgba(255,255,255,.1);
        font-size: 12px !important;
    }

    .tile-table td {
        font-weight: bold;
        padding-top: 5px;
        font-size: 18px;
        border-right: 0;
    }

.scroll-nav {
    border: 0;
    width: 100%;
}

    .scroll-nav .inner {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        width: 100%;
        background-color: #fff;
        border: 1px solid #951c23;
        border-right: 0;
        border-radius: 0;
        z-index: 9;
    }

        .scroll-nav .inner .valid-nav {
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
            padding: 0;
        }

            .scroll-nav .inner .valid-nav > .nav {
                -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
                width: 100%;
            }

                .scroll-nav .inner .valid-nav > .nav > li {
                    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
                    width: 20%;
                    text-align: center;
                    border-right: 1px solid #951c23;
                }

                    .scroll-nav .inner .valid-nav > .nav > li a {
                        color: #951c23;
                        font-weight: bold;
                    }

                    .scroll-nav .inner .valid-nav > .nav > li.active,
                    .scroll-nav .inner .valid-nav > .nav > li:hover {
                        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
                    }

                        .scroll-nav .inner .valid-nav > .nav > li.active a, .scroll-nav .inner .valid-nav > .nav > li:hover a {
                            display: block;
                            background-color: #951c23;
                            color: #fff;
                            opacity: 1;
                            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
                        }

    .scroll-nav.affix {
        top: 0;
        padding-top: 80px;
        padding-bottom: 20px;
        background-color: #fff;
        z-index: 9;
    }

.scrollpy-content {
    padding-bottom: 60px;
}

    .scrollpy-content .title {
        line-height: 1.2;
        padding-bottom: 15px;
        color: #000;
        font-size: 16px;
        padding-top: 20px;
    }

    .scrollpy-content .section {
        margin-bottom: 60px;
    }

    .scrollpy-content.fixed {
        position: fixed;
        top: 152px;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-x: hidden;
        overflow-y: auto;
    }



.title .sub-title {
    display: inline-block;
    margin-left: 10px;
    color: #7e7e7e;
}

.scroll-nav-fix-sm {
    display: none;
}

.scroll-nav-fix {
    height: 52px;
    margin-bottom: 20px;
}

.scrollpy-content .one-line-td {
    border-bottom: 0;
}

    .scrollpy-content .one-line-td td {
        padding: 20px 0;
    }

.table-wrap {
    background-color: #f0f0f0;
    padding: 25px;
    padding-bottom: 1px;
    color: #333;
    min-height: 280px;
}

    .table-wrap .dashed-td-table td {
        color: #333;
        padding: 10px 10px;
    }


.icon-left-word {
    position: relative;
    width: 100%;
}

    .icon-left-word .left-img {
        position: absolute;
        left: 0;
        top: 0;
    }

    .icon-left-word .right-word {
        width: 100%;
        padding-left: 40px;
        line-height: 1.3;
    }

@media (max-width:991px) {
    .tabs-left table.full-table td {
        display: block;
        width: 100%;
    }
}

@media (max-width:600px) {
    .tabs-left table.full-table td {
        display: block;
        width: 100%;
    }

    .tabs-left > .nav-tabs > li > a {
        width: 150px;
    }

    .tabs-left > .tab-content {
        margin-left: 150px;
    }
}

@media (max-width:425px) {
    .tabs-left > .tab-content {
        margin-left: 0;
    }

    .tabs-left > .nav-tabs {
        display: none;
    }

    .tabs-left > .tab-content .table-top-title {
        display: block;
        margin-bottom: 15px;
    }

    .tabs-left > .tab-content {
        border: 0;
        padding-left: 0;
    }

        .tabs-left > .tab-content > .tab-pane {
            display: block !important;
            margin-bottom: 50px;
        }
}

.box-list-horizontal .box-lg {
    width: 100%;
    height: 100%;
    background: url(images/bg-box-lg.jpg) no-repeat;
    background-size: cover;
    border: 2px solid #7e7e7e;
    padding: 20px 15px;
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}
.box-list-horizontal .box-lg .title {
    color: #383838;
}
.box-list-horizontal .box-lg .img {
    position: static;
    height: 90px;
}
.box-list-horizontal .box-lg .img img {
    max-width: 150px;
    position: absolute;
    right: 10px;
    bottom: 10px;
}
.box-list-horizontal .box-lg .img .white-icon {
    display: none;
}
.box-list-horizontal .box-lg .img .grey-icon {
    display: none;
}
.box-list-horizontal .box-lg .img .red-icon {
    display: inline-block;
}
.box-list-horizontal .box-lg.is-red {
    background: #951c23;
    border: 2px solid #951c23!important;
    color: #fff;
}
.box-list-horizontal .box-lg.is-red .title {
    color: #fff;
}
.box-list-horizontal .box-lg.is-red .white-icon {
    display: none;
}
.box-list-horizontal .box-lg.is-red .grey-icon {
    display: none;
}
.box-list-horizontal .box-lg.is-red .red-icon {
    display: inline-block;
}
.box-list-horizontal .box-lg.is-red:hover {
    background: #fff;
    color: #951c23;
}
.box-list-horizontal .box-lg.is-red:hover .title {
    color: #951c23;
}
.box-list-horizontal .box-lg.is-red:hover .grey-icon {
    display: inline-block;
}
.box-list-horizontal .box-lg.is-red:hover .red-icon {
    display: none;
}
.box-list-horizontal .box-lg.is-grey {
    background: #a1a19f;
    border: 2px solid #a1a19f!important;
    color: #fff;
}
.box-list-horizontal .box-lg.is-grey .title {
    color: #fff;
}
.box-list-horizontal .box-lg.is-grey .white-icon {
    display: inline-block;
}
.box-list-horizontal .box-lg.is-grey .red-icon {
    display: none;
}
.box-list-horizontal .box-lg.is-grey:hover {
    background: #fff;
    border: 2px solid #951c23!important;
    color: #951c23;
}
.box-list-horizontal .box-lg.is-grey:hover .title {
    color: #951c23;
}
.box-list-horizontal .box-lg.is-grey:hover .white-icon {
    display: none;
}
.box-list-horizontal .box-lg.is-grey:hover .red-icon {
    display: inline-block;
}
.box-list-horizontal .level-box-sm {
    padding-bottom: 20px;
}
.box-list-horizontal .box-sm {
    background-repeat: no-repeat;
    background-position: right bottom;
    border: 0;
    width: 100%;
    padding: 15px;
    padding-bottom: 0;
    font-size: 14px;
    min-height: 160px;
    height: 100%;
    line-height: 1.3;
    color: #fff;
    background-color: rgba(150, 27, 36, 1);
    position: relative;
}
.box-list-horizontal .box-sm .img {
    height: 90px;
    width: 100%;
    text-align: right;
    position: static;
}
.box-list-horizontal .box-sm .img img {
    margin-right: -10px;
    position: absolute;
    right: 10px;
    bottom: 10px;
}
.box-list-horizontal .box-sm .red-icon {
    display: inline-block;
}
.box-list-horizontal .box-sm .white-icon {
    display: none;
}
.box-list-horizontal .box-sm .grey-icon {
    display: none;
}
.box-list-horizontal .box-sm h2 {
    font-weight: normal;
}
.box-list-horizontal .box-sm .time {
    position: absolute;
    bottom: 15px;
    left: 15px;
}
/* @when asia {
            background-image: url(images/icon-aisa-red.png);
            &:hover {
                background-image: url(images/icon-aisa.png);
            }
        }
        @when clock {
            background-image: url(images/icon-report-red.png);
            &:hover {
                background-image: url(images/icon-report.png);
            }
        }
        @when aut {
            background-image: url(images/icon-russia-red.png);
            &:hover {
                background-image: url(images/icon-russia.png);
            }
        }
        @when hand {
            background-image: url(images/icon-hand-earth-red.png);
            &:hover {
                background-image: url(images/icon-hand-earth.png);
            }
        }
        @when hand-sm {
            background-image: url(images/icon-hand-sm-red.png);
            &:hover {
                background-image: url(images/icon-hand-sm.png);
            }
        }
        @when phone {
            background-image: url(images/icon-phone-sm-red.png);
            &:hover {
                background-image: url(images/icon-phone-sm.png);
            }
        }
        @when gold-tow {
            background-image: url(images/icon-gold-2-red.png);
            &:hover {
                background-image: url(images/icon-gold-2.png);
            }
        }
        @when car {
            background-image: url(images/icon-car-sm-red.png);
            &:hover {
                background-image: url(images/icon-car-sm.png);
            }
        }
        @when gold-sm {
            background-image: url(images/icon-gold-sm-red.png);
            &:hover {
                background-image: url(images/icon-gold-sm.png);
            }
        }
        @when gear-sm {
            background-image: url(images/icon-gear-red.png);
            &:hover {
                background-image: url(images/icon-gear.png);
            }
        }
        @when afric {
            background-image: url(images/icon-afric-red.png);
            &:hover {
                background-image: url(images/icon-afric.png);
            }
        } */
.box-list-horizontal .box-sm:hover {
    background-color: #efefef;
    color: #951c23;
}
.box-list-horizontal .box-sm:hover .red-icon {
    display: none;
}
.box-list-horizontal .box-sm:hover .grey-icon {
    display: inline-block;
}
.box-list-horizontal .box-sm.is-grey {
    background-color: #a1a19f;
    border: 2px solid #a1a19f!important;
}
.box-list-horizontal .box-sm.is-grey .red-icon {
    display: none;
}
.box-list-horizontal .box-sm.is-grey .white-icon {
    display: inline-block;
}
.box-list-horizontal .box-sm.is-grey .grey-icon {
    display: none;
}
.box-list-horizontal .box-sm.is-grey:hover {
    border-color: #951c23!important;
}
.box-list-horizontal .box-sm.is-grey:hover .red-icon {
    display: inline-block;
}
.box-list-horizontal .box-sm.is-grey:hover .white-icon {
    display: none;
}
.box-list-horizontal .box-sm.is-grey.is-afric {
    background-image: url(images/icon-afric-white.png);
}
.box-list-horizontal .box-sm.is-grey.is-afric:hover {
    background-image: url(images/icon-afric-red.png);
}
.box-list-horizontal .box-sm.is-grey.is-gear-sm {
    background-image: url(images/icon-gear-white.png);
}
.box-list-horizontal .box-sm.is-grey.is-gear-sm:hover {
    background-image: url(images/icon-gear-red.png);
}
.box-list-horizontal .box-sm.is-grey.is-gold-sm {
    background-image: url(images/icon-gold-sm-white.png);
}
.box-list-horizontal .box-sm.is-grey.is-gold-sm:hover {
    background-image: url(images/icon-gold-sm-red.png);
}
.box-list-horizontal .box-sm.is-grey.is-car {
    background-image: url(images/icon-car-sm-white.png);
}
.box-list-horizontal .box-sm.is-grey.is-car:hover {
    background-image: url(images/icon-car-sm-red.png);
}
.box-list-horizontal .box-sm.is-grey.is-gold-tow {
    background-image: url(images/icon-gold-2-white.png);
}
.box-list-horizontal .box-sm.is-grey.is-gold-tow:hover {
    background-image: url(images/icon-gold-2-red.png);
}
.box-list-horizontal .box-sm.is-grey.is-phone {
    background-image: url(images/icon-phone-sm-white.png);
}
.box-list-horizontal .box-sm.is-grey.is-phone:hover {
    background-image: url(images/icon-phone-sm-red.png);
}
.box-list-horizontal .box-sm.is-grey.is-hand-sm {
    background-image: url(images/icon-hand-sm-white.png);
}
.box-list-horizontal .box-sm.is-grey.is-hand-sm:hover {
    background-image: url(images/icon-hand-sm-red.png);
}
.box-list-horizontal .box-sm.is-grey.is-hand {
    background-image: url(images/icon-hand-earth-white.png);
}
.box-list-horizontal .box-sm.is-grey.is-hand:hover {
    background-image: url(images/icon-hand-earth-red.png);
}
.box-list-horizontal .box-sm.is-grey.is-aut {
    background-image: url(images/icon-russia-white.png);
}
.box-list-horizontal .box-sm.is-grey.is-aut:hover {
    background-image: url(images/icon-russia-red.png);
}
.box-list-horizontal .box-sm.is-grey.is-clock {
    background-image: url(images/icon-report-white.png);
}
.box-list-horizontal .box-sm.is-grey.is-clock:hover {
    background-image: url(images/icon-report-red.png);
}
.box-list-horizontal .box-sm.is-grey.is-asia {
    background-image: url(images/icon-aisa-white.png);
}
.box-list-horizontal .box-sm.is-grey.is-asia:hover {
    background-image: url(images/icon-aisa-red.png);
}
.box-list-horizontal .box-sm.is-red {
    color: #fff;
    background-color: rgba(150, 27, 36, 1);
}
.box-list-horizontal .box-sm.is-red .red-icon {
    display: inline-block;
}
.box-list-horizontal .box-sm.is-red .white-icon {
    display: none;
}
.box-list-horizontal .box-sm.is-red .grey-icon {
    display: none;
}
.box-list-horizontal .box-sm.is-red h2 {
    font-weight: normal;
}
.box-list-horizontal .box-sm.is-red .time {
    position: absolute;
    bottom: 15px;
    left: 15px;
}
/*  @when asia {
               background-image: url(images/icon-aisa-red.png);
               &:hover {
                   background-image: url(images/icon-aisa.png);
               }
           }
           @when clock {
               background-image: url(images/icon-report-red.png);
               &:hover {
                   background-image: url(images/icon-report.png);
               }
           }
           @when aut {
               background-image: url(images/icon-russia-red.png);
               &:hover {
                   background-image: url(images/icon-russia.png);
               }
           }
           @when hand {
               background-image: url(images/icon-hand-earth-red.png);
               &:hover {
                   background-image: url(images/icon-hand-earth.png);
               }
           }
           @when hand-sm {
               background-image: url(images/icon-hand-sm-red.png);
               &:hover {
                   background-image: url(images/icon-hand-sm.png);
               }
           }
           @when phone {
               background-image: url(images/icon-phone-sm-red.png);
               &:hover {
                   background-image: url(images/icon-phone-sm.png);
               }
           }
           @when gold-tow {
               background-image: url(images/icon-gold-2-red.png);
               &:hover {
                   background-image: url(images/icon-gold-2.png);
               }
           }
           @when car {
               background-image: url(images/icon-car-sm-red.png);
               &:hover {
                   background-image: url(images/icon-car-sm.png);
               }
           }
           @when gold-sm {
               background-image: url(images/icon-gold-sm-red.png);
               &:hover {
                   background-image: url(images/icon-gold-sm.png);
               }
           }
           @when gear-sm {
               background-image: url(images/icon-gear-red.png);
               &:hover {
                   background-image: url(images/icon-gear.png);
               }
           }
           @when afric {
               background-image: url(images/icon-afric-red.png);
               &:hover {
                   background-image: url(images/icon-afric.png);
               }
           } */
.box-list-horizontal .box-sm.is-red:hover {
    background-color: #efefef;
    color: #951c23;
}
.box-list-horizontal .box-sm.is-red:hover .red-icon {
    display: none;
}
.box-list-horizontal .box-sm.is-red:hover .grey-icon {
    display: inline-block;
}
.box-list-horizontal .box-sm.is-red.is-border {
    padding: 16px 11px;
    border: 2px solid #951c23;
}
.box-list-horizontal .box-sm.is-red.is-border:hover {
    background-color: #fff;
    color: #951c23;
}
.box-list-horizontal .box-sm.is-border {
    border: 2px solid #951c23;
}
.box-list-horizontal .box-sm.is-border:hover {
    background-color: #fff;
    color: #951c23;
}
.box-list {
    background-color: #ebebeb;
    padding: 60px 0 45px 0;
    margin: 0 -15px;
}
.box-list-item {
    text-align: center;
    background-color: #a1a19f;
    border: 2px solid #a1a19f;
    padding: 15px;
    margin: 0;
    height: 100%;
    min-height:300px;
}
.box-list-item .icon {
    max-width: 150px;
    margin: 0 auto;
    margin-bottom: 15px;
}
.box-list-item .icon .red-icon {
    display: none;
}
.box-list-item .title {
    color: #fff;
    font-size: 14px;
}
.box-list-item .cont {
    color: #fff;
}
.box-list-item:hover {
    background-color: #fff;
    border: 2px solid #951c23;
}
.box-list-item:hover .icon .white-icon {
    display: none;
}
.box-list-item:hover .icon .red-icon {
    display: inline-block;
}
.box-list-item:hover .title,
                .box-list-item:hover .cont {
    color: #951c23;
}
.box-list-item.is-red {
    background-color: #951c23;
    border: 2px solid #951c23;
}
.box-list-item.is-red:hover {
    background-color: #fff;
    border: 2px solid #951c23;
}
.box-list-item.is-grey {
    text-align: center;
    background-color: #a1a19f;
    border: 2px solid #a1a19f;
}
.box-list-item.is-grey .icon {
    margin: 0 auto;
    margin-bottom: 15px;
}
.box-list-item.is-grey .icon .red-icon {
    display: none;
}
.box-list-item.is-grey .title {
    color: #fff;
}
.box-list-item.is-grey .cont {
    color: #fff;
}
.box-list-item.is-grey:hover {
    background-color: #fff;
    border: 2px solid #951c23;
}
.box-list-item.is-grey:hover .icon .white-icon {
    display: none;
}
.box-list-item.is-grey:hover .icon .red-icon {
    display: inline-block;
}
.box-list-item.is-grey:hover .title,
                    .box-list-item.is-grey:hover .cont {
    color: #951c23;
}
.text-list {
    padding: 60px 0px 10px 0px;
}
.text-list .title {
    margin-bottom: 10px;
}
.text-list .title .lg-title {
    color: #383838;
}

.text-list .title .sm-title {
    color: #7e7e7e;
}
.text-list .title .sm-title:after {
    content: "";
    display: block;
    width: 60px;
    margin: 10px auto;
    border: 2px solid #951c23;
    
}

.text-list .title .lg-underline {
    content: "";
    display: block;
    width: 60px;
    margin: 10px 0px 10px 0px;
    border: 2px solid #951c23;
    text-align: left;
}

.text-list-item {
    margin-bottom: 5px;
}
.text-list-item .text-title {
    color: #383838;
    margin: 10px 0;
    /*height: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;*/
}
.text-list-item .cont {
    color: #666;
    line-height: 1.5;
}
.text-list-item .time {
    color: #7e7e7e;
    font-size: 12px;
}
.text-img-box {
    position: relative;
    min-height: 117px;
    margin-bottom: 60px;
}
.text-img-box-left img {
    margin-right: 15px;
    margin-bottom: 20px;
}
.text-img-box-right {
    width: 100%;
    line-height: 1.3;
}
.text-img-box-right .title {
    color: #951c23;
}
.text-img-box-right .sub-title {
    font-size: 16px;
    margin-top: 0;
}
.dashed-td-table {
    width: 100%;
    border-top: 2px solid #e2e2e2;
    border-bottom: 2px solid #e2e2e2;
    margin-bottom: 30px;
}
.dashed-td-table thead td {
    position: relative;
}
.dashed-td-table thead td .line-red {
    display: block;
    border-top: 2px solid #951c23;
    width: 40px;
    margin-top: -2px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 0
}
.dashed-td-table td {
    border-bottom: 1px dashed #e2e2e2;
    padding: 10px 0;
    line-height: 1.2;
}
.dashed-td-table td.title {
    width: 50%;
    color: #7e7e7e;
    padding-right: 10px;
}
.dashed-td-table td.cont {
    color: #000;
}
.dashed-td-table.is-no-thead thead td,
            .dashed-td-table.is-no-thead thead th {
    height: 0;
    padding: 0;
    border: 0;
}
.dashed-td-table.is-word td {
    white-space: normal;
    line-height: 1.3;
    overflow: visible;
    overflow: initial;
}
.title .sub-title {
    display: inline-block;
    margin-left: 10px;
    color: #7e7e7e;
}
.full-gey {
    width: 100%;
    background-color: var(--grey-light-white);
}
.full-gey.row {
    width: auto;
}
.line-title {
    line-height: 1.5;
    color: var(--grey-title);
    font-weight: normal;
}
.line-title:after {
    display: block;
    content: "";
    border-top: 2px solid #951c23;
    width: 40px;
    padding: 0
}
.word-layout {
    color: #000;
}
.form-list {
    background-color: #fff;
}
.form-list .line-field {
    border: 0;
    border-bottom: 2px solid #e2e2e2;
    box-shadow: none;
    margin-bottom: 15px;
}
.icon {
    color: var(--grey-light-icon);
}
.file-name {
    color: #000;
    display: inline-block;
}
.file-name .file-type-icon {
    width: 40px;
    height: 15px;
    font-size: 12px;
    color: #fff;
    background-color: #951c23;
    padding: 0 5px;
    border-radius: 3px;
    display: inline-block;
    line-height: 16px;
    text-align: center;
    font-style: normal;
    margin-right: 5px;
}
.file-name:hover {
    color: #000;
}
.table-red-head thead td,
        .table-red-head thead th {
    background-color: #951c23;
    color: #fff;
    font-weight: normal;
}
.tab-button-list .tab-button {
    display: inline-block;
    margin: 5px;
    padding: 0 5px;
    border-radius: 3px;
    background-color: #fff;
    color: #000;
    line-height: 16px;
    font-size: 14px;
}
.tab-button-list .tab-button:hover,
        .tab-button-list .tab-button.active {
    background-color: #951c23;
    color: #fff;
}
.tab-nav-box {
    padding: 0 10px;
    border: 1px solid #e2e2e2;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    background-color: #fff;
    min-width: 366px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}
.tab-nav-box>ul {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    width: 100%;
    height: 100%;
    margin: 0;
}
.tab-nav-box>ul>li {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    float: left;
    padding: 0;
    height: 100%;
}
.tab-nav-box>ul>li a {
    display: block;
    padding: 0 10px;
    border-bottom: 3px solid #fff;
    position: relative;
    height: 100%;
    line-height: 45px;
    font-size: 16px;
    color: #666;
    background-color: #fff;
}
.tab-nav-box>ul>li a:after {
    position: absolute;
    content: "";
    right: 0;
    top: 15px;
    height: 18px;
    width: 0;
    border-right: 1px dashed #e3e3e3;
}
.tab-nav-box>ul>li.last a:after {
    display: none;
}
.tab-nav-box>ul>li:hover,
            .tab-nav-box>ul>li.active {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.tab-nav-box>ul>li:hover a, .tab-nav-box>ul>li.active a {
    border-bottom: 3px solid #951c23;
    color: #951c23;
    background-color: #fff;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.fixed-slider {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    min-height: 500px;
    background-color: #ededed;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.fixed-slider-up {
    position: relative;
    z-index: 5;
    margin-top: 400px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #fff;
}

.box-icon-word .icon {
    font-size: 40px;
}

.grey {
    color: #666;
}

@media (max-width:991px) {
    .fixed-slider {
        min-height: 300px;
    }

    .fixed-slider-up {
        margin-top: 300px;
        padding-top: 50px;
        background-color: #fff;
    }
}

.contact-right {
    position: relative;
    top: -200px;
    padding: 50px 20px;
    max-width: 450px;
}

@media (max-width:991px) {
    .contact-right {
        top: 0;
        padding: 50px 0;
    }
}