* {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

ul li {
    display: inline-block;
}

body {
    background: #f2f2f2;
}

.main {
    width: 50%;
    height: 100%;
    margin: 0px auto;
}

.top {
    width: 100%;
    height: 55px;
    line-height: 55px;
    background-color: #000;
    color: #fff;
}

.top h1 {
    font-size: 30px;
    margin-left: 24%;
}

/* 电影列表设置 */
.header {
    width: 100%;
    padding: 10px 0;
}

.header h2 {
    padding: 10px 0;
}

.header .move {
    margin: 10px 0;
    padding: 10px 10px;
    /* border: 1px solid #000; */
    border-radius: 10px;
    box-shadow: 0px 0px 10px #646363;
}

.header ul {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
}

.header ul a {
    text-decoration: none;
}

.header ul span {
    display: block;
    margin: 5px 0px 0px 0px;
    padding-left: 4px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.header ul a img {
    width: 155px;
    margin-left: 5px;
    transition: all 0.5s ease-in-out;
}

.header ul a:hover img {
    transform: scale(1.05);
    transition: all 0.5s ease-in-out;
}

.header ul a:visited img {
    transform: scale(1.05);
}

/* 坐位状态 */
.content .seat b {
    display: block;
    margin: 10px;
    font-size: 25px;
}

.content .seat .status {
    box-shadow: 0px 0px 10px #646363;
    padding: 10px 100px;
}

.content .seat .status span {
    font-size: 15px;
}

.content .seat .status {
    display: flex;
    margin: 20px auto;
    width: 380px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
}

.content .seat .status div.statu {
    display: inline-block;
    margin: 0px 10px;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
}

.content .seat .screen {
    margin: 20px auto;
    width: 500px;
    height: 80px;
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 20px;
    line-height: 80px;
    box-shadow: 0px 0px 10px #646363;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
}

/* 座位设置 */
#seats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0px;
}


#seats li {
    margin: 10px;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    cursor: pointer;
    transform: translate(0px, 0px);
    box-shadow: 0px 0px 0px #646363;
    transition: all 0.5s ease-in-out;
}

#seats li:hover {
    transform: translate(0px, -5px);
    box-shadow: 2px 2px 5px #646363;
    transition: all 0.5s ease-in-out;
}

/* #seats li:active {
    transform: translate(0px, 5px);
} */

.selected {
    background: green;
}

/* 订单相关 */
.order {
    height: 270px;
}

.order h2 {
    padding: 10px;
}

.order .order_list {
    margin-top: 10px;
}

.order ul {
    margin-bottom: 10px;
    width: 100%;
    height: 100px;
    /* border: 1px solid #000; */
    margin-top: 20px;
    padding: 15px 0;
    box-shadow: 0px 0px 10px #646363;
    border-radius: 10px;
}

.order ul li {
    display: block;
    margin: 5px 20px;
}

.order button {
    width: 100px;
    height: 30px;
    margin-top: 5px;
    border: 1px solid #000;
    border-radius: 7px;
    background: arbga(255, 255, 255, 0);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.order button:hover {
    background: #000;
    color: #fff;
    transform: translate(0px, -5px);
    transition: all 0.5s ease-in-out;
}