body {

}

.row {
    margin: 0;
}
/* header */
.top1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10%;
    width: 100%;
    color: #26a26f;
}

.top1 p {
    margin: 0;
}
/* 导航条 */
.top2 {
    width: 100%;
    background-color: #29b078;
}

.padding-10 {
    padding: 0 10%;
}

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

#mynavbar {
    background-color: #29B078;
    border: none;
}

#mynavbar li {
    list-style: none;
    text-align: center;
}

.top2 button {
    margin: 0;
    padding: 16px 0;
}

.top2 button img {
    padding: 5px;
    opacity: 0.5;
    background-color: #2ccf8c;
    height: 40px;
    border-radius: 5px;
}

.top2 button img:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.top2 ul {
    margin: 0;
    padding: 0;
}

.top2 li a {
    width: 100%;
    height: 100%;
    color: white;
    line-height: 100px;
    font-size: 18px;
}

.top2 ul li a:hover {
    text-decoration: none;
}

.li-active {
    border-bottom: none;
    background-color: #34cc89;
}
/* main */
.box {
    padding: 0 10% 15% 10%;
    background-color: #fafafa;
}

.nav1 {
    padding: 30px 0;
    border-bottom: 1px solid #bfbfbf;
}

.nav1 span {
    color: #29b078;
}

.nav2 {
    padding: 30px 0;
    color: #9d9d9d;
    border-bottom: 1px solid #dedede;
}

.job-dir {
    padding: 30px 0;
    border-bottom: 1px solid #bfbfbf;
    font-size: large;
    font-weight: bold;
}

.nav2 a {
    margin-left: 20px;
    padding: 2px 2px;
    color: black;
    text-decoration: none;
}

.nav2 a:hover {
    background-color: #29b078;
}
/* 卡片 */
.flex-sm1 {
    margin-top: 50px;
}

.col-sm-1 {
    width: 2%;
    padding: 0;
}

.intro-sm {
    position: relative;
    margin: 2% 0;
    padding: 2% 0;
    width: 32%;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 5px 1px #aeb2b3;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

.font12 {
    margin: 0;
    font-size: 12px;
}

.salary {
    float: right;
}

.red {
    color: red;
}

.sample {
    visibility: hidden;
    border: none;
}

.sample td {
    border: none;
    padding: 0;
}

tr,th,td {
    border: 1px solid #c0c0c0;
    word-break:break-all;
}

th,td {
    width: 10%;
    padding: 10px;
}

table {
    border: 2px solid white;
    border-collapse:collapse;
}

.nbd {
    border: none;
}

.row1 {
    display: flex;
    align-items: center;
}

.row1 img {
    height: 100%;
}

.row1 p {
    margin: 0;
    padding-left: 5px;
}

.gray {
    color:#9D9D9D;
}

.p1 {
    font-size: 16px;
}

.p2 {
    font-size: 14px;
    font-weight: normal;
}
/* 点击动画 */
.hov {
    position: absolute;
    top:0;
    left:700px;
    bottom:0;
    width: 100%;
    padding: 100px 30px;
    font-size: 16px;
    visibility: hidden;
    color: white;
    background: rgba(6, 6, 6, 0.7);
}

.hov-p1 {
    text-align: center;
}

.hov-p2 {
    text-indent: 32px;
}

.intro-sm:hover .hov {
    visibility: visible;
    transform: translate(-700px,0);
    transition: transform 0.5s;
    z-index: 1;
}
/* footer */
.footer-row1 {
    text-align: center;
    padding: 10px 10%;
    background-color: white;
}

.footer-row2 {
    text-align: center;
    padding: 0 10% 10px 10%;
    background-color: white;
}

footer a {
    color: white;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

footer ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    list-style: none;
}

footer li {
    padding: 0;
}

footer li:hover {
    border-bottom:1px solid black;
}

.footer-row3 {
    margin: 0;
    margin-top: 20px;
    padding: 20px 10%;
    color: white;
    background-color: #29b078;
}

#copyright {
    text-align: center;
    padding: 10px 0;
    color: white;
    border-top: 1px solid white;
    background-color: #29b078;
}

footer p {
    margin-bottom: 30px;
}

footer .p1 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

footer .p2 {
    margin-bottom: 10px;
}


@media screen and (max-width: 1024px) {

    .intro-sm {
        width: 49%;
    }

    .hide1 {
        display: none; /* 隐藏多余的分隔列 */
    }
}

@media screen and (min-width: 769px) {
    .sign {
        display: none;
    }

    .footer-code {
        float: right;
        text-align: center;
    }

}

@media screen and (max-width: 768px) {
    .sign {
        text-align: right;
        padding: 5px 10px;
    }

    .sign a {
        color: black;
    }

    .top1 {
        display: none;
    }

    .top2 ul {
        width: 100%;
    }

    #mynavbar {
        padding: 0;
    }

    .intro-sm {
        width: 100%;
    }

    .col-sm-1 {
        display: none;
    }
}

@media screen and (max-width: 744px) {
    .footer-row1 {
        float: left;
        position: relative;
        width: 50%;
        margin: 0;
    }

    .footer-row2 {
        float: left;
        position: relative;
        padding: 10px 10%;
        width: 50%;
        margin: 0;
    }

    footer ul {
        display: block;
        text-align: center;
    }

    footer ul li {
        float: none;
        display: block;
        margin: 10px;
    }
}

@media screen and (min-width: 768px) {
    #mynavbar {
        width: auto;
        padding: 0 10% 0 0 !important;
    }

    #mynavbar > ul {
        display: flex;
        margin:0;
    }

    .top2 {
        display: flex;
        justify-content: space-between;
    }

    #mynavbar > ul > li {
        padding: 0 30px;
        width: 97px;
    }

    #mynavbar > ul > li:hover {
        border-bottom: 3px solid white;
    }

    .li-active {
        border-bottom: 3px solid white;
        background-color: transparent;
    }

}

