* {
    margin: 0;
    padding: 0;
}
body {
    background: #d5d5d5;
}
.container {
    position: relative;
    width: 1100px;
    height: auto;
    margin-left: 50%;
    transform: translateX(-50%);
    background: #fff;
}
.picContainer {
    position: absolute;
    top: 20%;
    left: 20px;
    width: 540px;
    height: 350px;
}
.picture {
    width: 540px;
    height: 350px;
}
.modWindow {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.modWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* box-shadow: 0px 2px 4px rgba(0, 0, 0, .5); */
    padding: 30px;
}
.close-circle {
    position: absolute;
    left: 103%;
    top: 5%;
    transform: translate(-103%, -5%);
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.btn-cross {
    position: absolute;

    width: 15px;
    height: 2px;
    background: #fff;
}
.btn-cross.left {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.btn-cross.right {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.close-circle:hover {
    cursor: pointer;
    animation-name: animatedClose;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes animatedClose {
    from {
        border: 2px solid #fff;
    }
    to {
        background: red;
        border: 2px solid red;
    }
}
.arrow-circle {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.circle-right {
    left: 103%;
    top: 50%;
    transform: translate(-103%, -50%);
}
.circle-left {
    left: -3%;
    top: 50%;
    transform: translate(3%, -50%);
}
.arrow {
    position: absolute;
    width: 15px;
    height: 15px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.arrow-right {
    top: 50%;
    left: 30%;
    transform: translate(-30%, -50%) rotate(45deg);
}
.arrow-left {
    top: 50%;
    left: 50%;
    transform: translate(-30%, -50%) rotate(-135deg);
}
.arrow-circle:hover {
    cursor: pointer;
    animation-name: animatedSide;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes animatedSide {
    from {
        border: 2px solid #fff;
    }
    to {
        background: #ff5733;
        border: 2px solid #ff5733;
    }
}
.download-circle {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    top: 90%;
    left: 103%;
    transform: translate(-103%, -95%);
}
.download-btn {
    position: absolute;
    width: 45px;
    height: 35px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.download-circle:hover {
    cursor: pointer;
    animation-name: animatedDownload;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes animatedDownload {
    from {
        border: 2px solid #fff;
    }
    to {
        background: #2F6C3C;
        border: 2px solid #2F6C3C;
    }
}
.scale-circle {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    top: 5%;
    left: 95%;
    transform: translate(-95%, -5%);
}
.btn-scale {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid transparent;
}
.scale-right {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: 45%;
    left: 55%;
    transform: translate(-55%, -45%);
}
.scale-left {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    top: 55%;
    left: 45%;
    transform: translate(-45%, -55%);
}
.scale-circle:hover {
    cursor: pointer;
    animation-name: animatedScale;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes animatedScale {
    from {
        border: 2px solid #fff;
    }
    to {
        background: #2F6C3C;
        border: 2px solid #2F6C3C;
    }
}
.newsDetail__slide:hover {
    cursor: pointer;
}