/* 公共变量 */
:root {
    --primary-color: #275faa;
    --secondary-color: #888;
    --text-color: #333;
    --bg-color: #f5f4f4;
    --border-color: #ccc;
}

/* 通用样式 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Microsoft YaHei, sans-serif;
    min-width: 1200px;
    background-color: var(--bg-color);
    /*background-color: #fff;*/
}

/* 新闻头条 */
.news {
    width: 100%;
    min-width: 1200px;
}

.news-box {
    width: 1200px;
    margin: 0 auto;
    padding-top: 33px;
    display: flex;
}

.news-l {
    width: 200px;
}

.news-l img {
    width: 114px;
    height: 96px;
}

.news-r {
    flex: 1;
    padding-top: 3px;
}

.news-title {
    display: block;
    width: 100%;
    max-width: 1000px;
    height: 30px;
    line-height: 30px;
    color: #222;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-text {
    width: 1001px;
    height: 48px;
    line-height: 24px;
    color: #888;
    font-size: 18px;
    margin-top: 8px;
    text-indent: 32px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: normal !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 新闻中心 */
.news-center {
    width: 100%;
    min-width: 1200px;
    padding-top: 30px;
}

.news-center-box {
    width: 1200px;
    margin: 0 auto;
    display: flex;
}

.center-l {
    width: 50%;
}

.center-r {
    width: 50%;
    padding: 0 0 0 20px;
}

.center-tab {
    width: 100%;
    display: flex;
    margin-bottom: 16px;
    border-bottom: 1px solid #265ea9;
}

.ctab-unit {
    width: 160px;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    color: #275faa;
    font-size: 18px;
    border: 1px solid #275faa;
    margin-right: 5px;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    border-bottom: none;
}

.ctab-unit img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    float: left;
    margin-top: 8px;
    margin-left: 20px;
}

.ctab-active {
    display: inline-block;
}

.ctab-unit .icon-white {
    display: none;
}

.ctab-active .icon-blue {
    display: none;
}

.ctab-active .icon-white {
    display: block;
}

.ctab-main-unit {
    display: none;
}

.center-show {
    display: block;
}

.ctab-active {
    background-color: #275faa;
    color: #fff;
}

.center-title {
    width: 100%;
    height: 24px;
    line-height: 24px;
    display: block;
    color: #333;
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.center-text {
    width: 100%;
    height: 44px;
    line-height: 22px;
    color: #888;
    font-size: 16px;
    margin-top: 26px;
    text-indent: 32px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: normal !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.list {
    width: 100%;
    display: flex;
    padding: 18px 0 18px 22px;
    position: relative;
}

.list::before {
    position: absolute;
    bottom: 23px;
    left: 0;
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    background: #7FA8D0;
    border-radius: 50%;
}

.list:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200%;
    height: 0;
    border-bottom: 1px dashed #ccc;
    transform: scale(0.5) translate(-50%, -50%);
}

.list-date {
    width: 100px;
    text-align: right;
    font-size: 16px;
    color: #888;
    height: 19px;
    line-height: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list-text {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    height: 19px;
    line-height: 19px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list:hover .list-text, .list:active .list-text {
    color: #1767FF;
}

.center-big {
    width: 100%;
    height: 400px;
    display: block;
    position: relative;
}

.big-img {
    width: 100%;
    height: 100%;
}

.big-text {
    width: 100%;
    background-color: #000;
    opacity: 0.7;
    height: 60px;
    line-height: 60px;
    color: #fff;
    font-size: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 20px;
    z-index: 20;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mn-wrap {
    position: relative;
    height: 108px;
    margin-top: 20px;
    overflow: hidden;
}

.mn-swiper {
    padding: 0 35px;
}

.mn-swiper .swiper-slide {
    cursor: pointer;
}

.mn-swiper .swiper-slide:hover {
    opacity: 0.9;
    box-shadow: -1px 1px 27px -5px rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: -1px 1px 27px -5px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: -1px 1px 27px -5px rgba(0, 0, 0, 0.7);
}

.mn-swiper .swiper-button-prev {
    left: 0;
    height: 108px;
    text-align: center;
    border: 1px solid rgba(207, 211, 214, 1);
    width: 29px
}

.mn-swiper .swiper-button-next {
    right: 0;
    height: 108px;
    text-align: center;
    border: 1px solid rgba(207, 211, 214, 1);
    width: 29px;
}

.mn-swiper .swiper-button-next, .mn-swiper .swiper-button-prev {
    position: absolute;
    top: 22px;
    background-color: #fff;
}

.mn-swiper .swiper-button-prev img, .mn-swiper .swiper-button-next img {
    width: 14px;
    height: 21px;
    margin-top: 43px;
}

.mn-swiper .swiper-slide img {
    width: 172px;
    height: 108px;
}

.arrow-right {
    background: url('../images/home/next.png') no-repeat;
    background-position: 6px 41px;
}

.arrow-left {
    background: url('../images/home/pre.png') no-repeat;
    background-position: 6px 41px;
}

/* 广告 */
.ad {
    width: 100%;
    min-width: 1200px;
    margin: 36px 0 33px 0;
}

.ad-box {
    width: 1200px;
    margin: 0 auto;
    display: block;
}

.ad-box img {
    width: 100%;
    height: 222px;
}

/* 企业党建 */
.party {
    width: 100%;
    background-color: #F6F6F6;
    min-width: 1200px;
    padding: 25px 0;
}

.party-box {
    width: 1200px;
    margin: 0 auto;
    display: flex;
}

.party-l {
    flex: 1;
}

.party-title {
    width: 100%;
    height: 110px;
    display: flex;
}

.party-title-l {
    flex: 1;
    padding-top: 20px;
}

.party-big {
    width: 100%;
    height: 36px;
    line-height: 36px;
    overflow-wrap: break-word;
    color: #111;
    font-size: 36px;
    margin-left: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.party-small {
    width: 100%;
    color: #888;
    font-size: 12px;
    height: 16px;
    line-height: 16px;
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.party-title-r {
    width: 96px;
    padding-top: 38px;
}

.party-more {
    border-radius: 18px;
    height: 36px;
    line-height: 36px;
    border: 1px solid rgba(153, 153, 153, 1);
    width: 100%;
    display: block;
    text-align: center;
    color: rgba(102, 102, 102, 1);
    font-size: 14px;
    overflow: hidden;
}

.party-tab {
    width: 100%;
    height: 64px;
    margin-top: 23px;
    padding-left: 2px;
    display: flex;
}

.tab-unit {
    width: 120px;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    text-align: center;
    color: #111;
    font-size: 18px;
    border: 1px solid rgba(210, 210, 210, 1);
    border-radius: 20px;
    margin-right: 20px;
    cursor: pointer;
}

.tab-active {
    background-color: rgba(9, 85, 206, 1);
    border: 1px solid rgba(9, 85, 206, 1);
    color: #fff;
}

.party-tab-main {
    width: 100%;
}

.tab-main-unit {
    width: 100%;
    display: none;
}

.text-show {
    display: block;
}

.party-list {
    width: 100%;
    max-width: 824px;
    margin-top: 7px;
    display: flex;
    position: relative;
    padding: 20px 0 13px 22px;
}

.party-list::before {
    position: absolute;
    bottom: 38px;
    left: 0;
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
}

.party-list:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200%;
    height: 0;
    border-bottom: 1px solid #ccc;
    transform: scale(0.5) translate(-50%, -50%);
}

.party-list-l {
    flex: 1;
    max-width: 720px;
    height: 18px;
    overflow-wrap: break-word;
    color: rgba(17, 17, 17, 1);
    font-size: 18px;
    line-height: 18px;
    margin-top: 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.party-list-r {
    width: 70px;
}

.date-big {
    width: 100%;
    color: rgba(17, 17, 17, 1);
    font-size: 24px;
    line-height: 24px;
    text-align: right;
    overflow: hidden;
}

.date-small {
    width: 100%;
    color: rgba(204, 204, 204, 1);
    font-size: 16px;
    line-height: 16px;
    margin-top: 6px;
    text-align: right;
    overflow: hidden;
}

.party-r {
    width: 376px;
    padding-left: 37px;
}

.info {
    width: 339px;
    height: 110px;
    background: url('../images/home/infobg.png') -2px -34px no-repeat;
}

.info-up {
    width: 339px;
    height: 59px;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 36px;
    white-space: nowrap;
    line-height: 36px;
    padding: 23px 0 0 34px;
}

.info-down {
    width: 100%;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    white-space: nowrap;
    line-height: 16px;
    padding: 16px 0 0 34px;
}

.info-out {
    width: 338px;
    display: flex;
    margin-top: 8px;
    grid-template-columns: repeat(2, 1fr);
}

.info-list {
    width: 49%;
    height: 79px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    padding: 28px 0 0 0;
    overflow: hidden;
    display: block;
    text-align: center;
}

.info-out .info-list:nth-child(2n+1) {
    margin-right: 1%;
}

.info-out .info-list:nth-child(2n) {
    margin-left: 1%;
}

.info-list img {
    width: 24px;
    height: 24px;
}

.info-text {
    max-width: 140px;
    height: 22px;
    overflow: hidden;
    display: inline-block;
}

.bg-green {
    background-color: #05C792;
}

.bg-blue {
    background-color: #02BAD0;
}

.bg-blue2 {
    background-color: #07C4EC;
}

.bg-blue3 {
    background-color: #4879E0;
}

.bg-pink {
    background-color: #F04D86;
}

.bg-yellow {
    background-color: #F08533;
}

.bg-red {
    background-color: #FF3C4C;
}

.party-box .party-list {
    padding: 0 0 6px 22px;
}

.party-box .date-big {
    font-size: 16px;
    line-height: 16px;
}

.party-box .date-small {
    font-size: 12px;
    line-height: 12px;
    margin-top: 3px;
}

.party-box .party-list-l {
    margin-top: 3px;
}

.party-box .party-list::before {
    bottom: 19px;
}

/* 通知公告 */
.notice {
    width: 100%;
    min-width: 1200px;
}

.notice-box {
    width: 1200px;
    margin: 0 auto;
}

.notice-title {
    width: 100%;
    display: flex;
}

.notice-title-l {
    flex: 1;
    padding-top: 30px;
    max-width: 1100px;
}

.notice-big {
    width: 100%;
    height: 36px;
    line-height: 36px;
    overflow-wrap: break-word;
    color: #111;
    font-size: 36px;
    margin-left: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-small {
    width: 100%;
    color: #888;
    font-size: 12px;
    height: 16px;
    line-height: 16px;
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice-title-r {
    width: 96px;
    padding-top: 42px;
}

.notice-more {
    border-radius: 18px;
    height: 36px;
    line-height: 36px;
    border: 1px solid rgba(153, 153, 153, 1);
    width: 100%;
    display: block;
    text-align: center;
    color: rgba(102, 102, 102, 1);
    font-size: 14px;
    overflow: hidden;
}

.notice-main {
    width: 100%;
    padding-top: 20px;
    display: flex;
}

.notice-main-l {
    width: 600px;
    background-color: #F6F6F6;
    padding: 25px 0 0 23px;
    height: 675px;
    overflow: hidden;
}

.n-title {
    width: 100%;
    height: 21px;
    padding-left: 5px;
    color: rgba(17, 17, 17, 1);
    font-size: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.n-title img {
    width: 37px;
    height: 21px;
    float: left;
    margin-right: 10px;
}

.n-sub-title {
    width: 100%;
    height: 46px;
    line-height: 23px;
    color: rgba(17, 17, 17, 1);
    font-size: 22px;
    margin-top: 28px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: normal !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.n-text {
    width: 494px;
    height: 90px;
    color: rgba(153, 153, 153, 1);
    font-size: 18px;
    line-height: 30px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: normal !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 15px;
}

.n-big-img {
    width: 100%;
    margin-top: 25px;
}

.n-big-img img {
    width: 496px;
    height: 322px;
}

.n-down {
    width: 100%;
    padding-top: 29px;
}

.see-btn {
    width: 160px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background-color: rgba(9, 85, 206, 1);
    border-radius: 2px;
    overflow: hidden;
    display: block;
    font-size: 18px;
    color: #fff;
}

.notice-main-r {
    flex: 1;
    padding: 0 0 0 20px;
}

.border-top {
    border-top: 1px solid rgba(239, 239, 239, 1);
    margin-top: 0;
}

.notice-list {
    width: 100%;
    display: flex;
    position: relative;
    padding: 0 0 18px 22px;
}

.notice-list::before {
    position: absolute;
    bottom: 47px;
    left: 0;
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
}

.notice-list:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200%;
    height: 0;
    border-bottom: 1px solid #ccc;
    transform: scale(0.5) translate(-50%, -50%);
}

.notice-list-l {
    flex: 1;
    height: 18px;
    overflow-wrap: break-word;
    color: rgba(17, 17, 17, 1);
    font-size: 18px;
    line-height: 18px;
    margin-top: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 480px;
}

.notice-list-r {
    width: 70px;
}

.date-big {
    width: 100%;
    overflow-wrap: break-word;
    color: rgba(17, 17, 17, 1);
    font-size: 24px;
    white-space: nowrap;
    line-height: 24px;
    text-align: right;
}

.date-small {
    width: 100%;
    overflow-wrap: break-word;
    color: rgba(204, 204, 204, 1);
    font-size: 16px;
    white-space: nowrap;
    line-height: 16px;
    margin-top: 6px;
    text-align: right;
}

.date-change {
    padding-top: 32px;
}

/* 业务板块 */
.business {
    width: 100%;
    height: 590px;
    background: url(../images/home/business.png) -1px 0px no-repeat;
    margin-top: 20px;
    min-width: 1200px;
}

.business-box {
    width: 1200px;
    margin: 0 auto;
}

.business-title {
    width: 100%;
    display: flex;
}

.business-title-l {
    flex: 1;
    padding-top: 36px;
    max-width: 1100px;
}

.business-big {
    width: 100%;
    height: 36px;
    line-height: 36px;
    overflow-wrap: break-word;
    color: #111;
    font-size: 36px;
    margin-left: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.business-small {
    width: 100%;
    color: #888;
    font-size: 12px;
    height: 16px;
    line-height: 16px;
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.business-title-r {
    width: 96px;
    padding-top: 48px;
}

.business-more {
    border-radius: 18px;
    height: 36px;
    line-height: 36px;
    border: 1px solid rgba(153, 153, 153, 1);
    width: 100%;
    display: block;
    text-align: center;
    color: rgba(102, 102, 102, 1);
    font-size: 14px;
    overflow: hidden;
}

.business-main {
    width: 100%;
    height: 424px;
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.business-unit {
    height: 424px;
    width: 294px;
    position: relative;
}

.d-unit {
    background: url(../images/home/di.png) -65px -72px no-repeat;
}

.g-unit {
    background: url(../images/home/gong.png) -8px -44px no-repeat;
}

.k-unit {
    background: url(../images/home/kuang.png) -8px -12px no-repeat;
}

.q-unit {
    background: url(../images/home/qi.png) -8px -12px no-repeat;
}

.b-unit-inner {
    height: 424px;
    background: url(../images/home/bginner3.png) -11px -18px no-repeat;
    width: 294px;
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
}

.g-unit .b-unit-inner {
    background: url(../images/home/bginner4.png) -12px -18px no-repeat;
}

.k-unit .b-unit-inner {
    background: url(../images/home/bginner.png) -6px -18px no-repeat;
}

.q-unit .b-unit-inner {
    background: url(../images/home/bginner2.png) -12px -18px no-repeat;
}

.business-out {
    position: absolute;
    left: 25px;
    bottom: 20px;
}

.business-img {
    padding-left: 2px;
}

.d-unit .business-img img {
    width: 49px;
    height: 49px;
}

.g-unit .business-img img {
    width: 49px;
    height: 40px;
}

.k-unit .business-img img {
    width: 57px;
    height: 48px;
}

.q-unit .business-img img {
    width: 48px;
    height: 48px;
}

.business-text {
    height: 19px;
    margin-top: 16px;
    width: 80px;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
}

.business-out2 {
    top: 69px;
}

.b-go {
    position: absolute;
    right: 20px;
    top: 131px;
}

.b-text {
    position: absolute;
    width: 252px;
    height: 90px;
    line-height: 30px;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    top: 200px;
    left: 24px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: normal !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 一站风采 */
.line {
    width: 100%;
    min-width: 1200px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.line-box {
    width: 1200px;
    margin: 0 auto;
    display: flex;
}

.line-l {
    width: 970px;
}

.mn-wrap2 {
    position: relative;
    height: 290px;
    margin-top: 58px;
}

.mn-swiper2 .swiper-slide {
    width: 100%;
    cursor: pointer;
}

.mn-swiper2 .swiper-slide a {
    width: 190px;
    height: 230px;
}

.mn-swiper2 .swiper-slide img {
    width: 190px;
    height: 230px;
}

.line-r {
    flex: 1;
    height: 343px;
    text-align: right;
}

.line-r img {
    width: 210px;
    height: 343px;
}

.line .swiper-pagination {
    position: absolute;
    z-index: 20;
    bottom: 25px !important;
    width: 100%;
    text-align: left;
}

.line .swiper-pagination-bullet {
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    overflow: hidden;
    border-radius: 2px;
    margin: 0 5px;
    border: 1px solid #888;
    cursor: pointer;
    color: #888;
    text-align: center;
    background-color: #fff;
}

.line .swiper-pagination-bullet-active {
    background: #A7CBFC;
    border: 1px solid #A7CBFC;
    color: #fff;
}

.mn-wrap2 .swiper-container {
    height: 100%;
}

.video-section {
    background: #f5f5f5;
    padding: 40px 0;
}

.video-box {
    width: 1200px;
    margin: 0 auto;
}

.video-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.video-title-l {
    border-left: 4px solid #1a6bb3;
    padding-left: 15px;
}

.video-big {
    font-size: 24px;
    color: #333;
    line-height: 1.2;
}

.video-small {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

.video-more {
    color: #1a6bb3;
    border: 1px solid #1a6bb3;
    padding: 8px 25px;
    border-radius: 3px;
}

.video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    position: relative;
    padding-top: 56.25%; /* 16:9 比例 */
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 视频列表样式 */
.video-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e88e5;
    font-size: 20px;
}

.video-info {
    padding: 15px;
}

.video-info h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-info p {
    margin: 0;
    font-size: 14px;
    color: #999;
}

/* 视频弹窗样式 */
/* 视频弹窗容器 - 全屏遮罩 */
.video-modal {
    display: none; /* 默认隐藏 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

/* 半透明遮罩层 */
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

/* 弹窗内容 - 居中核心 */
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 关键居中代码 */
    width: 80%;
    max-width: 800px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

/* 弹窗淡入动画 */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* 弹窗头部样式 */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
}

/* 关闭按钮样式 */
.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
    line-height: 1;
}

.close-modal:hover {
    color: #333;
}

/* 视频容器 */
.modal-body {
    padding: 0;
}

.modal-body video {
    width: 100%;
    display: block;
    background: #000;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .modal-content {
        width: 90%;
    }
}
/*.video-modal {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    z-index: 9999;*/
/*    display: none;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.modal-overlay {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background-color: rgba(0, 0, 0, 0.5);*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    z-index: 1000;*/
/*}*/

/*.modal-content {*/
/*    background-color: white;*/
/*    padding: 20px;*/
/*    border-radius: 8px;*/
/*    max-width: 80%;*/
/*    max-height: 80%;*/
/*    overflow: auto;*/
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
/*}*/

/*@keyframes modalFadeIn {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(-20px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/*.modal-header {*/
/*    padding: 15px 20px;*/
/*    background: #f5f5f5;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/*.modal-header h3 {*/
/*    margin: 0;*/
/*    font-size: 18px;*/
/*}*/

/*.close-modal {*/
/*    background: none;*/
/*    border: none;*/
/*    font-size: 24px;*/
/*    cursor: pointer;*/
/*    color: #666;*/
/*    transition: color 0.2s ease;*/
/*}*/

/*.close-modal:hover {*/
/*    color: #333;*/
/*}*/

/*.modal-body {*/
/*    padding: 0;*/
/*}*/

/*#modalVideoPlayer {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    max-height: 70vh;*/
/*    display: block;*/
/*}*/
