* {
    box-sizing: border-box;
    /*    outline: solid 1px red;*/
}


/*網頁預設*/

html,
body,
header,
section,
footer {
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
}

hr {
    border-color: #000;
    margin-top: 0;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.content {
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.bg-white-hw {
    background-color: white;
}

.bg-yellow-hw {
    background-color: #F8B900;
}

.bg-blue-hw {
    background-color: #2C4198;
}

.bg-green-hw {
    background-color: #00A64E;
}

.bg-red-hw {
    background-color: #D7263D;
}

.font-blue-hw {
    color: #2C4198;
}

.btn {
    border-radius: 7px;
    border: 0px solid #fff;
}

.btn-primary {
    background-color: #2C4198;
}

.btn-success {
    background-color: #00A64E;
}

.btn-warning {
    background-color: #F8B900;
}

.btn-alert {
    background-color: #D7263D;
}

.btn-default {
    background: white;
    color: #2C4198;
    border: 1px solid #2C4198;
}

.content-header {
    padding: 29px 0;
    min-height: auto;
}

.content-header h1 {
    font-size: 40px;
    color: #2C4198;
    font-weight: bolder;
}

.content-header p {
    font-size: 16px;
}


/*站台box樣式*/

.box {
    border: solid 1px #aaa !important;
    border-radius: 15px;
    padding: 17px 26px;
}

.box-header.with-border {
    border-bottom: 1px solid #aaa;
}

.box-header {
    color: #2C4198;
}

.box-header > .box-tools {
    top: 20px;
}

.btn-box-tool {
    color: #2C4198;
}

.box-header h4,
.box-header i {
    font-size: 25px;
    font-weight: 600;
}

.box.box-noborder {
    border: none !important;
    border-radius: 0px;
    padding: 0px;
    background: none;
    box-shadow: none;
    margin-bottom: 0px;
}

.box-noborder>.box-header {
    padding: 10px 0;
}

@media (max-width: 375px) {
    .box {
        padding: 10px 10px;
    }
    .box-body {
        padding: 4px;
    }
    .box-header h4,
    .box-header i {
        font-size: 20px;
    }
    .box-header i {
        margin: 0 10px;
    }
}


/*輸入框*/

input {
    border: 1px solid #d2d6de;
    border-radius: 5px !important;
    padding-left: 10px;
}

.short-input {
    width: 135px;
    display: inline-block;
}

.long-input {
    width: 200px;
    display: inline-block;
}

.none-input {
    border: 0;
    /*    border-bottom: 1px solid #000;*/
    border-radius: 0px !important;
    background-color: rgba(0, 0, 0, 0);
}

select,
option {
    border-radius: 5px !important;
}


/*超過省略*/

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/*標題*/

@media (max-width: 768px) {
    .content-header {
        padding: 15px 15px;
    }
    .content-header h1 {
        font-size: 25px;
    }
    .content-header h3 {
        font-size: 14px;
    }
}


/*表單樣式*/

.fixed-table-container {
    border: none;
    /*    border-bottom: 1px solid #707070;*/
    background-color: white;
    overflow-y: scroll;
}

.fixed-table-body {
    height: auto;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: white;
}

.table-hover > tbody > tr:hover {
    background-color: #F3f3f3;
}

.tablenobg .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: transparent;
}

.tablenobg .table-hover > tbody > tr:hover {
    background-color: #FFF;
}

.tablenobg .fixed-table-container {
    border: none;
    background-color: transparent;
    overflow-y: inherit;
}


/*跳窗*/

.modal-content {
    padding: 20px 20px;
    border-radius: 15px;
}


/*flex預設 */

.flex-s-c {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flex-e-c {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.flex-c-c {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-sb-c {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-sa-c {
    display: flex;
    justify-content: space-around;
    align-items: center;
}


/*table RWD*/

@media (max-width: 768px) {
    .rwdtable .card-view .title,
    .rwdtable .card-view .value {
        font-size: 12px;
        line-height: 34px;
    }
    .rwdtable .card-view .value {
        text-align: right;
    }
    .rwdtable>tbody>tr {
        /* margin-top: 100px; */
    }
    .rwdtable>tbody>tr>td {
        border-bottom: 3px solid #ddd;
    }
}


/*
    @media screen and (max-width: 768px) {
        .rwdtable {
            border: 0;
        }
        .rwdtable caption {
            font-size: 1.3em;
        }
        .rwdtable thead {
            border: none;
            clip: rect(0 0 0 0);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            width: 1px;
        }
        .rwdtable tr {
            border-bottom: 3px solid #ddd;
            display: block;
            margin-bottom: .625em;
        }
        .rwdtable td {
            display: block;
            font-size: 12px;
            text-align: right;
            padding-right: 5px;
            min-height: 34px;
        }
        .rwdtable td:before {
            color: black;
            content: attr(data-label);
            float: left;
            font-weight: bold;
            text-transform: uppercase;
        }
        .rwdtable td:last-child {
            border-bottom: 0;
        }
        .fixed-table-container tbody td:first-child {
            border-left: 1px solid #f4f4f4;
        }
        .th-edit {
            width: auto;
        }
    }
*/


/*跳窗右上角X*/

button.close {
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 100%;
}

.modal-header button {}

.portrait {
    width: 220px;
    height: 220px;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

.portrait img {
    width: 100%;
}


/*下滑提示箭頭按鈕*/

#header-scrolldown {
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    color: white;
    z-index: 3;
    cursor: pointer;
}

#header-scrolldown i {
    font-size: 40px;
}

#header-scrolldown {
    animation-name: downicon;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes downicon {
    0% {
        transform: translateY(-10%) translateX(-50%);
        opacity: 0;
    }
    25% {
        transform: translateY(10%) translateX(-50%);
        opacity: 1;
    }
    75% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-10%) translateX(-50%);
        opacity: 0;
    }
}


/*以下為個頁面樣式*/


/*賽事列表-開始*/

@charset "UTF-8";
.meeting-search {
    /*header*/
    /*賽事區塊_標籤*/
    /*賽事排版*/
    /*賽事列表RWD*/
    /*賽事列表—結束*/
}

.meeting-search .main-header nav {
    background-color: rgba(44, 65, 152, 0.6);
    position: absolute;
    top: 0;
    left: 0;
}

.meeting-search header {
    width: 100%;
    height: 700px;
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.meeting-search .darken {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0));
    z-index: 1;
}

.meeting-search .sport-header {
    background-image: url("../pages/Images/taekwondo/Taekwondo_1.jpg");
    background-position: 50% 20%;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
}

.meeting-search header .container {
    position: relative;
    z-index: 2;
    margin: auto auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.meeting-search header .sport-icon {
    width: 40%;
}

.meeting-search .sport-item {
    text-align: center;
    padding: 10px 50px 20px 50px;
    margin: 50px 37px;
    border-top: 5px solid white;
    border-bottom: 5px solid #e9164f;
    animation-name: sportitem;
    animation-duration: 0.5s;
}

.meeting-search .sport-item h1 {
    animation: goup;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.meeting-search .sport-item p {
    animation: goup;
    animation-duration: 0.5s;
    animation-delay: 0.7s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes goup {
    0% {
        transform: translateY(30%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes sportitem {
    0% {
        opacity: 0;
        transform: translateY(-10%);
        padding: 30px 50px;
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.meeting-search .sport-item h1 {
    font-size: 40px;
    font-weight: bold;
    /*    transform: translateX(28px);*/
}

.meeting-search .sport-item p {
    font-size: 16px;
    line-height: 1.5em;
}

.meeting-search .sport-number {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meeting-search .sport-number p,
.meeting-search .sport-number h4 {
    margin: 0;
    font-weight: normal;
}

.meeting-search .sport-number img {
    margin: 0 20px;
    width: 37px;
    height: 72px;
}

.meeting-search .competition {
    padding-top: 30px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #f3f3f3;
}

.meeting-search .competition_search {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;
    background: white;
    padding-left: 20px;
    border: solid 0.5px #ccc;
    color: #ccc;
    position: relative;
    border-radius: 20px;
}

.meeting-search .competition_search .fa {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    line-height: 40px;
    margin-left: 20px;
}

.meeting-search .competition_search input {
    color: #000;
    height: 40px;
    width: calc(100% - 80px);
    background: none;
    margin-left: 20px;
}

.meeting-search .competition_search button {
    height: 40px;
    width: 80px;
    border: 0;
    color: #666;
    background: none;
    border-left: 1px solid #ccc;
}

.meeting-search .competition_item {
    text-align: left;
    display: inline-block;
    width: 275px;
    height: 360px;
    position: relative;
    overflow: hidden;
    background-color: white;
    cursor: pointer;
    margin-left: 20px;
    margin-bottom: 50px;
    list-style-type: none;
}

.meeting-search .competition_banner {
    width: 275px;
    height: 170px;
    overflow: hidden;
    background-position: center;
}

.meeting-search .competition_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meeting-search .competition_content h4 {
    font-size: 18px;
    font-weight: 900;
    margin: 12px;
    width: 253px;
    height: 2em;
    color: black;
}

.meeting-search .competition_content p {
    line-height: 20px;
    color: #666;
    font-size: 14px;
    margin: 5px 12px;
}

.meeting-search .competition_item .fa-clock-o {
    margin-right: 5px;
}

.meeting-search .competition_item .fa-map-marker {
    margin-left: 2px;
    margin-right: 7px;
}

.meeting-search .competition_status p {
    position: absolute;
    bottom: 5px;
    font-size: 12px;
    right: 140px;
    color: black;
}

.meeting-search .competition_status_start {
    width: 100%;
    height: 50px;
    background-image: url("../pages/Images/taekwondo/item-start.svg");
    position: absolute;
    right: 0;
    bottom: 0;
}

.meeting-search .competition_status_start:before {
    content: "報名中";
    color: white;
    font-size: 16px;
    position: absolute;
    line-height: 50px;
    width: 275px;
    background-color: #00a64e;
    text-align: left;
    top: 50%;
    left: 167px;
    transform: translateY(-50%);
    padding-left: 20px;
}

.meeting-search .competition_status_none {
    width: 100%;
    height: 50px;
    background-image: url("../pages/Images/taekwondo/item-none.svg");
    position: absolute;
    right: 0;
    bottom: 0;
}

.meeting-search .competition_status_none:before {
    content: "未開放";
    color: white;
    font-size: 16px;
    position: absolute;
    line-height: 50px;
    width: 275px;
    background-color: #aaa;
    text-align: left;
    top: 50%;
    left: 167px;
    transform: translateY(-50%);
    padding-left: 20px;
}

.meeting-search .competition_status_full {
    width: 100%;
    height: 50px;
    background: url("../pages/Images/taekwondo/item-full.svg");
    fill: #040c21;
    position: absolute;
    right: 0;
    bottom: 0;
}

.meeting-search .competition_status_full:before {
    content: "已額滿";
    color: white;
    font-size: 16px;
    position: absolute;
    line-height: 50px;
    width: 275px;
    background-color: #d7263d;
    text-align: left;
    top: 50%;
    left: 167px;
    transform: translateY(-50%);
    padding-left: 20px;
}

.meeting-search .competition_status_stop {
    width: 100%;
    height: 50px;
    background-image: url("../pages/Images/taekwondo/item-stop.svg");
    position: absolute;
    right: 0;
    bottom: 0;
}

.meeting-search .competition_status_stop:before {
    content: "已截止";
    color: white;
    font-size: 16px;
    position: absolute;
    line-height: 50px;
    width: 275px;
    background-color: #666;
    text-align: left;
    top: 50%;
    left: 167px;
    transform: translateY(-50%);
    padding-left: 20px;
}

.meeting-search .competition ul {
    display: table;
    padding: 0;
    margin-top: 20px;
    /*
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: wrap;
*/
}

@media (max-width: 1200px) {
    .meeting-search header {
        height: 500px;
    }
    .meeting-search header .sport-icon {
        display: none;
    }
    .meeting-search header img:nth-child(2) {
        display: none;
    }
    .meeting-search .sport-item a,
    .meeting-search .sport-item p {
        transform: translateX(0);
    }
    .meeting-search .sport-number {
        justify-content: space-around;
        padding: 0 30px;
        font-size: 12px;
    }
    .meeting-search .sport-number img {
        display: none;
    }
    .meeting-search .competition .container {
        max-width: 905px;
    }
}

@media (min-width: 905px) {
    .meeting-search .competition_search {
        margin: 0 20px;
    }
    .meeting-search .competition_item:hover .competition_banner img {
        transform: scale(1.1);
        transition-duration: 0.3s;
    }
    .meeting-search .competition_item:hover .competition_status_start:before,
    .meeting-search .competition_item:hover .competition_status_none:before,
    .meeting-search .competition_item:hover .competition_status_full:before,
    .meeting-search .competition_item:hover .competition_status_stop:before {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        padding-left: 30px;
        transition-duration: 0.3s;
    }
    .meeting-search .competition_item:hover .competition_status_start p,
    .meeting-search .competition_item:hover .competition_status_none p,
    .meeting-search .competition_item:hover .competition_status_full p,
    .meeting-search .competition_item:hover .competition_status_stop p {
        right: 14px;
        color: white;
        transition-duration: 0.3s;
    }
}

@media (max-width: 905px) {
    .meeting-search .competition {
        padding-top: 20px;
    }
    .meeting-search .competition .container ul {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
    }
    .meeting-search .competition_item {
        width: 100%;
        margin: 0 0 5px 0;
        height: auto;
    }
    .meeting-search .competition_item > a {
        display: flex;
        justify-content: flex-start;
    }
    .meeting-search .competition_content h4,
    .meeting-search .competition_content p {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    .meeting-search .competition_content {
        padding: 0 12px;
        width: 55%;
        margin-left: 1%;
    }
    .meeting-search .competition_content h4 {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        height: auto;
    }
    .meeting-search .competition_banner {
        float: left;
        width: 40%;
    }
    .meeting-search .competition_status p {
        position: absolute;
        bottom: 5px;
        font-size: 12px;
        right: 100px;
    }
    .meeting-search .competition_status_full,
    .meeting-search .competition_status_none,
    .meeting-search .competition_status_start,
    .meeting-search .competition_status_stop {
        width: 100%;
        height: 50px;
        background: none;
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .meeting-search .competition_status_full:before,
    .meeting-search .competition_status_none:before,
    .meeting-search .competition_status_start:before,
    .meeting-search .competition_status_stop:before {
        width: auto;
        left: auto;
        right: 0;
        padding-right: 20px;
    }
}

@media (max-width: 610px) {
    .meeting-search .competition_banner {
        width: 100px;
        height: 60px;
        margin-top: 12px;
        margin-left: 12px;
    }
    .meeting-search .competition_item {
        height: 120px;
    }
    .meeting-search .competition_content {
        width: calc(100% - 100px);
        margin-left: 0;
    }
    .meeting-search .competition_content h4 {
        font-size: 12px;
        margin-bottom: 0;
    }
    .meeting-search .competition_content p {
        font-size: 12px;
        line-height: 14px;
    }
    .meeting-search .competition_status p {
        bottom: 5px;
        margin: 0;
    }
    .meeting-search .competition_status_full:before,
    .meeting-search .competition_status_none:before,
    .meeting-search .competition_status_start:before,
    .meeting-search .competition_status_stop:before {
        height: 25px;
        width: 70px;
        transform: translateY(0);
        padding: 0;
        line-height: 25px;
        top: auto;
        bottom: 0;
        font-size: 14px;
        text-align: center;
    }
}

@media (max-width: 374px) {
    .meeting-search .competition_content p {
        font-size: 10px;
        line-height: 12px;
    }
}


/*賽事列表—結束*/


/*活動履歷-開始*/

.resume-view .resume-item {
    line-height: 30px;
    cursor: pointer;
    background-color: none;
}

.resume-view .resume-year {
    font-size: 22px;
}

.resume-view .trophy i {
    font-size: 22px;
    color: #F8B900;
    margin-right: 10px;
}

.resume-view .resume-content {
    padding: 5px 0;
}

.resume-view .resume-content:hover {
    background-color: #fff;
}

@media (max-width: 375px) {
    .resume-view .resume-content {
        font-size: 12px;
    }
    .resume-view .trophy.col-xs-9,
    .resume-view .time.col-xs-3 {
        width: 100%;
    }
    .resume-view .portrait ~ div hr {
        display: none;
    }
    .resume-view .portrait ~ .col-xs-8 {
        font-size: 14px;
    }
}

.resume-view .game-result {
    border-bottom: 1px solid #aaa;
    line-height: 2em;
    padding-top: 5px;
    padding-bottom: 5px;
}


/*活動履歷-結束*/


/*報名頁面tk1開始*/

.registry_tk1 .registry-guide {
    text-align: left;
    margin-bottom: 20px;
}

.registry_tk1 .registry-guide h3,
.registry_tk1 .registry-guide h4 {
    padding-top: 15px;
}

.registry_tk1 #registry-guide-book {
    padding: 22px 26px;
    font-size: 20px;
    margin-bottom: 10px;
}

.registry_tk1 .registry-btn {
    margin: 5px 10px;
    width: 75px;
    height: 35px;
}

.registry_tk1 #survey_form_reg input {
    background-color: white;
}

.registry_tk1 input[placeholder="搜尋"] {
    border-radius: 5px;
}

.registry_tk1 .btn-default.registry-btn {
    background: white;
    color: #2C4198;
    border: 1px solid #2C4198;
}

.registry_tk1 .btn-sm {
    background: white;
    border: 1px solid #aaa;
    font-size: 14px;
}

.registry_tk1 #rb1,
.registry_tk1 #rb2 {
    display: none;
}

.registry_tk1 #rb2 {
    width: 130px;
}

.registry_tk1 #in_gender + .in_input {
    width: 60px;
    display: inline-block;
    margin-left: 10px;
}


/* 報名列表身欄位 */

.registry_tk1 .fixed-table-container tbody td .th-inner,
.registry_tk1 .fixed-table-container thead th .th-inner {
    white-space: normal;
}

.registry_tk1 .signfrom-h1,
.registry_tk1 .signfrom-h3 {
    display: inline-block;
}

.registry_tk1 .in_chose {
    background-color: rgba(255, 165, 0, 0.6) !important;
}

.registry_tk1 .pass_X {
    background-color: #FFB6C1 !important;
}

.registry_tk1 input:required {
    box-shadow: none;
}

.registry_tk1 h4.inn-qtitle {
    font-size: 14px !important;
}

.registry_tk1 .input-text-s {
    font-size: 14px !important;
    height: 32px;
}

.registry_tk1 .input-text-s,
.registry_tk1 .input-date {
    width: 100%;
    outline: none;
}

.registry_tk1 .input-text-s:focus,
.registry_tk1 .input-date:focus {
    border: 1px solid #2196f3;
}

.registry_tk1 .textarea-s {
    width: 100%;
    resize: none;
}

.registry_tk1 .select-s {
    width: 100%;
    border: 0;
    border: 1px solid #C8CCD4;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    line-height: 1.5;
}

.registry_tk1 .fit {
    margin: 0 5px;
}

.registry_tk1 .nopadding {
    padding: 0 !important;
}

.registry_tk1 .col-0 {
    float: left;
    padding: 0 10px;
}

.registry_tk1 .acc_notice {
    color: #f00;
    position: absolute;
}

.registry_tk1 .w-40 {
    width: 40px;
    max-height: 100%;
}

.registry_tk1 .none-input {
    width: 40px;
    margin-left: 10px;
    border: 1px solid #d2d6de;
    cursor: not-allowed;
}

.registry_tk1 .survey_form_reg {
    padding: 10px;
}

.registry_tk1 .notice_0 {
    display: none;
}

.registry_tk1 .notice_1 {
    color: #f00;
    display: none;
    font-size: 16px;
    padding: 0 10px;
}

.registry_tk1 hr {
    clear: both;
    width: calc(100% - 10px);
    margin-top: 0;
    border-color: #707070;
}

.registry_tk1 .short-input {
    width: 135px;
}

.registry_tk1 .long-input {
    width: 200px;
}

@media (min-width: 1200px) {
    .registry_tk1 .registry-guide {
        text-align: center;
    }
    .registry_tk1 .registry-btn {
        margin: auto;
    }
}

@media (max-width: 1200px) {
    .registry_tk1 #rb1,
    .registry_tk1 #rb2 {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .registry_tk1 .registry-guide {
        text-align: center;
    }
}

@media (max-width: 530px) {
    .registry_tk1 #registry-guide-book {
        padding: 10px 10px;
        font-size: 14px;
        margin-bottom: 10px;
        width: 100%;
    }
    .registry_tk1 #in_gender + .in_input {
        width: 60px;
    }
    .registry_tk1 .registry_user {
        min-width: 275px;
    }
    .registry_tk1 .col-xs-offset-4.registry_user {
        margin-left: 0%;
    }
}


/*解決報名列表btn大小問題*/

.registry_tk1 #MeetingMaster_relationship td button {
    height: 30px;
}

.registry_tk1 #MeetingMaster_relationship td:last-child {
    min-width: 125px;
}

@media (max-width: 768px) {
    .registry_tk1 #MeetingMaster_relationship td button:first-child {
        width: calc(100% - 80px);
        max-width: 200px;
    }
}


/*報名頁面tk1結束*/


/*成員管理-開始*/

.resume-search .panel:hover {
    background: #efefef;
}

.resume-search .th-edit {
    width: 150px;
}

.resume-search .fixed-table-container tbody tr td {
    line-height: 30px;
}


/*成員管理-結束*/