:root {
	--brand-color: #202329;
	--min-width: 1200px;

	--primary: #005fae;
	--on-primary: #ffffff;
	--primary-container: #d4e3ff;
	--on-primary-container: #001c3a;
	--secondary: #545f71;
	--on-secondary: #ffffff;
	--secondary-container: #d8e3f8;
	--on-secondary-container: #111c2b;
	--tertiary: #6d5676;
	--on-tertiary: #ffffff;
	--tertiary-container: #f7d8ff;
	--on-tertiary-container: #271430;
	--error: #ba1a1a;
	--on-error: #ffffff;
	--error-container: #ffdad6;
	--on-error-container: #410002;
	--background: #f2f4f7;
	--on-background: #1a1c1e;
	--surface: #fdfcff;
	--on-surface: #1a1c1e;
	--surface-variant: #e0e2ec;
	--on-surface-variant: #43474e;
	--outline: #74777f;
	--outline-variant: #c3c6cf;
	--shadow: #000000;
	--scrim: #000000;
	--inverse-surface: #2f3033;
	--inverse-on-surface: #f1f0f4;
	--inverse-primary: #a5c8ff;
}

body {
	margin:0;
	min-width:var(--min-width); 
	background-color: var(--background);
	font-family: arial,verdana,helvetica,PingFang SC,HanHei SC,STHeitiSC-Light,Microsoft Yahei,sans-serif;
}

#page-top {
	position:fixed;
	z-index: 1000;
	top: 0;
	width:100%;
	height: 50px;
	background-color: var(--brand-color);

	display: flex;
	flex-direction: row;
}

#page-content {
	padding-top: 50px;
	display:flex;
	flex-direction: column;
	font-size:0; 
	flex-grow:1; 
	overflow-y: auto; 
	overflow-x: hidden;
}

#content {
	flex-grow: 1;
}

#page-bottom {
	flex-shrink: 0;
	font-size: 14px;
	height: 140px;
	background-color: var(--brand-color);
}

#page-top > img:first-child {
	height: 30px; 
	width: 30px;
	margin: 10px;
}

#page-top > div:nth-child(2){
	height: 50px; 
	width: 80px;
	font-size: 18px;
	line-height: 50px; 
	color: #FFFFFF;
}

#header {
	height:100%;
	flex-grow: 1;
}

#userinfo {
	height:100%;
	width: 160px;
	font-size:16px;
	color: #FFFFFF;
	user-select: none;
	text-align: center;
	line-height: 50px;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#userinfo:hover {
	color: var(--primary);
}

#userinfo-menu {
	position:fixed; 
	right:5px; 
	top:50px; 
	padding: 10px 10px;
	width: 120px;
	z-index: 1000;
	background-color: #FFFFFF;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

#userinfo-menu > span{
	display:inline-block;
	height:1px;
	width:100%;
	margin: 5px 0;
	background-color: #e6e6e6;
}

#userinfo-menu > div {
	height: 36px;
	line-height: 36px;
	padding: 0 10px;
	font-size: 14px;
	text-align: center;
	color: var(--secondary);
	user-select: none;
	cursor: pointer;
}
#userinfo-menu > div:hover {
	color: var(--primary);
}

.lyt-column-page {
	width:var(--min-width); 
	display: flex;
	flex-direction: column;
}

.boundless-input {
    outline: none;
    border: 0;
}

.vline {
    display: inline-block;
    width: 1px;
    height: 10px;
    vertical-align: middle;
    background: #e0e0e0;
    margin: 0 10px;
}

.fixed-top-panel {
	position:fixed;
	width:100%;
	left:0; 
	z-index: 10;
	height:100px;
	box-shadow: 0 16px 40px 0 rgba(158,158,158, 0.2);
}

.content-text {
	color: #333; 
	line-height:24px; 
	font-size:14px; 
	white-space: pre-wrap; 
	word-wrap: break-word;
}
.cmpt-top-menu-item {
    cursor: pointer;
    height: 100%;
    padding: 0 15px;
	font-size: 14px;
	line-height: 50px; 
	color: #FFFFFF;
}

.cmpt-top-menu-item:hover {
	color: var(--primary);
	background-image:linear-gradient(180deg,rgba(0,146,255,.3),rgba(0,146,255,0));
}

.cmpt-top-menu-item-check {
	color: var(--primary);
}
#login-window {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 10000;
    top:0;
    left:0;
    background-color: #12ada9;
    display:flex;
}

#login-frame {
    width: 400px;
    height: 500px;
    background-color: #FFFFFF;
    border-radius: 20px;;
    margin:auto;
    display: flex;
    flex-direction: column;
}

.login-line-box {
    display: flex;
    height: 46px; 
    width: 270px;
    line-height: 46px;
    font-size:16px;
    padding: 0 20px;
    border: 1px solid #d0d2d9;
    border-radius: 10px;
    margin: 30px auto 0;
}

#login-frame-title {
    margin: 10px 20px 0;
    height: 24px;
    display: flex;
    flex-direction: row;
}

#login-frame-title > div:first-child {
    width: 0;
    flex-grow: 1;
}

#login-frame-title > div:nth-child(2){
    cursor:pointer;
    width: 24px;
}

#login-button {
    height: 46px; 
    width: 310px;
    font-size:16px;
    background-color: var(--primary);
    border: 1px solid #d0d2d9;
    border-radius: 10px;
    margin: 30px auto 10px;
    color: var(--on-primary);
    cursor: pointer;
}

#login-button:disabled {
    cursor: none;
    background-color: #00a6a7;
}

#send-valid-code {
    width:250px; 
    background-color:#FFFFFF; 
    font-size:16px; 
    color:var(--primary); 
    cursor:pointer;
}

#send-valid-code:disabled {
    cursor: none;
    color:#00a6a7; 
}

.login-input {
    font-size:16px;
}


.cmpt-search-box {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;

    background-color: var(--primary);
    border-radius: 5px; 
    font-size:20px; 
    color: var(--on-primary);
}

.cmpt-search-box > input {
    flex-grow: 1;
    outline: none;
    border: 0;
    background-color:#FFFFFF; 
    margin: 2px; 
    border-radius: 5px;
    padding: 0 16px;
    font-size:16px;
}

.cmpt-search-box > div { 
    cursor:pointer; 
    width: 120px;
    align-self: center;
    text-align: center;
}
#home-category {
    margin-top : 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 340px;
}

#home-category > div:first-child {
    padding-top: 6px;
    background-color: #FFFFFF;
    border-radius: 10px;;
    width:384px;
    overflow: hidden;
}

#home-category > div:nth-child(2) {
    position: relative;
    margin-left: 16px;
    flex-grow: 1;
    background-color: #FFFFFF;
    border-radius: 10px;;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

#home-hot-jobs,
#home-hot-enterprises {
    margin-top : 64px;
    display: flex;
    flex-direction: column;
}

#home-hot-jobs > div:first-child,
#home-hot-enterprises > div:first-child
{
    font-size: 32px;
    height: 60px;
    line-height: 45px;
    text-align: center;
    font-weight: 600;
}

#home-hot-jobs > div:nth-child(2) {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

#home-hot-enterprises > div:nth-child(2) {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.home-hot-enterprises-unit {
    width: 388px;
    height: 400px;
    margin-bottom: 20px;
    background-color: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
}

.home-hot-enterprises-unit > div:first-child {
    height:44px;
    padding: 16px 20px;
    background-color: #f2fafa;
    flex-direction: row;
    display: flex;
    cursor: pointer;
    --hot-ent: #222;
}

.home-hot-enterprises-unit > div:first-child:hover {
    --hot-ent: #00d7c6;
}

.home-hot-enterprises-unit-info {
    flex-grow: 1;
    padding-left: 16px;
}

.home-hot-enterprises-unit-info > div {
    height: 22px;
    line-height: 22px;
}

.home-hot-enterprises-unit-info > div:first-child {
    height: 22px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.home-hot-enterprises-unit-info > div:nth-child(2){
    font-size: 13px;
    margin-top: 4px;
    height: 18px;
    color: #999;
    line-height: 18px;
}

.home-hot-enterprises-unit > div:nth-child(2) {
    height:264px;
}

.home-hot-enterprises-unit > div:nth-child(3) {
    height: 68px;
    text-align: center;
}

.home-more-post {
    width: 122px;
    margin: 14px auto;
    height: 30px;
    line-height: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(0, 190, 189, .6);
    font-size: 14px;
    font-weight: 400;
    color: #00a6a7;
    transition: all .2s linear;
    cursor: pointer;
}

.home-more-post:hover {
    color: #fff;
    background-color: #00bebd;
    border-color: #00bebd;
}

.home-industry-box {
    display:flex;
    flex-direction: column;
    border-bottom: 1px solid #e6e6e6;
    height:280px;
}

.home-industry-box-line {
    --icon-color: #00bebd;
    box-sizing: border-box;
    width: 100%;
    padding: 0 18px;
    height:40px;
    line-height: 40px;
    display: flex;
    flex-direction: row;
}

.home-industry-box-line:hover {
    box-shadow: 0 4px 16px 0 rgba(153, 153, 153, .2);
    --icon-color: var(--primary);
}

.home-industry-box-ctx {
    flex-grow: 1;
    font-size: 14px;
    overflow: hidden;
}

.home-industry-box-line > div:nth-child(2) {
    width: 12px;
    padding-top:14px;
}

.home-industry-box-ctx > div:not(:first-child) {
    color: #666;
    margin-left: 20px;
    cursor: pointer;
    display: inline-block;
}

.home-industry-box-ctx > div:not(:first-child):hover {
    color: #00a6a7;
    font-weight: 500;
}

.home-industry-box-ctx > div:first-child {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    cursor: auto;
    color: #222;
}

.home-industry-box-line svg {
    color:var(--icon-color);
}

.home-industry-state {
    height: 50px;
    line-height: 50px;
    padding: 0 18px;
    display: flex;
    flex-direction: row;
    font-size: 16px;
    color: var(--primary);
}

.home-industry-state > div:first-child {
    width: 50px;
    text-align: center;
}

.home-industry-state > div:nth-child(2){
    flex-grow: 1;
}

.home-industry-state > svg {
    margin-top:13px;
    cursor: pointer;
    color: #00bebd;
}

.home-industry-state > svg:hover {
    color: var(--primary);
}

.home-category-detail {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: #FFFFFF;
    padding: 16px;
    box-sizing: border-box;
}

.home-category-detail-show{
    z-index: 10;
}

.home-category-detail > div:first-child {
    font-size: 16px;
    font-weight: 500;
    color: #12141a;
    line-height: 22px;
    height: auto;
    padding-left: 0;
    margin-bottom: 4px;
}

.home-category-detail > div:not(first-child) {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: row;
    font-size: 13px;
    line-height: 30px;
    margin-bottom: 18px;
}

.home-category-detail > div:not(first-child) > div:first-child {
    width: 118px;
    flex-shrink: 0;
}

.home-category-detail > div:not(first-child) > div:nth-child(2) {
    padding-bottom: 10px;
    flex-grow: 1;
    border-bottom: 1px solid #eee;
}

.home-category-detail-leaf {
    cursor: pointer;
    height: 30px;
    display: inline-block;
    margin-right: 20px;
}

.home-category-detail-leaf:hover {
    color: #00a6a7;
}


.cmp-job {
    width: 388px;
    height: 136px;
    font-size: 13px;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
}

.cmp-job > div:nth-child(2) {
    height: 24px;
    line-height: 24px;
    padding: 12px 20px;

    --hot-ent: #222;
    background-color: #f2fafa;
    display: flex;
    flex-direction: row;
    color: #666;
    cursor:pointer;
    --hot-ent: #222;
}

.cmp-job > div:nth-child(2):hover {
    --hot-ent: #00d7c6;
}

.cmp-job-unit {
    height: 56px;
    padding: 16px 20px;
    cursor:pointer;
    --hot-job: #222;
}

.cmp-job-unit:hover {
    --hot-job: #00d7c6;
}


.cmp-job-unit-info {
    display:flex;
    flex-direction: row;
    font-size: 16px;
}

.cmp-job-job-info>div {
    height:22px;
    line-height:22px;
}

.cmp-job-unit-info>div:first-child {
    color:var(--hot-job);
    flex-grow: 1;
}

.cmp-job-unit-info>div:nth-child(2){
    color:#fe574a;
}

.cmp-job-unit-req {
    display:flex;
    flex-direction: row;
    margin-top: 12px;
    font-size: 13px;
}

.cmp-job-unit-req > div{
    height: 18px;
    line-height: 18px;
    color: #666;
    background: #f8f8f8;
    padding: 2px 10px;
    border-radius: 4px;
    margin-right: 20px;
}

.cmp-ent {
    width: 288px;
    height: 130px;
    background-color: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
}

.cmp-ent > div:first-child {
    height: 50px;
    padding: 20px 20px;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    --hot-ent: #222;
}

.cmp-ent > div:first-child:hover {
    --hot-ent: #00d7c6;
}

.cmp-ent > div:nth-child(2) {
    height: 40px;
    display:flex;
    color:#333;
    background-color: #f2fafa;
    padding: 0 20px;
    font-size: 14px;
    flex-direction: row;
    align-items: center;
}

.cmp-ent-info {
    flex-grow: 1;
    margin-left: 5px;
}

.cmp-ent-info > div {
    height: 25px;
    line-height: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.cmp-ent-info > div:first-child {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cmp-ent-info > div:nth-child(2){
    font-size: 13px;
    color: #999;
    overflow: hidden;
}

.cmp-button {
    width: 90px;
    height:36px;
    line-height:36px;
    border-radius: 8px;
    border: 1px solid #e3e7ed;
    cursor: pointer;
    background-color: #FFF;
    color: #999;
    display:inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.cmp-button:hover {
    border: 1px solid #00a6a7;
}

.cmp-p-button {
    color: #FFF;
    background-color: #00bebd;
}

.cmp-p-button:hover {
    background-color: #00bebdcc;
}
.m-account-unit-p {
    padding:30px 0;
    border-bottom: 1px solid #edf0f5;
}

.m-account-unit-p>div:first-child {
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.m-account-unit-p-notice {
    color: #666;
    font-size: 12px;
    height:28px;
    line-height: 28px;
}

.m-account-unit-p-attr{
    color: #666;
    margin-top:20px;
    font-size: 14px;
    height:37px;
    line-height: 37px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.m-account-unit-p-attr svg{
    cursor: pointer;
    margin-left: 10px;
}

.m-account-unit-p-attr svg:hover{
    color: #00bebd;
}

.m-account-dialog {
    width:400px;
    background-color: #FFF;
    border-radius: 10px;
    display:flex;
    flex-direction: column;
}

.m-account-dialog > div:first-child {
    height: 40px;
    line-height: 55px;
    text-align: center;
    font-size: 16px;
}

.m-account-dialog > div:nth-child(3){
    margin: 30px 0;
    text-align: center;
}

.m-account-dialog-cont > div {
    display: flex;
    height:40px;
    width: 270px;
    line-height: 40px;
    font-size: 16px;
    padding: 0 20px;
    border: 1px solid #d0d2d9;
    border-radius: 10px;
    margin: 20px auto 0;
    align-items: center;
}

.m-account-dialog-cont input {
    height:100%;
    outline: none;
    font-size: 14px;
    border: 0;
}

.m-account-dialog-cont button {
    font-size: 14px;
    background-color: #FFF;
    border: 0;
    color: var(--primary);
    cursor: pointer;
}

.m-account-dialog-cont button:hover {
    color: var(--primary-container);
}
.cmp-confirm svg{
    color: #00a6a7;
    cursor: pointer;
}

.cmp-confirm svg:hover{
    color: #00bebd;
}

.cmp-confirm {
    padding: 10px 20px;
    width:440px;
    background-color: #FFF;
}

.cmp-confirm-title {
    height:40px;
    font-size: 16px;
    font-weight: 500px;
    color: #222;
    line-height:40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #e3e7ed;
}

.cmp-confirm-title > div {
    flex-grow: 1;
}

.cmp-confirm-cont{
    height:100px;
    line-height:100px;
    font-size: 14px;
    margin: 0 20px;
}

.cmp-confirm-bar{
    height:45px;
    line-height:45px;
    text-align: center;
}
.m-his-header {
    height: 35px;
    line-height: 35px;
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #e3e7ed;
    margin: 0 20px;
    padding-top: 10px;
}

.m-his-header-active {
    color: var(--primary) !important;
    font-weight: 600;
}

.m-his-header > div{
    width: 80px;
    font-size: 14px;
    text-align: center;
    color: var(--secondary);
    cursor: pointer;
}

.m-his-header > div:hover{
    color: var(--primary);
}

.m-his-content {
    display: flex;
    flex-direction: column;
    min-height: 600px;
}


.m-resume svg {
    color: #00a6a7;
    cursor: pointer;
}

.m-resume svg:hover {
    color: #00bebd;
}

.m-resume-index {
    background-color:#FFF; 
    border-radius:10px;
    padding: 10px 0 40px;
    position: fixed;
    top: 70px;
    width:160px;
}

.m-resume-index > span{
    padding-left: 20px;
    font-size: 14px;
    display: block;
    height: 40px;
    font-weight: 600;
    line-height: 40px;
}

.m-resume-index > div {
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    color: #333;
    padding-left: 20px;
    font-size: 14px;
}

.m-resume-index > div:hover {
    background-color: #f8f8f8;
    color: #00a6a7;
    border-left: 3px solid var(--primary);
}

#m-resume-baseinfo {
    padding:0 20px;
    margin: 20px 0 10px;
}

#m-resume-baseinfo:hover {
    background-color: #f8f8f8;
    cursor: pointer;
}

.m-resume-bi-line {
    height: 36px; 
    line-height: 36px; 
    display: flex;
    flex-direction: row;
    align-items: center;
}

.m-resume-bi-line > div {
    width: 140px;
    padding-left: 10px;
    font-size: 14px; 
    color: #333;
}

#m-resume-evaluation-cont {
    min-height: 48px;
    padding: 0px 20px;
}

#m-resume-evaluation-cont:hover {
    background-color: #f8f8f8;
    cursor: pointer;
}

.m-resume-title {
    --display: none;
    margin-top: 10px;
    height: 20px;
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
}

.m-resume-title > div:first-child {
    height: 20px;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
    font-size: 20px;
    height: 20px;
    line-height: 20px;
    flex-grow: 1;
    color: #222;
}

.m-resume-block {
    --display: none;
    padding: 0 20px;
    color: #333;
    margin-bottom: 20px;
}

.m-resume-block > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    color: #222;
    line-height: 22px;
    padding: 4px 0;
}

.m-resume-block > div:first-child {
    font-size: 16px;
    font-weight: 500;
    height: 22px;
    line-height: 22px;
    padding: 8px 0;
}

.m-resume-block svg{
    display:var(--display);
    margin-right: 10px;
}

.m-resume-line {
    --display: none;
    display: flex;
    flex-direction: row;
    padding: 0 20px;
    height: 45px;
    line-height: 45px;;
    font-size: 14px;
    color: #333;
    align-items: center;
}

.m-resume-line > svg{
    display:var(--display);
    margin-right: 10px;
}

.m-resume-block:hover,
.m-resume-line:hover,
.m-resume-title:hover {
    --display: inline-block;
    background-color: #f8f8f8;
}

.m-resume-title > svg {
    display: var(--display);
}

.m-resume-text {
    min-height: 48px;
}
.comp-form {
    position: relative;
}

.comp-form-textarea {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    margin-top: 6px;
    height: 120px;
    border-radius: 8px;
    border: 1px solid #e3e7ed;
    color: #222;
    padding: 10 12px;
    box-shadow: none;
    outline: none;
    background-color: #fff;
    cursor: text;
}

.comp-form-input {
    width: 100%;
    font-size: 14px;
    margin-top: 6px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #e3e7ed;
    color: #222;
    padding: 0 12px;
    box-shadow: none;
    outline: none;
    background-color: #fff;
    background-image: none;
    cursor: text;
}

.comp-form input:hover {
    border-color: #00bebd;
}

.comp-form input:read-only{
    background-color: #e0e0e0;
}

.comp-form-title {
    font-weight: 500;
    padding:15px 20px 5px;
    height: 22px;
    line-height: 22px;
    font-size:16px;
}

.comp-form-tarbar {
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 20px 0 20px; 
}

.comp-city,
.comp-idt,
.comp-select {
    position: relative;
    height: 32px;
}

.comp-selected,
.comp-idt-selected,
.comp-city-selected {
    height:100%;
    width:100%;
    background-color: #fff;
    color: #333333;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid #e3e7ed;
    display:flex;
    flex-direction: row;
}

.comp-city-selected > div,
.comp-idt-selected > div,
.comp-selected > div{
    line-height: 32px;
    height: 32px;
    height:100%;
    font-size:14px;
    padding: 0 10px;
    width:0;
    flex-grow: 1;
    user-select: none;
}

.comp-city-selected > svg,
.comp-idt-selected > svg,
.comp-selected > svg {
    margin: 3px 8px 0 0;
    color: #9fa3b0;
}

.comp-select-items {
    position: absolute;
    margin-top: 5px;
    background-color: #FFF;
    border-radius: 8px;
    border: 1px solid #e3e7ed;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 10;
    width: 100%;
}

.comp-idt-items-item > div,
.comp-city-items-city > div,
.comp-city-items-prov > div,
.comp-select-items > div {
    color: #666;
    user-select: none;
    font-size:14px;
    padding: 0 10px;
    height: 32px;
    line-height: 32px;
    cursor: pointer;
}

.comp-idt-items-item > div:hover,
.comp-city-items-city > div:hover,
.comp-city-items-prov > div:hover,
.comp-select-items > div:hover {
    color: #c69c9c;
}


.comp-idt-items,
.comp-city-items {
    position: absolute;
    margin-top: 5px;
    background-color: #FFF;
    border-radius: 8px;
    border: 1px solid #e3e7ed;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 10;
    display: flex;
    flex-direction: row;
    width: 100%;
    min-width: 300px;
    height: 200px;
    overflow: hidden;
    padding: 5px 5px;
}

.comp-idt-items-item,
.comp-city-items-prov,
.comp-city-items-city{
    width:0;
    flex-grow: 1;
    overflow: auto;
    height:100%;
}

.comp-radio{
    position: relative;
    height: 32px;
    flex-direction: row;
    display: flex;
}

.comp-radio > input{
    cursor: pointer;
}

.comp-radio > div {
    color: #999;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    margin-right: 20px;
}




