/* 布局css */
html {
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    word-spacing: 1px;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    height: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
}

ul {
    list-style: none;
    padding-left: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    font-size: inherit;
    color: inherit;
}

a:link {
    text-decoration: none;
    color: inherit;
}

a:visited {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

a:active {
    text-decoration: none;
    color: inherit;
}

.xb-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

/*分块标题*/
.xb-title {
    text-align: center;
    font-size: 2rem;
    font-family: FZLTZHJW--GB1-0, FZLTZHJW--GB1;
    font-weight: normal;
    color: rgba(73, 80, 87, 1);
    margin-bottom: 24px;
}

/*分块介绍*/
.xb-desc {
    text-align: center;
    font-size: 1.25rem;
    font-family: FZLTZHJW--GB1-0, FZLTZHJW--GB1;
    font-weight: normal;
    color: rgba(134, 142, 150, 1);
    margin-bottom: 30px;
}

/*背景图全局样式*/
.xb-bg {
    vertical-align: bottom;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/*模块分块全局样式*/
.xb-box {
    padding: 50px 0;
}

.xb-main {
    display: block;
    flex: 1;
    flex-basis: auto;
    overflow: auto;
    box-sizing: border-box;
}

.xb-auto-width {
    max-width: 1280px;
    margin: 0 auto;
}

.el-header {
    padding: 0 !important;
}

.el-main {
    padding: 0 !important;
}

.el-footer {
    padding: 0 !important;
}

@media (max-width: 1600px) {
    .xb-auto-width {
        max-width: 1024px;
        margin: 0 auto;
    }
}

.xb-button {
    display: inline-flex;
    font-size: 1.25rem;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 59px;
    position: relative;
    border: none;
}

.xb-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/*仙宝Banner*/
.xb-banner.normal {
    margin-top: 60px;
}

.xb-banner.small {
    margin-top: 0;
}

.xb-banner .banner-bg.normal {
    height: 600px;
}

.xb-banner .banner-bg.normal .label {
    font-size: 3.125rem;
}

.xb-banner .banner-bg.normal .desc {
    font-size: 1.6875rem;
}

.xb-banner .banner-bg.small {
    height: 420px;
}

.xb-banner .banner-bg.small .label {
    font-size: 3rem;
}

.xb-banner .banner-bg.small .desc {
    font-size: 1.3125rem;
}

.xb-banner .banner-bg .main, .xb-banner .banner-bg .img {
    width: 50%;
}

.xb-banner .banner-bg .line {
    width: 60px;
    height: 2px;
    background: #fff;
    margin: 41px 3px 46px;
}

.xb-banner .banner-bg .label {
    color: rgba(255, 255, 255, 1);
    margin-bottom: 29px;
    white-space: nowrap;
}

.xb-banner .banner-bg .desc {
    color: rgba(255, 255, 255, 1);
}

.xb-banner .banner-bg .button {
    width: 160px;
    height: 46px;
    display: block;
    margin: 0 auto;
    background: #fff;
    text-align: center;
    line-height: 46px;
    color: #999999;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 20px;
    border-radius: 3px;
    cursor: pointer;
}

.xb-banner .banner-bg .content-layout {
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/*右侧布局*/
.xb-banner .banner-bg .content-layout.layout-right {
    justify-content: flex-end;
}

.xb-banner .banner-bg .content-layout.layout-right .main {
    order: 2;
}

.xb-banner .banner-bg .content-layout.layout-right .img {
    order: 1;
}

.xb-banner .banner-bg .content-layout.layout-right .button {
    margin: 0;
}

/*居中布局*/
.xb-banner .banner-bg .content-layout.layout-center {
    justify-content: center;
    text-align: center;
}

.xb-banner .banner-bg .content-layout.layout-center .line {
    margin: 41px auto 46px;
}

.xb-banner .banner-bg .content-layout.layout-center .main {
    width: 100%;
}

/*左侧布局*/
.xb-banner .banner-bg .content-layout.layout-left {
    justify-content: flex-start;
}

.xb-banner .banner-bg .content-layout.layout-left .button {
    margin: 0;
}