/* 通用 */
/* 主体宽度-------------------------------------------------------- */
/* 主体宽度-------------------------------------------------------- */
/* 主体宽度-------------------------------------------------------- */
.container {
    width: 1440px;
    max-width: 1440px;
}

@media screen and (max-width: 1440px) {
    .container {
        width: 100%;
        max-width: 100%;
    }
}

/* 录入内容样式-------------------------------------------------------- */
/* 录入内容样式-------------------------------------------------------- */
/* 录入内容样式-------------------------------------------------------- */
figure.image img {
    width: auto;
    max-width: 100%;
}

figure.image-style-align-center {
    margin: 0 auto;
}

figure.image-style-align-center img {
    display: block;
    margin: 0 auto;
}

/* 内页通用样式 */
/* 内页大图-------------------------------------------------------- */
/* 内页大图-------------------------------------------------------- */
/* 内页大图-------------------------------------------------------- */
.Nybanner {
    position: relative;
    width: 100%;
    margin-top: 90px;
}

.Nybanner img {
    position: relative;
    width: 100%;
}

/* 内页面包屑-------------------------------------------------------- */
/* 内页面包屑-------------------------------------------------------- */
/* 内页面包屑-------------------------------------------------------- */
.NyNavigation {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, #00000000 0%, #00000033 40%, #00000033 60%, #00000000 100%);
}

.NyNavigation h1 {
    color: #FFF;
    font-size: 54px;
    font-family: Arial;
    font-style: normal;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 3.2px;
    margin-bottom: 0;
    position: relative;
}

.NyNavigation h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #B6CD01 0%, #1E96D5 100%);
    z-index: 8;
    bottom: 0;
    left: calc(50% - 30px);
}

.NyNavigation span {
    color: #fff;
}

.NyNavigation span a {
    line-height: 3;
    font-size: 16px;
    color: #fff;
}

/* 内页导航-------------------------------------------------------- */
/* 内页导航-------------------------------------------------------- */
/* 内页导航-------------------------------------------------------- */
.Ny_Navigation_Nav {
    width: 100%;
    height: 75px;
    position: absolute;
    top: calc(50vh - 75px);
    z-index: 2;
    background: #00000080;
}

.NyNav {
    display: flex;
    justify-content: space-evenly;
}

.NyNav a {
    display: block;
    line-height: 75px;
    text-align: center;
    width: 100%;
    text-transform: capitalize;
}

.NyNav a:hover {
    color: #fff;
    background: linear-gradient(45deg, #b6cd01bf 0%, #1E96D5bf 100%);
}

.NyNav a.active {
    color: #fff;
    background: linear-gradient(45deg, #b6cd01bf 0%, #1E96D5bf 100%);
}

/* 内页内容-------------------------------------------------------- */
/* 内页内容-------------------------------------------------------- */
/* 内页内容-------------------------------------------------------- */
.NyBigBox {
    position: relative;
    padding-top: 60px;
    padding-bottom: 120px;
    z-index: 9;
}

.Ny_Content {
    min-height: 500px;
}

.Ny_cont {
    padding: 0 2vw;
}

/* 框架结构-------------------------------------------------------- */
/* 框架结构-------------------------------------------------------- */
/* 框架结构-------------------------------------------------------- */

/* 左右 */
.LeftRight {
    display: flex;
}

.LeftRight .NyNavList {
    width: 300px;
    padding-right: 30px;
}

.LeftRight .Ny_Content {
    width: calc(100% - 300px);
}

/* 左右导航样式-------------------------------------------------------- */
/* 左右导航样式-------------------------------------------------------- */
/* 左右导航样式-------------------------------------------------------- */
.LeftRight .NyNavList h1 {
    font-size: 18px;
    border-bottom: 1px solid #e5e5e5;
    color: #ef4136;
    height: 60px;
    line-height: 60px;
    margin-bottom: 0;
}

.LeftRight .NyNavList a {
    color: #333;
    font-size: 16px;
    padding: 0 30px;
    border-bottom: 1px solid #e5e5e5;
    display: block;
    height: 45px;
    line-height: 45px;
    position: relative;
}

.LeftRight .NyNavList a::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
    position: absolute;
    left: 15px;
    top: 18px;
}