@charset "utf-8";

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    text-decoration: none;
}

html {
    line-height: 1;
}
i,em,address{font-style:normal;}
q,
blockquote {
    quotes: none;
}

    q:before,
    q:after,
    blockquote:before,
    blockquote:after {
        content: "";
        content: none;
    }

a img {
    border: none;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.ime-disabled {
    ime-mode: disabled;
}

body {
  font-family:
    /* personal for Chinese project */Source Han Sans SC,
    /* system default */system-ui,
    /* macOS 10.11-10.12 */-apple-system,BlinkMacSystemFont,PingFang SC,
    /* Windows 6+ */ Segoe UI,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,
    /* fall back */Helvetica Neue,sans-serif;
    font-size: 14px;
    line-height: 1.428571429;
    color: #000000;
    background-color: #ffffff;
}

a {
    text-decoration: none;
}

a:hover {
	color: #DF002D;
}
*{
	line-height: 1.5em;
}
h1,
h2,
h3,
h4,
h5,
h6{ font-weight: normal;}
/* --------clearfix-------*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear:both;
	visibility: hidden;
}
.clearfix {
	/* IE6IE7 */
}
/*=========clearfix=====end=========*/


.apply_table {
    background-color: #ffffff;
    padding: 20px 10px;
    height: 850px;
    overflow: auto;
    overflow-x: hidden;
}
.apply_table > h6.tip{ text-align: center;font-size: 14px;color:#999999; padding:10px 0 20px;}

    .apply_table > dl {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        align-content: flex-start;
        font-size: 16px;
    }

        .apply_table > dl > dt, .apply_table > dl > dd {
            padding: 5px 5px;
        }

        .apply_table > dl > dt {
            flex-grow: 0;
            flex-shrink: 1;
            flex-basis: 25%;
            align-self: auto;
            display: flex;
            flex-direction: row;
            justify-content: flex-end;
            font-weight: 800;
            padding-top: 8px;
        }

        .apply_table > dl > dd {
            flex-grow: 1;
            flex-shrink: 1;
            flex-basis: 75%;
            padding-right: 20%;
            font-size: 14px;
        }

            .apply_table > dl > dd.nopadding {
                padding-right: 3%;
            }

    .apply_table input, .apply_table textarea, .apply_table select {
        border-radius: 4px;
        border: 1px solid #bbbbbb;
        background-color: #ffffff;
        padding: 4px 8px;
        font-size: 14px;
        width: 97%;
    }

    .apply_table input {
    }

    .apply_table textarea {
    }

    .apply_table select {
    }

    .apply_table input[type='text'] {
    }

    .apply_table input[type='checkbox'] {
        width: auto;
        margin: 0 8px 0 0px;
    }

    .apply_table .apply_checkbox {
        width: 90%;
        display: inline-block;
    }

        .apply_table .apply_checkbox span {
            margin: 0 3em 0.5em 0;
            display: inline-block;
        }

    .apply_table i {
        font-size: 18px;
        color: #FF0005;
        display: inline-block;
        padding: 0px 8px;
    }

.apply_tit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #005BD5;
    padding: 0 0 10px;
}

.apply_button {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

    .apply_button button {
        display: none;
        font-size: 16px;
        border: none;
        cursor: pointer;
        font-weight: 800;
        background: linear-gradient(90deg, #E72411 0%, #D20058 99%);
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.30);
        display: block;
        height: 2.4em;
        border-radius: 1.2em;
        color: #ffffff;
        padding: 0.2em 2.9em;
    }

        .apply_button button:hover {
            background: #F83C0A;
        }
/*=====@media screen媒体查询=====*/

/*=====小于等于900px=====*/
@media screen and (max-width:500px) {


    .apply_table > dl > dt {
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 100%;
        justify-content: flex-start;
    }

    .apply_table > dl > dd {
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 100%;
        padding-right: 0;
    }
}

@media screen and (max-height:900px) {
    .apply_table {
        height: 700px;
    }
}

@media screen and (max-height:700px) {
    .apply_table {
        height: 500px;
    }
}

@media screen and (max-height:500px) {
    .apply_table {
        height: 300px;
    }
}
/*=====///==小于等于900px=====*/