@charset "UTF-8";

:root {
    --primary: #27388b;
    --helper: #f47a59;
    --text-color: #666;
    --backgournd-color: #ecf0ff;
}

body{
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.lock{
    overflow: hidden;
}

body > main{
    flex: 1 0 0;
}

.inner{
    width:100%;
    max-width: 1620px;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    padding:0 35px;
    box-sizing: border-box;
}

.button{
    outline: none;
    color: inherit;
    display: inline-block;
    border-radius: 6px;
    line-height: 1.25em;
    padding: 0.625em 0.75em;
    box-sizing: border-box;
    border: 1px solid currentColor;
    text-decoration: none;
    background-color: transparent;
    cursor: pointer;
    font-size: inherit;
}

.button + .button{
    margin-left: 10px;
}

.button icon-font{
    font-size: 1.25em;
    margin-right: 0.25em;
}

.adaptor{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.adaptor > img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner{
    position: relative;
}

.banner-prev,
.banner-next {
    position: absolute;
    z-index: 1;
    top: 50%;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,.3);
    border-radius: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
}

.banner-prev{
    left: 20px;
}

.banner-next{
    right: 20px;
}

.banner-prev.swiper-button-disabled,
.banner-next.swiper-button-disabled{
    cursor: not-allowed;
    opacity: .4;
}

.swiper-container-horizontal > .banner-pagination{
    position: absolute;
    z-index: 1;
    bottom: 10px;
    left: 50%;
    width: auto;
    transform: translateX(-50%);
}

.banner-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #fff;
    transition: all .3s ease;
}

.banner-pagination .swiper-pagination-bullet-active{
    width: 30px;
}

.el-pagination{
    font-weight: 500;
}

/*.pagination{*/
/*    list-style: none;*/
/*    padding:0;*/
/*    justify-content: center;*/
/*    margin-top: -10px;*/
/*    margin-left: -10px;*/
/*    margin-bottom: 0;*/
/*    display: inline-flex;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.pagination-item{*/
/*    margin-left: 10px;*/
/*    margin-top: 10px;*/
/*}*/

/*.pagination-link{*/
/*    display: inline-flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    text-decoration: none;*/
/*    color: var(--primary);*/
/*    border: 1px solid #eee;*/
/*    border-radius: 4px;*/
/*    line-height: 28px;*/
/*    width: 30px;*/
/*    transition: all .3s ease;*/
/*}*/

/*.pagination-item.active .pagination-link,*/
/*.pagination-item:hover .pagination-link{*/
/*    background-color: var(--primary);*/
/*    color: #fff;*/
/*    border-color: var(--primary);*/
/*}*/

/* 弹出层相关 */
.smartb-mask{
    position: fixed;
    left: 0;
    top:0;
    right: 0;
    bottom:0;
    z-index: 2;
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.smartb-mask.active{
    opacity: 1;
    visibility: visible;
}

.smartb-popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: show 0.3s ease;
    background-color: #fff;
    z-index: 3;
    border-radius: 6px;
    overflow: hidden;
    max-width: 95vw;
    min-width: 300px;
    max-height: 80vh;
    min-height: 85px;
    display: flex;
    flex-direction: column;
    color: #333;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.smartb-popup.hide{
    animation: hide 0.3s ease;
}

.smartb-popup__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary);
    color: #fff;
    flex: 0 0 50px;
    padding: 0 12px;
}

.smartb-popup__title span{
    max-width: 20em;
}

.smartb-popup__close icon-font{
    cursor: pointer;
}

.smartb-popup__content{
    flex:1 0 0;
    padding:12px;
    overflow-y: auto;
    min-height: 45px;
    box-sizing: border-box;
}

.smartb-modal{
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.smartb-modal .smartb-popup__content{
    padding:0;
    flex: 1;
    /*height: 0;*/
    overflow: auto;
}

.smartb-confirm {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80px;
}

.smartb-popup__buttons{
    display: flex;
    border-top: 1px solid #eee;
}

.smartb-popup__button{
    background: #fff;
    flex: 1;
    width: 0;
    border: none;
    line-height: 40px;
    font-size: 15px;
    border-radius: 4px;
    outline: 0;
    color: var(--primary);
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.smartb-popup__button + .smartb-popup__button{
    border-left: 1px solid #eee
}

.smartb-popup__button:hover{
    background-color: var(--primary);
    color: #fff;
    border-radius: 0
}

.smartb-loading{
    position: fixed;
    left: 50%;
    top:50%;
    z-index: 3;
    transform: translate(-50%,-50%);
}

.smartb-loading svg {
    width: 45px;
    transform-origin: center;
    animation: rotate 2s linear infinite;
}

.smartb-loading svg circle{
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dashoffset: -125px;
    }
}

@keyframes show {
    from {transform: translate(-50%,-50%) scale(0)}
    to {transform: translate(-50%,-50%) scale(1)}
}

@keyframes hide {
    from {transform: translate(-50%,-50%) scale(1)}
    to {transform: translate(-50%,-50%) scale(0)}
}


header{
    position: sticky;
    top: 0;
    z-index: 3;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    background-color: #fff;
}

.header-toolbar{
    background-color: var(--primary);
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
}

.header-toolbar .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-links{
    display: flex;
    align-items: center;
    margin:0;
    padding: 0;
    list-style: none;
}

.header-link__item + .header-link__item{
    margin-left: 1em;
}

.header-link__item a{
    color: inherit;
    text-decoration: none;
}

.header-aside{
    display: flex;
    align-items: center;
}

.header-locale{
    position: relative;
    margin-right: 1em;
}

.header-locale:hover icon-font{
    transform: rotate(180deg);
}

.header-locale__active{
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.header-locale__active icon-font{
    margin-left: 5px;
    transition: transform .3s ease;
}

.header-locale__group{
    list-style: none;
    position: absolute;
    left: 0;
    z-index: 2;
    min-width: 100%;
    visibility: hidden;
    opacity: 0;
    background: var(--backgournd-color);
    padding: 5px 0;
    border-radius: 2px;
    color: var(--primary);
    transition: all .3s ease;
    transform: translateY(15px);
    box-sizing: border-box;
    margin: 0;
}

.header-locale:hover .header-locale__group{
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header-locale__item a{
    display: block;
    white-space: nowrap;
    line-height: 30px;
    font-size: 15px;
    padding: 0 10px;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
}

.header-locale__item a:hover{
    background: var(--primary);
    color: #fff;
}

.header-actions{
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin:0;
}

.header-actions__item + .header-actions__item{
    margin-left: 1em;
}

.header-actions__item a{
    color: #fff;
    text-decoration: none;
}

.header-main{
    padding: 10px 0;
    box-sizing: border-box;
}

.header-main .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    margin:0;
}

.header-logo__link{
    display: block;
}

.header-logo__img{
    display: block;
    max-width: 280px;
    max-height: 50px;
    object-fit: contain;
}

.header-nav{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.header-nav__item{
    position: relative;
    color: var(--text-color);
}

.header-nav__item + .header-nav__item{
    margin-left: 2em;
}

.header-nav__item.active,
.header-nav__item:hover{
    background-color: var(--primary);
    color: #fff;
}

.header-nav__link{
    display: block;
    padding: 0 15px;
    text-align: center;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 40px;
}

.header-nav__sub{
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    z-index: 1;
    left: 0;
    width: 100%;
    font-size: 0.9375em;
    background: var(--backgournd-color);
    display: none;
}

.header-nav__item:hover >.header-nav__sub{
    display: block;
}

.header-nav__sub .header-nav__item{
    margin:0;
    box-sizing: border-box;
    color: var(--primary);
    border-left: 1px solid #b1b8dc;
    border-right: 1px solid #b1b8dc;
    border-bottom: 1px solid #b1b8dc;
}

.header-nav__sub .header-nav__item:hover{
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.header-menu{
    display: none;
    font-size: 25px;
    color: var(--primary);
    cursor: pointer;
}

aside{
    position: fixed;
    top: 0;
    left: 0;
    width: 65vw;
    height: 100vh;
    padding: 20px;
    z-index: 9;
    transition: transform .3s ease;
    transform: translateX(-100%);
    background: #2d3a4b;
    overflow-y: auto;
    box-sizing: border-box;
}

aside.active{
    transform: translateX(0);
}

header ~ aside::-webkit-scrollbar{
    display: none;
}

.mask{
    position: fixed;
    z-index: 8;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    animation: show 0.3s ease;
}

@keyframes show {
    0%{
        opacity: 0;
        visibility: hidden;
    }
    100%{
        opacity: 1;
        visibility: visible;
    }
}

.mask.hide {
    opacity: 0;
    visibility: hidden;
}

.aside-nav__group{
    margin: 0;
    padding: 0;
    list-style: none;
}


.aside-nav__link{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    height: 40px;
    padding-left: 12px;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.aside-nav__label{
    flex: 1;
    width: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.aside-nav__icon{
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    width: 40px;
    height: 100%;
}

.aside-nav__icon icon-font{
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.aside-nav__icon icon-font:not(:first-child){
    position: absolute;
    visibility: hidden;
    opacity: 0;
}

.aside-nav__item.active .aside-nav__icon icon-font:first-child{
    visibility: hidden;
    opacity: 0;
}

.aside-nav__item.active .aside-nav__icon icon-font:last-child{
    visibility: visible;
    opacity: 1;
}

.aside-sub__group{
    margin: 0;
    width: 100%;
    padding: 0 0 0 12px;
    box-sizing: border-box;
    list-style: none;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

footer{
    background: #272e38;
    color: #ccc;
}

.footer-nav{
    border-bottom: 1px solid #999;
    padding: 15px 0;
}

.footer-nav .inner{
    display: flex;
    justify-content: center;
}

.footer-nav__items{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.footer-nav__item + .footer-nav__item{
    margin-left: 3em;
}

.footer-nav__link{
    line-height: 35px;
    font-size: 15px;
    color: inherit;
    text-decoration: none;
}

.footer-main{
    padding: 20px 0;
}

.footer-main__item{
    text-align: center;
    font-size: 15px;
    margin-bottom: 0;
    margin-top: 12px;
}

.footer-main__item:first-child{
    margin-top: 0;
}

.footer-main__item:last-child{
    font-size: 13px;
    color: #999;
}

.footer-main__item a{
    color: inherit;
    text-decoration: none;
}

/* 公用表單 */
.smartb-form__element{
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0,0,0,0.12);
}

.smartb-form__items{
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: -30px 0 0 -50px;
}

.smartb-form__item{
    display: flex;
    align-items: center;
    margin-left: 50px;
    margin-top: 30px;
}

.smartb-form__group{
    font-size: 17px;
    font-weight: bold;
    color: #333;
    margin-right: 5px;
    margin-top: 0;
    margin-bottom: 0;
    white-space: nowrap;
}

.smartb-form__fields{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    margin-left: -6px;
    margin-top: -6px;
}

.smartb-form__field{
    margin-top: 6px;
    margin-left: 6px;
}

.smartb-form__label{
    cursor: pointer;
    user-select: none;
    position: relative;
}

.smartb-form__field input[type="checkbox"],
.smartb-form__field input[type="radio"]{
    position: absolute;
    opacity: 0;
}

.smartb-form__field input[type="checkbox"] + span{
    padding-left: 25px;
    background: url("../images/checkbox.png") no-repeat 2px center / 18px 18px;
}

.smartb-form__field input[type="checkbox"]:checked + span{
    background-image: url("../images/checkbox-checked.png");
}

.smartb-form__field input[type="radio"] + span{
    padding-left: 25px;
    background: url("../images/radio.png") no-repeat 2px center / 18px 18px;
}

.smartb-form__field input[type="radio"]:checked + span{
    background-image: url("../images/radio-checked.png");
}

.smartb-form__input{
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 17px;
    color: #333;
    outline-color: var(--primary);
    flex: 1 0 0;
}

textarea.smartb-form__input{
    min-height: 120px;
    resize: vertical;
    padding: 12px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
}

.smartb-form__buttons{
    margin-top: 20px;
    font-size: 17px;
}

.smartb-form__buttons .button[type="reset"]{
    color: var(--primary);
}

.smartb-form__buttons .button[type="submit"]{
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}


/* 佣工列表 */
.smartb-helper__items{
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -2vw;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.smartb-helper__item{
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.12);
    border: 2px solid transparent;
    margin-left: 2vw;
    margin-top: 2vw;
    width: calc(50% - 2vw);
    padding: 20px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.smartb-helper__item:hover{
    border-color: var(--helper);
}

.smartb-helper__link{
    display: flex;
    align-items: flex-start;
    height: 100%;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.smartb-helper__image{
    width: 33%;
    padding-bottom: 33%;
    position: relative;
    overflow: hidden;
}

.smartb-helper__image img{
    border-radius: 10px;
    object-fit: contain;
    background-color: #f7f7f7;
}

.smartb-helper__info{
    flex: 1 0 0;
    margin-left: 15px;
}

.smartb-helper__more icon-font{
    transform: rotate(-90deg);
    vertical-align: baseline;
}

.smartb-helper__code{
    font-size: 22px;
    margin: 0;
    font-weight: normal;
}

.smartb-helper__rows{
    padding: 0;
    margin-top: 15px;
    margin-bottom: 0;
    list-style: none;
}

.smartb-helper__row{
    display: flex;
}

.smartb-helper__row + .smartb-helper__row{
    margin-top: 10px;
}

.smartb-helper__label{
    line-height: 1.6;
    color: #444;
    display: inline-block;
}

.smartb-helper__label + .smartb-helper__label{
    margin-left: .78vw;
}

.smartb-helper__skills{
    margin-left: -15px;
    margin-top: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.smartb-helper__skill{
    margin-left: 15px;
    margin-top: 15px;
    padding: 5px 10px;
    border-radius: 5px;
    background: #f5f5f5;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 雇主列表 */
.smartb-employer__items{
    margin-top: -2vw;
    margin-bottom: 0;
    margin-left: -2vw;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.smartb-employer__item{
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.12);
    border: 2px solid transparent;
    margin-left: 2vw;
    margin-top: 2vw;
    width: calc(50% - 2vw);
    padding: 20px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.smartb-employer__item:hover{
    border-color: #0c7fff;
}

.smartb-employer__link{
    display: flex;
    align-items: flex-start;
    height: 100%;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.smartb-employer__image{
    width: 33%;
    padding-bottom: 33%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f7f7f7;
}

.smartb-employer__image img{
    object-fit: contain;
}

.smartb-employer__info{
    flex: 1;
    width: 0;
    margin-left: 15px;
}

.smartb-employer__rows{
    list-style: none;
    margin: 0;
    padding:0;
}

.smartb-employer__row{
    line-height: 1.6;
    color: #444;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.smartb-employer__row + .smartb-employer__row{
    margin-top: 10px;
}

/* 首页 */
.home-banner__link{
    display: block;
    padding-bottom: 56.23%;
}

.home-helper{
    padding: 70px 0;
}

.home-helper__title{
    text-align: center;
    margin: 0;
    font-size: 32px;
    font-weight: normal;
    color: var(--helper);
}

.home-helper__content{
    margin-top: 40px;
}

.home-helper__filter{
    text-align: right;
    color: #fff;
}

.home-helper__filter .button{
    background-color: var(--helper);
}

.home-helper__more{
    text-align: center;
    margin-top: 55px;
}

.home-helper__more .button{
    color: var(--helper);
    font-size: 18px;
}

/* 关于我们 */
.about-banner{}

.about-banner__link{
    position: relative;
    display: block;
    padding-bottom: 36.12%;
}

.about-banner__text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    max-width: 80%;
    color: #fff;
    text-align: center;
}

.about-banner__title{
    font-size: 36px;
    font-weight: 400;
    margin: 0;
}

.about-banner__sub{
    font-size: 50px;
    margin-top: 15px;
    margin-bottom: 0;
    letter-spacing: .325em;
}

.about-intro{
    padding: 70px 0;
}

.about-intro__title{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin: 0;
    font-weight: 400;
}

.about-intro__title::before,
.about-intro__title::after{
    content: "";
    width: 1.5em;
    height: 3px;
    background-color: var(--primary);
}

.about-intro__title::before{
    margin-right: 1em;
}

.about-intro__title::after{
    margin-left: 1em;
}

.about-intro__content{
    margin-top: 40px;
    display: flow-root;
}

.about-intro__content > pre{
    font-size: inherit;
    font-family: inherit;
    white-space: break-spaces;
    margin: 0;
}

.about-cert{
    padding: 70px 0;
    background: #f2f2f2;
}

.about-cert__title{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin: 0;
    font-weight: 400;
}

.about-cert__title::before,
.about-cert__title::after{
    content: "";
    width: 1.5em;
    height: 3px;
    background-color: var(--primary);
}

.about-cert__title::before{
    margin-right: 1em;
}

.about-cert__title::after{
    margin-left: 1em;
}

.about-cert__content{
    margin-top: 40px;
}

.about-cert__items{
    display: flex;
    flex-wrap: wrap;
    margin-left: -3vw;
    margin-top: -3vw;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.about-cert__item{
    width: calc(33.3333% - 3vw);
    margin-left: 3vw;
    margin-top: 3vw;
}

.about-cert__image{
    position: relative;
    padding-bottom: 66.95%;
    border-radius: 10px;
    overflow: hidden;
}

.about-cert__text{
    text-align: center;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 0;
}

.contact-map{
    padding: 70px 0;
}

.contact-map__title{
    font-size: 32px;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin: 0;
}

.contact-map__content{
    position: relative;
    padding-bottom: 45%;
    margin-top: 25px;
}

.contact-map__entry{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.contact-map__entry >img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form__info{
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-form__info li{
    color: #666;
    line-height: 1.6;
}

.contact-form__info li + li{
    margin-top: 12px;
}

.contact-form__label{
    color: #444;
}

.contact-form{
    padding-bottom: 120px;
}

.contact-form__element{
    max-width: 600px;
    margin: 0 auto;
}

.contact-form__append .el-input-group__append{
    padding: 0;
}

.contact-form__append .el-input-group__append img{
    display: block;
    height: 38px;
    cursor: pointer;
}

/* 条款和条件 */
.condition-main{
    padding: 85px 0;
}

.condition-main__title{
    font-size: 32px;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin: 0;
}

.condition-main__content{
    margin-top: 45px;
    overflow: hidden;
}


/* 条款和条件 */
.news-main{
    padding: 85px 0;
}

.news-main__title{
    font-size: 32px;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin: 0;
}

.news-main__content{
    margin-top: 45px;
    overflow: hidden;
}

/* 中介服务 */
.service-banner__link{
    padding-bottom: 56.22%;
    position: relative;
    display: block;
}

.service-intro{
    padding: 70px 0;
}

.service-intro__title{
    font-size: 32px;
    font-weight: 400;
    color: #0D132E;
    text-align: center;
    margin: 0;
    position: relative;
    padding-bottom: 5px;
    box-sizing: border-box;
}

.service-intro__title::after{
    content: "";
    width: 2em;
    background-color: #27388B;
    height: 3px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}


.service-intro__content{
    margin-top: 45px;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-main{
    padding: 70px 0;
}

.service-items{
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-item{
    background-color: #fefefe;
}

.service-item + .service-item{
    margin-top: 45px;
}

.service-item__wrapper{
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0,0,0,0.12);
}

.service-item__title{
    padding: 12px 20px;
    box-sizing: border-box;
    background-color: #EBEDFB;
}

.service-item__text{
    font-size: 32px;
    font-weight: 400;
    color: #0D132E;
    margin: 0;
    position: relative;
    text-align: center;
    padding-bottom: 5px;
    box-sizing: border-box;
}

.service-item__text::after{
    content: "";
    width: 2em;
    height: 3px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background-color: #27388B;
}

.service-item__content{
    margin-bottom: 0;
    padding: 40px 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.service-item__sub{
    margin: 0;
    font-size: 24px;
    color: #333;
    font-weight: normal;
}

.service-item__describe{
    flex: 1;
}

.service-item__describe-text{
    margin-top: 24px;
    color: #666;
    line-height: 1.6;
}

.service-item__inc{
    flex:1;
    max-width: 400px;
    margin: 0 3vw;
    padding: 20px 3vw;
    border-radius: 10px;
    border: 1px solid #27388B;
    box-sizing: border-box;
}

.service-item__inc-items{
    margin-top: 24px;
    margin-bottom: 0;
    list-style: none;
    padding: 0;
}

.service-item__inc-item{
    display: flex;
    align-items: center;
    color: #666;
    font-size: 16px;
}

.service-item__inc-item icon-font[name="check"]{
    color: #27388B;
    font-size: 28px;
    margin-right: 5px;
}

.service-item__image{
    position: relative;
    width: 30%;
    padding-bottom: 30%;
}

.service-item__image .service-item__img{
    object-fit: contain;
}

.service-item__subscribe{
    display: flex;
    justify-content: center;
    margin-top: 45px;
    flex: 0 0 100%;
}

.service-item__subscribe .button{
    color: #fff;
    background-color: var(--primary);
    font-size: 22px;
    border-radius: 12px;
    padding-left: 2vw;
    padding-right: 2vw;
}

.service-subscribe__form{
    width: 90vw;
    max-width: 500px;
    padding: 20px;
    box-sizing: border-box;
}

.service-subscribe__items{
    list-style: none;
    margin-top: -15px;
    margin-bottom: 0;
    margin-left: 0;
    padding: 0;
}

.service-subscribe__items .smartb-form__item{
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
}

.service-subscribe__items .smartb-form__label{
    width: 100%;
}

.service-subscribe__form .button[type="submit"]{
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-size: 17px;
    padding-left: 2em;
    padding-right: 2em;
}

.service-renewal{
    background: #fff;
    border-radius: 6px;
    padding: 30px 0;
}

.service-renewal__title{
    font-size: 32px;
    font-weight: 400;
    color: #666;
    text-align: center;
    margin: 0;
}

.service-step{
    margin-top: 50px;
}

.service-step__title{
    font-size: 22px;
    font-weight: 400;
    color: #333;
    margin: 0;
}

.service-step__group{
    margin-top: 40px;
}

.service-step__inner{
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -40px -10px 0;
}

.service-step__item{
    width: 190px;
    margin-top: 40px;
    padding: 0 10px;
    box-sizing: border-box;
}

.service-step__date{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-step__content{
    margin-top: 20px;
    height: 150px;
    width: 100%;
    padding: 20px 15px 15px 15px;
    text-align: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
    color: #fff;
    box-sizing: border-box;
}

.service-step__icon{
    font-size: 36px;
}

.service-step__text{
    font-size: 18px;
    margin-top: 5px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-family: inherit;
    white-space: break-spaces;
}

.service-description{
    margin-top: 50px;
}

.service-description__title{
    font-size: 18px;
    font-weight: 400;
}

.service-description__content{
    color: #666;
    line-height: 1.8;
    margin-top: 10px;
}

.service-contents{
    padding: 20px;
    border: 1px solid #eee;
    margin-top: 30px;
    border-radius: 6px;
    margin-bottom: 80px;
}

.service-contents__price-title{
    font-size: 16px;
    font-weight: bold;
    color: #555;
}

.service-contents__price-text{
    margin-top: 10px;
    font-size: 24px;
    color: red;
    font-weight: bold;
}

.service-contents__price-text del{
    color: #999;
    font-weight: normal;
    font-size: 18px;
    margin-right: 10px;
}

.service-contents__include-title{
    font-size: 17px;
    color: #333;
    font-weight: bold;
}

.service-contents__include{
    margin-top: 20px;
}

.service-contents__include-group{
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.service-contents__include-item{
    line-height: 1.6;
    color: #666;
}

.service-contents__remark{
    margin-top: 15px;
}

.service-contents__remark pre{
    white-space: break-spaces;
    font-family: inherit;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.service-contents__terms{
    margin-top: 20px;
}

.service-contents__term{
    display: flex;
    align-items: center;
    font-size: 16px;
}

.service-contents__text{
    margin-left: 5px;
    cursor: pointer;
}

.service-contents__term + .service-contents__term{
    margin-top: 10px;
}

.service-contents__term .el-link{
    font-size: 16px;
}

.service-contents__term .el-checkbox__label{
    font-size: 16px;
}

.service-contents__button{
    margin-top: 20px;
}

.service-dialog__footer{
    display: flex;
    justify-content: flex-end;
}

/* 查找雇主頁面 */

.employer-search{
    padding-top: 70px;
}

.employer-result{
    padding: 70px 0;
}

.employer-result__pagination{
    text-align: center;
    margin-top: 30px;
}

/* 查找佣工页面 */
.helper-search{
    padding-top: 70px;
}

.helper-result{
    padding: 70px 0;
}

.helper-result__pagination{
    text-align: center;
    margin-top: 30px;
}

/* 雇主/傭工詳情頁 */
.detail-info {
    padding-top: 70px;
}

.detail-info .inner{
    display: flex;
}

.detail-info__avatar{
    width: 20%;
}

.detail-info__image{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 100%;

}
.detail-info__image img{
    object-fit: contain;
    background-color: #f7f7f7;
}
.detail-info__content{
    flex: 1 0 0;
    margin-left: 3vw;
}

.detail-info__title{
    margin: 0;
}

.detail-info__grid{
    margin-top: 2vw;
    display: flow-root;
}

.detail-grid__items{
    margin-left: -2vw;
    margin-top: -15px;
    margin-bottom: 0;
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.detail-grid__item{
    width: calc(25% - 2vw);
    margin-left: 2vw;
    margin-top: 15px;
    line-height: 1.6;
    color: #444;
}

.detail-info__accept{
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.detail-info__accept span{
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
    margin-left: 10px;
}

.detail-info__actions{
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-item{
    padding: 25px 0;
}

.detail-item__title{
    font-size: 20px;
    margin:0;
    border-left: 5px solid var(--primary);
    border-radius: 5px;
    padding: 10px 10px;
    background: #f7f7f7;
    color: #666;
}

.detail-item__table{
    border-collapse: collapse;
    width: 100%;
    margin-top: 15px;
}

.detail-item__table th{
    text-align: center;
    border: 1px solid #ccc;
    font-size: 17px;
    color: #666;
}

.detail-item__table tr{
    height: 50px;
}

.detail-item__table td{
    color: var(--primary);
    text-align: center;
    border: 1px solid #ccc;
}

.detail-item__table td icon-font{
    font-size: 28px;
}

.detail-preview__image{
    max-width: 90vw;
    position: relative;
    padding-bottom: 100%;
}

.detail-preview__image img{
    object-fit: contain;
}

.detail-preview__video{
    width: 1200px;
    max-width: 90vw;
    position: relative;
    padding-bottom: 56.25%;
}

.detail-preview__video video{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.detail-preview__frame{
    width: 1000px;
    max-width: 90vw;
    position: relative;
    padding-bottom: 70%;
}

.detail-preview__frame iframe{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
    display: block;
}

/* 用戶中心 */
.user{
    background-color: #F5F5F5;
}

.layout{
    display: flex;
    align-items: flex-start;
    padding: 70px 0;
}

.layout-aside{
    flex: 0 0 240px;
    border-radius: 10px;
    margin-right: 30px;
    background: #fff;
    padding: 15px 10px;
    box-sizing: border-box;
}

.layout-menu{
    list-style: none;
    margin: 0;
    padding: 0;
}

.layout-menu__item{
    position: relative;
}

.layout-menu__item + .layout-menu__item{
    margin-top: 5px;
}

.layout-menu__link{
    display: flex;
    color: #0D132E;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    text-decoration: none;
    line-height: 45px;
    padding: 0 8px;
    border-radius: 4px;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.layout-menu__link + .layout-menu{
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.layout-menu .layout-menu .layout-menu__link{
    text-indent: 1em;
    font-size: 0.9375em;
    color: #333;
}

.layout-menu__item.active > .layout-menu__link,
.layout-menu__link:hover{
    background-color: #f0f0f0;
}

.layout-menu__name{
    flex: 1;
    width: 0;
}

.layout-menu__link icon-font:first-child{
    margin-right: 5px;
    font-size: 24px;
}

.layout-menu__link icon-font[name="arrow"]{
    transition: transform 0.3s ease;
}

.layout-menu__link.active icon-font[name="arrow"]{
    transform: rotate(180deg);
}

.layout-menu__link.active + .layout-menu{
    height: auto;
}

.layout-container{
    flex: 1 0 0;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
}

.layout-pagination{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.layout-flex{
    display: flex;
    /*align-items: center;*/
}

.layout-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.layout-col__gutter + .layout-col__gutter{
    margin-top: 12px;
}

.layout-quote{
    padding: 12px 16px;
    background-color: #ecf8ff;
    border-radius: 4px;
    border-left: 5px solid #50bfff;
    margin: 0 0 20px;
    font-size: 17px;
    color: #646262;
}

.layout-quote .button{
    background-color: var(--primary);
    color: #fff;
    font-size: 12px;
}

.layout-form__upload{
    display: flex;
    align-items: flex-end;
}
.layout-form__upload video,
.layout-form__upload img
{
    width: 240px;
    height: 150px;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 8px;
}


.layout-form__action input[type="file"]{
    display: none;
}

.layout-form__action .button{
    font-size: 15px;
    background-color: var(--primary);
    color: #fff;
    margin-left: 10px;
}

.layout-form__avatar{
    width: 240px;
    height: 150px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background-color: #efefef;
}

.layout-form__avatar img{
    object-fit: contain;
}

.layout-form__field{
    display: flex;
    padding-bottom: 20px;
}

.layout-form__label{
    text-align: right;
    font-size: 14px;
    color: #606266;
    line-height: 40px;
    padding: 0 12px 0 0;
    box-sizing: border-box;
    flex: 0 0 6em;
}

.layout-form__label.required::before{
    content: "*";
    color: red;
}

.layout-form__content{
    flex: 1;
    width: 0;
}

.layout-card{
    box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
    border-radius: 4px;
    border: 1px solid #ebeef5;
    background-color: #fff;
    overflow: hidden;
    color: #303133;
    padding: 20px;
}

.layout-card__header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.layout-card__header .button{
    background-color: red;
    color: #fff;
    font-size: 12px;
}

.layout-questions{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    border-radius: 4px;
    background-color: #f9fafc;
    color: #5e6d82;
    font-size: 15px;
}

.layout-questions__text{
    flex: 1;
    width: 0;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 10px;
    text-align: justify;
}

.layout-questions + .layout-questions{
    margin-top: 8px;
}

.layout-col-2{
    margin-left: -30px;
    display: flex;
    flex-wrap: wrap;
}

.layout-col-2 > *{
    padding-left: 30px;
    width: 50%;
    box-sizing: border-box;
}

.layout-fieldset{
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 15px;
    margin-right: 0;
    position: relative;
    overflow: hidden;
}

.layout-fieldset + .layout-fieldset{
    margin-top: 15px;
}

.layout-legend{
    font-size: 14px;
    padding: 0 10px;
}

.layout-button__container{
    margin-top: 15px;
}

.layout-fieldset__remove{
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

.layout-table{
    width: 100%;
    overflow-x: auto;
}

.layout-table__element{
    border-collapse: collapse;
    width: 100%;
    min-width: 500px;
}


.layout-table__element th{
    text-align: center;
    border: 1px solid #ccc;
    font-size: 17px;
    color: #666;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    white-space: nowrap;
}

.layout-table__element tr{
    height: 50px;
}

.layout-table__element td{
    color: #606266;
    text-align: center;
    border: 1px solid #ccc;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    white-space: nowrap;
}

.layout-table__element th:last-child,
.layout-table__element td:last-child{
    position: sticky;
    right: -0.5px;
    background-color: #fff;
}


/* 登入相关 */
.smartb-login__modal .el-dialog__header{
    display: none;
}

.smartb-login__tabs .el-tabs__nav-wrap{
    display: flex;
    justify-content: center;
}

.smartb-login__tabs .el-tabs__item{
    font-size: 17px;
    font-weight: bold;
}

.smartb-login__buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.smartb-login__button.el-button{
    width: 100%;
    max-width: 300px;
    font-size: 17px;
}

.smartb-login__button + .smartb-login__button{
    margin-top: 10px;
    margin-left: 0;
}

.smartb-login__forget{
    color: var(--primary);
    text-decoration: none;
}

.smartb-forget{
    padding: 20px;
    box-sizing: border-box;
    width: 90vw;
    max-width: 500px;
}

.smartb-intent{
    width: 90vw;
    max-width: 840px;
    padding: 20px;
    box-sizing: border-box;
}

.smartb-intent__items{
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: -15px 0 0 -30px;
}

.smartb-intent__item{
    margin-top: 15px;
    margin-left: 30px;
    width: calc(50% - 30px);
}

.smartb-intent__label{
    display: flex;
    align-items: center;
}

.smartb-intent__input{
    flex: 1;
    width: 0;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 10px;
}

.smartb-intent__input option{
    height: 40px;
}

.smartb-intent__row{
    display: flex;
    align-items: center;
    flex: 1;
}

.smartb-intent__label .smartb-form__group{
    width: 5em;
}

.smartb-intent .smartb-form__item{
    width: 100%;
    margin-left: 30px;
}

.smartb-intent .button{
    font-size: 18px;
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    margin: auto;
    padding-left: 3vw;
    padding-right: 3vw;
}

.smartb-intent__tip{
    font-size: 18px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    width: 100%;
    color: var(--primary);
    border: 1px solid currentColor;
}

.payment{
    padding: 70px 0;
    height: 100%;
    box-sizing: border-box;
}

.payment .inner{
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-content{
    text-align: center;
}

.payment-content icon-font[name="success"]{
    color: #16AA68;
    font-size: 48px;
}

.payment-content icon-font[name="failure"]{
    color: #F4420A;
}

.payment-state{
    margin-bottom: 0;
    margin-top: 30px;
    font-size: 28px;
    color: #666;
}

.payment-info{
    margin-top: 20px;
}

.payment-info__item{
    color: #999;
}

.payment-info__item + .payment-info__item{
    margin-top: 10px;
}

.payment-back{
    margin-top: 20px;
}

.payment-back .button{
    background-color: var(--primary);
    color: #fff;
}

/* element ui 样式补充 */
.fluid .el-form-item__content > [class^="el-"]{
    width: 100%;
}

.el-upload__image{
    width: 215px;
    font-size: 0;
    border-radius: 8px;
    overflow: hidden;
    vertical-align: bottom;
}

.el-dialog{
    max-width: 95vw;
}
