.nav {
    width: 100%;
    position: relative;
}
.news-nav {
    width: 100%;
    height: 46.875rem;
}
.videos-container {
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9;
}

/*.video-type {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 8.125rem;*/
/*}*/
/*.name {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    color: #333333;*/
/*    cursor: pointer;*/
/*}*/
/*.name a{*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    color: #333333;*/
/*    cursor: pointer;*/
/*}*/
/*.type {*/
/*    font-weight: bold;*/
/*    font-size: 1.625rem;*/
/*    line-height: 2.4375rem;*/
/*}*/
/*.title-slider {*/
/*    display: none;*/
/*    margin-top: 0.5rem;*/
/*    width: 1.875rem;*/
/*    height: 0.1875rem;*/
/*    background: #0FC878;*/
/*    border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;*/
/*}*/
/*.active {*/
/*    color: #0FC878;*/
/*}*/
.video-list,.product-list {
    margin-top: 3.125rem;
    box-sizing: border-box;
    padding: 0 18.75rem;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(auto-fill,1fr);
    gap: 2rem;

}
.video-item {
    cursor: pointer;
    border-radius: 1rem;
    background-color: #FFFFFF;
    overflow: hidden;
    transition-duration: 300ms;

}
.item-view {
    position: relative;
}

.video-prew {
    width: 19.125rem;
    height: 12.5rem;
    z-index: -1;
}
.watching {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    width: 3.0625rem;
    height: 1.25rem;
    background: rgba(0,0,0,0.5);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.watching-l {
    position: absolute;
    left: 0;
    bottom: 0.2rem;
    width: 3.0625rem;
    height: 1.25rem;
    background: rgba(0,0,0,0.5);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-btn {
    width: 0.5rem;
    height: 0.5rem;
}
.video-title {
    box-sizing: border-box;
    padding: 1rem;
    color: #333333;
    line-height: 1.5rem;
    height: 4rem;
    font-size: 1.25rem;
    overflow-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.item-bottom {
    box-sizing: border-box;
    padding:1rem;
    font-size: 0.75rem;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-play-btn {
    width: 3.75rem;
    height: 3.75rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
    transition-duration: 300ms;
}
.video-item:hover {
    transform: scale(1.05);
    transition-duration: 300ms;
}
.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.2);
    transition-duration: 300ms;
}
.homeNewInformation{
    margin-top: 3.125rem;
    box-sizing: border-box;
    padding: 0 18.75rem;
    display: grid;

}
.homeNewInformation-content{
    /*box-sizing: border-box;*/
    /*display: flex;*/
    /*!*flex-direction: column;*!*/
    /*align-items: center;*/
    /*padding: 5rem 0;*/
}
.homeNewInformation-header img{
    width: 72px;
    height: 48px;
}



.application-video-list-box {
    box-sizing: border-box;
    /*width: 75rem;*/
    background-color: #f9f9f9;
    border-radius: 1.25rem;
    /*padding: 4rem 0 4rem 2.5rem;*/
}

.application-video-list {
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 1.25rem;
    display: flex;
}

.application-video-list-right {
    width: 40%;

    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
}

.application-video-list-left {
    width: 55%;
    height: 23rem;
    margin: 3.125rem 1.5rem 2.5rem 0;
}

.video-list-title {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #333333;
}

.zrtj {
    width: 2.0625rem;
    height: 2rem;
    margin-right: 0.6875rem;
}

.video-view {
    width: 50rem;
    height: 27rem;
    border-radius: 1.25rem;
}

.video-list-1 {
    margin-top: 2rem;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
}

.video-list-item {
    cursor: pointer;
    box-sizing: border-box;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333333;
    transition-duration: 300ms;
}

.arrow-right-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    transition-duration: 300ms;
}

.arrow-right-icon-hover {
    display: none;
    transition-duration: 300ms;
}

.video-list-item:hover .video-list-item-l {
    font-weight: 600;
    color: #0FC878;
    transform: translateX(3%) scale(1.05);
    transition-duration: 300ms;
}


.video-list-item:hover .arrow-right-icon {
    display: none;
    transition-duration: 300ms;
}

.video-list-item:hover .arrow-right-icon-hover {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    transition-duration: 300ms;
}

.video-title-1{
    margin-top: 0.5rem;
    margin-left: 0.5rem;
}

.video-play-btn-1 {
    width: 3.75rem;
    height: 3.75rem;
    position: absolute;
    top: 114%;
    left: 37%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
    transition-duration: 300ms;
}

.video-play-btn-1:hover {
    transform: translate(-50%, -50%) scale(1.2);
    transition-duration: 300ms;
}

.news-item {
    box-sizing: border-box;
    padding: 1rem 0;
    border-radius: 1.25rem;
    display: flex;
    background-color: #FFFFFF;
    cursor: pointer;
    /*margin-bottom: 2.5rem;*/
}
.item-prew-photo {
    /*width: 10rem;*/
    /*height: 6rem;*/
    width: 8rem;
    height: 5rem;
    overflow: hidden;
    position: relative;
    /*margin-right: 3.125rem;*/
    border-radius: 0.625rem;
    transition-duration: 300ms;
}
.prew-photo {
    width: 100%;
    height: 100%;
}
.news-item:hover .item-prew-photo {
    transform: scale(1.05);
    transition-duration: 300ms;
}
.news-synopsis {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 24rem;
    padding: 0.625rem;
}
.news-synopsis-title {
    width: 100%;
    font-weight: bold;
    line-height: 1.4rem;
    /*font-size: 1.5rem;*/
    color: #333333;
    /*white-space: nowrap;*/
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}
.news-watch {
    display: flex;
    align-items: center;
}
.news-watch-l {
    display: flex;
    align-items: center;
    margin-right: 2.75rem;
    color: #999999;
}
.news-watch-r {
    color: #999999;
}
.eyes-icon {
    width: 1.25rem;
    height: 1.25rem;
}
.news-synopsis-content {
    font-size: 1.375rem;
    color: #333333;
    line-height: 1.625rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.watch-detail {
    /*height: 2.5rem;*/

    /*border-radius: 1.5rem;*/
    /*border: 1px solid #CCCCCC;*/
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    font-size: 1.25rem;
    color: #999999;
    position: relative;
    box-sizing: border-box;
    transition-duration: 300ms;
}
.arrow-03 {
    width: 2rem;
    height: 2rem;
    margin-left: 1.5rem;
}
.arrow-04 {
    display: none;
}
/*.news-synopsis:hover .news-synopsis-title {*/
/*    color: #0fc878;*/
/*}*/
/*.news-synopsis:hover .watch-detail {*/
/*    background: #0FC878;*/
/*    width: 10rem;*/
/*    height: 2.5rem;*/
/*    border: 1px solid #0fc878;*/
/*    border-radius: 1.5rem;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-size: 1.25rem;*/
/*    color: #FFFFFF;*/
/*    transition-duration: 300ms;*/
/*}*/
.news-synopsis:hover .arrow-03 {
    display: none;
}
.news-synopsis:hover .arrow-04 {
    display: block;
    width: 2rem;
    height: 2rem;
    margin-left: 1.5rem;
}
.video-play-btn-l{
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 38%;
    left: 39%;
}
