/*----------------------------------------*/
/* Honor Area */
/*----------------------------------------*/

.control-box {
    /* width: 1200px; */
    height: 350px;
    /* background-image: url(../images/hots_bg.png); */
    /* background-size: 1055px; */
    /* background-repeat: no-repeat; */
    /* background-position: 60px 165px; */
    margin-left: auto;
    margin-right: auto;
    /* margin-top:150px; */
}
.control-box ul {
  list-style: none;
  position: relative;
}
.control-box ul li {
  position: absolute;
  top: 128px;
  cursor: pointer;
}
.prev {
  left: 0;
}
.next {
  right: 0;
}
.bigbox {
  overflow: hidden;
  /* width: 1058px; */
  height: 350px;
  margin: auto 70px auto;
}
#switcher {
  height: 350px;
  left: 0px;
}
.content_1.content_2 {
  width: 100%;
  float: left;
}
.box {
  transition:all .7s ease 0s;
  width: 100%;
  height: 350px;
  float: left;
  /* border-left: 20px white solid; */
  margin: 0 20px;
}

.box a{
  transition:all .7s ease 0s;
  width: 100%;
  height: 350px;
  float: left;
  margin: 0 50px;
}

.box:hover {
 opacity:0.5;
 cursor: pointer;}
 
.shadow {
  width: 255px;
  height: 60px;
  /* opacity: 1; */
  background-color: rgba(0, 0, 0, 0.45);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000,endColorstr=#66000000);
  margin-top: 130px;
  color: white;
  font-size: 14px;
}
.shadow a {
  display: inline-block;
  width: 225px;
  height: 60px;
  color: white;
  text-decoration: none;
  margin-left: 18px;
  margin-top: 10px;
}



        /* 弹窗的位置和背景颜色 */
        .modal {
            display: none; 
            position: fixed; /* 绝对定位 */
            z-index: 999; /* 元素置前 */
			top:15%;
			left:auto;
            padding-top: 50px;
            width: 100%; 
            height: 100%; 
            overflow: auto; /* 溢出出现滚动条 */
        }
 
        /* 弹窗图片的大小 */
        .content {
            margin: auto;
            display: block;
            min-height:500px;
            max-height:600px;		
        }