/** 清除内外边距 **/
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
/* structural elements 结构元素 */
dl,
dt,
dd,
ul,
ol,
li,
/* list elements 列表元素 */
pre,
/* text formatting elements 文本格式元素 */
form,
fieldset,
legend,
button,
input,
textarea,
/* form elements 表单元素 */
th,
td

/* table elements 表格元素 */
    {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

* {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

/** 重置列表元素 **/
ul,
ol,
li {
    list-style: none;
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    cursor: pointer;
    color: #333;
}

a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    background: none;
    text-decoration: none;
}

.fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

img {
    max-width: 100%;
}

video {
    width: 100%;
    object-fit: contain;
    overflow-clip-margin: content-box;
    overflow: clip;
}

.blankLayoutContainer,
.columnBlankLayoutContainer {
    position: relative;
}

.columnBlankLayoutContainer {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.rowListBg,
.columnRowListBg,
.popupLightBg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    content: "";
    overflow: hidden;
}

.columnBlankLayoutContainer> :nth-child(n + 2) {
    position: relative;
}


.textLine table {
    border-collapse: collapse !important;
    width: 100%;
}

.textLine table td,
.textLine table th {
    border: 1px solid !important;
    border-width: 1px !important;
    padding: 3px 5px;
    line-height: 1.5;
}

.textLine table th {
    background: #f7fbfe !important;
    border-width: 1px !important;
    border: 1px solid !important;
    text-align: center;
}

.containerStyle .font-icon-btn-style {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    position: relative;
}

.containerStyle .font-icon-btn-style .iconStyle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.btnBox {
    position: relative;
    max-width: 100%;
    cursor: pointer;
}

.btnBox i {
    display: inline-block;
}

.btnBox .iconStyle {
    text-align: center;
}

.btnBox .btnImg {
    max-width: 100%;
    max-height: 100%;
}

.btn1 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.btn1 {
    display: block;
    min-width: 50px;
    position: relative;
    top: 0;
    left: 0;
    transform: scale(1);
    transform: rotate(0);
}

.btn1 .iconStyle {
    display: inline-block;
}

.btn1 .textStyle {
    display: inline-block;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 40px);
}

.btn1,
.btn1 .iconStyle,
.btn1 .textStyle {
    vertical-align: middle;
}

.btn2 {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    display: block;
    transform: scale(1);
    transform: rotate(0);
}

.btn2 span {
    display: block;
}

.btn3 {
    display: table;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 0;
    left: 0;
    transform: scale(1);
    transform: rotate(0);
}

.btn3 i {
    display: block;
}

.btn3 i,
.btn3 .btnIcon {
    box-sizing: content-box;
}

.imgBox {
    overflow: hidden;
}

.imgBox .containerStyle {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    transform: scale(1);
    transform: rotate(0);
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

/* 放大 */
.hoverAnimateEnlarge:hover {
    transform: scale(1.1);
    /* Firefox */
    -moz-transform: scale(1.1);
    /* Safari and Chrome */
    -webkit-transform: scale(1.1);
    /* Opera */
    -o-transform: scale(1.1);
    z-index: 2;
}

/* 缩小 */
.hoverAnimateNarrow:hover {
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -o-transform: scale(0.9);
}

/* 上移 */
.hoverAnimateMoveUp:hover {
    top: -10px !important;
    z-index: 2;
}

/* 下移 */
.hoverAnimateMoveDown:hover {
    top: 10px !important;
    z-index: 2;
}

/* 左移 */
.hoverAnimateMoveLeft:hover {
    left: -10px !important;
    z-index: 2;
}

/* 右移 */
.hoverAnimateMoveRight:hover {
    left: 10px !important;
    z-index: 2;
}

/* 弹跳 */
.hoverAnimateBounce:hover {
    animation-name: bounceCon;
    -webkit-animation-name: bounceCon;
}

@-webkit-keyframes bounceCon {
    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    0%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

/* 摇动 */
.hoverAnimateShake:hover {
    animation-name: swingCon;
    -webkit-animation-name: swingCon;
    z-index: 2;
}

@-webkit-keyframes swingCon {

    0%,
    20%,
    50%,
    80% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    40% {
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    60% {
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

/* 2D旋转 */
.hoverAnimateRotate2D:hover {
    transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transition: All 0.4s ease-in-out;
    -webkit-transition: All 0.4s ease-in-out;
    -moz-transition: All 0.4s ease-in-out;
    -o-transition: All 0.4s ease-in-out;
    z-index: 2;
}

/* 3D旋转 */
.hoverAnimateRotate3D:hover {
    transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
}

.hoverAnimateBorderSlide,
.hoverAnimateBgSlideLeft,
.hoverAnimateBgSlideBottom,
.hoverAnimateShadowAcross {
    overflow: hidden;
    -webkit-transition: 0.5s;
}

/* 边框滑动渐入 */
.hoverAnimateBorderSlide:before,
.hoverAnimateBorderSlide:after {
    content: "";
    border-style: solid;
    position: absolute;
    z-index: -1;
    transition: inherit;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.hoverAnimateBorderSlide:before {
    width: 0;
    border-top-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    height: 100%;
    top: 0px;
    left: 0;
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.hoverAnimateBorderSlide:after {
    width: 100%;
    border-left-width: 0px;
    border-right-width: 0px;
    border-top-width: 0px;
    border-bottom-width: 0px;
    height: 0;
    top: 0;
    left: 0px;
}

.hoverAnimateBorderSlide:hover:before {
    width: 100%;
}

.hoverAnimateBorderSlide:hover:after {
    height: 100%;
}

/* 背景左侧渐入 */
.hoverAnimateBgSlideLeft:before {
    position: absolute;
    content: "";
    width: 0;
    -webkit-transition: inherit;
    left: 0;
    height: 100%;
    z-index: -1;
}

.hoverAnimateBgSlideLeft:hover:before {
    width: 100%;
}

.hoverAnimateBgSlideLeft:hover {
    background: transparent;
}

/* 背景底部渐入 */
.hoverAnimateBgSlideBottom:before {
    position: absolute;
    content: "";
    width: 100%;
    -webkit-transition: inherit;
    left: 0;
    height: 0;
    z-index: -1;
    bottom: 0;
}

.hoverAnimateBgSlideBottom:hover:before {
    height: 100%;
}

.hoverAnimateBgSlideBottom:hover {
    background: transparent;
}

/* 光影滑过 */
.hoverAnimateShadowAcross:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: -10;
}

.hoverAnimateShadowAcross:hover:after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* 幻灯片缩略图 */
.swiperThumbs {
    box-sizing: border-box;
    padding: 10px 0;
}

.swiperThumbs .swiper-slide {
    opacity: 0.4;
}

.swiperThumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.swiperThumbs img {
    display: block;
    width: 100%;
    object-fit: cover;
}


.option-list-content {
    position: absolute;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 12px;
    background: #fff;
    list-style: none;
    padding: 0;
    max-height: 180px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999999;
    display: none;


}

.option-list-content li {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.option-list-content li:hover {
    background: #f0f0f0;
}

.option-list-content li img {
    width: 1.5rem;
    border-radius: 50%;
    margin-right: 4px;
}

/* 弹出窗口 */
.popupBox {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.popupMask {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
}

.popupLightBox {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.popupLightBody {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.popupLightHeader,
.popupLightBody {
    position: relative;
}

.layoutHeader .blankLayoutContainer {
    z-index: 2;
}