.container {
    width: 100%;
    background-color: #fff;
    padding: 0 20px;
}

/* slider */

.slider {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 5px;
    
}

.slider .slider-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 1000%;
    height: 100%;
}

.slider .slider-img img {
    display: inline-block;
    object-fit: cover;
    height: 100%;
    float: left;
}

.slider .slider-btn {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.slider .slider-btn .dot {
    width: 15px;
    height: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.slider .slider-btn .active {
    background-color: #fff;
}

@media (max-width: 768px) {
    .slider {
        height: 140px;
    }
}

/* news */

.news {
    width: 100%;
    border-radius: 12px;
    margin-top: 12px;
    background: linear-gradient(180deg, #f9f9fc, #fff);
    color: #263939;
    margin-bottom: 18px;
}

.news p {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 8px 16px;
}

.new-more {
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #999;
}

/* part */

.part {
    width: 100%;
    background: linear-gradient(180deg, #f9f9fc, #fff);
    margin-bottom: 18px;
}

.part img {
    width: 100%;
}

/* part2 */
.part2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
    text-align: center;
}

.part2 a {
    background: linear-gradient(180deg, #f9f9fc, #fff);
    border-radius: 5px;
    padding: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.part2 .icon {
    display: block;
    margin: 0 auto;
    width: 48px;
    height: 48px;
    background-size: 100%;
    background-repeat: no-repeat;
}

.part2 p {
    font-size: 13px;
    margin-top: 8px;
}

/* part3 */
.part3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
    text-align: center;
}

.part3 a {
    padding: 16px;
}

.part3 .icon {
    display: block;
    margin: 0 auto;
    width: 43px;
    height: 43px;
    background-size: 100%;
    background-repeat: no-repeat;
}

.part3 p {
    font-size: 13px;
    margin-top: 8px;
}

/* part4 */
.part4 {
    width: 100%;
    margin-bottom: 20px;
}

.part4 .media-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.part4 .media-top .title{
    position: relative;
    font-size: 18px;
    font-weight: 300;
}
.part4 .media-top a {
    font-size: 12px;
    color: #999;
}

.part4 .media-top .title::after {
    position: absolute;
    display: block;
    content: "";
    width: 86px;
    height: 16px;
    background: linear-gradient(270deg, rgba(0, 222, 229, 0), #00bac7 100%, #00bac7 0);
    border-radius: .2rem;
    top: 16px;
    left: 0;
    opacity: .2;
}

.part4 .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.part4 .grid .item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f2f4f8;
    border-radius: 5px;
    font-size: 12px;
}

.part4 .grid .item img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

/* popup */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup .window {
    position: relative;
    width: 75%;
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px 20px;
    box-sizing: border-box;
    text-align: center;
}
.popup .window .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 22px;
    height: 22px;
    background: url(/img/close.png) no-repeat center;
    background-size: 70%
}

/* popup-ewm */

.popup-ewm .window .sub-title{
    font-size: 18px;
}

.popup-ewm .window .ewm {
    width: 70%;
    object-fit: cover;
    margin: 10px 0;
}
.popup-ewm .window .desc{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00bac7;
    padding: 16px 0 0;
    border-top: 1px solid #ccc;
}
.popup-ewm .window .desc>img {
    width: 13px;
    height: 15px;
    margin-right: 10px;
}

/* popup-xj */

.popup-xj .window .sub-title{
    font-size: 18px;
    margin-bottom: 10px;
}
.popup-xj .window .sub-title img{
    width: 16px;
    margin-right: 5px;
    object-fit: scale-down;
}
.popup-xj .window .xj-link-list {
    width: 100%;
    margin-bottom: 18px;
    text-align: left;
}

.popup-xj .window .xj-link-list .list{
    display: flex;
    gap: 10px;
}

.popup-xj .window .xj-link-list .list a{
    padding: 5px 10px;
    background-color: #f2f4f8;
    border-radius: 5px;
    font-size: 13px;
}
