* {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
/* 头部 */
.cuop_content header {
  width: 100%;
  height: 110px;
}

header .head {
  width: 1200px;
  margin: 0 auto;
}

header .head_name {
  display: inline-block;
  font-size: 22px;
  color: #232323;
  font-weight: bold;
  line-height: 37px;
}

.head img {
  vertical-align: middle;
}

.head .line {
  margin: 0 8px;
}

/* 导航部分 */
.cuop_content nav {
  width: 100%;
  line-height: 48px;
  background: #072669;
}
nav .nav_main {
  width: 1200px;
  margin: 0 auto;
}
nav ul {
  display: inline;
}
nav .nav_item {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  padding: 0 30px;
  cursor: pointer;
}
nav .nav_item>a{
	color:white !important;
}
nav .nav_item:hover {
  background: rgba(255, 255, 255, 0.1);
}

nav .seach_box {
  width: 200px;
  position: relative;
  margin-bottom: 23px;
  float: right;
  margin-top: 8px;
}

.seach_box .head_input {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #ddd;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  width: 170px;
  height: 34px;
  padding-left: 9px;
  box-sizing: border-box;
  outline: none;
  background: #072669;
  color: #fff;
}

.head_input::placeholder {
  color: #ddd;
  font-size: 12px;
  line-height: 20px;
}

.seach_box .seach {
  position: absolute;
  top: 0;
  right: 0;
  background: url('../images/seach.png') no-repeat;
  background-size: 100%;
  background-origin: content-box;
  padding: 5px;
  width: 32px;
  height: 34px;
  box-sizing: border-box;
  border-radius: 0 4px 4px 0;
  border: 1px solid #ddd;
  border-left: 0;
  float: left;
}
/* 轮播图部分 */
.swiper {
  width: 100%;
  height: 300px;
}

.swiper img {
  width: 100%;
  height: 300px;
}

/* 内容部分 */
.content {
  width: 1200px;
  margin: 30px auto 50px;
  display: flex;
  justify-content: space-between;
}

/* 内容左侧 */
.content .content_left {
  width: 900px;
}

/* 工作动态、通知公告 */
.content_left .left_img_box {
  width: 100%;
  height: 260px;
  border: 1px solid #ddd;
  padding: 10px 22px 10px 10px;
  box-sizing: border-box;
  margin-bottom: 24px;
}

.left_img_box .img_box {
  width: 330px;
  height: 240px;
  float: left;
}

.left_img_box .notice {
  width: 518px;
  display: inline-block;
  margin-left: 13px;
}

.notice .notice_title {
  border-bottom: 1px solid #ddd;
  height: 31px;
  margin-bottom: 13px;
}

.notice_title ul {
  float: left;
}

.notice_title .more1 {
  float: right;
  font-size: 12px;
  color: #5987DC;
  line-height: 30px;
  cursor: pointer;
}
.notice_title .notice_title_item {
  font-size: 16px;
  color: #232323;
  display: inline-block;
  margin-left: 30px;
  cursor: pointer;
}

.notice_title .active {
  color: #072669;
  border-bottom: 2px solid #072669;
  font-weight: bold;
  padding: 0 0 5px 0;
}

/* .notice .notice_content {
  height: 218px;
} */

.notice_content .notice_content_item {
  line-height: 23px;
  position: relative;
  padding-left: 15px;
}

.notice_content .notice_content_item::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #bbb;
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%)
}

.notice_content_item .item_text {
  color: #666;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  width: 400px;
}

.notice_content_item .item_text:hover {
  text-decoration: underline;
}
.notice_content_item .item_date {
  color: #aaa;
  font-size: 13px;
  float: right;
}
/* -------------------------------------- */

/* 校内采购 */
.content_left .school_purchase,
.content_left .entrust_purchase,
.content_left .dispersed_purchase {
  width: 900px;
  height: 280px;
  border: 1px solid #ddd;
  padding: 10px 22px;
  box-sizing: border-box;
  margin-bottom: 20px;
  position: relative;
}

.school_purchase .flag_box,
.entrust_purchase .flag_box,
.dispersed_purchase .flag_box {
  position: absolute;
  padding: 9px 2px;
  border-radius: 6px;
  color: #fff;
  top: 8px;
  left: -10px;
  writing-mode:vertical-lr;
  font-size: 16px;
  writing-mode: vertical-lr;
  letter-spacing: 3px;
  font-weight: bold;
  line-height: 30px;
}

/* 校内采购标识小三角块 */
.school_purchase .flag_box::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 0px solid transparent;
  border-top: 20px solid #5987DC;
  position: absolute;
  bottom: -13px;
  left: 0;
}

/* 委托采购标识小三角块 */
.entrust_purchase .flag_box::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 0px solid transparent;
  border-top: 20px solid #00ADEF;
  position: absolute;
  bottom: -13px;
  left: 0;
}

/* 分散采购标识小三角块 */
.dispersed_purchase .flag_box::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 0px solid transparent;
  border-top: 20px solid #35C0D5;
  position: absolute;
  bottom: -13px;
  left: 0;
}

.school_purchase .purchase_title,
.entrust_purchase .purchase_title,
.dispersed_purchase .purchase_title {
  height: 30px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 8px;
}
.purchase_title .title_item {
  display: inline-block;
  color: #888;
  font-size: 16px;
  line-height: 21px;
  padding: 0 0 9px;
  cursor: pointer;
}

.purchase_title span {
  padding: 0 20px;
  border-left: 1px solid #ccc;
}

.purchase_title .active {
  color: #072669;
  font-weight: bold;
  border-bottom: 2px solid #072669;
}

.purchase_title .more1 {
  color: #5987DC;
  font-size: 12px;
  float: right;
  line-height: 22px;
}

.purchase_content .content_item {
  line-height: 23px;
  position: relative;
  padding-left: 15px;
}
.purchase_content .content_item::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #bbb;
  position: absolute;
  top: 43%;
  left: 0;
  transform: translateY(-50%)
}

.content_item .content_item_text {
  color: #232323;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  width: 700px;
}
.content_item .content_item_text:hover {
  text-decoration: underline;
}

.content_item .content_item_date {
  color: #929292;
  font-size: 13px;
  float: right;
}

/* 内容右侧 */
.content .content_right {
  width: 280px;
}

/* 登录模块 */
.content_right .login_box {
  position: relative;
  width: 100%;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  margin-bottom: 24px;
}

.login_box .login_box_item {
  line-height: 60px;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
}

.login_box_item>div {
  display: inline-block;
  width: 37%;
}

.login_box_item>div>img {
  margin: 0 24px 0 47px;
  vertical-align: middle;
}
/* ------------------------------- */

/* 日历模块 */
.content_right .calendar {
  width: 280px;
  height: 280px;
  margin-bottom: 20px;
  border:1px solid #f2f2f2; 
  position:relative;
}
.calendar .title-f{ 
	width:28px; 
	text-align:center; 
	color:#fff; 
	background:#dd9a8c; 
	padding:10px 5px; 
	border-radius:0 5px 5px 0; 
	box-shadow:inset 3px 0 4px rgba(0,0,0,0.15); 
	position:absolute; 
	top:10px; 
	right:-28px;
}

/* 政策法规 */
.content_right .statute {
  width: 280px;
  height: 280px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.statute .statute_title {
  height: 30px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.statute_title>span {
  font-size: 15px;
  color: #232323;
}

.statute_title>.more1 {
  color: #5987DC;
  font-size: 12px;
  float: right;
  line-height: 22px;
}

.statute_content .statute_content_item {
  padding-left: 15px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 26px;
}
.statute_content .statute_content_item::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #ddd;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.statute_content_item>a {
  color: #232323;
  font-size: 12px;
}

.statute_content_item>a:hover {
  text-decoration: underline;
}

/* 常见下载 */
.content_right .right_download {
  width: 280px;
  height: 280px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}
.right_download .right_head {
  height: 30px;
  border-bottom: 1px solid #ddd;
}

.right_head>span {
  font-size: 15px;
  color: #232323;
}

.right_head>.more1 {
  color: #5987DC;
  font-size: 12px;
  float: right;
  line-height: 22px;
}

.download_list {
  line-height: 45px;
  border-bottom: 1px dotted #ddd;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download_list a {
  font-size: 12px;
  color: #232323;
}

.download_list a:hover .download_list_text {
  color: red;
}

.download_list:last-child {
  border-bottom: 0px;
}

.download_list img {
  vertical-align: middle;
  margin-right: 5px;
}

/* 页面底部 */
.csu_foot {
  width: 100%;
  height: 240px;
  background: url('../images/bottom.png');
  background-size: 100%;
  padding-top: 38px;
  box-sizing: border-box;
}

.foot_first_ul {
  list-style: none;
  margin: 0 auto;
  width: 1100px;
  height: 17px;
  text-align: center;
}

.first_ul_item {
  border-right: 1px solid #ccc;
  padding: 0 10px;
  line-height: 13px;
  display: inline;
}
.first_ul_item:last-child {
  border-right: 0;
}

.first_ul_item a {
  color: #ccc;
  font-size: 13px;
}

.csu_foot .line {
  background: #ccc;
  height: 1px;
  width: 1102px;
  margin: 34px auto 32px;
}

.foot_second_ul {
  list-style: none;
  margin: 0 auto;
  width: 1100px;
  height: 17px;
  text-align: center;
}

.second_ul_item {
  border-right: 1px solid #929292;
  padding: 0 10px;
  line-height: 13px;
  color: #929292;
  font-size: 12px;
  display: inline;
}
.second_ul_item:last-child {
  border-right: 0;
}



.bg59 {
  background: #5987DC;
}

.bg00 {
  background: #00ADEF;
}

.bg35 {
  background: #35C0D5;
}

.bg13 {
  background: #136DD6;
}

.bgf7 {
  background: #F7921C;
}

.ddd {
    position: absolute;
    right: -150px;
    top: -15px;
}
.divbox .option{
	position: relative;
    width: 128px;
    height:50px;
    border:1px solid #136DD6;
    margin-bottom: 5px;
    
}
.divbox .option a{
	font-size: 18px;
	color:#136DD6;
	line-height: 50px;
    padding:0 6px;
}

.divbox .option:hover{
    background:#136DD6;
}
.divbox .option:hover a{
	color:#fff;
}