@charset "gb2312";
/* CSS ¶àÕÅÍ¼Æ¬ÂÖ²¥ */

        /* ÂÖ²¥Í¼ÑùÊ½ */  
        .slider {  
            position: relative;  
            width: 1210px;  
            height: 554px;  
            overflow: hidden;  
            margin: auto;  
        }  
  
        .slides img {  
            width: 100%;  
            height: 100%;  
            display: none;  
            position: absolute;  
            top: 0;  
            left: 0;  
        }  
  
        .slides img:first-child {  
            display: block;  
        }  
  
        .prev, .next {  
            cursor: pointer;  
            position: absolute;  
            top: 50%;  
            transform: translateY(-50%);  
            padding: 16px;  
            color: white;  
            font-weight: bold;  
            font-size: 18px;  
            transition: 0.6s ease;  
            border-radius: 0 3px 3px 0;  
            user-select: none;  
            background-color: rgba(0,0,0,0.5);  
            border: none;  
        }  
  
        .next {  
            right: 0;  
            border-radius: 3px 0 0 3px;  
        }  
  
        .prev:hover, .next:hover {  
            background-color: rgba(0,0,0,0.8);  
        }  