* {
    margin: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

a {
    text-decoration: none;
}

ol,
ul {
    list-style: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
input,
select {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-family: inherit;
    vertical-align: baseline;
}

.f-weight {
    font-weight: 600;
}

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

.f-style {
    font-style: italic;
}

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

.t-overflow-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.b-sizing {
    box-sizing: border-box;
}

.d-flex {
    display: flex;
}

.j-c-center {
    justify-content: center;
}

.j-c-spacebetween {
    justify-content: space-between;
}

.j-c-spacearound {
    justify-content: space-around;
}

.j-c-flexstart {
    justify-content: flex-start
}

.a-i-center {
    align-items: center;
}

.a-i-flexstart {
    align-items: flex-start;
}

.a-i-flexend {
    align-items: flex-end;
}

.f-d-column {
    flex-direction: column;
}

.f-w-wrap {
    flex-wrap: wrap;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.p-fixed {
    position: fixed;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
}

.c-pointer {
    cursor: pointer;
}

html,
body {
    width: 100%;
    color: #333333;
    line-height: 36px;
    scroll-behavior: smooth;
}

a {
    color: #333333;
    position: relative;
}

input::placeholder {
    color: #b3b3b3;
    padding-left: 5px;
}

.main-section {
    width: 100%;
    background: url(/ntsrmzf/23xyxntassets/23xyxntassets/img/main-background.png) no-repeat;
    background-size: 100% 100%;
}

.main-section-p {
    width: 1200px;
    margin: 0 auto;
}

.main-section-1 {
    margin-bottom: 40px;
}

.main-section-1 ul li {
    width: 195px;
    margin: 0 15px;
}

.main-section-1 ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-section-1 ul li a img {
    width: 146px;
    height: 146px;
}

.main-section-1 ul li a .slide {
    width: 90px;
    height: 26px;
    font-size: 14px;
    color: #3b72ad;
    line-height: 26px;
    text-align: center;
    border-radius: 15px;
    background: #cdd8e4;
    margin-top: 8px;
}

.main-section-1 ul li a .inactive {
    background-color: rgba(0, 0, 0, 0.5);
    /* 设置遮罩层颜色和透明度 */
    opacity: 0;
    /* 初始透明度为0（即不可见） */
    transition: opacity 0.3s ease-out;
    /* 设置过渡效果 */
    z-index: 1;
    /* 设置遮罩层比图片层级高 */
}

.main-section-1 ul li a .slide-active {
    color: #ffffff;
    font-weight: 600;
    background: #518ccc;
}