        .btn04 {
            margin: 0 auto;
            color: #fff;
            text-decoration: none;
            text-align: center;
            position: relative;
            z-index: 10;
            display: block;
            width: 110px;
            height: 110px;
            line-height: 110px;
        }

        .btn04::before {
            content: '';
            display: block;
            position: absolute;
            width: 110px;
            height: 110px;
            z-index: -1;
            border-radius: 50%;
            box-shadow:
                0 0 0 0 #fff,
                0 0 0 0 #dda284;
            transition: all .2s ease;
            -webkit-transition: all .2s ease;
        }
        .btn04:hover::before {
            transform: scale(0.8);
            -webkit-transform: scale(0.8);
            box-shadow:
                0 0 0 3px #fff,
                0 0 0 0px #dda284;
        }
		
		#movie {
			height:357px;
			position:relative;
			}

		
		#movie .movie_bt {
			position: absolute ;
			left:50%;
			margin-left:-50px;
			top:50%;
			margin-top:-60px;

			}
		#movie img{
			border: none;
		}