/*================ 全局通用 start ==================*/
body {
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: auto !important;
    overscroll-behavior: none !important;
}

body, html {
    font: 16px/1.4375 "OPPO Sans","思源黑体",-apple-system,Arial,sans-serif;
    color: #000;
    background-color: #fff;
    min-width: 1200px;
}

a {
    outline: 0;
    text-decoration: none;
}

a:visited, a:hover, a:active {
    color: inherit;
}

img {
    display: block;
}

div {
    box-sizing: border-box;
}

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

/*================ 全局通用 end ==================*/

/*================ 顶栏 start ==================*/
.layout-header {
    position: sticky;
    z-index: 999;
    left: 0;
    top: 0;
    background: #fff;
    min-width: 1200px;
    box-shadow: 0 0 2px 0 #DDE0E5;
    padding: 8px 14px 3px;
    display: flex;
    justify-content: center;
    font: 16px/1.4375 "OPPO Sans","思源黑体",-apple-system,Arial,sans-serif;
}

.layout-header .layout-header-wrapper {
    width: 1200px;
    display: flex;
}

.layout-header img {
    width: 100%;
}

.layout-header .layout-logo {
    width: 219px;
}

.layout-header .layout-right-section {
    flex: 1;
    padding: 13px 4px;
    display: flex;
    justify-content: flex-end;
}

.layout-header .layout-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.layout-header .layout-nav .layout-nav-item {
    margin-left: 40px;
    cursor: pointer;
    position: relative;
    color: #000;
}

.layout-header .layout-nav .layout-nav-item a {
    color: #000;
}

.layout-header .layout-nav .layout-nav-item.active .layout-nav-item-text {
    font-weight: 600;
}

.layout-header .layout-nav .layout-nav-item.active::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    bottom: -5px;
    background: #EC0000;
    border-radius: 16px;
}

.layout-header .layout-nav .layout-nav-item .layout-sub-nav-box {
    display: none;
    padding-top: 21px;
    position: absolute;
    min-width: 110px;
    top: 23px;
    /** 这里减掉layout-nav-item-text的宽度，目前都是四个字，固定用64px/2，如果字数增加需要修改**/
    left: 32px;
    background: transparent;
    transform: translate(-50%);
}

.layout-header .layout-nav .layout-nav-item:hover .layout-sub-nav-box {
    display: block;
}

.layout-header .layout-sub {
    padding: 24px 23px 32px;
    background: #fff;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.layout-header .layout-sub-nav-box .layout-sub .layout-sub-nav-item {
    padding-top: 20px;
    color: #515a6e;
}

.layout-header .layout-sub .layout-sub-nav-item:first-child {
    padding-top: 0;
}

.layout-header .layout-sub .layout-sub-nav-item:hover,
.layout-header .layout-sub .layout-sub-nav-item.active {
    color: #EC0000;
}


.layout-header .layout-other-box {
    display: flex;
    align-items: baseline;
    color: #515A6E;
}

.layout-header .layout-other-box .layout-other-item {
    margin-left: 40px;
}

.layout-header .btn-hr-login {
    padding: 4px 10px;
    border: 1px solid #EC0000;
    border-radius: 16px;
    cursor: pointer;
    color: #515A6E;
    position: relative;
    background: #fff;
    display: flex;
    align-items: center;
}

.layout-header .btn-hr-login:hover {
    background: #EC0000;
    color: #fff;
    border: 1px solid #fff;
}
.layout-header .btn-hr-login:hover::before {
    background-image: url(https://static.guanaihui.com/static/sheji/pc2026/icon/heart-fff.svg);
}

.layout-header .btn-hr-login:before {
    content: '';
    margin-left: 4px;
    width: 18px;
    height: 15px;
    background-image: url(https://static.guanaihui.com/static/sheji/pc2026/icon/heart-ec0000.svg);
    background-size: 100%;
    order: 2;
    display: inline-block;
}

.layout-header .btn-hr-login:after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 10px;
    right: -15px;
    border-right: 10px solid transparent;
    border-top: 12px solid #EC0000;
    border-bottom: 12px solid #EC0000;
}

.layout-header .hotline {
    position: relative;
    font-weight: 600;
    padding-left: 31px;
}

.layout-header .hotline::before {
    content: '';
    background: url(https://static.guanaihui.com/static/sheji/PC-guanwang/layout/hotline.png) no-repeat;
    background-size: cover;
    position: absolute;
    top: -1px;
    left: 0;
    width: 25px;
    height: 25px;
}

/*================ 顶栏 end ==================*/

/*================ 底栏 start ==================*/
.layout-footer {
    min-width: 1200px;
    margin-top: 165px;
    color: #fff;
    background: #EC0000;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    font: 16px/1.4375 "OPPO Sans","思源黑体",-apple-system,Arial,sans-serif;
}

.layout-footer img {
    width: 100%;
}

.layout-footer .layout-footer-circle {
    width: 114%;
    min-width: 1200px;
    height: 232px;
    border-radius: 100%;
    background: #fff;
    margin-top: -171px;
}

.layout-footer .layout-footer-wrapper {
    padding: 217px 0 81px;
    display: flex;
    justify-content: center;
}

.layout-footer .layout-footer-wrapper .layout-footer-box {
    width: 1200px;
    display: flex;
}


.layout-footer .layout-footer-left {
    padding: 0 114px 0 5px;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    line-height: 22px;
}

.layout-footer .layout-footer-info {
    width: 480px;
}

.layout-footer .copy-right {
    padding-top: 19px;
}

.layout-footer .icp {
    padding-top: 5px;
}

.layout-footer .icp a {
    color: #fff;
}

.layout-footer .layout-right-section {
    display: flex;
    flex-direction: column;
}

.layout-footer .footer-contact-us {
    width: 555px;
}

.layout-footer .footer-contact-us {
    width: 555px;
}

.layout-footer #form-confirm-tips {
    font-size: 16px;
    line-height: 28px;
}

#apply-form {
    padding: 12px 0 15px;
}

#apply-form .form-input-box {
    margin-top: 12px;
    padding: 0 44px;
    width: 360px;
    height: 50px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    color: #5a7184;
}

#apply-form .form-input-box::before {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
}

#apply-form .form-input-box.company-name::before {
    width: 18px;
    height: 18px;
    left: 16px;
    background-image: url(https://static.guanaihui.com/static/sheji/PC-guanwang/layout/icon-home.png);
}

#apply-form .form-input-box.city::before {
    width: 13px;
    height: 17px;
    left: 18px;
    background-image: url(https://static.guanaihui.com/static/sheji/PC-guanwang/layout/icon-location.png);
}

#apply-form .form-input-box.contact-name::before {
    width: 16px;
    height: 16px;
    left: 17px;
    background-image: url(https://static.guanaihui.com/static/sheji/PC-guanwang/layout/icon-user.png);
}

#apply-form .form-input-box.contact-phone::before {
    width: 16px;
    height: 16px;
    left: 17px;
    background-image: url(https://static.guanaihui.com/static/sheji/PC-guanwang/layout/icon-phone.png);
}

#apply-form .form-input-box.text-area {
    padding: 20px;
    height: auto;
    position: relative;
}

#apply-form .form-input-box input,
#apply-form .form-input-box input:focus,
#apply-form .form-input-box textarea,
#apply-form .form-input-box textarea:focus {
    border: none;
    outline: none;
    box-shadow: none;
    color: #5a7184;
    font-size: 15px;
    width: 100%;
}

#apply-form .form-input-box textarea {
    padding: 0;
    resize: none;
}

#apply-form .form-input-box.text-area .word-limit {
    position: absolute;
    right: 20px;
    bottom: 10px;
}

#apply-form .form-input-box.show-error .error-message {
    display: block;
}

#apply-form .form-input-box .error-message {
    display: none;
    position: absolute;
    bottom: -2px;
    font-size: 12px;
    color: #EC0000;
}

#apply-form .form-input-box .error-message {
    position: absolute;
    bottom: -2px;
    font-size: 12px;
    color: #EC0000;
}

#apply-form #btn-submit {
    color: #fff;
    background: #145fdc;
    justify-content: center;
    user-select: none;
    cursor: pointer;
}

/*================ 底栏 end ==================*/

/*================ 提示框 start ==================*/
#toast {
    z-index: 1000;
    position: fixed;
    top: 50%;
    left: 50%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    box-sizing: content-box;
    width: 250px;
    height: 150px;
    max-width: 70%;
    min-height: 88px;
    padding: 10px 0;
    font-size: 14px;
    line-height: 20px;
    white-space: pre-wrap;
    text-align: center;
    word-break: break-all;
    color: #333;
    background-color: #fff;
    border-radius: 8px;
    transform: translate3d(-50%, -50%, 0);
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
}

#toast.show {
    display: flex;
}

#toast i {
    background: green;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
}

#toast i::before {
    content: '';
    background-color: #fff;
    width: 52px;
    height: 8px;
    position: absolute;
    top: 38px;
    left: 26px;
    transform: rotate(-50deg);
    border-radius: 8px;
}

#toast i::after {
    content: '';
    background-color: #fff;
    width: 36px;
    height: 8px;
    position: absolute;
    top: 48px;
    left: 7px;
    transform: rotate(30deg);
    border-radius: 8px;
}

#toast .toast-title {
    font-size: 18px;
    font-weight: 600;
}

#toast .toast-sub-title {
    font-size: 12px;
}

/*================ 提示框 end ==================*/