/*队伍*/
div.team_content {
    width: 60%;
    margin: 0 auto 200px;
    display: flex;
    flex-direction: column;
}

div.team_content div.team_top_part {
    display: flex;
    flex-direction: row;
    align-items: center;
}

div.team_content div.team_logo_item {
    position: relative;
}

div.team_content img.team_logo {
    border-radius: 50%;
    width: 6vw;
    height: 6vw;
    object-fit: cover;
    display: block;
}

div.team_content div.edit_logo_container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

div.team_content img.edit_logo_icon {
    width: 1.6vw;
    height: 1.6vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-41%, -50%);
    cursor: pointer;
}

div.team_content svg.logo_uploading {
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

div.team_content div.team_name_and_introduction {
    margin-left: 1vw;
}

div.team_content div.team_name_item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

div.team_content div.team_name {
    font-size: 1.6vw;
    font-weight: bold;
}

div.team_content img.edit_team_name_icon {
    display: none;
    width: 1.3vw;
    padding-left: 0.3vw;
    cursor: pointer;
}

div.team_content div.team_name:hover~img.edit_team_name_icon,
div.team_content img.edit_team_name_icon:hover {
    display: block;
}

div.team_content input.edit_team_name {
    font-size: 1.3vw;
    padding: 0.2vw 0.4vw;
    outline: none;
    width: 16vw;
}

div.team_content div.finish_edit_button {
    margin-left: 0.4vw;
    padding: 0.3vw 0.6vw;
    background: #6e6e6e;
    color: white;
    border-radius: 0.3vw;
    font-size: 0.9vw;
    cursor: pointer;
}

div.team_content div.team_introduction_item {
    margin-top: 0.5vmin;
    display: flex;
    flex-direction: row;
    align-items: center;
}

div.team_content div.team_introduction {
    font-size: 0.85vw;
}

div.team_content img.edit_team_introduction_icon {
    display: none;
    width: 1vw;
    padding-left: 0.2vw;
    cursor: pointer;
}

div.team_content div.team_introduction:hover~img.edit_team_introduction_icon,
div.team_content img.edit_team_introduction_icon:hover {
    display: block;
}

div.team_content input.edit_team_introduction {
    font-size: 1vw;
    padding: 0.2vw 0.4vw;
    width: 25vw;
    outline: none;
}

div.team_content div.team_recruitment_item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

div.team_content img.edit_team_recruitment_icon {
    display: none;
    width: 1.2vw;
    padding-left: 0.2vw;
    cursor: pointer;
}

div.team_content div.team_recruitment:hover~img.edit_team_recruitment_icon,
div.team_content img.edit_team_recruitment_icon:hover {
    display: block;
}

div.team_content input.edit_team_recruitment {
    font-size: 1vw;
    padding: 0.2vw 0.4vw;
    width: 29vw;
    outline: none;
}

div.team_content div.team_item_label {
    margin-top: 2.2vmin;
    font-size: 1.3vw;
    font-weight: bold;
}

div.team_content div.team_item_content {
    margin-top: 0.5vmin;
    font-size: 1vw;
}

div.team_content div.team_members {
    margin-top: 2vmin;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

div.team_content div.team_leader {
    position: absolute;
    right: 0;
    background: #eeeeee;
    padding: 0.2vw 0.5vw;
    top: 0.7vw;
    font-size: 0.65vw;
}

div.team_content div.team_member {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    /*border: 1px solid #ccc;*/
    width: 7.5vw;
    padding: 1vw 0.75vw;
    border-radius: 1vw;
    box-shadow: #ccc 0 0 4px 0;
    margin-right: 1vw;
    margin-bottom: 2vmin;
    position: relative;
}

div.team_content img.team_member_photo {
    margin-top: 1.4vmin;
    width: 4.3vw;
    border-radius: 50%;
    cursor: pointer;
}

div.team_content div.team_member_nickname {
    margin-top: 1vmin;
    font-size: 1vw;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    cursor: pointer;
}

div.team_content div.team_member_identity_type {
    display: flex;
    margin-top: 0.5vmin;
    font-size: 0.65vw;
    color: grey;
}

div.team_content div.identity_type_name {
    margin-left: 2px;
    margin-right: 2px;
}

div.team_content div.input_wechat_number {
    display: flex;
    flex-direction: row;
    align-items: center;
}

div.team_content div.input_wechat_number input[type=text] {
    font-size: 0.85vw;
    width: 22vw;
    padding: 1vmin 1.2vmin;
    outline: none;
    border-radius: 3px;
    border: 1px solid #777;
    box-sizing: border-box;
}

div.team_content div.select_jobs {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 1vmin;
}

div.team_content div.jobs {
    display: flex;
    flex-direction: row;
    align-items: center;
}

div.team_content div.jobs input[type=checkbox] {
    width: 1vw;
    height: 1vw;
    cursor: pointer;
}

div.team_content div.jobs label {
    margin-right: 1vw;
    font-size: 1vw;
    cursor: pointer;
    user-select: none;
}

div.team_content div.apply_join_button {
    margin-top: 1.5vmin;
    font-family: ShangYa;
    font-size: 1.1vw;
    text-align: center;
    width: 5vw;
    height: 1.2vw;
    color: #ffffff;
    background-color: #6e6e6e;
    padding: 1vh 1.5vh;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
}

div.team_content div.applying_button {
    margin-top: 1.5vmin;
    font-family: ShangYa;
    font-size: 1.1vw;
    text-align: center;
    width: 5vw;
    height: 1.2vw;
    color: #ffffff;
    background-color: #8f8f8f;
    padding: 1vh 1.5vh;
    border-radius: 6px;
    cursor: not-allowed;
    user-select: none;
}

div.team_content div.team_apply_members {
    margin-top: 2vmin;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

div.team_content div.deal_buttons {
    display: flex;
    flex-direction: row;
    margin-top: 0.5vmin;
    flex-wrap: wrap;
    justify-content: center;
}

div.team_content div.deal_button {
    font-size: 0.7vw;
    padding: 0.3vw 0.5vw;
    border-radius: 0.3vw;
    margin: 0.2vw;
    cursor: pointer;
    user-select: none;
}

div.team_content div.deal_button.view_wechat_number_button {
    background: #f1f1f1;
}

div.team_content div.deal_button.agree_button {
    background: #1ab32e;
    color: white;
}

div.team_content div.deal_button.refuse_button {
    background: #DD6B55;
    color: white;
}

/*创建队伍部分*/
div.team_create_content {
    width: 42%;
    margin: 0 auto 200px;
    display: flex;
    flex-direction: column;
}

div.team_create_content div.form_title {
    font-size: 1.6vw;
    font-weight: bold;
}

div.team_create_content div.input_label {
    margin-top: 2.1vmin;
    font-size: 1.1vw;
}

div.team_create_content div.input_item[input_type='must'] div.input_label:before {
    content: '*';
    color: #db0000;
}

div.team_create_content input[type=text] {
    font-size: 0.85vw;
    width: 100%;
    padding: 1vmin 1.2vmin;
    margin-top: 1vmin;
    outline: none;
    border-radius: 3px;
    border: 1px solid #777;
    box-sizing: border-box;
}

div.team_create_content div.input_content {
    margin-top: 1vmin;
    display: flex;
    flex-direction: row;
    align-items: center;
}

div.team_create_content div.tip {
    margin-top: 0.5vmin;
    font-size: 0.8vw;
    color: #aaa;
}

div.team_create_content div.error_tip {
    margin-top: 0.5vmin;
    font-size: 0.85vw;
    color: #db0000;
}

div.team_create_content img.team_logo {
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    border: 1px solid #ddd;
    object-fit: cover;
}

div.team_create_content div.team_logo_uploader {
    margin-left: 1vw;
}

div.team_create_content input[type=checkbox] {
    width: 1vw;
    height: 1vw;
    cursor: pointer;
}

div.team_create_content div.job label {
    margin-right: 1vw;
    font-size: 1vw;
    cursor: pointer;
    user-select: none;
}

div.team_create_content div.submit {
    align-self: flex-end;
    margin-top: 1vh;
    font-family: ShangYa;
    font-size: 1.1vw;
    text-align: center;
    width: 5vw;
    height: 1.2vw;
    color: #ffffff;
    background-color: #6e6e6e;
    padding: 1vh 1.5vh;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
}